]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/ChangeLog
gas: bpf: fix tests for pseudo-c syntax
[thirdparty/binutils-gdb.git] / gas / ChangeLog
CommitLineData
2b8c7766
JM
12023-04-27 Jose E. Marchesi <jose.marchesi@oracle.com>
2
3 * testsuite/gas/bpf/mem.dump: New file.
4 * testsuite/gas/bpf/mem-pseudoc.d: Likewise.
5 * testsuite/gas/bpf/mem.d: #dump mem.dump.
6 * testsuite/gas/bpf/lddw.dump: New file.
7 * testsuite/gas/bpf/lddw-pseudoc.d: Likewise.
8 * testsuite/gas/bpf/lddw.d: #dump lddw.dump.
9 * testsuite/gas/bpf/jump.dump: New file.
10 * testsuite/gas/bpf/jump-pseudoc.d: Likewise
11 * testsuite/gas/bpf/jump.d: #dump jump.dump.
12 * testsuite/gas/bpf/jump32.dump: New file.
13 * testsuite/gas/bpf/jump32-pseudoc.d: Likewise.
14 * testsuite/gas/bpf/jump32.d: #dump jump32.dump.
15 * testsuite/gas/bpf/lddw-be.dump: New file.
16 * testsuite/gas/bpf/lddw-be-pseudoc.d: Likewise.
17 * testsuite/gas/bpf/lddw-be.d: #dump lddw-be.dump.
18 * testsuite/gas/bpf/indcall-1.dump: New file.
19 * testsuite/gas/bpf/indcall-1-pseudoc.d: Likewise.
20 * testsuite/gas/bpf/indcall-1.d: #dump indcall-1.dump.
21 * testsuite/gas/bpf/indcall-1-pseudoc.s (main): Fix lddw
22 instruction.
23 * testsuite/gas/bpf/atomic.dump: New file.
24 * testsuite/gas/bpf/atomic-pseudoc.d: Likewise.
25 * testsuite/gas/bpf/atomic.d: #dump atomic.dump.
26 * testsuite/gas/bpf/alu32.dump: New file.
27 * testsuite/gas/bpf/alu32-pseudoc.d: Likewise.
28 * testsuite/gas/bpf/alu32.d: #dump alu32.dump.
29 * testsuite/gas/bpf/alu.dump: New file.
30 * testsuite/gas/bpf/alu-pseudoc.d: Likewise.
31 * testsuite/gas/bpf/alu.d: #dump alu.dump.
32
33 * testsuite/gas/bpf/alu-be.dump: New file.
34 * testsuite/gas/bpf/alu-be-pseudoc.d: Likewise.
35 * testsuite/gas/bpf/alu-be.d: #dump alu-be.dump.
36 * testsuite/gas/bpf/alu32-be-pseudoc.d: New file.
37 * testsuite/gas/bpf/alu32-be-dump: Likewise.
38 * testsuite/gas/bpf/alu32-be.d: #dump alu32-be-dump.
39 * testsuite/gas/bpf/bpf.exp: Run *-pseudoc tests.
40
dcdec68b
JM
412023-04-19 Jose E. Marchesi <jose.marchesi@oracle.com>
42
43 PR gas/29757
44 * doc/c-bpf.texi (BPF Pseudo-C Syntax): New section.
45
bba4624d
GM
462023-04-20 Guillermo E. Martinez <guillermo.e.martinez@oracle.com>
47
48 PR gas/29728
49 * testsuite/gas/all/assign-bad-recursive.d: Skip test in bpf-*
50 targets.
51 * testsuite/gas/all/eqv-dot.d: Likewise.
52 * testsuite/gas/all/gas.exp: Skip other assignment tests in bpf-*.
53 * testsuite/gas/bpf/alu-pseudoc.s: New file.
54 * testsuite/gas/bpf/pseudoc-normal.s: Likewise.
55 * testsuite/gas/bpf/pseudoc-normal.d: Likewise.
56 * testsuite/gas/bpf/pseudoc-normal-be.d: Likewise.
57 * testsuite/gas/bpf/mem-pseudoc.s: Likewise.
58 * testsuite/gas/bpf/lddw-pseudoc.s: Likewise.
59 * testsuite/gas/bpf/jump32-pseudoc.s: Likewise.
60 * testsuite/gas/bpf/jump-pseudoc.s: Likewise.
61 * testsuite/gas/bpf/indcall-1-pseudoc.s: Likewise.
62 * testsuite/gas/bpf/atomic-pseudoc.s: Likewise.
63 * testsuite/gas/bpf/alu32-pseudoc.s: Likewise.
64 * testsuite/gas/bpf/*.d: Add -pseudoc variants of the tests.
65
ff5a51b3
GM
662023-04-20 Guillermo E. Martinez <guillermo.e.martinez@oracle.com>
67
68 PR gas/29728
69 * config/tc-bpf.h (TC_EQUAL_IN_INSN): Define.
70 * config/tc-bpf.c (LEX_IS_SYMBOL_COMPONENT): Define.
71 (LEX_IS_WHITESPACE): Likewise.
72 (LEX_IS_NEWLINE): Likewise.
73 (LEX_IS_ARITHM_OP): Likewise.
74 (LEX_IS_STAR): Likewise.
75 (LEX_IS_CLSE_BR): Likewise.
76 (LEX_IS_OPEN_BR): Likewise.
77 (LEX_IS_EQUAL): Likewise.
78 (LEX_IS_EXCLA): Likewise.
79 (ST_EOI): Likewise.
80 (MAX_TOKEN_SZ): Likewise.
81 (init_pseudoc_lex): New function.
82 (md_begin): Call init_pseudoc_lex.
83 (valid_expr): New function.
84 (build_bpf_non_generic_load): Likewise.
85 (build_bpf_atomic_insn): Likewise.
86 (build_bpf_jmp_insn): Likewise.
87 (build_bpf_arithm_insn): Likewise.
88 (build_bpf_endianness): Likewise.
89 (build_bpf_load_store_insn): Likewise.
90 (look_for_reserved_word): Likewise.
91 (is_register): Likewise.
92 (is_cast): Likewise.
93 (get_token): Likewise.
94 (bpf_pseudoc_to_normal_syntax): Likewise.
95 (md_assemble): Try pseudo-C syntax if an instruction cannot be
96 parsed.
97
a02676b7 982023-04-18 mengqinggang <mengqinggang@loongson.cn>
99
100 * config/tc-loongarch.c (loongarch_fix_adjustable): Symbols with
101 GOT relocatios do not fix adjustbale.
102 * testsuite/gas/loongarch/macro_op_large_abs.d: Regenerated.
103 * testsuite/gas/loongarch/macro_op_large_pc.d: Regenerated.
104
01996a7a
TK
1052023-04-18 Thomas Koenig <tkoenig@netcologne.de>
106
107 * doc/internals.texi (Relaxing with a table): Describe handling of
108 opcodes for relaxation a bit better.
109
bd6750f0
CZ
1102023-04-13 Claudiu Zissulescu <claziss@synopsys.com>
111
112 * testsuite/gas/cfi/cfi-arc-1.s: Use baseline instructions.
113 * testsuite/gas/cfi/cfi-arc-1.d: Update matching patterns.
114
3b637883
CZ
1152023-04-13 Claudiu Zissulescu <claziss@synopsys.com>
116
117 * testsuite/gas/arc/dsp.s: Remove unimplemented dsp instructions.
118 * testsuite/gas/arc/dsp.d: Update the test.
119
2dd1c6e8
NC
1202023-03-14 Nick Clifton <nickc@redhat.com>
121
122 PR 30206
123 * doc/as.texi (Pseudo Ops): Document that data directives such as
124 .byte and .int are not intended for encoding instructions.
125
31f2faf5
RB
1262023-02-28 Richard Ball <richard.ball@arm.com>
127
128 * testsuite/gas/aarch64/mec-invalid.d: New test.
129 * testsuite/gas/aarch64/mec-invalid.l: New test.
130 * testsuite/gas/aarch64/mec-invalid.s: New test.
131 * testsuite/gas/aarch64/mec.d: New test.
132 * testsuite/gas/aarch64/mec.s: New test.
133
8034b0ba
BM
1342023-02-27 Benson Muite <benson_muite@emailplus.org>
135
136 PR 28909
137 * doc/local.mk (asconfig.texi): Use "cp -p" to preserve
138 timestamps.
139 * Makefile.in: Regenerate.
140
4788abde
NC
1412023-02-01 Nick Clifton <nickc@redhat.com>
142
143 * dwarf2dbg.c (emit_inc_line_addr): Use unsigned constants when
144 checking addr_delta.
145
2e175383
FC
1462023-01-20 Frederic Cambus <fred@statdns.com>
147
148 * configure.tgt (arm-*-openbsd*): Add target.
149
69373ba1
NC
1502023-01-16 Nick Clifton <nickc@redhat.com>
151
152 * po/ru.po: Updated Russian translation.
153
e8b4b7b2
NC
1542023-01-03 Nick Clifton <nickc@redhat.com>
155
156 PR 29952
157 * config/tc-i386.c (md_assemble): Avoid constructing translatable
158 strings.
159
11982f9f
NC
1602023-01-03 Nick Clifton <nickc@redhat.com>
161
162 * po/fr.po: Updated French translation.
163 * po/uk.po: Updated Ukrainian translation.
164
a72b0718
NC
1652022-12-31 Nick Clifton <nickc@redhat.com>
166
167 * 2.40 branch created.
168
1a7e622b
NC
1692022-11-21 Nick Clifton <nickc@redhat.com>
170
171 PR 29764
172 * testsuite/gas/arm/cpu-cortex-a76ae.d: Add arm prefix to the -m
173 option passed to objdump.
174 * testsuite/gas/arm/cpu-cortex-a77.d: Likewise.
175 * testsuite/gas/aarch64/cpu-cortex-a76ae.d: Add aarch64 prefix to
176 the -m option passed to objdump.
177 * testsuite/gas/aarch64/cpu-cortex-a77.d: Likewise.
178
de1fbe78
YS
1792022-10-31 Nick Clifton <nickc@redhat.com>
180
181 * testsuite/gas/rx/mvtacgu.d: Update expected disassembly.
182
029b1ee8
NC
1832022-10-11 Nick Clifton <nickc@redhat.com>
184
185 * symbols.c (S_GET_VALUE): If the unresolved symbol is the fake
186 label provide a more helpful error message to the user.
12509439
NC
187 (S_GET_VALUE_WHERE): Like S_GET_VALUE, but includes a file/line
188 number for error reporting purposes.
189 * symbols.h (S_GET_VALUE_WHERE): Prototype.
190 * write.c (fixup_segment): Use S_GET_VALUE_WHERE.
029b1ee8 191
7ebd68d1
NC
1922022-09-28 Nick Clifton <nickc@redhat.com>
193
194 PR 29623
195 * as.c (show_usage): Document the --dump-config,
196 --gdwarf-cie-version, --hash-size, --multibyte-handling,
197 and --reduce-memory-overheads options.
198 * config/tc-i386.c (md_show_usage): Document the -O option.
199 * doc/as.texi: Document the --dump-config, --emulation,
200 --hash-size, and --reduce-memory-overheads options.
201
0ee31dff
NC
2022022-09-08 Nick Clifton <nickc@redhat.com>
203
204 PR 29559
205 * dwarf2dbg.c (out_debug_info): Place DW_TAG_unspecified_type at
206 the end of the list of children, not at the start of the CU
207 information.
208 * testsuite/gas/elf/dwarf-3-func.d: Update expected output.
209 * testsuite/gas/elf/dwarf-5-func-global.d: Likewise.
210 * testsuite/gas/elf/dwarf-5-func-local.d: Likewise.
211 * testsuite/gas/elf/dwarf-5-func.d: Likewise.
212
6472b230
FC
2132022-08-31 Frederic Cambus <fred@statdns.com>
214
215 * configure.tgt (aarch64*-*-openbsd*): Add target.
216
6f4eb56e
NC
2172022-08-30 Nick Clifton <nickc@redhat.com>
218
219 PR 29494
220 * testsuite/gas/arm/pr29494.s: New test source file.
221 * testsuite/gas/arm/pr29494.d: New test driver.
222
5578fbf6
NC
2232022-08-25 Nick Clifton <nickc@redhat.com>
224
225 PR 29517
226 * dwarf2dbg.c (GAS_ABBREV_COMP_UNIT): New defined constant.
227 (GAS_ABBREV_SUBPROG): New defined constant.
228 (GAS_ABBREV_NO_TYPE): New defined constant.
229 (out_debug_abbrev): Use the new defined constants when emitting
230 abbreviation numbers. Generate an abbreviation for an unspecified
231 type.
232 (out_debug_info): Use the new defined constants when referring to
233 abbreviations. Generate a use of the no_type abbreviation.
234 Reference the use when generating DIEs for functions.
235 * testsuite/gas/elf/dwarf-3-func.d: Update to allow for newly
236 extended output from the assembler.
237 * testsuite/gas/elf/dwarf-5-func-global.d: Likewise.
238 * testsuite/gas/elf/dwarf-5-func-local.d: Likewise.
239 * testsuite/gas/elf/dwarf-5-func.d: Likewise.
240
e8f20526
NC
2412022-08-25 Nick Clifton <nickc@redhat.com>
242
243 PR 29519
244 * config/tc-aarch64.c (s_unreq): Use find_end_of_line().
245 (s_aarch64_cpu): Likewise.
246 (s_aarch64_arch): Likewise.
247 (s_aarch64_arch_extension): Likewise.
248 * testsuite/gas/aarch64/pr29519.d: New test driver file.
249 * testsuite/gas/aarch64/pr29519.s: New test source file.
250
d7872ebb
TO
2512022-08-08 Tsukasa OI <research_trasio@irq.a4lg.com>
252
253 * config/obj-macho.c (obj_mach_o_get_section_names): Wrap two
254 string literals within with gettext macro.
255
5858ac62
NC
2562022-08-05 Nick Clifton <nickc@redhat.com>
257
258 PR 29447
259 * read.c (read_symbol_name): Pass 0 as the length parameter when
260 invoking mbstowc in order to check the validity of a wide string.
261
51542162
CZ
2622022-07-18 Claudiu Zissulescu <claziss@synopsys.com>
263
264 * config/tc-arc.c (md_assembly): Update strspn string with the
265 missing ciphers.
266
0bd09323
NC
2672022-07-08 Nick Clifton <nickc@redhat.com>
268
269 * 2.39 branch created.
270
320f4209
VDN
2712022-05-18 Victor Do Nascimento <victor.donascimento@arm.com>
272
273 * config/tc-arm.c (parse_reg_list): Add handling of mixed register
274 types.
275 (reg_names): Enumerate pseudoregister according to mapped physical
276 register number.
277 (s_arm_unwind_save_pseudo): Modify function signature.
278 (s_arm_unwind_save_core): Likewise.
279 (s_arm_unwind_save_mixed): New function.
280 (s_arm_unwind_save): Generate register list mask to pass to nested
281 functions.
282 * testsuite/gas/arm/unwind-pacbti-m.s: Expand test for mixed
283 register type lists.
284 * testsuite/gas/arm/unwind-pacbti-m.d: Likewise.
285 * testsuite/gas/arm/unwind-pacbti-m-readelf.d: Likewise.
286
145667f8
MH
2872022-04-07 Mark Harmstone <mark@harmstone.com>
288
289 * config/tc-i386.c (pe_directive_secidx): New function.
290 (md_pseudo_table): Add support for secidx.
291 (x86_cons_fix_new): Likewise.
292 (tc_gen_reloc): Likewise.
293 * expr.c (op_rank): Add O_secidx.
294 * expr.h (operatorT): Likewise.
295 * symbols.c (resolve_symbol_value): Add support for O_secidx.
296 * testsuite/gas/i386/secidx.s: New test source file.
297 * testsuite/gas/i386/secidx.d: New test driver file.
298 * testsuite/gas/i386/i386.exp: Run new test.
299
69341966
AK
3002022-04-07 Andreas Krebbel <krebbel@linux.ibm.com>
301
302 * config/tc-s390.c (s390_parse_cpu): Add z16 as alternate CPU
303 name.
304 * doc/as.texi: Add z16 and arch14 to CPU string list.
305 * doc/c-s390.texi: Add z16 to CPU string list.
306
19c26da6
NC
3072022-04-06 Nick Clifton <nickc@redhat.com>
308
309 PR 28981
310 * testsuite/gas/elf/dwarf-5-irp.d: Update expected output.
311
a58b0053
NC
3122022-03-21 Nick Clifton <nickc@redhat.com>
313
314 PR 28791
315 * config/tc-z80.c (emit_data_val): Do not warn about overlarge
316 constants generated by bit manipulation operators.
317 * testsuite/gas/z80/pr28791.s: New test source file.
318 * testsuite/gas/z80/pr28791.d: New test driver file.
319
2f49159c
NC
3202022-01-28 Nick Clifton <nickc@redhat.com>
321
322 * po/fr.po: Updated French translation.
323
5fe73d46
NC
3242022-01-24 Nick Clifton <nickc@redhat.com>
325
326 * po/uk.po: Updated Ukranian translation.
327
f908e960
NC
3282022-01-22 Nick Clifton <nickc@redhat.com>
329
330 * configure: Regenerate.
331 * po/gas.pot: Regenerate.
332
a74e1cb3
NC
3332022-01-22 Nick Clifton <nickc@redhat.com>
334
335 * 2.38 release branch created.
336
6c037fdb
NC
3372022-01-17 Nick Clifton <nickc@redhat.com>
338
339 * Makefile.in: Regenerate.
340 * po/gas.pot: Regenerate.
341
1adce770
SB
3422022-01-17 Sergey Belyashov <sergey.belyashov@gmail.com>
343
344 PR 28762
345 * app.c (do_scrub_chars): Correct handling when the symbol is not 'af'.
346
f3be70df
NC
3472021-12-16 Nick Clifton <nickc@redhat.com>
348
349 PR 28686
350 * config/tc-avr.h (tc_fix_adjustable): Define.
351 * config/tc-avr.c (avr_fix_adjustable): New function.
352 * testsuite/gas/all/gas.exp: Skip tests that need adjustable fixups.
353 * testsuite/gas/elf/elf.exp: Likewise.
354 * testsuite/gas/avr/diffreloc_withrelax.d: Adjust expected output.
355 * testsuite/gas/avr/pc-relative-reloc.d: Adjust expected output.
356
4780e5e4
TV
3572021-11-26 Tom de Vries <tdevries@suse.de>
358
359 PR 28629
360 * dwarf2dbg.c (out_dir_and_file_list): When copying file 1 to file 0,
361 also copy dir and md5 fields.
362 * testsuite/gas/i386/dwarf5-line-4.d: Adjust expected output.
363
578c64a4
NC
3642021-11-18 Nick Clifton <nickc@redhat.com>
365
366 * as.c (parse_args): Add support for --multibyte-handling.
367 * as.h (multibyte_handling): Declare.
368 * app.c (scan_for_multibyte_characters): New function.
369 (do_scrub_chars): Call the new function if multibyte warning is
370 enabled.
371 * input-scrub,c (input_scrub_next_buffer): Call the multibyte
372 scanning function if multibyte warnings are enabled.
373 * symbols.c (struct symbol_flags): Add multibyte_warned bit.
374 (symbol_init): Call the multibyte scanning function if multibyte
375 symbol warnings are enabled.
376 (S_SET_SEGMENT): Likewise.
377 * NEWS: Mention the new feature.
378 * doc/as.texi: Document the new feature.
379 * testsuite/gas/all/multibyte.s: New test source file.
380 * testsuite/gas/all/multibyte1.d: New test driver file.
381 * testsuite/gas/all/multibyte1.l: New test expected output.
382 * testsuite/gas/all/multibyte2.d: New test driver file.
383 * testsuite/gas/all/multibyte2.l: New test expected output.
384 * testsuite/gas/all/gas.exp: Run the new tests.
385
f9402cca
EB
3862021-11-15 Eric Botcazou <ebotcazou@adacore.com>
387
388 * doc/as.texi (File): Update description of .file 0 directive.
389 * dwarf2dbg.c (get_directory_table_entry): Remove obsolete comment
390 and pass file0_dirname in recursive call.
391 (allocate_filename_to_slot): Deal with a full path in the file name
392 if the index number is 0.
393 * testsuite/gas/elf/dwarf-5-file0.d: Fix pasto.
394 * testsuite/gas/elf/dwarf-5-file0-2.d: Likewise.
395 * testsuite/gas/elf/dwarf-5-file0-3.d: New file.
396 * testsuite/gas/elf/dwarf-5-file0-3.s: Likewise.
397 * testsuite/gas/elf/elf.exp: Run dwarf-5-file0-3.
398
d6dc01ba
MK
3992021-10-28 Markus Klein <markus.klein@sma.de>
400
401 PR 28436
402 * config/tc-arm.c (do_vfp_nsyn_push_pop_check): New function.
403 (do_vfp_nsyn_pop): Use the new function.
404 (do_vfp_nsyn_push): Use the new function.
405 * testsuite/gas/arm/v8_1m-mve.s: Add new instructions.
406 * testsuite/gas/arm/v8_1m-mve.d: Updated expected disassembly.
407
b9004024
NA
4082021-09-27 Nick Alcock <nick.alcock@oracle.com>
409
410 * configure: Regenerate.
411
4d5d5d46
PB
4122021-09-25 Peter Bergner <bergner@linux.ibm.com>
413
414 * testsuite/gas/ppc/power5.s: New test.
415 * testsuite/gas/ppc/power5.d: Likewise.
416 * testsuite/gas/ppc/ppc.exp: Run it.
417 * testsuite/gas/ppc/power7.s: Remove tests for mfppr, mfppr32, mtppr
418 and mtppr32.
419 * testsuite/gas/ppc/power7.d: Likewise.
420
5a2947cf
JB
4212021-09-13 Jan Beulich <jbeulich@suse.com>
422
423 * config/tc-ia64.c (cross_section): Use obj_elf_section_name to
424 parse the section name.
16849591 425 * config/tc-mips.c (s_change_section): Likewise.
5a2947cf 426
718aefcf
NC
4272021-09-02 Nick Clifton <nickc@redhat.com>
428
429 PR 28292
430 * config/tc-v850.c (handle_lo16): Also accept
431 BFD_RELOC_V850_LO16_SPLIT_OFFSET.
432 * testsuite/gas/v850/split-lo16.s: Add extra line.
433 * testsuite/gas/v850/split-lo16.d: Update expected disassembly.
434
12612c24
DG
4352021-08-11 Darius Galis <darius.galis@cyberthorstudios.com>
436
437 * config/rx-parse.y (DECNT): Fixed typo.
438 * testsuite/gas/rx/dpopm.sm (DECNT): Fixed typo.
439 * testsuite/gas/rx/dpushm.sm (DECNT): Fixed typo.
440 * testsuite/gas/rx/macros.inc (DECNT): Fixed typo.
441
5393ca68
NC
4422021-08-11 Nick Clifton <nickc@redhat.com>
443
444 PR 28215
445 * config/tc-csky.c (md_apply_fix): Correctly handle a fixup that
446 involves an overlarge constant.
447
d86d1fc7
MJ
4482021-08-11 Matt Jacobson <mhjacobson@me.com>
449
450 * config/tc-avr.c (enum options): Add option flag.
451 (struct option): Add option -mno-dollar-line-separator.
452 (md_parse_option): Adjust treatment of $ when option is present.
453 (usage): Mention the new option.
454 * config/tc-avr.h: Use avr_line_separator_chars.
455 * doc/c-avr.texi: Document the new option.
456
bda3d9fb
NC
4572021-08-11 Nick Clifton <nickc@redhat.com>
458
459 * config/tc-tic4x.c (tic4x_gen_to_words): Fix typo.
460
3ee0cd9e
NC
4612021-08-10 Nick Clifton <nickc@redhat.com>
462
463 * po/ru.po: Updated Russian translation.
464
3417bfca
NC
4652021-08-09 Nick Clifton <nickc@redhat.com>
466
467 * dwarf2dbg.c (get_directory_table_entry): Ensure that dir[0]
468 contains current working directory.
469 (out_dir_and_file_list): Likewise.
470 * testsuite/gas/elf/dwarf-5-dir0.s: New test source file.
471 * testsuite/gas/elf/dwarf-5-dir0.d: New test driver.
472 * testsuite/gas/elf/elf.exp: Run the new test.
473 * testsuite/gas/elf/dwarf-5-file0.d: Adjust expected output.
474 * testsuite/gas/i386/dwarf5-line-1.d: Likewise.
475 * testsuite/gas/i386/dwarf5-line-2.d: Likewise.
476
9cce9fab
AM
4772021-07-14 Alan Modra <amodra@gmail.com>
478
479 * write.c (TC_VALIDATE_FIX_SUB): Default to 0.
480 * config/tc-hppa.h (TC_VALIDATE_FIX_SUB): Define.
481 * config/tc-microblaze.h (TC_VALIDATE_FIX_SUB): Define.
482 * config/tc-alpha.h (TC_VALIDATE_FIX_SUB): Define for ECOFF.
483 * config/tc-ppc.h (TC_VALIDATE_FIX_SUB): Don't define for ELF.
484 Do define for XCOFF.
485
51d29b8c
CC
4862021-07-14 Clément Chigot <clement.chigot@atos.net>
487
488 * config/tc-ppc.c (ppc_change_debug_section): Update to
489 match new name's field.
490
ef744040
T
4912021-07-12 Tucker <tuckkern@sourceware@gmail.com>
492
493 PR 28054
494 * config/obj-elf.c (obj_elf_change_section): Set the
495 SEF_ELF_OCTETS flag on debug sections.
496
b180e829
AK
4972021-06-07 Andreas Krebbel <krebbel@linux.ibm.com>
498
499 * testsuite/gas/s390/zarch-arch14.d: Add qpaci.
500 * testsuite/gas/s390/zarch-arch14.s: Add qpaci.
501
ffa5352c
NC
5022021-07-07 Nick Clifton <nickc@redhat.com>
503
504 PR 28051
505 * config/tc-i386.c (offset_in_range): Reformat error messages in
506 order to fix problems when translating.
507 (md_assemble): Likewise.
508 * messages.c (as_internal_value_out_of_range): Likewise.
509 * read.c (emit_expr_with_reloc): Likewise.
510 * testsuite/gas/all/overflow.l Change expected output format.
511 * po/gas.pot: Regenerate.
512
346d80ef
NC
5132021-07-03 Nick Clifton <nickc@redhat.com>
514
515 * configure: Regenerate.
516 * po/gas.pot: Regenerate.
517
51419248
NC
5182021-07-03 Nick Clifton <nickc@redhat.com>
519
520 * 2.37 release branch created.
521
62194b63
AM
5222021-07-02 Alan Modra <amodra@gmail.com>
523
524 * config/tc-nds32.c (nds32_keyword_gpr): Don't declare.
525 (md_begin): Constify k.
526
af82b082
NC
5272021-07-02 Nick Clifton <nickc@redhat.com>
528
529 * config/tc-nds32.c: Change all references of keyword_gpr to
530 nds32_keyword_gpr.
531
52b83874
MF
5322021-07-01 Mike Frysinger <vapier@gentoo.org>
533
534 * config/tc-microblaze.c (md_begin): Make opcode const. Rename
535 opcodes to microblaze_opcodes.
536
6c2ede01
MF
5372021-07-01 Mike Frysinger <vapier@gentoo.org>
538
539 * config/tc-aarch64.c (struct templates): Make opcode const.
540 (md_assemble): Likewise.
541 (fill_instruction_hash_table): Likewise.
542
1daf786b
CC
5432021-06-24 Clément Chigot <clement.chigot@atos.net>
544
545 * config/tc-ppc.c (md_assemble): Update ppc_current_csect
546 alignment when finding prefixed instructions.
547
ded5cb94
AM
5482021-06-22 Alan Modra <amodra@gmail.com>
549
550 * config/tc-pj.c (md_apply_fix): Apply PJ_CODE_REL32 relocs.
551 * testsuite/gas/pj/ops.s: Update jsr, ret, getstatic,
552 putstatic, getfield, putfield, invokevirtual, invokespecial,
553 invokestatic, invokeinterface, goto_w, jsr_w assembly. Delete
554 version 1 picojava opcodes.
555 * testsuite/gas/pj/ops.d: Match expected output.
556
03e689aa
AM
5572021-06-19 Alan Modra <amodra@gmail.com>
558
559 * config/tc-z80.c (signed_overflow, unsigned_overflow): Avoid UB.
560
43f71bc5
AM
5612021-06-19 Alan Modra <amodra@gmail.com>
562
563 * testsuite/gas/ppc/raw.s: Use 0 as pli constant.
564 * testsuite/gas/ppc/raw.d: Update to suit.
565
162c6aef
JB
5662021-06-18 Jan Beulich <jbeulich@suse.com>
567
568 * expr.c (symbol_lookup_or_make): New.
569 (operand): Use it.
570 * testsuite/gas/elf/startof.s, testsuite/gas/elf/startof.d: New.
571 * testsuite/gas/elf/elf.exp: Run new test.
572
96cbfd9f
NC
5732021-06-17 Nick Clifton <nickc@redhat.com>
574
575 PR 27904
576 * config/tc-aarch64.c (ldst_lo12_determine_real_reloc_type):
577 Generate a syntax error message if the reloc qualifier does not
578 match the instruction's size.
579
bcf84703
CC
5802021-06-17 Clément Chigot <clement.chigot@atos.net>
581
582 * config/tc-ppc.c (md_begin): Create bss section with dummy
583 symbol.
584 (ppc_frob_symbol): Output XTY_CM for bss csects.
585 (ppc_fix_adjustable): Adjust condition to avoid bss csects.
586
3478a63d
CC
5872021-06-17 Clément Chigot <clement.chigot@atos.net>
588
589 * config/tc-ppc.c (md_apply_fix): Adjust addend to nullify
590 section contents for BFD_RELOC_PPC_TLSM or
591 BFD_RELOC_PPC64_TLSM.
592 * testsuite/gas/ppc/xcoff-tlsm-32.d: New test.
593 * testsuite/gas/ppc/xcoff-tlsm-64.d: New test.
594 * testsuite/gas/ppc/xcoff-tlsm.s: New test.
595 * testsuite/gas/ppc/aix.exp: Run new tests.
596
bb32eac5
JB
5972021-06-16 Jan Beulich <jbeulich@suse.com>
598
599 * read.c (parse_one_float): New.
600 (s_float_space, float_cons): Use it.
601 * testsuite/gas/all/float.s: Add .dc.*, .dcb.*, and .ds.* cases.
602
4504a634
JB
6032021-06-16 Jan Beulich <jbeulich@suse.com>
604
605 * read.c (emit_expr_with_reloc): Adjust overflow check. Drop
606 hibit local variable.
607 * write.c (fixup_segment): Differentiate signed and non-signed
608 relocs in overflow check.
609 * testsuite/gas/all/overflow.s,
610 testsuite/gas/all/overflow.l: New.
611 * testsuite/gas/all/gas.exp: Run new test.
612
b00af7c8
JB
6132021-06-15 Jan Beulich <jbeulich@suse.com>
614
615 * config/tc-i386.c (md_show_usage): Split ELF and PE/COFF parts
616 of object format controlling option. Add Mach-O to the latter.
617 * testsuite/gas/i386/i386.exp (gas_bfd64_check): Adjust
618 accordingly.
619
2f2be86b
JB
6202021-06-15 Jan Beulich <jbeulich@suse.com>
621
622 * config/tc-i386.c (disp16, disp32, disp32s): Delete.
623 (optimize_disp, i386_finalize_displacement): Use
624 operand_type_and_not.
625 (build_modrm_byte): Likewise. Eliminate local variable newdisp.
626
64965897
JB
6272021-06-15 Jan Beulich <jbeulich@suse.com>
628
629 * config/tc-i386.c (offset_in_range): Bail early when mask would
630 cover all bits anyway.
631
a50187b2
JB
6322021-06-15 Jan Beulich <jbeulich@suse.com>
633
634 * config/tc-i386.c (optimize_disp): Generalize disp32 part of
635 the BFD64-only logic to also apply to non-64-bit code.
636 (i386_finalize_displacement): Use extend_to_32bit_address for
637 non-64-bit code. Drop now redundant O_constant checks.
638 * testsuite/gas/i386/disp-imm-32.s,
639 testsuite/gas/i386/disp-imm-32.d: New.
640 * testsuite/gas/i386/i386.exp: Run new test.
641
86f04146
JB
6422021-06-15 Jan Beulich <jbeulich@suse.com>
643
644 * config/tc-i386.c (offset_in_range): Replace uses of
645 bfd_sprintf_vma.
646
4fe51f7d
JB
6472021-06-15 Jan Beulich <jbeulich@suse.com>
648
649 * config/tc-i386.c (offset_in_range): Adjust conditional.
650 * testsuite/gas/i386/disp-imm-16.s,
651 testsuite/gas/i386/disp-imm-16.l,
652 testsuite/gas/i386/disp-imm-64.s,
653 testsuite/gas/i386/disp-imm-64.l: New.
654 * testsuite/gas/i386/i386.exp: Run new tests.
655
cc0f9635
JB
6562021-06-15 Jan Beulich <jbeulich@suse.com>
657
658 * config/tc-i386.c (i386_att_operand): Re-introduce (now
659 properly named) parens_not_balanced.
660 * testsuite/gas/i386/sib.s: Add more cases.
661 * testsuite/gas/i386/sib.d, testsuite/gas/i386/sib-intel.d:
662 Adjust expectations.
663
987610f2
JB
6642021-06-14 Jan Beulich <jbeulich@suse.com>
665
666 * read.c (emit_expr_with_reloc): Fold three as_warn().
667
4981807e
JB
6682021-06-14 Jan Beulich <jbeulich@suse.com>
669
670 * doc/internals.texi (TC_ADDRESS_BYTES): Mention generic default.
671 * read.c (potable, cons_worker): Drop TC_ADDRESS_BYTES
672 conditional.
673
2748c1b1
L
6742021-06-11 H.J. Lu <hongjiu.lu@intel.com>
675
676 * config/tc-i386.c (x86_cons): Handle GOT/PLT relocations only
677 if needed.
678 * config/tc-i386.h (TC_PARSE_CONS_EXPRESSION): Always define.
679
28b2963f
NC
6802021-06-11 Nelson Chu <nelson.chu@sifive.com>
681
682 * config/tc-riscv.c (riscv_set_arch): Call riscv_set_rvc
683 and riscv_set_rve both for -march and elf attributes.
684 (riscv_after_parse_args): Likewise.
685
1db66fb6
JB
6862021-06-10 Jan Beulich <jbeulich@suse.com>
687
688 * config/tc-arm.c (do_bfloat_vfma): Rename index to idx.
689 (do_vusdot): Likewise.
690 (do_vsudot): Likewise.
691 (check_cde_operand): Likewise.
692 (do_vdot): Likewise.
693
e925962f
JB
6942021-06-10 Jan Beulich <jbeulich@suse.com>
695
696 * config/tc-arm.c (reg_expected_msgs): Add REG_TYPE_ZR entry.
697
7772f168
JB
6982021-06-10 Jan Beulich <jbeulich@suse.com>
699
700 * config/tc-i386.c (optimize_encoding): Suppress LEA conversion
701 when it would grow code size in 16-bit mode.
702 * testsuite/gas/i386/lea16-optimize.d: Adjust expectations.
703 * testsuite/gas/i386/lea16-optimize2.d: New.
704 * testsuite/gas/i386/i386.exp: Run new test.
705
7c757f41
JB
7062021-06-08 Jan Beulich <jbeulich@suse.com>
707
708 * testsuite/gas/i386/quoted.d, testsuite/gas/i386/wrap32-text.d:
709 Adjust expectations.
710 * testsuite/gas/i386/wrap32-data.d: Likewise. Correct name.
711
7e96fb68
JB
7122021-06-08 Jan Beulich <jbeulich@suse.com>
713
714 * config/tc-i386.c (optimize_imm): Use fits_in_unsigned_word
715 and fits_in_unsigned_long.
716
cd613c1f
JB
7172021-06-08 Jan Beulich <jbeulich@suse.com>
718
719 * config/tc-i386.c (optimize_disp): Use fits_in_unsigned_word
720 and fits_in_unsigned_long. Combine if()s.
721
77c59789
JB
7222021-06-08 Jan Beulich <jbeulich@suse.com>
723
724 * config/tc-i386.c (optimize_disp): Write back updated value.
725 * testsuite/gas/i386/lea16.s, testsuite/gas/i386/lea64.s: New
726 cases.
727 * testsuite/gas/i386/lea16-optimize.d,
728 testsuite/gas/i386/lea64.d, testsuite/gas/i386/lea64-optimize.d:
729 Adjust expectations.
730 * testsuite/gas/i386/lea16.d: New.
731 * testsuite/gas/i386/i386.exp: Run new test.
732
f185acdd
JB
7332021-06-08 Jan Beulich <jbeulich@suse.com>
734
735 * config/tc-i386.c (optimize_disp): Drop redundant masking.
736 Re-order.
737
6b5ba0d4
JB
7382021-06-07 Jan Beulich <jbeulich@suse.com>
739
740 * config/tc-i386.c (i386_att_operand): Re-write handling of
741 vector operations operand suffix.
742 * testsuite/gas/i386/unary.s: Add more cases.
743 * testsuite/gas/i386/unary.d: Adjust expectations.
744
e68c3d59
JB
7452021-06-07 Jan Beulich <jbeulich@suse.com>
746
747 * config/tc-i386.c (parse_operands): Reduce scope of
748 paren_not_balanced, to match the new in_quotes. Skip over quoted
749 regions of operands.
750 (i386_att_operand): Remove (mis-named) parens_balanced. Respect
751 double quote.
752 * testsuite/gas/i386/unary.s: Add more cases.
753 * testsuite/gas/i386/unary.d: Adjust expectations.
754
014fbcda
JB
7552021-06-07 Jan Beulich <jbeulich@suse.com>
756
757 * config/tc-i386.c (digit_chars, is_digit_char): Delete.
758 (md_begin): Fold digit and lower-case letter handling.
759 (starts_memory_operand): Permit more characters.
760 * testsuite/gas/i386/unary.s, testsuite/gas/i386/unary.d: New.
761 * testsuite/gas/i386/i386.exp: Run new test.
762
9d299bea
JB
7632021-06-07 Jan Beulich <jbeulich@suse.com>
764
765 * config/tc-i386.c (starts_memory_operand): New.
766 (i386_att_operand): Use it.
767 * testsuite/gas/i386/quoted.s, testsuite/gas/i386/quoted.d: New.
768 * testsuite/gas/i386/i386.exp: Run new test.
769
c8d541e2
JB
7702021-06-07 Jan Beulich <jbeulich@suse.com>
771
772 * config/tc-i386.c (i386_att_operand): Flip checking for '*' and
773 start-of-expression. Don't permit '*' when one was already seen.
774
98ff9f1c
JB
7752021-06-07 Jan Beulich <jbeulich@suse.com>
776
777 * config/tc-i386.c (parse_operands): Don't check for matched
778 square brackets.
779
f70c6814
JB
7802021-06-07 Jan Beulich <jbeulich@suse.com>
781
782 * config/tc-i386.c (check_VecOperations): Remove 2nd parameter.
783 (i386_att_operand): Adjust calls to check_VecOperations.
784 * config/tc-i386-intel.c (i386_intel_operand): Likewise.
785
4e014f6a
JB
7862021-06-07 Jan Beulich <jbeulich@suse.com>
787
788 * config/tc-i386.c (i386_immediate): Don't call check_VecOperations.
789
a442cac5
JB
7902021-06-07 Jan Beulich <jbeulich@suse.com>
791
792 * config/tc-i386.c (extend_to_32bit_address): New.
793 (x86_cons, i386_finalize_immediate, md_apply_fix): Use it.
794 (signed_cons): Use object_64bit.
795 * testsuite/gas/i386/wrap32.s, testsuite/gas/i386/wrap32-data.d,
796 testsuite/gas/i386/wrap32-text.d: New.
797 * testsuite/gas/i386/i386.exp: Run new tests.
798
a38d1396
AM
7992021-06-03 Alan Modra <amodra@gmail.com>
800
801 PR 1202
802 * testsuite/gas/mcore/allinsn.d: Correct loopt expected output.
803
1ff6a3b8
AM
8042021-05-29 Alan Modra <amodra@gmail.com>
805
806 * testsuite/gas/ppc/raw.s,
807 * testsuite/gas/ppc/raw.d: New test.
808 * testsuite/gas/ppc/ppc.exp: Run it.
809
28b7d4f1
MR
8102021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
811
812 * testsuite/gas/mips/c0.d: New test.
813 * testsuite/gas/mips/mips1@c0.d: New test.
814 * testsuite/gas/mips/mips2@c0.d: New test.
815 * testsuite/gas/mips/mips3@c0.d: New test.
816 * testsuite/gas/mips/mips4@c0.d: New test.
817 * testsuite/gas/mips/mips5@c0.d: New test.
818 * testsuite/gas/mips/mips32@c0.d: New test.
819 * testsuite/gas/mips/mips64@c0.d: New test.
820 * testsuite/gas/mips/r3000@c0.d: New test.
821 * testsuite/gas/mips/r3900@c0.d: New test.
822 * testsuite/gas/mips/r4000@c0.d: New test.
823 * testsuite/gas/mips/vr5400@c0.d: New test.
824 * testsuite/gas/mips/r5900@c0.d: New test.
825 * testsuite/gas/mips/sb1@c0.d: New test.
826 * testsuite/gas/mips/interaptiv-mr2@c0.d: New test.
827 * testsuite/gas/mips/octeon@c0.d: New test.
828 * testsuite/gas/mips/xlr@c0.d: New test.
829 * testsuite/gas/mips/c1.d: New test.
830 * testsuite/gas/mips/mips1@c1.d: New test.
831 * testsuite/gas/mips/mips2@c1.d: New test.
832 * testsuite/gas/mips/mips3@c1.d: New test.
833 * testsuite/gas/mips/mips4@c1.d: New test.
834 * testsuite/gas/mips/mips5@c1.d: New test.
835 * testsuite/gas/mips/mips32@c1.d: New test.
836 * testsuite/gas/mips/mips64@c1.d: New test.
837 * testsuite/gas/mips/mipsr6@c1.d: New test.
838 * testsuite/gas/mips/r3000@c1.d: New test.
839 * testsuite/gas/mips/r3900@c1.d: New test.
840 * testsuite/gas/mips/r4000@c1.d: New test.
841 * testsuite/gas/mips/vr5400@c1.d: New test.
842 * testsuite/gas/mips/r5900@c1.d: New test.
843 * testsuite/gas/mips/sb1@c1.d: New test.
844 * testsuite/gas/mips/interaptiv-mr2@c1.d: New test.
845 * testsuite/gas/mips/octeon@c1.d: New test.
846 * testsuite/gas/mips/xlr@c1.d: New test.
847 * testsuite/gas/mips/c2.d: New test.
848 * testsuite/gas/mips/vr5400@c2.d: New test.
849 * testsuite/gas/mips/r5900@c2.d: New test.
850 * testsuite/gas/mips/octeon@c2.d: New test.
851 * testsuite/gas/mips/c3.d: New test.
852 * testsuite/gas/mips/mips1@c3.d: New test.
853 * testsuite/gas/mips/mips2@c3.d: New test.
854 * testsuite/gas/mips/mips32@c3.d: New test.
855 * testsuite/gas/mips/r3000@c3.d: New test.
856 * testsuite/gas/mips/r3900@c3.d: New test.
857 * testsuite/gas/mips/c0.l: New test stderr output.
858 * testsuite/gas/mips/c2.l: New test stderr output.
859 * testsuite/gas/mips/c3.l: New test stderr output.
860 * testsuite/gas/mips/c0.s: New test source.
861 * testsuite/gas/mips/c1.s: New test source.
862 * testsuite/gas/mips/c2.s: New test source.
863 * testsuite/gas/mips/c3.s: New test source.
864 * testsuite/gas/mips/mips.exp: Run the new tests.
865
4c67fb41
MR
8662021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
867
868 * testsuite/gas/mips/mips.exp: Run RFE test across all ISAs.
869 * testsuite/gas/mips/rfe.d: Update for ISA exclusions.
870 * testsuite/gas/mips/mips1@rfe.d: New test.
871 * testsuite/gas/mips/mips2@rfe.d: New test.
872 * testsuite/gas/mips/r3000@rfe.d: New test.
873 * testsuite/gas/mips/r3900@rfe.d: New test.
874 * testsuite/gas/mips/rfe.l: New test stderr output.
875
2d5e2889
MR
8762021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
877
878 * testsuite/gas/mips/mips.exp: Run coprocessor tests across all
879 ISAs.
880 * testsuite/gas/mips/cp0b.d: Update for ISA exclusions.
881 * testsuite/gas/mips/cp0bl.d: Update for ISA exclusions.
882 * testsuite/gas/mips/cp0c.d: Update for ISA exclusions.
883 * testsuite/gas/mips/cp0m.d: Update for ISA exclusions.
884 * testsuite/gas/mips/cp3.d: Update for ISA exclusions.
885 * testsuite/gas/mips/cp3b.d: Update for ISA exclusions.
886 * testsuite/gas/mips/cp3bl.d: Update for ISA exclusions.
887 * testsuite/gas/mips/cp3m.d: Update for ISA exclusions.
888 * testsuite/gas/mips/cp3d.d: Update for ISA exclusions.
889 * testsuite/gas/mips/mips1@cp0b.d: New test.
890 * testsuite/gas/mips/mips2@cp0b.d: New test.
891 * testsuite/gas/mips/mips3@cp0b.d: New test.
892 * testsuite/gas/mips/r3000@cp0b.d: New test.
893 * testsuite/gas/mips/r3900@cp0b.d: New test.
894 * testsuite/gas/mips/r4000@cp0b.d: New test.
895 * testsuite/gas/mips/r5900@cp0b.d: New test.
896 * testsuite/gas/mips/mips2@cp0bl.d: New test.
897 * testsuite/gas/mips/mips3@cp0bl.d: New test.
898 * testsuite/gas/mips/r3900@cp0bl.d: New test.
899 * testsuite/gas/mips/r4000@cp0bl.d: New test.
900 * testsuite/gas/mips/r5900@cp0bl.d: New test.
901 * testsuite/gas/mips/mips1@cp0c.d: New test.
902 * testsuite/gas/mips/mips2@cp0c.d: New test.
903 * testsuite/gas/mips/mips3@cp0c.d: New test.
904 * testsuite/gas/mips/mips4@cp0c.d: New test.
905 * testsuite/gas/mips/mips5@cp0c.d: New test.
906 * testsuite/gas/mips/r3000@cp0c.d: New test.
907 * testsuite/gas/mips/r3900@cp0c.d: New test.
908 * testsuite/gas/mips/r4000@cp0c.d: New test.
909 * testsuite/gas/mips/vr5400@cp0c.d: New test.
910 * testsuite/gas/mips/r5900@cp0c.d: New test.
911 * testsuite/gas/mips/mips1@cp0m.d: New test.
912 * testsuite/gas/mips/r3000@cp0m.d: New test.
913 * testsuite/gas/mips/octeon@cp2.d: New test.
914 * testsuite/gas/mips/mipsr6@cp2b.d: New test.
915 * testsuite/gas/mips/vr5400@cp2b.d: New test.
916 * testsuite/gas/mips/octeon@cp2b.d: New test.
917 * testsuite/gas/mips/mips1@cp2bl.d: New test.
918 * testsuite/gas/mips/mipsr6@cp2bl.d: New test.
919 * testsuite/gas/mips/r3000@cp2bl.d: New test.
920 * testsuite/gas/mips/vr5400@cp2bl.d: New test.
921 * testsuite/gas/mips/octeon@cp2bl.d: New test.
922 * testsuite/gas/mips/vr5400@cp2m.d: New test.
923 * testsuite/gas/mips/r5900@cp2m.d: New test.
924 * testsuite/gas/mips/octeon@cp2m.d: New test.
925 * testsuite/gas/mips/mips1@cp2d.d: New test.
926 * testsuite/gas/mips/r3000@cp2d.d: New test.
927 * testsuite/gas/mips/r3900@cp2d.d: New test.
928 * testsuite/gas/mips/vr5400@cp2d.d: New test.
929 * testsuite/gas/mips/r5900@cp2d.d: New test.
930 * testsuite/gas/mips/octeon@cp2d.d: New test.
931 * testsuite/gas/mips/mips1@cp2-64.d: New test.
932 * testsuite/gas/mips/mips2@cp2-64.d: New test.
933 * testsuite/gas/mips/mips32@cp2-64.d: New test.
934 * testsuite/gas/mips/mips32r2@cp2-64.d: New test.
935 * testsuite/gas/mips/mips32r3@cp2-64.d: New test.
936 * testsuite/gas/mips/mips32r5@cp2-64.d: New test.
937 * testsuite/gas/mips/mips32r6@cp2-64.d: New test.
938 * testsuite/gas/mips/r3000@cp2-64.d: New test.
939 * testsuite/gas/mips/r3900@cp2-64.d: New test.
940 * testsuite/gas/mips/interaptiv-mr2@cp2-64.d: New test.
941 * testsuite/gas/mips/mips1@cp3.d: New test.
942 * testsuite/gas/mips/mips2@cp3.d: New test.
943 * testsuite/gas/mips/mips32@cp3.d: New test.
944 * testsuite/gas/mips/r3000@cp3.d: New test.
945 * testsuite/gas/mips/r3900@cp3.d: New test.
946 * testsuite/gas/mips/mips1@cp3b.d: New test.
947 * testsuite/gas/mips/mips2@cp3b.d: New test.
948 * testsuite/gas/mips/mips32@cp3b.d: New test.
949 * testsuite/gas/mips/r3000@cp3b.d: New test.
950 * testsuite/gas/mips/r3900@cp3b.d: New test.
951 * testsuite/gas/mips/mips2@cp3bl.d: New test.
952 * testsuite/gas/mips/mips32@cp3bl.d: New test.
953 * testsuite/gas/mips/r3900@cp3bl.d: New test.
954 * testsuite/gas/mips/mips1@cp3m.d: New test.
955 * testsuite/gas/mips/mips2@cp3m.d: New test.
956 * testsuite/gas/mips/r3000@cp3m.d: New test.
957 * testsuite/gas/mips/r3900@cp3m.d: New test.
9cce9fab 958 * testsuite/gas/mips/mips2@cp3d.d: New test.
2d5e2889
MR
959 * testsuite/gas/mips/cp0b.l: New test stderr output.
960 * testsuite/gas/mips/cp0bl.l: New test stderr output.
961 * testsuite/gas/mips/cp0c.l: New test stderr output.
962 * testsuite/gas/mips/cp0m.l: New test stderr output.
963 * testsuite/gas/mips/cp2.l: New test stderr output.
964 * testsuite/gas/mips/cp2-64.l: New test stderr output.
965 * testsuite/gas/mips/cp2b.l: New test stderr output.
966 * testsuite/gas/mips/cp2bl.l: New test stderr output.
967 * testsuite/gas/mips/cp2m.l: New test stderr output.
968 * testsuite/gas/mips/cp2d.l: New test stderr output.
969 * testsuite/gas/mips/cp3.l: New test stderr output.
970 * testsuite/gas/mips/cp3b.l: New test stderr output.
971 * testsuite/gas/mips/cp3bl.l: New test stderr output.
972 * testsuite/gas/mips/cp3m.l: New test stderr output.
973 * testsuite/gas/mips/cp3d.l: New test stderr output.
974
9573a461
MR
9752021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
976
977 * testsuite/gas/mips/mips32@isa-override-1.d: Update for LDC3
978 instruction removal.
979 * testsuite/gas/mips/mips32r2@isa-override-1.d: Likewise.
980
270e2b7d
MR
9812021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
982
983 * testsuite/gas/mips/cp0b.d: New test.
984 * testsuite/gas/mips/cp0bl.d: New test.
985 * testsuite/gas/mips/cp2b.d: New test.
986 * testsuite/gas/mips/micromips@cp2b.d: New test.
987 * testsuite/gas/mips/cp2bl.d: New test.
988 * testsuite/gas/mips/micromips@cp2bl.d: New test.
989 * testsuite/gas/mips/cp3b.d: New test.
990 * testsuite/gas/mips/cp3bl.d: New test.
991 * testsuite/gas/mips/cp0b.s: New test source.
992 * testsuite/gas/mips/cp0bl.s: New test source.
993 * testsuite/gas/mips/cp2b.s: New test source.
994 * testsuite/gas/mips/cp2bl.s: New test source.
995 * testsuite/gas/mips/cp3b.s: New test source.
996 * testsuite/gas/mips/cp3bl.s: New test source.
997 * testsuite/gas/mips/mips.exp: Run the new tests.
998
b930964c
MR
9992021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1000
1001 * testsuite/gas/mips/rfe.d: New test.
1002 * testsuite/gas/mips/rfe.s: New test source.
1003 * testsuite/gas/mips/mips.exp: Run the new test.
1004
dd844468
MR
10052021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1006
1007 * testsuite/gas/mips/cp1-names-r3900.d: New test.
1008 * testsuite/gas/mips/mips.exp: Run the new test.
1009 * testsuite/gas/mips/branch-misc-3.d: Update disassembly
1010 according to changes to opcodes.
1011 * testsuite/gas/mips/cp1-names-r3000.d: Likewise.
1012 * testsuite/gas/mips/cp1-names-r4000.d: Likewise.
1013 * testsuite/gas/mips/relax-swap1-mips1.d: Likewise.
1014 * testsuite/gas/mips/relax-swap1-mips2.d: Likewise.
1015 * testsuite/gas/mips/trunc.d: Likewise.
1016
709aa065
MR
10172021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1018
1019 * testsuite/gas/mips/cp0c.d: New test.
1020 * testsuite/gas/mips/cp0m.d: New test.
1021 * testsuite/gas/mips/r3900@cp0m.d: New test.
1022 * testsuite/gas/mips/cp2.d: New test.
1023 * testsuite/gas/mips/micromips@cp2.d: New test.
1024 * testsuite/gas/mips/cp2m.d: New test.
1025 * testsuite/gas/mips/mipsr6@cp2m.d: New test.
1026 * testsuite/gas/mips/micromips@cp2m.d: New test.
1027 * testsuite/gas/mips/cp2d.d: New test.
1028 * testsuite/gas/mips/mipsr6@cp2d.d: New test.
1029 * testsuite/gas/mips/micromips@cp2d.d: New test.
1030 * testsuite/gas/mips/cp2-64.d: New test.
1031 * testsuite/gas/mips/micromips@cp2-64.d: New test.
1032 * testsuite/gas/mips/cp3.d: New test.
1033 * testsuite/gas/mips/cp3m.d: New test.
1034 * testsuite/gas/mips/cp3d.d: New test.
1035 * testsuite/gas/mips/cp0c.s: New test source.
1036 * testsuite/gas/mips/cp0m.s: New test source.
1037 * testsuite/gas/mips/cp2.s: New test source.
1038 * testsuite/gas/mips/cp2m.s: New test source.
1039 * testsuite/gas/mips/cp2d.s: New test source.
1040 * testsuite/gas/mips/cp2-64.s: New test source.
1041 * testsuite/gas/mips/cp3.s: New test source.
1042 * testsuite/gas/mips/cp3m.s: New test source.
1043 * testsuite/gas/mips/cp3d.s: New test source.
1044 * testsuite/gas/mips/mips.exp: Run the new tests.
1045
9204ccd4
MR
10462021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1047
1048 * tc-mips.c (convert_reg_type) <OP_REG_CONTROL>: New case.
1049 (macro) <M_TRUNCWS, M_TRUNCWD>: Use the `g' rather than `G'
1050 operand code.
1051
a3fb396f
MR
10522021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1053
1054 * testsuite/gas/mips/cp0-names-r3900.d: New test.
1055 * testsuite/gas/mips/mips.exp: Run it.
1056
c9de3168
MR
10572021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1058
1059 * testsuite/gas/mips/micromips.d: Update disassembly according
1060 to "dmtc1" entry fix with opcodes.
1061 * testsuite/gas/mips/micromips-compact.d: Likewise.
1062 * testsuite/gas/mips/micromips-insn32.d: Likewise.
1063 * testsuite/gas/mips/micromips-noinsn32.d: Likewise.
1064 * testsuite/gas/mips/micromips-trap.d: Likewise.
1065 * testsuite/gas/mips/micromips@isa-override-1.d: Likewise.
1066
25663db4
MR
10672021-05-29 Maciej W. Rozycki <macro@orcam.me.uk>
1068
1069 * config/tc-mips.c (FCSR): New macro.
1070 (macro) <M_TRUNCWS, M_TRUNCWD>: Use it in place of RA.
1071
1273b2f8
L
10722021-05-28 H.J. Lu <hongjiu.lu@intel.com>
1073
1074 PR ld/27905
1075 * config/tc-i386.c (set_code_flag): Revert commit 50c95a739c9.
1076 (set_16bit_gcc_code_flag): Likewise.
1077 (x86_cleanup): Likewise.
1078 * testsuite/gas/i386/code16-2.d: Updated.
1079 * testsuite/gas/i386/x86-64-code16-2.d: Likewise.
1080
ebcab741
PB
10812021-05-27 Peter Bergner <bergner@linux.ibm.com>
1082
1083 * testsuite/gas/ppc/vsx.d <xxmr, xxlnot>: Add tests.
1084 * testsuite/gas/ppc/vsx.s: Likewise.
1085
badf836a
AM
10862021-05-27 Alan Modra <amodra@gmail.com>
1087
1088 * config/tc-nds32.c (do_pseudo_push_bhwd, do_pseudo_pop_bhwd),
1089 (do_pseudo_pusha, do_pseudo_pushi): Avoid fortify strncpy bound
1090 error.
1091
50c95a73
L
10922021-05-26 H.J. Lu <hongjiu.lu@intel.com>
1093
1094 PR ld/27905
1095 * config/tc-i386.c (set_code_flag): Update x86_feature_2_used
1096 with GNU_PROPERTY_X86_FEATURE_2_CODE16 for .code16 in ELF
1097 object.
1098 (set_16bit_gcc_code_flag): Likewise.
1099 (x86_cleanup): Always generate the GNU property note if
1100 x86_feature_2_used isn't 0.
1101 * testsuite/gas/i386/code16-2.d: New file.
1102 * testsuite/gas/i386/code16-2.s: Likewise.
1103 * testsuite/gas/i386/x86-64-code16-2.d: Likewise.
1104 * testsuite/gas/i386/i386.exp: Run code16-2 and x86-64-code16-2.
1105
3f335b75
SV
11062021-05-26 Sebastien Villemot <sebastien@debian.org>
1107
1108 PR gas/27906
1109 * doc/c-i386.texi: Replace movsb with movsxb as an alias for
1110 movsbq.
1111
fe1f847d
NC
11122021-05-26 Nelson Chu <nelson.chu@sifive.com>
1113
1114 * config/tc-riscv.c (riscv_set_arch): Set
1115 check_unknown_prefixed_ext to true for assembler.
1116
d3e52e12
TC
11172021-05-25 Tamar Christina <tamar.christina@arm.com>
1118
1119 PR gas/25235
1120 * config/tc-arm.c (md_convert_frag): Set LSB when Thumb symbol.
1121 (relax_adr): Thumb symbols 4 bytes.
1122 * testsuite/gas/arm/pr25235.d: New test.
1123 * testsuite/gas/arm/pr25235.s: New test.
1124
5d0ed830
NC
11252021-05-24 Nelson Chu <nelson.chu@sifive.com>
1126
1127 PR 25212
1128 * config/tc-riscv.c (riscv_set_abi_by_arch): If -mabi isn't set, we
1129 will choose ilp32e abi for rv32e. Besides, report errors for the
1130 invalid march and mabi combinations.
1131 * testsuite/gas/riscv/mabi-attr-rv32e.s: New testcase. Only accept
1132 ilp32e abi for rve extension.
1133 * testsuite/gas/riscv/mabi-fail-rv32e-lp64f.d: Likewise.
1134 * testsuite/gas/riscv/mabi-fail-rv32e-lp64f.l: Likewise.
1135 * testsuite/gas/riscv/mabi-fail-rv32e-lp64d.d: Likewise.
1136 * testsuite/gas/riscv/mabi-fail-rv32e-lp64d.l: Likewise.
1137 * testsuite/gas/riscv/mabi-fail-rv32e-lp64d.q: Likewise.
1138 * testsuite/gas/riscv/mabi-fail-rv32e-lp64d.q: Likewise.
1139 Renamed all mabi testcases to their march-mabi settings.
1140
d7189380
AM
11412021-05-22 Alan Modra <amodra@gmail.com>
1142
1143 PR 25599
1144 * config/tc-ia64.c (emit_one_bundle): Expand comment for HP-UX
1145 adjustment. Add assertion.
1146 * testsuite/gas/ia64/reloc-mlx.d: Pass when slot 2 specified
1147 for PCREL60B.
1148
9a01ec4c
SB
11492021-05-20 Sergey Belyashov <sergey.belyashov@gmail.com>
1150
1151 * config/tc-z80.c (emit_data_val): Warn on constant overflow.
1152 (signed_overflow): New function.
1153 (unsigned_overflow): New function.
1154 (is_overflow): Use new functions.
1155 (md_apply_fix): Use signed_overflow.
1156 * testsuite/gas/z80/ez80_adl_suf.d: Fix test.
1157 * testsuite/gas/z80/ez80_isuf.s: Likewise.
1158 * testsuite/gas/z80/ez80_z80_suf.d: Likewise.
1159
d556135f
NB
11602021-05-20 Nicolas Boulenguez <nicolas@debian.org>
1161
1162 PR 27888
1163 * Makefile.am (ZLIB): Define.
1164 (as_new_LDADD): Add it.
1165 * Makefile.in: Regenerate.
1166
e683cb41
AC
11672021-05-17 Alex Coplan <alex.coplan@arm.com>
1168
1169 * config/tc-arm.c (do_mve_mov): Only reject vmov if we're moving
1170 into the same GPR twice.
1171 * testsuite/gas/arm/mve-vmov-bad-2.l: Tweak error message.
1172 * testsuite/gas/arm/mve-vmov-3.d: New test.
1173 * testsuite/gas/arm/mve-vmov-3.s: New test.
1174
af2ddf69
AM
11752021-05-12 Alan Modra <amodra@gmail.com>
1176
1177 * testsuite/gas/elf/dwarf-5-file0.d: Update.
1178 * testsuite/gas/i386/dwarf5-line-1.d: Update.
1179
cfe7a191
SB
11802021-05-11 Sergey Belyashov <sergey.belyashov@gmail.com>
1181
1182 PR 27823
1183 * config/tc-z80.c (emit_ld_r_m): Report an illegal load
1184 instruction.
1185 * testsuite/gas/z80/ill_ops.s: New test source file.
1186 * testsuite/gas/z80/ill_ops.d: New test driver.
1187 * testsuite/gas/z80/ill_ops.l: New test error output.
1188
e4b1ab20
SB
11892021-05-10 Sergey Belyashov <sergey.belyashov@gmail.com>
1190
1191 PR 27415
1192 * config/tc-z80.c (emit_data_val): Add support for 8-bit and
1193 24-bit shifts.
1194 * testsuite/gas/z80/z80_reloc.a: Update tests.
1195 * testsuite/gas/z80/z80_reloc.d: Update expected disassembly.
1196
cf758b39
MF
11972021-05-08 Mike Frysinger <vapier@gentoo.org>
1198
1199 * doc/Makefile.am (html-local, as/index.html): New targets.
1200 * doc/Makefile.in: Regenerate.
1201
2faf902d
MF
12022021-05-08 Mike Frysinger <vapier@gentoo.org>
1203
1204 * doc/Makefile.am (AM_MAKEINFOFLAGS): Add --no-split.
1205 * doc/Makefile.in: Regenerate.
1206
476654be
NC
12072021-05-07 Nick Clifton <nickc@redhat.com>
1208
1209 PR 3136
1210 * config/obj-elf.c (elf_pseudo_table): Add entry for .bss.
1211 (obj_elf_bss): New function. Change to the .bss section.
1212 Support an optional subsection number.
1213 (obj_elf_change_section): Call obj_elf_section_change_hook.
1214 (obj_elf_section): Likewise.
1215 (obj_elf_data): Likewise.
1216 (obj_elf_text): Likewise.
1217 (obj_elf_struct): Likewise.
1218 (obj_elf_subsection): Likewise.
1219 (obj_elf_previous): Likewise.
1220 * config/obj-elf.h (obj_elf_bss): Prototype.
1221 * doc/as.texi (Bss): New node.
1222
97834047
CC
12232021-05-07 Clément Chigot <clement.chigot@atos.net>
1224
1225 * config/obj-coff.c (coff_frob_symbol): Don't skip C_DWARF.
1226 (coff_adjust_section_syms): Use corrext auxent for C_DWARF.
1227 (coff_frob_section): Likewise.
1228 * config/obj-coff.h (SA_GET_SECT_SCNLEN,
1229 SA_GET_SECT_NRELOC, SA_SET_SECT_SCNLEN,
1230 SA_SET_SECT_NRELOC) New defines.
1231 (SET_SECTION_RELOCS): Adjust for C_DWARF.
1232 * config/tc-ppc.c (ppc_frob_symbol): Don't skip C_DWARF.
1233 (ppc_adjust_symtab): Reorder C_DWARF symbols.
1234 * testsuite/gas/ppc/aix.exp: New tests.
1235 * testsuite/gas/ppc/xcoff-dwsect-2-32.d: New test.
1236 * testsuite/gas/ppc/xcoff-dwsect-2-64.d: New test.
1237 * testsuite/gas/ppc/xcoff-dwsect-2.s: New test.
1238
1239 * config/tc-ppc.c (ppc_function): Update comment for
1240 fifth argument.
1241 (ppc_frob_symbol): Remove ppc_last_function check.
1242 Make sure coff_last_function is reset.
1243 Correctly set fsize when not provided in .function.
1244 * testsuite/gas/ppc/aix.exp: New tests.
1245 * testsuite/gas/ppc/xcoff-function-1-32.d: New test.
1246 * testsuite/gas/ppc/xcoff-function-1-64.d: New test.
1247 * testsuite/gas/ppc/xcoff-function-1.s: New test.
1248
17c6c3b9
JB
12492021-05-07 Jan Beulich <jbeulich@suse.com>
1250
1251 * testsuite/gas/i386/rela.s, testsuite/gas/i386/rela.d: New.
1252 * testsuite/gas/i386/i386.exp: Run new test.
1253
98da05bf
JB
12542021-05-07 Jan Beulich <jbeulich@suse.com>
1255
1256 * config/tc-i386.c (output_disp): Use disps field instead of
1257 imms one.
1258
9aac24b1
JB
12592021-05-07 Jan Beulich <jbeulich@suse.com>
1260
1261 * config/tc-i386.c (i386_finalize_immediate): Move register
1262 check ...
1263 (i386_immediate): ... here.
1264
87ed972d
JB
12652021-05-07 Jan Beulich <jbeulich@suse.com>
1266
1267 * config/tc-i386.c (optimize_imm): Drop redundant masking.
1268 Re-arrange operand type accumulation.
1269
0b3e14c9
SH
12702021-05-06 Stafford Horne <shorne@gmail.com>
1271
1272 PR 21464
1273 * testsuite/gas/or1k/reloc-1.s: Add test for new relocation.
1274 * testsuite/gas/or1k/reloc-1.d: Add test result for new
1275 relocation.
1276
7b06fcf5
JW
12772021-05-03 Christoph Muellner <cmuellner@gcc.gnu.org>
1278
1279 PR 27764
1280 * testsuite/gas/riscv/a-ext-64.d: New testcase.
1281 * testsuite/gas/riscv/a-ext-64.s: Likewise.
1282 * testsuite/gas/riscv/a-ext.d: Likewise.
1283 * testsuite/gas/riscv/a-ext.s: Likewise.
1284
5e0a033b
JB
12852021-05-03 Jan Beulich <jbeulich@suse.com>
1286
1287 * config/tc-i386.h (TC_PARSE_CONS_EXPRESSION): Adjust surrounding
1288 #if.
1289 * testsuite/gas/i386/secrel.s: Convert some .secrel32 to .long.
1290 Add two further .long and an .equ.
1291 * testsuite/gas/i386/secrel.d: Adjust expecations.
1292
3e301ce0
JB
12932021-05-03 Jan Beulich <jbeulich@suse.com>
1294
1295 * testsuite/gas/i386/secrel.d, testsuite/gas/i386/secrel.s:
1296 Convert Windows to UNIX EOL.
1297
deea4973
JB
12982021-05-03 Jan Beulich <jbeulich@suse.com>
1299
1300 * config/tc-i386.c (lex_got): Adjust surrounding #if. Fold TE_PE
1301 variant into ELF one.
1302
db543a7d
AM
13032021-05-03 Alan Modra <amodra@gmail.com>
1304
1305 * testsuite/gas/elf/section25.s: Don't start directives in first
1306 column.
1307 * testsuite/gas/elf/section26.s: Likewise.
1308
a2443c89
JB
13092021-04-29 Jan Beulich <jbeulich@suse.com>
1310
1311 * testsuite/gas/i386/i386.exp: Move x86-64-rip-2 invocation.
1312 * testsuite/gas/i386/lea64.d,
1313 testsuite/gas/i386/lea64-optimize.d: Allow for COFF relocs.
1314 * testsuite/gas/i386/x86-64-rip-inval-1.s,
1315 testsuite/gas/i386/x86-64-rip-inval-2.s. Add .end.
1316
3abbafc2
JB
13172021-04-29 Jan Beulich <jbeulich@suse.com>
1318
1319 * config/tc-i386.c (i386_validate_fix): Change return type to
1320 int. Short-circuit BFD_RELOC_SIZE* handling.
1321 (tc_gen_reloc): New local variable sym. Extend logic when
1322 processing BFD_RELOC_SIZE*.
1323 * config/tc-i386.f (i386_validate_fix): Change return type to
1324 int.
1325 (TC_VALIDATE_FIX): Proceed to SKIP when i386_validate_fix()
1326 returns zero.
1327 * testsuite/gas/i386/size-5.s, testsuite/gas/i386/size-5a.d,
1328 testsuite/gas/i386/size-5b.d: New.
1329 * testsuite/gas/i386/i386.exp: Run new tests.
1330
44f87162
JB
13312021-04-29 Jan Beulich <jbeulich@suse.com>
1332
1333 * config/tc-i386.c (tc_gen_reloc): Use section size for section
1334 symbols when resolving BFD_RELOC_SIZE*.
1335 * testsuite/gas/i386/size-2.s: Add section size cases.
1336 * testsuite/gas/i386/size-2.d,
1337 testsuite/gas/i386/x86-64-size-2.d: Adjust expectations.
1338
eb19308f
JB
13392021-04-28 Jan Beulich <jbeulich@suse.com>
1340 H.J. Lu <hjl.tools@gmail.com>
1341
1342 PR gas/27763
1343 * config/tc-i386.c (output_jump): Also mark 2-byte relocs as
1344 signed for XBEGIN. Also mark 4-byte relocs as signed for 64-bit.
1345 (output_disp): Also mark 4-byte relocs as signed for 64-bit.
1346 (md_estimate_size_before_relax): Move local variable fixP. Set
1347 it from fix_new() return values. Mark 4-byte relocs as signed
1348 for 64-bit.
1349 * testsuite/gas/i386/pcrel64.s, testsuite/gas/i386/pcrel64.l,
1350 * testsuite/gas/i386/x86-64-rip-2.s,
1351 * testsuite/gas/i386/x86-64-rip-2.d,
1352 * testsuite/gas/i386/x86-64-rip-inval-1.s,
1353 * testsuite/gas/i386/x86-64-rip-inval-1.l,
1354 * testsuite/gas/i386/x86-64-rip-inval-2.s,
1355 * testsuite/gas/i386/x86-64-rip-inval-2.l: New.
1356 * testsuite/gas/i386/i386.exp: Run new tests.
1357
60cfa10c
L
13582021-04-27 H.J. Lu <hongjiu.lu@intel.com>
1359
1360 * config/tc-i386.c (optimize_encoding): Add () to silence GCC 5.
1361
8fb88245
JB
13622021-04-26 Jan Beulich <jbeulich@suse.com>
1363
1364 * config/tc-i386.c (tc_gen_reloc): Check IS_ELF for
1365 BFD_RELOC_SIZE*.
1366
d965814f
JB
13672021-04-26 Jan Beulich <jbeulich@suse.com>
1368
1369 * config/tc-i386.c (tc_gen_reloc): Limit BFD_RELOC_SIZE32
1370 overflow check to 64-bit objects.
1371
fe134c65
JB
13722021-04-26 Jan Beulich <jbeulich@suse.com>
1373
1374 * config/tc-i386.c (want_disp32): Also check for SIZE32.
1375 (optimize_encoding): Handle LEA.
1376 * testsuite/gas/i386/lea.s, testsuite/gas/i386/lea.d,
1377 testsuite/gas/i386/lea.e, testsuite/gas/i386/lea-optimize.d:
1378 Add many more forms.
1379 * testsuite/gas/i386/lea16.s, testsuite/gas/i386/lea16-optimize.d,
1380 testsuite/gas/i386/lea64.s, testsuite/gas/i386/lea64.d,
1381 testsuite/gas/i386/lea64.e, testsuite/gas/i386/lea64-optimize.d:
1382 New.
1383 * testsuite/gas/i386/i386.exp: Run new tests.
1384
b8188555
JB
13852021-04-26 Jan Beulich <jbeulich@suse.com>
1386
1387 * config/tc-i386.c (md_apply_fix): Mark BFD_RELOC_X86_64_32S as
1388 signed.
1389 * testsuite/gas/i386/x86-64-addr32-bad.s,
1390 testsuite/gas/i386/x86-64-addr32-bad.l: New.
1391 * testsuite/gas/i386/i386.exp: Run new test.
1392
f5e98b7d
EB
13932021-04-23 Eric Botcazou<ebotcazou@adacore.com>
1394
1395 * testsuite/gas/elf/section25.d: Run it everywhere.
1396 * testsuite/gas/elf/section26.d: Likewise.
1397 * testsuite/gas/elf/section26.s: Add test for .persistent.bss.
1398
d039200a
G
13992021-04-23 Jérôme Gardou <jerome.gardou@gmail.com>
1400
1401 * config/obj-coff-seh.c (obj_coff_seh_pushframe): Allow an
1402 optional "code" argument.
1403
a9aabc23
JB
14042021-04-23 Jan Beulich <jbeulich@suse.com>
1405
1406 * config/tc-i386.c (want_disp32): New.
1407 (md_assemble): Use it.
1408 (optimize_disp): Likewise.
1409 (build_modrm_byte): Likewise.
1410
cce08655
JB
14112021-04-23 Jan Beulich <jbeulich@suse.com>
1412
1413 * config/tc-i386.c (i386_finalize_displacement): Move Disp32S
1414 check ...
1415 (md_assemble): ... here.
1416
28a167a4
JB
14172021-04-23 Jan Beulich <jbeulich@suse.com>
1418
1419 * config/tc-i386.c (optimize_disp): Move down BFD64 section.
1420 Move up setting of disp32.
1421
7b025ee8
JB
14222021-04-23 Jan Beulich <jbeulich@suse.com>
1423
1424 * config/tc-i386.c (pe): Don't truncate expression value.
1425 (i386_finalize_displacement): Likewise.
1426
23356397
NC
14272021-04-21 Nick Clifton <nickc@redhat.com>
1428
1429 * testsuite/gas/aarch64/dwarf.d: Adjust expected output to allow
1430 for named section symbols.
1431 * testsuite/gas/arm/thumbver.d: Likewise.
1432 * testsuite/gas/bfin/loop_temps.d: Likewise.
1433 * testsuite/gas/elf/section2.e-arc: Likewise.
1434 * testsuite/gas/elf/section2.e-arm: Likewise.
1435 * testsuite/gas/elf/section2.e-csky: Likewise.
1436 * testsuite/gas/elf/section2.e-m32r: Likewise.
1437 * testsuite/gas/elf/section2.e-mips: Likewise.
1438 * testsuite/gas/elf/section2.e-msp430: Likewise.
1439 * testsuite/gas/elf/section2.e-riscv: Likewise.
1440 * testsuite/gas/elf/section2.e-rl78: Likewise.
1441 * testsuite/gas/elf/section2.e-rx: Likewise.
1442 * testsuite/gas/elf/section2.e-score: Likewise.
1443 * testsuite/gas/elf/section2.e-tic6x: Likewise.
1444 * testsuite/gas/elf/section2.e-unused: Likewise.
1445 * testsuite/gas/elf/section2.e-v850: Likewise.
1446 * testsuite/gas/elf/section2.e-xtensa: Likewise.
1447 * testsuite/gas/ia64/alias-ilp32.d: Likewise.
1448 * testsuite/gas/ia64/alias.d: Likewise.
1449 * testsuite/gas/ia64/global.d: Likewise.
1450 * testsuite/gas/microblaze/relax_size.elf: Likewise.
1451 * testsuite/gas/microblaze/relax_size2.elf: Likewise.
1452 * testsuite/gas/mips/global-local-symtab-sort-n64t.d: Likewise.
1453 * testsuite/gas/mips/global-local-symtab-sort-o32t.d: Likewise.
1454 * testsuite/gas/mmix/bspec-1.d: Likewise.
1455 * testsuite/gas/mmix/byte-1.d: Likewise.
1456 * testsuite/gas/mmix/comment-1.d: Likewise.
1457 * testsuite/gas/mmix/loc-1.d: Likewise.
1458 * testsuite/gas/mmix/loc-2.d: Likewise.
1459 * testsuite/gas/mmix/loc-3.d: Likewise.
1460 * testsuite/gas/mmix/loc-4.d: Likewise.
1461 * testsuite/gas/mmix/loc-5.d: Likewise.
1462 * testsuite/gas/tic6x/scomm-directive-4.d: Likewise.
1463
c5df7e44
CC
14642021-04-20 Clément Chigot <clement.chigot@atos.net>
1465
1466 PR binutils/21700
1467 * config/tc-ppc.c (ppc_get_csect_to_adjust): New function.
1468 (ppc_fix_adjustable): Manage fx_subsy part.
1469 (tc_gen_reloc): Create second relocation when both
1470 fx_addsy and fx_subsy are provided.
1471 * config/tc-ppc.h (RELOC_EXPANSION_POSSIBLE): New define.
1472 (MAX_RELOC_EXPANSION): Likewise.
1473 (TC_FORCE_RELOCATION_SUB_SAME): Likewise
1474 (UNDEFINED_DIFFERENCE_OK): Likewise
1475 * testsuite/gas/all/gas.exp: Skip difference between two
1476 undefined symbols test.
1477
8d6502d2
NC
14782021-04-19 Nick Clifton <nickc@redhat.com>
1479
1480 * testsuite/gas/all/gas.exp: Add rs6000*-*-aix* to the list of
1481 targets which should skip the undefined symbols test.
1482
02202574
PW
14832021-04-19 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
1484
1485 * NEWS: Update news.
1486 * testsuite/gas/aarch64/rme.d: Update test.
1487 * testsuite/gas/aarch64/rme.s: Update test.
1488
cd6608e4
PW
14892021-04-19 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
1490
1491 * testsuite/gas/aarch64/rme.d: Update test.
1492 * testsuite/gas/aarch64/rme.s: Update test.
1493
9a8041fd
JB
14942021-04-19 Jan Beulich <jbeulich@suse.com>
1495
1496 * as.h (sprint_value): Delete.
1497 * messages.c (sprint_value): Likewise.
1498 * config/tc-i386.c (offset_in_range): Use bfd_sprintf_vma in
1499 place of sprint_value.
1500 * config/tc-s390.c (s390_insert_operand): Likewise.
1501 * doc/internals.texi (sprint_value): Delete section.
1502 * write.c (fixup_segment): Likewise.
1503 (relax_segment): Likewise.
1504
100e914d
PW
15052021-04-16 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
1506
1507 * testsuite/gas/aarch64/rme-invalid.d: New test.
1508 * testsuite/gas/aarch64/rme-invalid.l: New test.
1509 * testsuite/gas/aarch64/rme-invalid.s: New test.
1510 * testsuite/gas/aarch64/rme.d: New test.
1511 * testsuite/gas/aarch64/rme.s: New test.
1512
768589d1
NC
15132021-04-16 Nelson Chu <nelson.chu@sifive.com>
1514
1515 PR 27436
1516 * config/tc-riscv.c (riscv_ip): make operand C> work the same as >.
1517 * testsuite/gas/riscv/shamt-32.d: New testcase.
1518 * testsuite/gas/riscv/shamt-32.l: Likewise.
1519 * testsuite/gas/riscv/shamt-32.s: Likewise.
1520 * testsuite/gas/riscv/shamt-64.d: Likewise.
1521 * testsuite/gas/riscv/shamt-64.l: Likewise.
1522 * testsuite/gas/riscv/shamt-64.s: Likewise.
1523
a21b96dd
NC
15242021-04-16 Lifang Xia <lifang_xia@c-sky.com>
1525
1526 * testsuite/gas/riscv/c-zero-imm.d: Compress addi a4,a4,0 to
1527 c.mv a4,a4.
1528 * testsuite/gas/riscv/c-zero-imm.s: Likewise.
1529
d20eb466
AM
15302021-04-14 Alan Modra <amodra@gmail.com>
1531
1532 PR 27723
1533 * dw2gencfi.c (initial_cie_insn): New function, extracted from..
1534 (select_cie_for_fde): ..here. Simplify.
1535
c159f352
AM
15362021-04-14 Alan Modra <amodra@gmail.com>
1537
1538 PR 27723
1539 * dw2gencfi.c (select_cie_for_fde): Handle DW_CFA_val_offset,
1540 DW_CFA_GNU_window_save and DW_CFA_restore_state.
1541
4bb920c6
AM
15422021-04-13 Alan Modra <amodra@gmail.com>
1543
1544 * testsuite/gas/m68hc11/m68hc11.exp (gas_m68hc11_message): Don't
1545 write to $srcdir. Use gas_host_run and read output file rather
1546 than gas_start/gas_finish.
1547
32d71569
AM
15482021-04-12 Alan Modra <amodra@gmail.com>
1549
1550 * config/tc-ppc.c (insn_validate): Use uint64_t for operand values.
1551 (md_assemble): Likewise. Handle bignum operands.
1552 (ppc_elf_suffix): Handle O_big. Remove unnecessary input_line_pointer
1553 check.
1554 * expr.c: Delete unnecessary forward declarations.
1555 (generic_bignum_to_int32): Return uint32_t.
1556 (generic_bignum_to_int64): Return uint64_t. Compile always.
1557 (operand): Twiddle X_extrabit for unary '~'. Set X_unsigned and
1558 clear X_extrabit for unary '!'.
1559 * expr.h (generic_bignum_to_int32): Declare.
1560 (generic_bignum_to_int64): Declare.
1561 * testsuite/gas/ppc/prefix-pcrel.s,
1562 * testsuite/gas/ppc/prefix-pcrel.d: Add more instructions.
1563
e601909a
NC
15642021-04-12 Nelson Chu <nelson.chu@sifive.com>
1565
1566 * testsuite/gas/riscv/march-fail-order-x-std.d: Renamed from
1567 march-fail-porder-x-std.d.
1568 * testsuite/gas/riscv/march-fail-order-z-std.d: Renamed from
1569 march-fail-porder-z-std.d.
1570 * testsuite/gas/riscv/march-fail-order-x-z.d: Renamed from
1571 march-fail-porder-x-z.d.
1572 * testsuite/gas/riscv/march-fail-order-zx-std.l: Added to replace
1573 march-fail-porder.l.
1574 * testsuite/gas/riscv/march-fail-order-x-z.l: Likewise.
1575 * testsuite/gas/riscv/march-fail-order-x.l: Updated.
1576 * testsuite/gas/riscv/march-fail-order-z.l: Likewise.
1577 * testsuite/gas/riscv/march-fail-single-prefix-h.d: Renamed from
1578 march-fail-single-char-h.d.
1579 * testsuite/gas/riscv/march-fail-single-prefix-s.d: Renamed from
1580 march-fail-single-char-s.d.
1581 * testsuite/gas/riscv/march-fail-single-prefix-x.d: Renamed from
1582 march-fail-single-char-x.d.
1583 * testsuite/gas/riscv/march-fail-single-prefix-z.d: Renamed from
1584 march-fail-single-char-z.d.
1585 * testsuite/gas/riscv/march-fail-single-prefix-zmx.d: Added.
1586 * testsuite/gas/riscv/march-fail-single-prefix.l: Added to replace
1587 march-fail-single-prefix.l.
1588 * testsuite/gas/riscv/march-fail-unknown-zxm.d: Added.
1589 * testsuite/gas/riscv/march-fail-unknown-std.l: Updated.
1590 * testsuite/gas/riscv/march-fail-unknown.l: Likewise.
1591
dd170203
TB
15922021-04-09 Tejas Belagod <tejas.belagod@arm.com>
1593
32d71569
AM
1594 * config/tc-aarch64.c (warn_unpredictable_ldst): Clean-up
1595 diagnostic messages for LD/ST Exclusive instructions.
dd170203 1596 * testsuite/gas/aarch64/diagnostic.s: Add a diagnostic test for STLXP.
32d71569
AM
1597 * testsuite/gas/aarch64/diagnostic.l: Fix-up test after message
1598 clean-up.
dd170203 1599
c3f72de4
AM
16002021-04-09 Alan Modra <amodra@gmail.com>
1601
1602 * testsuite/gas/ppc/prefix-pcrel.d: Update expected output.
1603 * testsuite/gas/ppc/prefix-reloc.d: Likewise.
1604 * gas/testsuite/gas/ppc/vsx_32byte.d: Likewise.
1605
97bf40d8
AM
16062021-04-08 Alan Modra <amodra@gmail.com>
1607
1608 * testsuite/gas/ppc/pr27676.d,
1609 * testsuite/gas/ppc/pr27676.s: New test.
1610 * testsuite/gas/ppc/ppc.exp: Run it.
1611 * testsuite/gas/ppc/dcbt.d: Update.
1612 * testsuite/gas/ppc/power4_32.d: Update.
1613
b12389f2
AM
16142021-04-07 Alan Modra <amodra@gmail.com>
1615
1616 PR 27217
1617 * testsuite/gas/aarch64/pr27217.d: Correct name. Accept ilp32 relocs.
1618
eac4eb8e
NC
16192021-04-06 Nick Clifton <nickc@redhat.com>
1620
1621 PR 27217
1622 * config/tc-aarch64.c (my_get_expression): Rename to
1623 aarch64_get_expression. Add a fifth argument to enable deferring
1624 of expression resolution.
1625 (parse_typed_reg): Update calls to my_get_expression.
1626 (parse_vector_reg_list): Likewise.
1627 (parse_immediate_expression): Likewise.
1628 (parse_big_immediate): Likewise.
1629 (parse_shift): Likewise.
1630 (parse_shifter_operand_imm): Likewise.
1631 (parse_operands): Likewise.
1632 (parse_shifter_operand_reloc): Update calls to my_get_expression
1633 and call aarch64_force_reloc to determine the value of the new
1634 fifth argument.
1635 (parse_address_main): Likewise.
1636 (parse_half): Likewise.
1637 (parse_adrp): Likewise.
1638 (aarch64_force_reloc): New function. Contains code extracted from...
1639 (aarch64_force_relocation): ... here.
1640 * testsuite/gas/aarch64/pr27217.s: New test case.
1641 * testsuite/gas/aarch64/pr27217.d: New test driver.
1642
da0835ae
JB
16432021-04-06 Jan Beulich <jbeulich@suse.com>
1644
1645 * write.c (fixup_segment): Move add_symbol_segment declaration
1646 into main loop.
1647
23d61380
AM
16482021-04-05 Alan Modra <amodra@gmail.com>
1649
1650 * configure.ac: Don't check for string.h, strings.h, stdlib.h,
1651 errno.h, limits.h, locale.h or time.h. Don't check for unlink,
1652 remove, sbrk (unused) or setlocale. Adjust gas_test_headers.
1653 Don't check for errno, free, malloc, realoc, sbrk, strstr, getenv
1654 strstr, or vsnprintf declarations.
1655 (AC_ISC_POSIX, AC_FUNC_ALLOCA, AC_C_INLINE): Don't invoke.
1656 * as.h: Don't include alloca-conf.h, include config.h instead.
1657 Include string.h, stdlib.h, errno.h unconditionally. Remove
1658 various fallback declarations.
1659 * asintl.h: Don't test HAVE_LOCALE_H.
1660 * as.c: Don't test HAVE_SETLOCALE.
1661 * dwarf2dbg.c: Include limits.h unconditionally.
1662 * expr.c: Likewise.
1663 * sb.c: Likewise.
1664 * symbols.c: Likewise.
1665 * config/tc-cr16.c: Likewise.
1666 * config/tc-d30v.c: Likewise.
1667 * config/tc-i386.c: Likewise.
1668 * config/tc-ia64.c: Likewise.
1669 * config/tc-tic54x.c (tic54x_mlib): Call remove rather than unlink.
1670 * config.in: Regenerate.
1671 * configure: Regenerate.
1672 * Makefile.in: Regenerate.
1673 * doc/Makefile.in: Regenerate.
1674
e9b095a5
ML
16752021-04-01 Martin Liska <mliska@suse.cz>
1676
1677 * config/obj-coff.c (strneq): Remove strneq and use startswith.
1678 (weak_is_altname): Likewise.
1679 (obj_coff_section): Likewise.
1680 * config/tc-cr16.c (process_label_constant): Likewise.
1681 * config/tc-crx.c (strneq): Likewise.
1682
d34049e8
ML
16832021-04-01 Martin Liska <mliska@suse.cz>
1684
1685 * as.c (select_emulation_mode): Use startswith.
1686 * config/m68k-parse.y: Likewise.
1687 * config/obj-aout.c (obj_aout_type): Likewise.
1688 * config/obj-elf.c (elf_common_parse): Likewise.
1689 (obj_elf_section_type): Likewise.
1690 (obj_elf_section_word): Likewise.
1691 (obj_elf_section): Likewise.
1692 (obj_elf_symver): Likewise.
1693 (adjust_stab_sections): Likewise.
1694 * config/obj-evax.c (evax_shorten_name): Likewise.
1695 * config/obj-macho.c (obj_mach_o_is_frame_section): Likewise.
1696 * config/tc-aarch64.c (parse_aarch64_imm_float): Likewise.
1697 (aarch64_parse_features): Likewise.
1698 (create_register_alias): Likewise.
1699 (aarch64_data_in_code): Likewise.
1700 (md_parse_option): Likewise.
1701 * config/tc-alpha.c (s_alpha_section_word): Likewise.
1702 (s_alpha_pdesc): Likewise.
1703 * config/tc-arc.c (tokenize_extregister): Likewise.
1704 * config/tc-arm.c (create_register_alias): Likewise.
1705 (create_neon_reg_alias): Likewise.
1706 (parse_ifimm_zero): Likewise.
1707 (parse_qfloat_immediate): Likewise.
1708 (arm_elf_section_type): Likewise.
1709 (arm_parse_extension): Likewise.
1710 (aeabi_set_public_attributes): Likewise.
1711 (s_arm_arch_extension): Likewise.
1712 (arm_data_in_code): Likewise.
1713 (start_unwind_section): Likewise.
1714 * config/tc-avr.c (avr_ldi_expression): Likewise.
1715 * config/tc-csky.c (is_freglist_legal): Likewise.
1716 (csky_s_section): Likewise.
1717 * config/tc-d30v.c (do_assemble): Likewise.
1718 * config/tc-dlx.c (parse_operand): Likewise.
1719 * config/tc-epiphany.c (md_assemble): Likewise.
1720 * config/tc-h8300.c (h8300_elf_section): Likewise.
1721 (get_operand): Likewise.
1722 * config/tc-hppa.c (pa_ip): Likewise.
1723 (pa_level): Likewise.
1724 (pa_space): Likewise.
1725 * config/tc-i386.c (i386_mach): Likewise.
1726 (md_assemble): Likewise.
1727 (check_VecOperations): Likewise.
1728 (i386_target_format): Likewise.
1729 (i386_elf_section_type): Likewise.
1730 * config/tc-ia64.c (start_unwind_section): Likewise.
1731 (md_parse_option): Likewise.
1732 (is_taken_branch): Likewise.
1733 (idesc->name,): Likewise.
1734 (note_register_values): Likewise.
1735 (do_alias): Likewise.
1736 * config/tc-m32c.c (insn_to_subtype): Likewise.
1737 * config/tc-m68hc11.c (get_operand): Likewise.
1738 (md_assemble): Likewise.
1739 * config/tc-m68k.c (m68k_ip): Likewise.
1740 (m68k_elf_suffix): Likewise.
1741 * config/tc-mcore.c (mcore_s_section): Likewise.
1742 * config/tc-metag.c (parse_get_set): Likewise.
1743 (md_parse_option): Likewise.
1744 * config/tc-microblaze.c (parse_imm): Likewise.
1745 (check_got): Likewise.
1746 (md_apply_fix): Likewise.
1747 * config/tc-mips.c (CPU_HAS_MIPS16): Likewise.
1748 (md_begin): Likewise.
1749 (s_is_linkonce): Likewise.
1750 (check_regno): Likewise.
1751 (match_float_constant): Likewise.
1752 (classify_vr4120_insn): Likewise.
1753 (match_insn): Likewise.
1754 (mips_after_parse_args): Likewise.
1755 (s_change_sec): Likewise.
1756 (s_option): Likewise.
1757 (parse_code_option): Likewise.
1758 (md_section_align): Likewise.
1759 (nopic_need_relax): Likewise.
1760 * config/tc-mmix.c (mmix_handle_mmixal): Likewise.
1761 * config/tc-mn10300.c (mn10300_fix_adjustable): Likewise.
1762 (mn10300_end_of_match): Likewise.
1763 * config/tc-msp430.c (msp430_make_init_symbols): Likewise.
1764 * config/tc-nds32.c (nds32_parse_option): Likewise.
1765 * config/tc-nds32.h (md_do_align): Likewise.
1766 * config/tc-nios2.c (strprefix): Likewise.
1767 (nios2_special_relocation_p): Likewise.
1768 (nios2_parse_base_register): Likewise.
1769 (nios2_cons): Likewise.
1770 * config/tc-ns32k.c (addr_mode): Likewise.
1771 * config/tc-pdp11.c (set_option): Likewise.
1772 (parse_reg): Likewise.
1773 (parse_ac5): Likewise.
1774 (parse_op_no_deferred): Likewise.
1775 (set_cpu_model): Likewise.
1776 (set_machine_model): Likewise.
1777 * config/tc-pj.c (md_operand): Likewise.
1778 * config/tc-ppc.c (ppc_set_cpu): Likewise.
1779 (ppc_arch): Likewise.
1780 (ppc_section_type): Likewise.
1781 * config/tc-s12z.c (tb_reg_rel): Likewise.
1782 (tb_opr_rel): Likewise.
1783 * config/tc-s390.c (s390_parse_cpu): Likewise.
1784 (md_parse_option): Likewise.
1785 * config/tc-score.c (s3_nopic_need_relax): Likewise.
1786 (s3_pic_need_relax): Likewise.
1787 * config/tc-score7.c (s7_nopic_need_relax): Likewise.
1788 (s7_pic_need_relax): Likewise.
1789 * config/tc-sh.h (SUB_SEGMENT_ALIGN): Likewise.
1790 * config/tc-sparc.c (md_parse_option): Likewise.
1791 (sparc_ip): Likewise.
1792 (s_reserve): Likewise.
1793 (s_common): Likewise.
1794 (s_seg): Likewise.
1795 (sparc_cons): Likewise.
1796 * config/tc-tic54x.c (stag_add_field): Likewise.
1797 (tic54x_endstruct): Likewise.
1798 * config/tc-tic6x.c (tic6x_start_unwind_section): Likewise.
1799 * config/tc-v850.c (v850_comm): Likewise.
1800 (md_begin): Likewise.
1801 (md_assemble): Likewise.
1802 * config/tc-vax.c (vax_cons): Likewise.
1803 * config/tc-wasm32.c (wasm32_leb128): Likewise.
1804 * config/tc-xstormy16.c (md_operand): Likewise.
1805 * config/tc-xtensa.c (get_directive): Likewise.
1806 (xg_instruction_matches_option_term): Likewise.
1807 (is_unaligned_label): Likewise.
1808 (cache_literal_section): Likewise.
1809 * config/xtensa-relax.c (parse_precond): Likewise.
1810 (parse_option_cond): Likewise.
1811 (transition_applies): Likewise.
1812 (wide_branch_opcode): Likewise.
1813 * dw2gencfi.c: Likewise.
1814 * dwarf2dbg.c (dwarf2_directive_filename): Likewise.
1815 * ehopt.c (get_cie_info): Likewise.
1816 * input-file.c (input_file_open): Likewise.
1817 * listing.c (listing_newline): Likewise.
1818 (debugging_pseudo): Likewise.
1819 * read.c (read_a_source_file): Likewise.
1820 * write.c (adjust_reloc_syms): Likewise.
1821 (compress_debug): Likewise.
1822 (maybe_generate_build_notes): Likewise.
1823
fdb21288
AM
18242021-03-31 Alan Modra <amodra@gmail.com>
1825
1826 * itbl-lex-wrapper.c: Include as.h not sysdep.h.
1827 * config/bfin-lex-wrapper.c: Likewise.
1828 * itbl-lex.l: Don't include as.h.
1829 * config/bfin-lex.l: Likewise.
1830
5b7c81bd
AM
18312021-03-31 Alan Modra <amodra@gmail.com>
1832
1833 * as.h (POISON_BFD_BOOLEAN): Define.
1834 * as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
1835 * config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
1836 * config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
1837 * config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
1838 * config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
1839 * config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
1840 * config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
1841 * config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
1842 * config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
1843 * config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
1844 * config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
1845 * config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
1846 * config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
1847 * config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
1848 * config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
1849 * config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
1850 * config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
1851 * config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
1852 * config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
1853 * config/tc-metag.c, * config/tc-metag.h,
1854 * config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
1855 * config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
1856 * config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
1857 * config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
1858 * config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
1859 * config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
1860 * config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
1861 * config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
1862 * config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
1863 * config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
1864 * config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
1865 * config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
1866 * config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
1867 * config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
1868 * config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
1869 * config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
1870 * config/tc-xstormy16.c, * config/tc-xstormy16.h,
1871 * config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
1872 * config/tc-z8k.c, * config/xtensa-istack.h,
1873 * config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
1874 * dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
1875 * frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
1876 * read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
1877 with bool, FALSE with false, and TRUE with true.
1878
3dfb1b6d
AM
18792021-03-31 Alan Modra <amodra@gmail.com>
1880
1881 * config/tc-aarch64.c: Include stdint.h in place of bfd_stdint.h.
1882 * config/tc-crx.c: Likewise.
1883 * config/tc-nds32.h: Likewise.
1884
5e042380
JB
18852021-03-30 Jan Beulich <jbeulich@suse.com>
1886
1887 * config/tc-i386.c (build_modrm_byte): Change return type.
1888 Change type of "default_seg". Use NULL. Adjust setting of
1889 "default_seg".
1890 (reg_ds, reg_es, reg_ss): New.
1891 (struct _i386_insn): Change type of seg[].
1892 (md_begin): Initialize reg_ds, reg_es, and reg_ss.
1893 (swap_operands): Change type of "temp_seg".
1894 (check_string): Adjust %es check.
1895 (process_operands): Change type of "default_seg". Use NULL.
1896 Adjust segment override processing..
1897 (i386_att_operand): Adjust segment override handling.
1898 * config/tc-i386-intel.c (i386_intel_operand): Likewise.
1899
34684862
JB
19002021-03-30 Jan Beulich <jbeulich@suse.com>
1901
1902 * config/tc-i386.c (reg_eax): New.
1903 (md_begin): Initialize reg_eax.
1904 * config/tc-i386-intel.c (i386_intel_simplify_register): Use
1905 reg_eax.
1906 (i386_intel_simplify): Likewise.
1907
6288d05f
JB
19082021-03-30 Jan Beulich <jbeulich@suse.com>
1909
1910 * config/tc-i386.c (reg_st0): New.
1911 (md_begin): Convert to switch(). Initialize reg_st0. Don't
1912 insert other st(N).
1913 (parse_real_register): Adjust st(N) processing.
1914
ca5312a2
JB
19152021-03-30 Jan Beulich <jbeulich@suse.com>
1916
1917 * config/tc-i386.c (rc_op): Delete.
1918 (struct Rounding_Operation): Move ...
1919 (struct _i386_insn): ... here. Change field "rounding".
1920 (build_evex_prefix): Adjust rounding processing.
1921 (swap_2_operands): Likewise.
1922 (check_VecOperands): Likewise.
1923 (RC_SAE_immediate): Likewise.
1924 (optimize_encoding): Adjust check for rounding.
1925 (build_modrm_byte): Likewise.
1926 (output_imm): Likewise.
1927 (md_assemble): Initialize rounding type.
1928
5273a3cd
JB
19292021-03-30 Jan Beulich <jbeulich@suse.com>
1930
1931 * config/tc-i386.c (broadcast_op): Delete.
1932 (struct Broadcast_Operation): Move ...
1933 (struct _i386_insn): ... here. Change field "broadcast".
1934 (match_mem_size): Adjust check for broadcast.
1935 (optimize_encoding): Likewise.
1936 (process_suffix): Likewise.
1937 (build_evex_prefix): Adjust broadcast processing.
1938 (swap_2_operands): Likewise.
1939 (check_VecOperations): Likewise.
1940 (match_template): Likewise.
1941 (check_VecOperands): Likewise.
1942
6225c532
JB
19432021-03-30 Jan Beulich <jbeulich@suse.com>
1944
1945 * config/tc-i386.c (reg_k0): New.
1946 (mask_op): Delete.
1947 (struct Mask_Operation): Move ...
1948 (struct _i386_insn): ... here. Change field "mask".
1949 (md_begin): Initialize reg_k0.
1950 (build_evex_prefix): Adjust mask processing.
1951 (swap_2_operands): Likewise.
1952 (check_VecOperands): Likewise.
1953 (check_VecOperations): Likewise.
1954 (optimize_encoding): Adjust checks for masking.
1955 (output_insn): Likewise.
1956
783c187b
JB
19572021-03-30 Jan Beulich <jbeulich@suse.com>
1958
1959 * config/tc-i386.c (swap_2_operands): Switch parameters to
1960 unsigned.
1961 (struct RC_Operation): Switch operand field to unsigned.
1962 (struct Mask_Operation): Likewise.
1963 (struct Broadcast_Operation): Likewise.
1964 (build_evex_prefix): Drop cast.
1965 (check_VecOperands): Likewise.
1966 (build_modrm_byte): Likewise.
1967 (output_imm): Likewise.
1968 (check_VecOperations): Add casts to unsigned.
1969
c8cad9d3
JB
19702021-03-29 Jan Beulich <jbeulich@suse.com>
1971
1972 * testsuite/gas/i386/x86-64-sse2avx.s: Add vpsadbw case.
1973 * testsuite/gas/i386/x86-64-avx-swap-2.d.
1974 testsuite/gas/i386/x86-64-sse2avx.d: Adjust expectations.
1975
389d00a5
JB
19762021-03-29 Jan Beulich <jbeulich@suse.com>
1977
1978 * config/tc-i386.c (optimize_encoding): Replace VEX-encoding
1979 checks by opcodespace ones.
1980 (insert_lfence_before): Likewise.
1981 (maybe_fused_with_jcc_p): Likewise.
1982 (add_branch_padding_frag_p): Likewise.
1983 (output_disp): Likewise.
1984 (load_insn_p): Re-arrange checks to key applicable ones off of
1985 an opcodespace check.
1986 (md_assemble): Adjust opcode checks.
1987 (check_byte_reg): Likewise.
1988 (process_operands): Likewise.
1989 (i386_index_check): Likewise.
1990 (process_suffix): Likewise. New local variable is_movx. Adjust
1991 movsx/movzx and crc32 handling.
1992 (output_insn): Adjust opcode checks. Drop no longer reachable
1993 case labels. Output legacy encoding prefixes in addition to the
1994 base_opcode byte(s). Rework counting of prefixes for extended
1995 opcode maps.
1996 * config/tc-i386-intel.c (i386_intel_simplify_register): Adjust
1997 opcode checks.
1998
63b4cc53
AM
19992021-03-29 Alan Modra <amodra@gmail.com>
2000
2001 * atof-generic.c (FALSE, TRUE): Don't define.
2002 * config/obj-elf.h (FALSE, TRUE): Don't define.
2003 * config/obj-som.h (FALSE, TRUE): Don't define.
2004 * config/tc-hppa.h (FALSE, TRUE): Don't define.
2005 * config/tc-pdp11.c (FALSE, TRUE): Don't define.
2006 * config/tc-iq2000.h (obj_fix_adjustable): Delete.
2007 * config/tc-m32r.h (TC_FIX_ADJUSTABLE): Delete.
2008 * config/tc-mt.h (obj_fix_adjustable): Delete.
2009 * config/tc-nds32.h (TC_FIX_ADJUSTABLE): Delete.
2010 * config/tc-arc.c (parse_opcode_flags): Simplify boolean expression.
2011 (relaxable_flag, relaxable_operand, assemble_insn): Likewise.
2012 (tokenize_extregister): Likewise.
2013 * config/tc-csky.c (parse_opcode, get_operand_value): Likewise.
2014 (parse_operands_op, parse_operands, md_assemble): Likewise.
2015 * config/tc-d10v.c (build_insn): Likewise.
2016 * config/tc-score.c (s3_gen_insn_frag): Likewise.
2017 * config/tc-score7.c (s7_gen_insn_frag, s7_relax_frag): Likewise.
2018 * config/tc-tic6x.c (tic6x_update_features, md_assemble): Likewise.
2019 * config/tc-z80.c (emit_byte): Likewise.
2020
854f1e4b
AM
20212021-03-29 Alan Modra <amodra@gmail.com>
2022
2023 * config/tc-arm.c (struct arm_long_option_table <func>): Return
2024 bfd_boolean.
2025 * config/tc-arm.h (arm_optimize_expr, arm_data_in_code): Likewise.
2026 * config/tc-metag.c (parse_mov_port): Replace unsigned int variable
2027 with bfd_boolean.
2028 (parse_mmov, parse_mov_ct, parse_alu, parse_shift, parse_bitop),
2029 (parse_cmp, parse_fmmov, parse_fmov_data, parse_fearith),
2030 (parse_dget_set, parse_dalu): Likewise, ensuring assignment from
2031 logical expressions.
2032 (struct metag_long_option <func>): Return bfd_boolean.
2033 (metag_parse_cpu, metag_parse_fpu, metag_parse_dsp): Likewise.
2034 * config/tc-msp430.c (msp430_dstoperand): Correct dummy type.
2035 * config/tc-s12z.c (parse_operand_func): Return bfd_boolean.
2036 (no_operands, lex_force_match, lex_reg_list): Likewise.
2037 (size_from_suffix): Return int.
2038 (s12z_relax_frag, md_estimate_size_before_relax): Return 0.
2039 * config/tc-s12z.h (tc_s12z_fix_adjustable): Likewise.
2040
c3344b62
JB
20412021-03-26 Jan Beulich <jbeulich@suse.com>
2042
2043 * testsuite/gas/i386/x86-64-nosse2.s,
2044 testsuite/gas/i386/x86-64-nosse2.l: New.
2045 * testsuite/gas/i386/i386.exp: Run new test.
2046
efa30ac3
HAQ
20472021-03-25 Abid Qadeer <abidh@codesourcery.com>
2048
2049 * testsuite/gas/nios2/brn.d: New.
2050 * testsuite/gas/nios2/brn.d: New.
2051
5e74b495
JB
20522021-03-25 Jan Beulich <jbeulich@suse.com>
2053
2054 * config/tc-i386.c (match_template): Use t instead of i.tm.
2055
596a02ff
JB
20562021-03-25 Jan Beulich <jbeulich@suse.com>
2057
2058 * testsuite/gas/i386/avx512f-nondef.s: Add vgather cases.
2059 * testsuite/gas/i386/x86-64-vgather-check.s: Add cases with
2060 colliding registers in the upper half of the space.
2061 * testsuite/gas/i386/avx512f-nondef.d,
2062 testsuite/gas/i386/vgather-check.d,
2063 testsuite/gas/i386/x86-64-vgather-check.d,
2064 testsuite/gas/i386/x86-64-vgather-check-error.l,
2065 testsuite/gas/i386/x86-64-vgather-check-warn.e: Adjust
2066 expecations.
2067 * testsuite/gas/i386/vgather-check-none.d,
2068 testsuite/gas/i386/vgather-check-warn.d,
2069 testsuite/gas/i386/x86-64-vgather-check-none.d,
2070 testsuite/gas/i386/x86-64-vgather-check-warn.d: Refer to "base"
2071 tests for expected dump output.
2072
53642852
JB
20732021-03-25 Jan Beulich <jbeulich@suse.com>
2074
2075 * testsuite/gas/i386/avx512f-nondef.s: Add case for EVEX.z
2076 without mask register.
2077 * testsuite/gas/i386/avx512f-nondef.d: Adjust expectations.
2078
c0e54661
JB
20792021-03-25 Jan Beulich <jbeulich@suse.com>
2080
2081 * config/tc-i386.c (md_assemble): Widen set of insns to avoid
2082 swapping operands for.
2083 * testsuite/gas/i386/invlpgb.s: Fix, re-arrange, and add Intel
2084 syntax tests.
2085 * testsuite/gas/i386/snp.s: Re-arrange and add multi-operand as
2086 well as Intel syntax tests.
2087 * testsuite/gas/i386/invlpgb.d, testsuite/gas/i386/snp.d: Adjust
2088 expectations.
32d71569 2089 * testsuite/gas/i386/invlpgb64.d, testsuite/gas/i386/snp64.d:
c0e54661
JB
2090 Likewise. Drop passing --def-sym to as.
2091
829f3fe1
JB
20922021-03-25 Jan Beulich <jbeulich@suse.com>
2093
2094 PR/gas 27419
2095 * config/tc-i386.c (process_suffix): Restrict (%rip) -> (%eip)
2096 conversion to x32 mode.
2097 * testsuite/gas/i386/ilp32/enqcmd.s,
2098 testsuite/gas/i386/ilp32/enqcmd.d,
2099 testsuite/gas/i386/ilp32/movdir.s,
2100 testsuite/gas/i386/ilp32/movdir.d: New.
2101 * testsuite/gas/i386/x86-64-enqcmd.s,
2102 testsuite/gas/i386/x86-64-movdir.s: Drop mismatched operand
2103 cases.
2104 * testsuite/gas/i386/x86-64-enqcmd-inval.s: Add (%rip) and
2105 (%eip) cases.
2106 * testsuite/gas/i386/x86-64-movdir64b-reg.s Add (%eip) case.
2107 * testsuite/gas/i386/x86-64-enqcmd.d,
2108 testsuite/gas/i386/x86-64-enqcmd-intel.d,
2109 testsuite/gas/i386/x86-64-enqcmd-inval.l,
2110 testsuite/gas/i386/x86-64-movdir.d,
2111 testsuite/gas/i386/x86-64-movdir-intel.d,
2112 testsuite/gas/i386/x86-64-movdir64b-reg.l: Adjust expectations.
2113
5a403766
AM
21142021-03-25 Alan Modra <amodra@gmail.com>
2115
2116 PR 27647
2117 * testsuite/gas/ppc/a2.d: Update expected output.
2118 * testsuite/gas/ppc/power8.d: Likewise.
2119
9a182d04
JB
21202021-03-24 Jan Beulich <jbeulich@suse.com>
2121
2122 * config/tc-i386.c (struct _i386_insn): New field
2123 opcode_length.
2124 (md_begin): Drop assertion.
2125 (install_template): New.
2126 (build_vex_prefix): Call install_template.
2127 (match_template): Likewise.
2128 (process_operands): Use new opcode_length field.
2129 (output_jump): Likewise.
2130 (output_insn): Likewise. Adjust psedo prefix check.
2131
35648716
JB
21322021-03-24 Jan Beulich <jbeulich@suse.com>
2133
2134 * config/tc-i386.c (md_begin): Add assertion.
2135 (build_vex_prefix): Drop implied prefix calculation.
2136 (build_evex_prefix): Likewise.
2137 (optimize_encoding): Adjust opcode checks.
2138 (load_insn_p): Also check opcodeprefix.
2139 (match_template): Also check opcodespace.
2140 (process_suffix): Likewise.
2141 (process_operands): Likewise.
2142 (output_insn): Likewise. Also check isprefix when discaring
2143 standalone LOCK.
2144 * config/tc-i386-intel.c (i386_intel_operand): Also check
2145 opcodespace.
2146
31184569
JB
21472021-03-24 Jan Beulich <jbeulich@suse.com>
2148
2149 * config/tc-i386.c (parse_insn): Recognize pseudo prefixes by
2150 base_opcode and extension_opcode.
2151
b933fa4b
JB
21522021-03-23 Jan Beulich <jbeulich@suse.com>
2153
2154 * config/tc-i386.c (pte): Re-order opc_pfx[] entries.
2155
dac10fb0
JB
21562021-03-23 Jan Beulich <jbeulich@suse.com>
2157
2158 * config/tc-i386.c (output_i386_opcode): Invoke
2159 process_i386_cpu_flag() slightly later.
2160 (process_i386_opcodes): Likewise.
2161
441f6aca
JB
21622021-03-23 Jan Beulich <jbeulich@suse.com>
2163
2164 * config/tc-i386.c (pte): Print prefix and encoding space.
2165 (build_vex_prefix): Check opcodespace instead of opcodeprefix.
2166 (build_evex_prefix): Likewise.
2167 (load_insn_p): Likewise.
2168
70e95837
JB
21692021-03-23 Jan Beulich <jbeulich@suse.com>
2170
2171 * config/tc-i386.c (load_insn_p): Use PREFIX_NONE. Fold two
2172 if()-s.
2173 (match_template, output_insn): Use PREFIX_NONE.
2174
a152332d
JB
21752021-03-23 Jan Beulich <jbeulich@suse.com>
2176
2177 * config/tc-i386.c (i386_index_check): New local variable t.
2178 Correct MPX insn check.
2179 * config/tc-i386-intel.c (i386_intel_simplify_register): Correct
2180 MPX insn check.
2181 * testsuite/gas/i386/x86-64-mpx.s: Add RIP-relative cases. Test
2182 index scaling by other than 1.
2183 * testsuite/gas/i386/x86-64-mpx.d: Adjust expectations.
2184
08dedd66
ML
21852021-03-22 Martin Liska <mliska@suse.cz>
2186
2187 * config/tc-i386.c (md_parse_option): Replace usage of CONST_STRNEQ with startswith.
2188 (x86_64_section_word): Likewise.
2189 * config/tc-sparc.c (md_parse_option): Likewise.
2190
826b97d4
AM
21912021-03-19 Alan Modra <amodra@gmail.com>
2192
2193 * app.c (do_scrub_chars): Don't lose spaces before a slash.
2194
3273f9a1
CG
21952021-03-18 Christian Groessler <chris@groessler.org>
2196
2197 * config/tc-z8k.c (apply_fix): Handle 7-bit relocations correctly.
2198 Problem found by Tadashi G. Takaoka <tadashi.g.takaoka@gmail.com>.
2199
80d49d6a
KLC
22002021-03-16 Kuan-Lin Chen <kuanlinchentw@gmail.com>
2201
2202 * config/tc-riscv.c (ext_version_table): Add b, zba, zbb and zbc.
2203 (riscv_multi_subset_supports): Add INSN_CLASS_ZB*.
2204 * testsuite/gas/riscv/b-ext-64.s: Bitmanip test case.
2205 * testsuite/gas/riscv/b-ext-64.d: Likewise.
2206 * testsuite/gas/riscv/b-ext.s: Likewise.
2207 * testsuite/gas/riscv/b-ext.d: Likewise.
2208
7fce7ea9
PW
22092021-03-12 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
2210
2211 * testsuite/gas/aarch64/illegal-sysreg-7.d: New test.
2212 * testsuite/gas/aarch64/illegal-sysreg-7.l: New test.
2213 * testsuite/gas/aarch64/illegal-sysreg-7.s: New test.
2214 * testsuite/gas/aarch64/sysreg-7.d: New test.
2215 * testsuite/gas/aarch64/sysreg-7.s: New test.
2216
1b2cb8e2
CC
22172021-03-12 Clément Chigot <clement.chigot@atos.net>
2218
2219 * config/tc-ppc.c (ppc_xcoff_text_section, ppc_xcoff_data_section,
2220 (ppc_xcoff_bss_section, ppc_xcoff_tdata_section,
2221 (ppc_xcoff_tbss_section): New variables.
2222 (ppc_text_subsegment, ppc_text_csects, ppc_data_subgments,
2223 (ppc_data_csects): Removed.
2224 (ppc_xcoff_section_is_initialized, ppc_init_xcoff_section,
2225 ppc_xcoff_parse_cons): New functions.
2226 (md_being): Initialize XCOFF sections.
2227 (ppc_xcoff_suffix): Add support for TLS relocations
2228 (fixup_size, md_apply_fix): Add support for new BFD_RELOC.
2229 (ppc_change_csect): Handle XMC_TL, XMC_UL. Correctly, add XMC_BS
2230 to .bss section. Handle new XCOFF section variables.
2231 (ppc_comm): Likewise.
2232 (ppc_toc): Likewise.
2233 (ppc_symbol_new_hook): Likewise.
2234 (ppc_frob_symbol): Likewise.
2235 (ppc_fix_adjustable): Add tbss support.
2236 * config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): New define.
2237 (ppc_xcoff_parse_cons): Add prototype.
2238 (struct ppc_xcoff_section): New structure.
2239
4a403be0
CC
22402021-03-12 Clément Chigot <clement.chigot@atos.net>
2241
2242 * config/tc-ppc.c (ppc_xcoff_suffix): New function.
2243 (MAP, MAP32, MAP64): New macros for XCOFF.
2244 (ppc_xcoff_fixup_addis): New function.
2245 (ppc_is_toc_sym): Handle XMC_TE.
2246 (fixup_size): Add cases for BFD_RELOC_PPC_TOC16_HI and
2247 BFD_RELOC_PPC_TOC16_LO.
2248 (md_assemble): Call ppc_xcoff_fixup_addis for XCOFF.
2249 (ppc_change_csect): Handle XMC_TE.
2250 (ppc_tc): Enable .tc symbols to have only a XMC_TC or XMC_TE
2251 storage class.
2252 (ppc_symbol_new_hook): Handle XMC_TE.
2253 (ppc_frob_symbol): Likewise.
2254 (ppc_fix_adjustable): Likewise.
2255 (md_apply_fix): Handle BFD_RELOC_PPC_TOC16_HI and
2256 BFD_RELOC_PPC_TOC16_LO.
2257
b763d508
JB
22582021-03-10 Jan Beulich <jbeulich@suse.com>
2259
2260 * testsuite/gas/i386/avx512f-intel.d,
2261 testsuite/gas/i386/avx512f_vl-intel.d,
2262 testsuite/gas/i386/avx512pf-intel.d,
2263 testsuite/gas/i386/x86-64-avx512f-intel.d,
2264 testsuite/gas/i386/x86-64-avx512f_vl-intel.d,
2265 testsuite/gas/i386/x86-64-avx512pf-intel.d: Adjust expectations.
2266
31941983
JB
22672021-03-10 Jan Beulich <jbeulich@suse.com>
2268
2269 * testsuite/gas/i386/prefetch.d,
2270 testsuite/gas/i386/prefetch-intel.d,
2271 testsuite/gas/i386/x86-64-prefetch.d,
2272 testsuite/gas/i386/x86-64-prefetch-intel.d: Adjust expectations.
2273 * testsuite/gas/i386/nops-8.s, testsuite/gas/i386/nops-8.d: New.
2274 * testsuite/gas/i386/i386.exp: Run new test.
2275
742732c7
JB
22762021-03-09 Jan Beulich <jbeulich@suse.com>
2277
2278 * config/tc-i386.c (check_hle): Replace HLEPrefix* by Prefix*.
2279 (md_assemble): Replace use of repprefixok, islockable, and
2280 notrackprefixok.
2281 (i386_index_check): Replace use of repprefixok.
2282
e93a3b27
JB
22832021-03-09 Jan Beulich <jbeulich@suse.com>
2284
2285 * testsuite/gas/i386/noreg64.s: Add sysexit.
2286 * testsuite/gas/i386/x86-64-sysenter-amd.s: Split sysexit into
2287 sysexitl and sysexitq.
2288 * testsuite/gas/i386/noreg-intel64.l,
2289 testsuite/gas/i386/noreg64-data16.d,
2290 testsuite/gas/i386/noreg64-data16.e,
2291 testsuite/gas/i386/noreg64-rex64.d,
2292 testsuite/gas/i386/noreg64.d,
2293 testsuite/gas/i386/noreg64.l,
2294 testsuite/gas/i386/x86-64-sysenter-amd.d,
2295 testsuite/gas/i386/x86-64-sysenter-amd.l,
2296 testsuite/gas/i386/x86-64-sysenter-intel.d: Adjust expectations.
2297
fe0171d2
NC
22982021-02-26 Nick Clifton <nickc@redhat.com>
2299
2300 PR 27411
2301 * config/tc-arm.c (do_t_add_sub): Correct error message.
2302 * testsuite/gas/arm/pr27411.s: New test.
2303 * testsuite/gas/arm/pr27411.d: New test driver.
2304 * testsuite/gas/arm/pr27411.l: Expected error output for new test.
2305
55add51e
AM
23062021-02-24 Alan Modra <amodra@gmail.com>
2307
2308 PR 23691
2309 * Makefile.am (TARGET_CPU_CFILES): Split off config/xtensa-relax.c..
2310 (TARGET_CPU_HFILES): ..and config/xtensa-relax.h..
2311 (TARGET_EXTRA_FILES): ..to here. Add config/bfin-lex-wrapper.c,
2312 and use alongside TARGET_CPU_CFILES.
2313 (EXTRA_DIST): Update location of generated .c files.
2314 (config/m68k-parse.c): New rule replacing m68k-parse.c rule.
2315 (config/bfin-parse.c, config/rl78-parse.cm config/rx-parse.c),
2316 (config/bfin-lex.c, config/bfin-lex-wrapper.@OBJEXT@): Similarly.
2317 (itbl-lex-wrapper.@OBJEXT@): Simplify to just the needed
2318 dependencies.
2319 (itbl-parse.@OBJEXT@): Delete rule using NO_WERROR.
2320 (itbl-parse.c, itbl-parse.h): Tidy.
2321 * config/bfin-lex-wrapper.c: Include config/bfin-lex.c.
2322 * config/bfin-lex.l: Include config/bfin-parse.h.
2323 * configure.ac (extra_objects): Move object files corresponding
2324 to .y and .l files now in config/ to config/.
2325 * Makefile.in: Regenerate.
2326 * configure: Regenerate.
2327 * po/POTFILES.in: Regenerate.
2328
0257c2ff
NC
23292021-02-19 Nick Clifton <nickc@redhat.com>
2330
2331 * config/tc-riscv.c (riscv_ip): Fix compile time warnings about
2332 misleading indentation.
2333
5a9f5403
NC
23342021-02-19 Nelson Chu <nelson.chu@sifive.com>
2335
2336 PR 27158
2337 * config/tc-riscv.c (riscv_ip): Updated encoding macros.
2338 (md_apply_fix): Likewise.
2339 (md_convert_frag_branch): Likewise.
2340 (validate_riscv_insn): Likewise. Also arranged operands, including
2341 added C5 and C6 operands, and removed unused Ci and C< operands.
2342 * doc/c-riscv.texi: Updated and added CSS/CL/CS types.
2343 * testsuite/gas/riscv/insn.d: Added CSS/CL/CS instructions.
2344 * testsuite/gas/riscv/insn.s: Likewise.
2345
3d73d29e
NC
23462021-02-18 Nelson Chu <nelson.chu@sifive.com>
2347
2348 * config/tc-riscv.c: Included cpu-riscv.h.
2349 (enum riscv_csr_clas): Moved from include/opcode/riscv.h.
2350 (struct riscv_csr_extra): Likewise.
2351 (struct riscv_ext_version): Likewise.
2352 (ext_version_table): Moved from opcodes/riscv-opc.c.
2353 (default_isa_spec): Updated type to riscv_spec_class.
2354 (default_priv_spec): Likewise.
2355 (riscv_set_default_isa_spec): Updated.
2356 (init_ext_version_hash): Likewise.
2357 (riscv_init_csr_hash): Likewise, also fixed indent.
2358
089485ff
AM
23592021-02-17 Alan Modra <amodra@gmail.com>
2360
2361 * testsuite/gas/elf/section28.d: xfail h8300.
2362
ca1289b9
L
23632021-02-16 H.J. Lu <hongjiu.lu@intel.com>
2364
2365 PR gas/27412
2366 * config/obj-elf.c (obj_elf_change_section): Strip SHF_GNU_RETAIN
2367 when checking incorrect section attributes.
2368 * testsuite/gas/elf/elf.exp: Run section28 and section29.
2369 * testsuite/gas/elf/section28.d: New file.
2370 * testsuite/gas/elf/section28.s: Likewise.
2371 * testsuite/gas/elf/section29.d: Likewise.
2372 * testsuite/gas/elf/section29.s: Likewise.
2373
394ae71f
JB
23742021-02-16 Jan Beulich <jbeulich@suse.com>
2375
2376 * testsuite/gas/i386/sse-check.s,
2377 testsuite/gas/i386/sse2avx.s,
2378 testsuite/gas/i386/x86-64-sse2avx.s: Add CVTPI2PD cases.
2379 * testsuite/gas/i386/sse-check-error.l,
2380 testsuite/gas/i386/sse-check-warn.e,
2381 testsuite/gas/i386/sse-check.d,
2382 testsuite/gas/i386/sse2avx.d,
2383 testsuite/gas/i386/x86-64-sse-check-error.l,
2384 testsuite/gas/i386/x86-64-sse2avx.d: Adjust expecations.
2385 * testsuite/gas/i386/property-cvtpi2pd.s,
2386 testsuite/gas/i386/property-cvtpi2pd.d,
2387 testsuite/gas/i386/property-cvtpi2ps.s,
2388 testsuite/gas/i386/property-cvtpi2ps.d: New.
2389 * testsuite/gas/i386/i386.exp: Run new tests.
2390
3d70986f
JB
23912021-02-16 Jan Beulich <jbeulich@suse.com>
2392
2393 * config/tc-i386.c (md_assemble): Use template rather than
2394 actuals when updating i.xstate.
2395 * testsuite/gas/i386/property-4.d,
2396 testsuite/gas/i386/property-5.d,
2397 testsuite/gas/i386/property-12.d: Adjust expectations.
2398
014d61ea
JB
23992021-02-16 Jan Beulich <jbeulich@suse.com>
2400
2401 * config/tc-i386.c (output_insn): Handle ldmxcsr, stmxcsr,
2402 vldmxcsr, vstmxcsr, vzeroall, and vzeroupper.
2403 * testsuite/gas/i386/property-ldmxcsr.s,
2404 testsuite/gas/i386/property-ldmxcsr.d,
2405 testsuite/gas/i386/property-vldmxcsr.s,
2406 testsuite/gas/i386/property-vldmxcsr.d,
2407 testsuite/gas/i386/property-vzeroall.s,
2408 testsuite/gas/i386/property-vzeroall.d: New.
2409 * testsuite/gas/i386/i386.exp: Run new tests.
2410
cbe68696
JB
24112021-02-16 Jan Beulich <jbeulich@suse.com>
2412
2413 * testsuite/gas/i386/i386.exp: Move bitness-independent property
2414 tests to bitness independent section.
2415 * testsuite/gas/i386/x86-64-property-2.d,
2416 testsuite/gas/i386/x86-64-property-3.d,
2417 testsuite/gas/i386/x86-64-property-4.d,
2418 testsuite/gas/i386/x86-64-property-5.d,
2419 testsuite/gas/i386/x86-64-property-6.d,
2420 testsuite/gas/i386/x86-64-property-10.d,
2421 testsuite/gas/i386/x86-64-property-11.d,
2422 testsuite/gas/i386/x86-64-property-12.d,
2423 testsuite/gas/i386/x86-64-property-13.d: Delete.
2424
c2f1204d
JB
24252021-02-16 Jan Beulich <jbeulich@suse.com>
2426
2427 * testsuite/gas/i386/enqcmd-16bit.s: Include enqcmd.s, not
2428 movdir.s.
2429 * testsuite/gas/i386/enqcmd-16bit.d: Adjust expectations.
2430
9a12b194
AM
24312021-02-16 Alan Modra <amodra@gmail.com>
2432
2433 PR 27426
2434 * dwarf2dbg.c (allocate_filename_to_slot): Allocate the dirs array
2435 in another place.
2436
70433886
AM
24372021-02-16 Alan Modra <amodra@gmail.com>
2438
2439 * read.c (demand_copy_C_string): Really check for embedded zeros.
2440
ba2b480f
AK
24412021-02-15 Andreas Krebbel <krebbel@linux.ibm.com>
2442
2443 * config/tc-s390.c (s390_parse_cpu): New entry for arch14.
2444 * doc/c-s390.texi: Document arch14 march option.
2445 * testsuite/gas/s390/s390.exp: Run the arch14 related tests.
2446 * testsuite/gas/s390/zarch-arch14.d: New test.
2447 * testsuite/gas/s390/zarch-arch14.s: New test.
2448
c46b7066
NC
24492021-02-12 Nick Clifton <nickc@redhat.com>
2450
2451 * testsuite/gas/mach-o/sections-1.d: Stop automatic debug link
32d71569 2452 following.
c46b7066
NC
2453 * testsuite/gas/xgate/insns-dwarf2.d: Likewise.
2454
3c1d4101
AM
24552021-02-12 Alan Modra <amodra@gmail.com>
2456
2457 * testsuite/gas/all/pr27381.err: Don't match source file name.
2458 * testsuite/gas/all/pr27381.s: Don't start directive in first column.
2459 * testsuite/gas/all/pr27384.err: Don't match source file name.
2460 Adjust line number.
2461 * testsuite/gas/all/pr27384.s: Add ".text" directive.
2462 * testsuite/gas/elf/pr27355.err: Don't match source file name.
2463
933feaf3
AM
24642021-02-11 Alan Modra <amodra@gmail.com>
2465
2466 * NEWS: Mention arm-symbianelf removal.
2467
01e8b831
NC
24682021-02-10 Nick Clifton <nickc@redhat.com>
2469
2470 * listing.c (buffer_line): Remove debugging code accidentally
2471 included with the fix for PR 27384.
2472
284beb43
NC
24732021-02-09 Nick Clifton <nickc@redhat.com>
2474
2475 PR 27381
2476 * read.c (s_incbin): Check that the file to be included is a
2477 regular, non-directory file.
2478 * testsuite/gas/all/pr27381.s: New test source file.
2479 * testsuite/gas/all/pr27381.d: New test control file.
2480 * testsuite/gas/all/pr27381.err: Expected error output for the new test.
2481 * testsuite/gas/all/gas.exp: Run the new test.
2482
a57d1773
AM
24832021-02-09 Alan Modra <amodra@gmail.com>
2484
2485 * Makefile.am (TARG_ENV_HFILES): Remove config/te-symbian.h.
2486 * config/tc-arm.c (elf32_arm_target_format): Remove TE_SYMBIAN
2487 support.
2488 * config/te-symbian.h: Delete.
2489 * configure.tgt: Remove arm-*-symbianelf*.
2490 * testsuite/gas/arm/arch4t-eabi.d: Don't mention symbianelf in
2491 target selection.
2492 * testsuite/gas/arm/arch4t.d: Likewise.
2493 * testsuite/gas/arm/got_prel.d: Likewise.
2494 * testsuite/gas/arm/mapdir.d: Likewise.
2495 * testsuite/gas/arm/mapmisc.d: Likewise.
2496 * testsuite/gas/arm/mapsecs.d: Likewise.
2497 * testsuite/gas/arm/mapshort-eabi.d: Likewise.
2498 * testsuite/gas/arm/thumb-eabi.d: Likewise.
2499 * testsuite/gas/arm/thumb.d: Likewise.
2500 * testsuite/gas/arm/thumbrel.d: Likewise.
2501 * Makefile.in: Regenerate.
2502 * po/POTFILES.in: Regenerate.
2503
4a68fcd7
NC
25042021-02-09 Nick Clifton <nickc@redhat.com>
2505
2506 PR 27384
2507 * listing.c (listing_psize): Check the result of the width
2508 expression before assigning it to paper_width.
2509 * testsuite/gas/all/pr27384.s: New test source file.
2510 * testsuite/gas/all/pr27384.d: New test control file.
2511 * testsuite/gas/all/pr27384.err: Expected errors from new test.
2512 * testsuite/gas/all/gas.exp: Run the new test.
2513
52563b0f
NC
25142021-02-09 Nick Clifton <nickc@redhat.com>
2515
2516 PR 27355
2517 * testsuite/gas/elf/pr27355.s: New test source file.
2518 * testsuite/gas/elf/pr27355.d: New test control file.
2519 * testsuite/gas/elf/pr27355.err: Expected errors from new test.
2520 * testsuite/gas/elf/elf.exp: Run the new test.
2521
bfd428bc
MF
25222021-02-08 Mike Frysinger <vapier@gentoo.org>
2523
2524 * config/tc-tic54x (tic54x_mmregs): Rename to ...
2525 (tic54x_register_mmregs): ... this. Change mmregs to tic54x_mmregs.
2526 (md_pseudo_table): Change tic54x_mmregs to tic54x_register_mmregs.
2527 (md_begin): Add tic54x_ prefix to regs, mmregs, condition_codes,
2528 cc2_codes, cc3_codes, status_bits, and misc_symbols.
2529
80b652ef
NC
25302021-02-08 Nick Clifton <nickc@redhat.com>
2531
2532 PR 27355
2533 * dwarf2dbg.c (allocate_filename_to_slot): Allocate the dirs array
2534 if it has not already been created.
2535
24075dcc
NC
25362021-02-04 Nelson Chu <nelson.chu@sifive.com>
2537
2538 * config/tc-riscv.c (riscv_multi_subset_supports): Removed
2539 INSN_CLASS_ZB*.
2540 * testsuite/gas/riscv/bitmanip-insns-32.d: Removed.
2541 * testsuite/gas/riscv/bitmanip-insns-64.d: Removed.
2542 * testsuite/gas/riscv/bitmanip-insns.s: Removed.
2543
61ecbbae
AK
25442021-02-03 Andreas Krebbel <krebbel@linux.ibm.com>
2545
2546 * doc/c-s390.texi: Document vector instruction formats.
2547
1f568f9a
EH
25482021-02-01 Emery Hemingway <ehmry@posteo.net>
2549
2550 * configure.tgt: Add *-*-genode* as a target for AArch64 and x86.
2551
7bba67ec
AM
25522021-02-01 Alan Modra <amodra@gmail.com>
2553
2554 PR 27283
2555 * config/tc-alpha.c (insert_operand): Delete dead code.
2556
1f583bc2
L
25572021-01-26 H.J. Lu <hongjiu.lu@intel.com>
2558
2559 PR gas/27243
2560 * config/tc-nios2.c (md_begin): Don't disable relaxation with
2561 --gdwarf-N.
2562 * testsuite/gas/nios2/relax.d: New file.
2563 * testsuite/gas/nios2/relax.s: Likewise.
2564
a45ef9a3
AM
25652021-01-26 Alan Modra <amodra@gmail.com>
2566
2567 * testsuite/gas/all/local-label-overflow.d: Use xfail rather than
2568 notarget all except hppa. Comment.
2569 * testsuite/gas/all/sleb128-2.d: Use xfail rather than notarget.
2570 * testsuite/gas/all/sleb128-4.d: Likewise. Don't skip msp430.
2571 * testsuite/gas/all/sleb128-5.d: Use xfail rather than notarget.
2572 * testsuite/gas/all/sleb128-7.d: Likewise.
2573 * testsuite/gas/all/sleb128-9.d: Likewise.
2574 * testsuite/gas/elf/bignums.d: Likewise.
2575 * testsuite/gas/elf/group0c.d: Likewise.
2576 * testsuite/gas/elf/group1a.d: Likewise.
2577 * testsuite/gas/elf/section-symbol-redef.d: Likewise.
2578 * testsuite/gas/elf/section15.d: Likewise.
2579 * testsuite/gas/elf/section4.d: Likewise.
2580 * testsuite/gas/elf/section7.d: Likewise.
2581 * testsuite/gas/macros/irp.d: Likewise.
2582 * testsuite/gas/macros/repeat.d: Likewise.
2583 * testsuite/gas/macros/rept.d: Likewise.
2584 * testsuite/gas/macros/test2.d: Likewise.
2585 * testsuite/gas/macros/vararg.d: Likewise.
2586 * testsuite/gas/all/string.d: Use xfail rather than skip.
2587 * testsuite/gas/elf/missing-build-notes.d: Likewise.
2588 * testsuite/gas/elf/section0.d: Likewise.
2589 * testsuite/gas/elf/section1.d: Likewise.
2590 * testsuite/gas/elf/section10.d: Likewise.
2591 * testsuite/gas/elf/section11.d: Likewise.
2592 * testsuite/gas/elf/section6.d: Likewise.
2593 * testsuite/gas/elf/symtab.d: Use xfail rather than skip, adjust hppa.
2594 * testsuite/gas/elf/symtab.s: Don't start directives in first column.
2595 * testsuite/gas/macros/test3.d: Don't notarget nds32.
2596
9886ff03
AM
25972021-01-26 Alan Modra <amodra@gmail.com>
2598
2599 * testsuite/gas/all/byte.d,
2600 * testsuite/gas/all/byte.l,
2601 * testsuite/gas/all/byte.s: Delete.
2602 * testsuite/gas/all/gas.exp: Don't run byte test.
2603
4287950e
AM
26042021-01-26 Alan Modra <amodra@gmail.com>
2605
2606 PR 27282
2607 * testsuite/gas/all/none.d: Replace skip with xfail, don't xfail ft32.
2608 * testsuite/gas/elf/pr27228.d: xfail hppa and allow OBJECT match.
2609
eea133e6
L
26102021-01-24 H.J. Lu <hongjiu.lu@intel.com>
2611
2612 PR gas/27228
2613 * testsuite/gas/elf/elf.exp: Run pr27228.
2614 * testsuite/gas/elf/pr27228.d: New file.
2615 * testsuite/gas/elf/pr27228.s: Likewise.
2616
68fcee4f
AM
26172021-01-24 Alan Modra <amodra@gmail.com>
2618
2619 PR 27228
2620 * write.c (resolve_reloc_expr_symbols): Don't assume local symbol
2621 is defined.
2622
be07043e
AM
26232021-01-21 Alan Modra <amodra@gmail.com>
2624
2625 PR 27221
2626 * dwarf2dbg.c (dwarf2_gen_line_info_1): Don't warn about ignored
2627 line number info when gas is generating it.
2628 * testsuite/gas/elf/dwarf2-20.d: Adjust to not expect warnings.
2629 * testsuite/gas/m68hc11/indexed12.d: Likewise.
2630 * testsuite/gas/elf/elf.exp: Don't run warn-2.
2631 * gas/testsuite/gas/elf/warn-2.s: Delete.
2632
498ff032
AM
26332021-01-21 Alan Modra <amodra@gmail.com>
2634
2635 PR 27218
2636 * dwarf2dbg.c (dwarf2_gen_line_info): Correct setting of dwarf_level.
2637 (dwarf2_directive_filename, dwarf2_directive_loc): Likewise, and
2638 error for negative file numbers.
2639
4bd7c902
AM
26402021-01-20 Alan Modra <amodra@gmail.com>
2641
2642 * testsuite/gas/ppc/power4.d: Adjust for removal of section sym.
2643 * testsuite/gas/ppc/test1elf32.d: Likewise.
2644 * testsuite/gas/ppc/test1elf64.d: Likewise.
2645
705989f1
L
26462021-01-18 H.J. Lu <hongjiu.lu@intel.com>
2647
2648 PR gas/27195
2649 * dwarf2dbg.c (dwarf2_gen_line_info): Set dwarf_level to 5 if
2650 needed.
2651 (dwarf2_directive_filename): Likewise.
2652 (dwarf2_directive_loc): Likewise.
2653 * testsuite/gas/elf/dwarf-5-file0.d: Pass --gdwarf-3.
2654 * testsuite/gas/lns/lns-diag-1.l: Remove the
2655 "Error: file number less than one" errors.
2656
44365e88
AM
26572021-01-18 Alan Modra <amodra@gmail.com>
2658
2659 PR 27198
2660 * config/tc-i386.c (need_plt32_p): Return FALSE for NULL symbol.
2661 * testsuite/gas/i386/pr27198.d,
2662 * gas/testsuite/gas/i386/pr27198.err,
2663 * gas/testsuite/gas/i386/pr27198.s: New test.
2664 * gas/testsuite/gas/i386/i386.exp: Run it.
2665
1942a048
NC
26662021-01-15 Nelson Chu <nelson.chu@sifive.com>
2667
2668 * config/tc-riscv.c: Indent and GNU coding standards tidy,
2669 also aligned the code.
2670 * config/tc-riscv.h: Likewise.
2671
b800637e
NC
26722021-01-15 Nelson Chu <nelson.chu@sifive.com>
2673
2674 * config/tc-riscv.c: Error and warning messages tidy.
2675 * testsuite/gas/riscv/priv-reg-fail-fext.l: Updated.
2676 * testsuite/gas/riscv/priv-reg-fail-read-only-01.l: Likewise.
2677 * testsuite/gas/riscv/priv-reg-fail-read-only-02.l: Likewise.
2678 * testsuite/gas/riscv/priv-reg-fail-rv32-only.l: Likewise.
2679 * testsuite/gas/riscv/priv-reg-fail-version-1p10.l: Likewise.
2680 * testsuite/gas/riscv/priv-reg-fail-version-1p11.l: Likewise.
2681 * testsuite/gas/riscv/priv-reg-fail-version-1p9p1.l: Likewise.
2682
dcd709e0
NC
26832021-01-15 Nelson Chu <nelson.chu@sifive.com>
2684
2685 * config/tc-riscv.c: Comments tidy and improvement. Also update
2686 comment "fallthru" to "Fall through" that end with a period and
2687 two spaces.
2688
5fda40b2
MF
26892021-01-14 Mike Frysinger <vapier@gentoo.org>
2690
2691 * doc/as.texi: Delete @ifset ELF wrapping around [248]byte entries.
2692 Delete warning that these are only available with ELF targets.
2693 * obj-elf.c (elf_pseudo_table): Move 2byte/4byte/8byte entries ...
2694 * read.c (potable): ... here.
2695
abad2815
MF
26962021-01-14 Mike Frysinger <vapier@gentoo.org>
2697
2698 * Makefile.am (bfin-lex-wrapper.@OBJEXT@): Delete $(NO_WERROR).
2699 * Makefile.in: Regenerated.
2700
adb0bd8f
MF
27012021-01-14 Mike Frysinger <vapier@gentoo.org>
2702
2703 * bfin-lex.l (YY_NO_INPUT, YY_NO_UNPUT): Define.
2704 (parse_int): Mark char_bag const.
2705
844bf810
L
27062021-01-13 H.J. Lu <hongjiu.lu@intel.com>
2707
2708 PR gas/27178
2709 * config/tc-i386.c (lex_got::gotrel): Add need_GOT_symbol.
2710 Don't generate GOT_symbol for PLT relocations.
2711 * testsuite/gas/i386/i386.exp: Run PR gas/27178 tests.
2712 * testsuite/gas/i386/no-got.d: New file.
2713 * testsuite/gas/i386/no-got.s: Likewise.
2714 * testsuite/gas/i386/x86-64-no-got.d: Likewise.
2715 * testsuite/gas/i386/x86-64-no-got.s: Likewise.
2716
5347ed60
AM
27172021-01-13 Alan Modra <amodra@gmail.com>
2718
2719 * Makefile.in: Regenerate.
2720 * Makefile.in: Regenerate.
2721
d546b610
L
27222021-01-12 H.J. Lu <hongjiu.lu@intel.com>
2723
2724 PR binutils/26792
2725 * configure.ac: Use GNU_MAKE_JOBSERVER.
2726 * aclocal.m4: Regenerated.
2727 * configure: Likewise.
2728
6d104cac
NC
27292021-01-12 Nick Clifton <nickc@redhat.com>
2730
2731 * po/fr.po: Updated French translation.
2732
83b33c6c
L
27332021-01-11 H.J. Lu <hongjiu.lu@intel.com>
2734
2735 PR ld/27173
2736 * configure: Regenerated.
2737
82c70b08
KT
27382021-10-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2739
2740 * NEWS: Remove CSRE.
2741 * config/tc-aarch64.c (parse_csr_operand): Delete.
2742 (parse_operands): Delete handling of
2743 AARCH64_OPND_CSRE_CSR.
2744 (aarch64_features): Remove csre.
2745 * doc/c-aarch64.texi: Remove CSRE.
2746 * testsuite/gas/aarch64/csre.d: Delete.
2747 * testsuite/gas/aarch64/csre-invalid.s: Likewise.
2748 * testsuite/gas/aarch64/csre-invalid.d: Likewise.
2749 * testsuite/gas/aarch64/csre_csr.s: Likewise.
2750 * testsuite/gas/aarch64/csre_csr.d: Likewise.
2751 * testsuite/gas/aarch64/csre_csr-invalid.s: Likewise.
2752 * testsuite/gas/aarch64/csre_csr-invalid.l: Likewise.
2753 * testsuite/gas/aarch64/csre_csr-invalid.d: Likewise.
2754
a8aa72b9
NC
27552021-01-11 Nick Clifton <nickc@redhat.com>
2756
2757 * po/uk.po: Updated Ukranian translation.
2758
a4966cd9
L
27592021-01-09 H.J. Lu <hongjiu.lu@intel.com>
2760
2761 * configure: Regenerated.
2762
573fe3fb
NC
27632021-01-09 Nick Clifton <nickc@redhat.com>
2764
2765 * configure: Regenerate.
2766 * po/gas.pot: Regenerate.
2767
055bc77a
NC
27682021-01-09 Nick Clifton <nickc@redhat.com>
2769
2770 * 2.36 release branch crated.
2771
aae7fcb8
PB
27722021-01-08 Peter Bergner <bergner@linux.ibm.com>
2773
2774 * testsuite/gas/ppc/rop-checks.d,
2775 * testsuite/gas/ppc/rop-checks.l,
2776 * testsuite/gas/ppc/rop-checks.s,
2777 * testsuite/gas/ppc/rop.d,
2778 * testsuite/gas/ppc/rop.s: New tests.
2779 * testsuite/gas/ppc/ppc.exp: Run them.
2780
64307045
AM
27812021-01-09 Alan Modra <amodra@gmail.com>
2782
2783 * configure: Regenerate.
2784
f4782128
ST
27852021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
2786
2787 * configure: Regenerate.
2788
d1bcae83
L
27892021-01-07 H.J. Lu <hongjiu.lu@intel.com>
2790
2791 PR 27109
2792 * read.c (s_reloc): Call symbol_mark_used_in_reloc on the
2793 section symbol.
2794 * subsegs.c (subseg_set_rest): Set BSF_SECTION_SYM_USED if needed.
2795 * write.c (adjust_reloc_syms): Call symbol_mark_used_in_reloc
2796 on the section symbol.
2797 (set_symtab): Don't generate unused section symbols.
2798 (maybe_generate_build_notes): Call symbol_mark_used_in_reloc
2799 on the section symbol.
2800 * config/obj-elf.c (elf_adjust_symtab): Call
2801 symbol_mark_used_in_reloc on the group signature symbol.
2802 * testsuite/gas/cfi/cfi-label.d: Remove unused section symbols
2803 from expected output.
2804 * testsuite/gas/elf/elf.exp (run_elf_list_test): Check
2805 is_elf_unused_section_symbols.
2806 * testsuite/gas/elf/section2.e: Updated.
2807 * testsuite/gas/elf/section2.e-unused: New file.
2808 * testsuite/gas/elf/symver.d: Remove unused section symbols.
2809 * testsuite/gas/i386/ilp32/elf/symver.d: Likewise.
2810 * testsuite/gas/i386/ilp32/x86-64-size-1.d: Likewise.
2811 * testsuite/gas/i386/ilp32/x86-64-size-3.d: Likewise.
2812 * testsuite/gas/i386/ilp32/x86-64-size-5.d: Likewise.
2813 * testsuite/gas/i386/ilp32/x86-64-unwind.d: Likewise.
2814 * testsuite/gas/i386/size-1.d: Likewise.
2815 * testsuite/gas/i386/size-3.d: Likewise.
2816 * testsuite/gas/i386/svr4.d: Likewise.
2817 * testsuite/gas/i386/x86-64-size-1.d: Likewise.
2818 * testsuite/gas/i386/x86-64-size-3.d: Likewise.
2819 * testsuite/gas/i386/x86-64-size-5.d: Likewise.
2820 * testsuite/gas/i386/x86-64-unwind.d: Likewise.
2821
aa881ecd
PT
28222021-01-07 Philipp Tomsich <prt@gnu.org>
2823
2824 * config/tc-riscv.c (riscv_multi_subset_supports): Added
2825 INSN_CLASS_ZIHINTPAUSE.
2826 * testsuite/gas/riscv/pause.d: New testcase. Adding coverage for
2827 the pause hint instruction.
2828 * testsuite/gas/riscv/pause.s: Likewise.
2829
2652cfad
CXW
28302021-01-07 Claire Xenia Wolf <claire@symbioticeda.com>
2831 Jim Wilson <jimw@sifive.com>
2832 Andrew Waterman <andrew@sifive.com>
2833 Maxim Blinov <maxim.blinov@embecosm.com>
2834 Kito Cheng <kito.cheng@sifive.com>
2835 Nelson Chu <nelson.chu@sifive.com>
2836
2837 * config/tc-riscv.c (riscv_multi_subset_supports): Handle INSN_CLASS_ZB*.
2838 (riscv_get_default_ext_version): Do not check the default_isa_spec when
2839 the version defined in the riscv_opcodes table is ISA_SPEC_CLASS_DRAFT.
2840 * testsuite/gas/riscv/bitmanip-insns-32.d: New testcase.
2841 * testsuite/gas/riscv/bitmanip-insns-64.d: Likewise.
2842 * testsuite/gas/riscv/bitmanip-insns.s: Likewise.
2843
85f55c2b
AM
28442021-01-06 Alan Modra <amodra@gmail.com>
2845
2846 * testsuite/gas/sparc/sparc.exp: Move 64-bit tests inside gas_64_check.
2847
22206e84
AM
28482021-01-06 Alan Modra <amodra@gmail.com>
2849
2850 * testsuite/gas/macros/app1.d: xfail tic30.
2851 * testsuite/gas/macros/app2.d: Likewise.
2852 * testsuite/gas/macros/app3.d: Likewise.
2853 * testsuite/gas/macros/app4.d: Likewise.
2854
286d2f2c
MC
28552021-01-06 Marcus Comstedt <marcus@mc.pp.se>
2856
2857 * doc/as.texi: Add -mlittle-endian and -mbig-endian to docs.
2858 * doc/c-riscv.texi: Likewise.
2859
f36ce378
MC
28602021-01-06 Marcus Comstedt <marcus@mc.pp.se>
2861
2862 * testsuite/gas/riscv/li32.d: Accept bigriscv in addition
2863 to littleriscv.
2864 * testsuite/gas/riscv/li64.d: Likewise.
2865 * testsuite/gas/riscv/lla32.d: Likewise.
2866 * testsuite/gas/riscv/lla64.d: Likewise.
2867 * testsuite/gas/riscv/march-ok-g2.d: Likewise.
2868 * testsuite/gas/riscv/march-ok-g2_p1.d: Likewise.
2869 * testsuite/gas/riscv/march-ok-g2p0.d: Likewise.
2870 * testsuite/gas/riscv/march-ok-i2p0.d: Likewise.
2871 * testsuite/gas/riscv/march-ok-i2p0m2_a2f2.d: Likewise.
2872 * testsuite/gas/riscv/march-ok-nse-with-version.d: Likewise.
2873 * testsuite/gas/riscv/march-ok-two-nse.d: Likewise.
2874
fbc09e7a
MC
28752021-01-06 Marcus Comstedt <marcus@mc.pp.se>
2876
2877 * config/tc-riscv.c (riscv_target_format): Add elf64-bigriscv and
2878 elf32-bigriscv.
2879 (install_insn): Always write instructions as little endian.
2880 (riscv_make_nops): Likewise.
2881 (md_convert_frag_branch): Likewise.
2882 (md_number_to_chars): Write data in target endianness.
2883 (options, md_longopts): Add -mbig-endian and -mlittle-endian options.
2884 (md_parse_option): Handle the endian options.
2885 * config/tc-riscv.h: Only define TARGET_BYTES_BIG_ENDIAN if not
2886 already defined.
2887 * configure.tgt: Added riscv64be*, riscv32be*, riscvbe*.
2888
cd6d537c
L
28892021-01-04 H.J. Lu <hongjiu.lu@intel.com>
2890
2891 PR ld/26256
2892 * config/obj-elf.c (obj_elf_change_section): Also filter out
2893 SHF_LINK_ORDER.
2894
dd933805
AM
28952021-01-04 Alan Modra <amodra@gmail.com>
2896
2897 PR 27102
2898 * symbols.c (S_SET_EXTERNAL): Revise section symbol warning
2899 message and register symbol error message.
2900
90320e40
AM
29012021-01-04 Alan Modra <amodra@gmail.com>
2902
2903 PR 27101
2904 * read.c (s_align): Use a large enough type for "align" to hold
2905 the result of get_absolute_expression.
2906
f9a6a8f0
AM
29072021-01-01 Nicolas Boulenguez <nicolas@debian.org>
2908
2909 * config/tc-i386.c: Correct comment spelling.
2910 * config/tc-riscv.c: Likewise.
2911 * config/tc-s390.c: Correct comment grammar.
2912 * doc/c-i386.texi: Correct spelling.
2913 * doc/c-s390.texi: Correct grammar.
2914
250d07de
AM
29152021-01-01 Alan Modra <amodra@gmail.com>
2916
2917 Update year range in copyright notice of all files.
2918
64d05a43
HPN
29192021-01-01 Hans-Peter Nilsson <hp@bitrange.com>
2920
2921 * config/tc-mmix.h (md_single_noop_insn): Change to "swym 0".
2922
c2795844 2923For older changes see ChangeLog-2020
3499769a 2924\f
d87bef3a 2925Copyright (C) 2021-2023 Free Software Foundation, Inc.
3499769a
AM
2926
2927Copying and distribution of this file, with or without modification,
2928are permitted in any medium without royalty provided the copyright
2929notice and this notice are preserved.
2930
2931Local Variables:
2932mode: change-log
2933left-margin: 8
2934fill-column: 74
2935version-control: never
2936End: