Fix compile time warnings building the binutils with gcc 7.1.1.
[deliverable/binutils-gdb.git] / gas / ChangeLog
CommitLineData
0bae9e9e
NC
12017-07-12 Nick Clifton <nickc@redhat.com>
2
3 Fix compile time warnings using gcc 7.1.1.
4 * config/tc-pru.c (md_assemble): Add continue statement after
5 handling 'E' operand character.
6 * config/tc-v850.c (md_assemble): Initialise the 'insn' variable.
7
15a7695f
JG
82017-07-05 James Greenhalgh <james.greenhalgh@arm.com>
9
10 * config/tc-arm.c (arm_cpus): Add Cortex-A55 and Cortex-A75.
11 * doc/c-arm.texi (-mcpu): Document Cortex-A55 and Cortex-A75.
12
e4bdd679
BP
132017-07-05 Borislav Petkov <bp@suse.de>
14
15 * testsuite/gas/i386/opcode.s: Add tests for ModRM.reg == 6 variants.
16 * testsuite/gas/i386/opcode.d: ditto.
17 * testsuite/gas/i386/x86-64-opcode.s: Add x86_64 variants too.
18 * testsuite/gas/i386/x86-64-opcode.d: ditto.
19
60c96dbf
RR
202017-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
21
22 * config/tc-arm.c (arm_regs): Add MVFR2.
23 (do_vmrs): Constraint for MVFR2 and armv8.
24 (do_vmsr): Likewise.
25 * testsuite/gas/arm/armv8-a+fp.d: Update.
26 * testsuite/gas/arm/armv8-ar+fp.s: Likewise.
27 * testsuite/gas/arm/armv8-r+fp.d: Likewise.
28 * testsuite/gas/arm/vfp-bad.s: Likewise.
29 * testsuite/gas/arm/vfp-bad.l: Likewise.
30
0d702cfe
TG
312017-07-04 Tristan Gingold <gingold@adacore.com>
32
33 * configure: Regenerate.
34
55a09eb6
TG
352017-07-04 Tristan Gingold <gingold@adacore.com>
36
37 * NEWS: Add marker for 2.29.
38
8d219acd
AM
392017-07-03 Alan Modra <amodra@gmail.com>
40
41 * testsuite/gas/elf/symver.d: Don't run on hppa64-hpux.
42
834a65aa
MR
432017-06-30 Maciej W. Rozycki <macro@imgtec.com>
44
45 * config/tc-mips.c (md_convert_frag): Use a switch on the
46 microMIPS relaxation type rather than a chain of conditionals.
47
bbd27b76
MR
482017-06-30 Maciej W. Rozycki <macro@imgtec.com>
49
50 * config/tc-mips.c (md_convert_frag): Rewrite `fix_new_exp'
51 calls in terms of `fix_new'.
52
9f00292e
MR
532017-06-30 Maciej W. Rozycki <macro@imgtec.com>
54
55 * config/tc-mips.c (md_convert_frag): Don't make a helper
56 expression symbol for `fix_new_exp' called with a non-zero
57 offset.
58 * testsuite/gas/mips/relax-offset.d: New test.
59 * testsuite/gas/mips/mips1@relax-offset.d: New test.
60 * testsuite/gas/mips/r3000@relax-offset.d: New test.
61 * testsuite/gas/mips/r3900@relax-offset.d: New test.
62 * testsuite/gas/mips/micromips@relax-offset.d: New test.
63 * testsuite/gas/mips/relax-offset.l: New stderr output.
64 * testsuite/gas/mips/relax-offset.s: New test source.
65 * testsuite/gas/mips/mips.exp: Run the new tests.
66
32f76c67
GJL
672017-06-30 Georg-Johann Lay <avr@gjlay.de>
68
69 PR gas/21683
70 * doc/c-avr.texi (AVR Options) <-mgcc-isr>: Document it.
71 (AVR Pseudo Instructions): New node.
72 * config/tc-avr.h (md_pre_output_hook): Define to avr_pre_output_hook.
73 (md_undefined_symbol): Define to avr_undefined_symbol.
74 (avr_pre_output_hook, avr_undefined_symbol): New protos.
75 * config/tc-avr.c (struc-symbol.h): Include it.
76 (ISR_CHUNK_Done, ISR_CHUNK_Prologue, ISR_CHUNK_Epilogue): New enums.
77 (avr_isr, avr_gccisr_opcode)
78 (avr_no_sreg_hash, avr_no_sreg): New static variables.
79 (avr_opt_s) <have_gccisr>: Add field.
80 (avr_opt): Add initializer for have_gccisr.
81 (enum options) <OPTION_HAVE_GCCISR>: Add enum.
82 (md_longopts) <"mgcc-isr">: Add entry.
83 (md_show_usage): Document -mgcc-isr.
84 (md_parse_option) [OPTION_HAVE_GCCISR]: Handle it.
85 (md_undefined_symbol): Remove.
86 (avr_undefined_symbol, avr_pre_output_hook): New fuctions.
87 (md_begin) <avr_no_sreg_hash, avr_gccisr_opcode>: Initialize them.
88 (avr_operand) <pregno>: Add argument and set *pregno if function
89 is called for a register constraint.
90 [N]: Handle constraint.
91 (avr_operands) <avr_operand>: Pass 5th parameter to calls.
92 [avr_opt.have_gccisr]: Call avr_update_gccisr. Call
93 avr_gccisr_operands instead of avr_operands.
94 (avr_update_gccisr, avr_emit_insn, avr_patch_gccisr_frag)
95 (avr_gccisr_operands, avr_check_gccisr_done): New static functions.
96 * testsuite/gas/avr/gccisr-01.d: New test.
97 * testsuite/gas/avr/gccisr-01.s: New test.
98 * testsuite/gas/avr/gccisr-02.d: New test.
99 * testsuite/gas/avr/gccisr-02.s: New test.
100 * testsuite/gas/avr/gccisr-03.d: New test.
101 * testsuite/gas/avr/gccisr-03.s: New test.
102
33f46696
MR
1032017-06-30 Maciej W. Rozycki <macro@imgtec.com>
104
105 * config/tc-mips.c (match_float_constant): Update description.
106 (match_operand): Likewise.
107
909b4e3d
MR
1082017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
109 Maciej W. Rozycki <macro@imgtec.com>
110
111 * config/tc-mips.c (mips_ases): Add microMIPS XPA support.
112 * testsuite/gas/mips/micromips@xpa.d: New test.
113 * testsuite/gas/mips/mips.exp: Run the new test. Enable
114 `xpa-virt-err' test for `micromips'.
115
f5b2fd52
MR
1162017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
117 Maciej W. Rozycki <macro@imgtec.com>
118
119 * testsuite/gas/mips/micromips@r5.d: New test.
120 * testsuite/gas/mips/mips.exp: Run the new test.
121
9785fc2a
MR
1222017-06-30 Maciej W. Rozycki <macro@imgtec.com>
123 Andrew Bennett <andrew.bennett@imgtec.com>
124
125 * config/tc-mips.c (mips_set_ase): Handle the ASE_XPA_VIRT flag.
126 * testsuite/gas/mips/xpa.d: Remove `xpa' from `-M' in `objdump'
127 flags. Add `-mvirt' to `as' flags.
128 * testsuite/gas/mips/xpa-err.d: New test.
129 * testsuite/gas/mips/xpa-virt-err.d: New test.
130 * testsuite/gas/mips/xpa-err.l: New stderr output.
131 * testsuite/gas/mips/xpa-virt-err.l: New stderr output.
132 * testsuite/gas/mips/xpa-err.s: New test source.
133 * testsuite/gas/mips/xpa-virt-err.s: New test source.
134 * testsuite/gas/mips/mips.exp: Run the new tests.
135
60804c53
MR
1362017-06-29 Maciej W. Rozycki <macro@imgtec.com>
137
138 * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: Adjust for the
139 ASE_MIPS16E2_MT flag disassembler fix.
140 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
141 Likewise.
142
92cebb3d
MR
1432017-06-29 Maciej W. Rozycki <macro@imgtec.com>
144
145 * config/tc-mips.c (mips_set_ase): Clear the ASE_MIPS16E2_MT
146 flag before recalculating.
147 * testsuite/gas/mips/mips16e2-mt-err.d: New test.
148 * testsuite/gas/mips/mips16e2-mt-err.l: New stderr output.
149 * testsuite/gas/mips/mips16e2-mt-err.s: New test source.
150 * testsuite/gas/mips/mips.exp: Run the new test.
151
65a55fbb
TC
1522017-06-28 Tamar Christina <tamar.christina@arm.com>
153
154 * config/tc-aarch64.c (aarch64_reg_parse_32_64): Accept 4B.
155 (aarch64_features): Added dotprod.
156 * doc/c-aarch64.texi: Added dotprod.
157 * testsuite/gas/aarch64/dotproduct.d: New.
158 * testsuite/gas/aarch64/dotproduct.s: New.
159
c604a79a
JW
1602017-06-28 Jiong Wang <jiong.wang@arm.com>
161
162 * config/tc-arm.c (fpu_neon_ext_dotprod): New variable.
163 (neon_scalar_for_mul): Improve comments.
164 (do_neon_dotproduct): New function to encode Dot Product instructions.
165 (do_neon_dotproduct_s): Wrapper function for signed Dot Product
166 instructions.
167 (do_neon_dotproduct_u): Wrapper function for unsigned Dot Product
168 instructions.
169 (insns): New entries for vsdot and vudot.
170 (arm_extensions): New entry for "dotprod".
171 * doc/c-arm.texi: Document new "dotprod" extension.
172 * testsuite/gas/arm/dotprod.s: New test source.
173 * testsuite/gas/arm/dotprod-illegal.s: New test source.
174 * testsuite/gas/arm/dotprod.d: New test.
175 * testsuite/gas/arm/dotprod-thumb2.d: New test.
176 * testsuite/gas/arm/dotprod-illegal.d: New test.
177 * testsuite/gas/arm/dotprod-legacy-arch.d: New test.
178 * testsuite/gas/arm/dotprod-illegal.l: New error file.
179 * testsuite/gas/arm/dotprod-legacy-arch.l: New error file.
180
819e1f86
MR
1812017-06-28 Maciej W. Rozycki <macro@imgtec.com>
182
183 * testsuite/gas/mips/elf_mach_interaptiv-mr2.d: New test.
184 * testsuite/gas/mips/save-err.d: New test.
185 * testsuite/gas/mips/save-sub.d: New test.
186 * testsuite/gas/mips/interaptiv-mr2@save.d: New test.
187 * testsuite/gas/mips/mips1@save-sub.d: New test.
188 * testsuite/gas/mips/mips2@save-sub.d: New test.
189 * testsuite/gas/mips/mips3@save-sub.d: New test.
190 * testsuite/gas/mips/mips4@save-sub.d: New test.
191 * testsuite/gas/mips/mips5@save-sub.d: New test.
192 * testsuite/gas/mips/mips32@save-sub.d: New test.
193 * testsuite/gas/mips/mips64@save-sub.d: New test.
194 * testsuite/gas/mips/mips16@save-sub.d: New test.
195 * testsuite/gas/mips/mips16e@save-sub.d: New test.
196 * testsuite/gas/mips/r3000@save-sub.d: New test.
197 * testsuite/gas/mips/r3900@save-sub.d: New test.
198 * testsuite/gas/mips/r4000@save-sub.d: New test.
199 * testsuite/gas/mips/vr5400@save-sub.d: New test.
200 * testsuite/gas/mips/interaptiv-mr2@save-sub.d: New test.
201 * testsuite/gas/mips/sb1@save-sub.d: New test.
202 * testsuite/gas/mips/octeon2@save-sub.d: New test.
203 * testsuite/gas/mips/octeon3@save-sub.d: New test.
204 * testsuite/gas/mips/xlr@save-sub.d: New test.
205 * testsuite/gas/mips/r5900@save-sub.d: New test.
206 * testsuite/gas/mips/mips16e2-copy.d: New test.
207 * testsuite/gas/mips/mips16e2-copy-err.d: New test.
208 * testsuite/gas/mips/save.d: Remove `MIPS16e' from the `name'
209 option. Adjust for trailing padding change.
210 * testsuite/gas/mips/mips16e2-copy-err.l: New stderr output.
211 * testsuite/gas/mips/save-sub.s: New test source.
212 * testsuite/gas/mips/mips16e2-copy.s: New test source.
213 * testsuite/gas/mips/mips16e2-copy-err.s: New test source.
214 * testsuite/gas/mips/save.s: Update description, change trailing
215 padding and remove trailing white space.
216 * testsuite/gas/mips/mips.exp: Expand `save' and `save-err'
217 tests across the regular MIPS interAptiv MR2 architecture. Run
218 the new tests.
219
c7d289d1
MR
2202017-06-28 Maciej W. Rozycki <macro@imgtec.com>
221
222 * testsuite/gas/mips/mips.exp (interaptiv-mr2): New architecture.
223 (mips16e2-interaptiv-mr2): Likewise.
224 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.d: New
225 test.
226 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.d:
227 New test.
228 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.d:
229 New test.
230 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.d:
231 New test.
232 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.d:
233 New test.
234 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64.d: New
235 test.
236 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.d: New
237 test.
238 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.d: New
239 test.
240 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.d:
241 New test.
242 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
243 New test.
244 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-asmacro.d:
245 New test.
246 * testsuite/gas/mips/interaptiv-mr2@mcu.d: New test.
247 * testsuite/gas/mips/interaptiv-mr2@isa-override-1.d: New test.
248 * testsuite/gas/mips/interaptiv-mr2@isa-override-2.d: New test.
249 * testsuite/gas/mips/attr-gnu-4-5.d: Ignore any number of ASE
250 flag lines present rather than just one.
251 * testsuite/gas/mips/attr-gnu-4-6.d: Likewise.
252 * testsuite/gas/mips/attr-gnu-4-7.d: Likewise.
253 * testsuite/gas/mips/attr-none-o32-fp64-nooddspreg.d: Likewise.
254 * testsuite/gas/mips/attr-none-o32-fp64.d: Likewise.
255 * testsuite/gas/mips/attr-none-o32-fpxx.d: Likewise.
256 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.l: New
257 stderr output.
258 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.l:
259 New stderr output.
260 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.l:
261 New stderr output.
262 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.l:
263 New stderr output.
264 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.l:
265 New stderr output.
266 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.l: New
267 stderr output.
268 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.l: New
269 stderr output.
270 * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.l:
271 New stderr output.
272 * testsuite/gas/mips/interaptiv-mr2@isa-override-1.l: New stderr
273 output.
274 * testsuite/gas/mips/interaptiv-mr2@isa-override-2.l: New stderr
275 output.
276
38bf472a
MR
2772017-06-28 Maciej W. Rozycki <macro@imgtec.com>
278 Matthew Fortune <matthew.fortune@imgtec.com>
279
280 * config/tc-mips.c (validate_mips_insn): Handle
281 OP_SAVE_RESTORE_LIST specially.
282 (mips_encode_save_restore, mips16_encode_save_restore): New
283 functions.
284 (match_save_restore_list_operand): Factor out SAVE/RESTORE
285 operand insertion into the instruction word or halfword to these
286 new functions.
287 (mips_cpu_info_table): Add "interaptiv-mr2" entry.
288
289 * doc/c-mips.texi (MIPS Options): Add `interaptiv-mr2' to the
290 `-march=' argument list.
291
79cb3f75
MR
2922017-06-27 Maciej W. Rozycki <macro@imgtec.com>
293
294 * testsuite/gas/mips/mips16e-save.d: Rename to...
295 * testsuite/gas/mips/save.d: ... this.
296 * testsuite/gas/mips/mips16e-save-err.d: Update the
297 `error-output' option and rename to...
298 * testsuite/gas/mips/save-err.d: ... this.
299 * testsuite/gas/mips/mips16e-save-err.l: Rename to...
300 * testsuite/gas/mips/save-err.l: ... this.
301 * testsuite/gas/mips/mips16e-save.s: Rename to...
302 * testsuite/gas/mips/save.s: ... this.
303 * testsuite/gas/mips/mips16e-save-err.s: Rename to...
304 * testsuite/gas/mips/save-err.s: ... this.
305 * testsuite/gas/mips/mips.exp: Rename `mips16e-save' and
306 `mips16e-save-err' invocations to `save' and `save-err'
307 respectively and reorder these tests away from MIPS16 tests.
308
b0bd097e
MR
3092017-06-27 Maciej W. Rozycki <macro@imgtec.com>
310
311 * testsuite/gas/mips/mips16e-save.d: Remove `-mmips:isa32
312 -mmips:16' from `objdump' flags and `-march=mips32 -mips16' from
313 `as' flags.
314 * testsuite/gas/mips/mips16e-save-err.d: Remove `-march=mips32'
315 from `as' flags.
316 * testsuite/gas/mips/mips16e-save.s: Remove the `.set mips16'
317 pseudo-op.
318 * testsuite/gas/mips/mips16e-save-err.s: Likewise.
319 * testsuite/gas/mips/mips.exp: Run SAVE/RESTORE tests across all
320 MIPS16e architectures.
321
2438385a
MR
3222017-06-27 Maciej W. Rozycki <macro@imgtec.com>
323
324 * testsuite/gas/mips/mips16e-save-err.d: New test.
325 * gas/testsuite/gas/mips/mips.exp: Fold `mips16e-save-err' list
326 test into the new test.
327
daba08c9
MR
3282017-06-27 Maciej W. Rozycki <macro@imgtec.com>
329
330 * testsuite/gas/mips/mips16e-save.d: Capitalize the `name'
331 option.
332
a6cbf936
KLC
3332017-06-26 Kuan-Lin Chen <rufus@andestech.com>
334
335 * config/tc-riscv.c (md_apply_fix) [BFD_RELOC_32]: Convert to a
336 R_RISCV_32_PCREL relocation.
337
a3aea05a
L
3382017-06-26 H.J. Lu <hongjiu.lu@intel.com>
339
340 PR gas/21661
341 * config/obj-elf.c (obj_elf_symver): Don't allow .symver with
342 common symbol.
343 (elf_frob_symbol): Likewise.
344 * testsuite/gas/elf/elf.exp: Run pr21661.
345 * testsuite/gas/elf/pr21661.d: New file.
346 * testsuite/gas/elf/pr21661.s: Likewise.
347
49fa50ef
NC
3482017-06-26 Nick Clifton <nickc@redhat.com>
349
350 * config/tc-arm.c (fpu_any): Only define for ELF based targets.
351
cf9bdae9 3522017-06-26 Claudiu Zissulescu <claziss@synopsys.com>
353
354 * /config/tc-arc.c (is_br_jmp_insn_p): Update macro with known
355 instructions to be accounted as jumps.
356 (assemble_insn): Check for limms into the delay slots. Emit an
357 error if so.
358 * testsuite/gas/arc/asm-errors-3.d: New file.
359 * testsuite/gas/arc/asm-errors-3.err: Likewise.
360 * testsuite/gas/arc/asm-errors-3.s: Likewise.
361
0cda1e19
TP
3622017-06-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
363
364 * NEWS: Mention support of ARM Cortex-R52 processor.
365 * config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-R52 processor.
366 * doc/c-arm.texi: Mention support for -mcpu=cortex-r52.
367
ced40572
TP
3682017-06-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
369
370 * NEWS: Mention support for ARMv8-R architecture.
371 * config/tc-arm.c (arm_archs): Add entry for ARMv8-R.
372 (arm_extensions): Restrict pan, ras and rdma extension to
373 ARMv8-A and make crypto, fp and simd extensions available to
374 ARMv8-R.
375 (cpu_arch_ver): Add entry for ARMv8-R.
376 (aeabi_set_public_attributes): Update gas_assert for Tag_DIV_use
377 logic.
378 * testsuite/gas/arm/armv8-a+fp.s: Rename into ...
379 * testsuite/gas/arm/armv8-ar+fp.s: This. Remove .arch directive.
380 * testsuite/gas/arm/armv8-a+fp.d: Specify source to assemble and
381 architecture to assemble for.
382 * testsuite/gas/arm/armv8-r+fp.d: New.
383 * testsuite/gas/arm/armv8-a+simd.s: Rename into ...
384 * testsuite/gas/arm/armv8-ar+simd.s: This. Remove .arch directive.
385 * testsuite/gas/arm/armv8-a+simd.d: Specify source to assemble and
386 architecture to assemble for.
387 * testsuite/gas/arm/armv8-r+simd.d: New.
388 * testsuite/gas/arm/armv8-a-bad.s: Rename into ...
389 * testsuite/gas/arm/armv8-ar-bad.s: This. Remove .arch directive.
390 * testsuite/gas/arm/armv8-a-bad.l: Rename into ...
391 * testsuite/gas/arm/armv8-ar-bad.l: This. Decrement line number by 1.
392 * testsuite/gas/arm/armv8-a-bad.d: Specify source to assemble,
393 architecture to assemble for and adjust error output file.
394 * testsuite/gas/arm/armv8-r-bad.d: New.
395 * testsuite/gas/arm/armv8-a-barrier.s: Rename into ...
396 * testsuite/gas/arm/armv8-ar-barrier.s: This.
397 * testsuite/gas/arm/armv8-a-barrier-arm.d: Adjust source.
398 * testsuite/gas/arm/armv8-a-barrier-thumb.d: Likewise.
399 * testsuite/gas/arm/armv8-r-barrier-arm.d: New.
400 * testsuite/gas/arm/armv8-r-barrier-thumb.d: New.
401 * testsuite/gas/arm/armv8-a-it-bad.s: Rename into ...
402 * testsuite/gas/arm/armv8-ar-it-bad.s: This. Remove .arch directive.
403 * testsuite/gas/arm/armv8-a-it-bad.l: Rename into ...
404 * testsuite/gas/arm/armv8-ar-it-bad.l: This. Decrement line number
405 by 1.
406 * testsuite/gas/arm/armv8-a-it-bad.d: Specify source to assemble,
407 architecture to assemble for and adjust error output file.
408 * testsuite/gas/arm/armv8-r-it-bad.d: New.
409 * testsuite/gas/arm/armv8-a.s: Rename into ...
410 * testsuite/gas/arm/armv8-ar.s: This. Remove .arch directive.
411 * testsuite/gas/arm/armv8-a.d: Specify source to assemble and
412 architecture to assemble for.
413 * testsuite/gas/arm/armv8-r.d: New.
414 * testsuite/gas/arm/attr-march-armv8-r+crypto.d: New.
415 * testsuite/gas/arm/attr-march-armv8-r+fp.d: New.
416 * testsuite/gas/arm/attr-march-armv8-r+simd.d: New.
417 * testsuite/gas/arm/attr-march-armv8-r.d: New.
418 * testsuite/gas/arm/crc32.s: Rename into ...
419 * testsuite/gas/arm/crc32-armv8-ar.s: This.
420 * testsuite/gas/arm/crc32.d: Rename into ...
421 * testsuite/gas/arm/crc32-armv8-a.d: This. Specify source to assemble.
422 * testsuite/gas/arm/crc32-armv8-r.d: New.
423 * testsuite/gas/arm/crc32-bad.s: Rename into ...
424 * testsuite/gas/arm/crc32-armv8-ar-bad.s: This.
425 * testsuite/gas/arm/crc32-bad.d: Rename into ...
426 * testsuite/gas/arm/crc32-armv8-a-bad.d: This. Specify source to
427 assemble.
428 * testsuite/gas/arm/crc32-armv8-r-bad.d: New.
429 * testsuite/gas/arm/mask_1.s: Rename into ...
430 * testsuite/gas/arm/mask_1-armv8-ar.s: This.
431 * testsuite/gas/arm/mask_1.d: Rename into ...
432 * testsuite/gas/arm/mask_1-armv8-a.d: This. Specify source to
433 assemble.
434 * testsuite/gas/arm/mask_1-armv8-r.d: new.
435
173205ca
TP
4362017-06-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
437
438 * config/tc-arm.c (arm_ext_v6m): Delete.
439 (arm_ext_v7m): Delete.
440 (arm_ext_m): Remove ARM_EXT_OS from the set of feature defined M
441 profile.
442 (arm_arch_v6m_only): Delete.
443 (do_t_swi): Remove special case for ARMv6S-M.
444 (md_assemble): Display error message previously in do_t_swi when
445 SVC is not available.
446 (insns): Guard swi and svc by arm_ext_os for Thumb mode.
447 (aeabi_set_public_attributes): Remove special case for ARMv6S-M.
448
94f78a77
AW
4492017-05-11 Andrew Waterman <andrew@sifive.com>
450
451 * config/tc-riscv.c (riscv_ip): Changes as_warn to as_bad for improper
452 shift amounts.
453
e7d39ed3
NC
4542017-06-22 Nick Clifton <nickc@redhat.com>
455
456 * config/tc-arm.c (arm_ext_v7m): Add ATTRIBUTE_UNUSED.
457
2c6b98ea
TP
4582017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
459
460 * config/tc-arm.c (fpu_any): Defined from FPU_ANY.
461 (cpu_arch_ver): Add all architectures and sort by release date.
462 (have_ext_for_needed_feat_p): New.
463 (get_aeabi_cpu_arch_from_fset): New.
464 (aeabi_set_public_attributes): Call above function to determine
465 Tag_CPU_arch and Tag_CPU_arch_profile values. Adapt Tag_ARM_ISA_use
466 and Tag_THUMB_ISA_use selection logic to check absence of feature bit
467 accordingly.
468 * testsuite/gas/arm/attr-march-armv1.d: Fix expected Tag_CPU_arch build
469 attribute value.
470 * testsuite/gas/arm/attr-march-armv2.d: Likewise.
471 * testsuite/gas/arm/attr-march-armv2a.d: Likewise.
472 * testsuite/gas/arm/attr-march-armv2s.d: Likewise.
473 * testsuite/gas/arm/attr-march-armv3.d: Likewise.
474 * testsuite/gas/arm/attr-march-armv3m.d: Likewise.
475 * testsuite/gas/arm/pr12198-2.d: Likewise.
476
2234eee6
L
4772017-06-21 H.J. Lu <hongjiu.lu@intel.com>
478
479 * testsuite/gas/i386/cet-intel.d: Updated.
480 * testsuite/gas/i386/cet.d: Likewise.
481 * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
482 * testsuite/gas/i386/x86-64-cet.d: Likewise.
483 * testsuite/gas/i386/cet.s: Update incsspd and setssbsy tests.
484 * testsuite/gas/i386/x86-64-cet.s: Likewise.
485
c2f76402
L
4862017-06-21 H.J. Lu <hongjiu.lu@intel.com>
487
488 * testsuite/gas/i386/cet-intel.d: Updated.
489 * testsuite/gas/i386/cet.d: Likewise.
490 * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
491 * testsuite/gas/i386/x86-64-cet.d: Likewise.
492 * testsuite/gas/i386/cet.s: Replace savessp with saveprevssp.
493 * testsuite/gas/i386/x86-64-cet.s: Likewise.
494
9fef80d6
L
4952017-06-21 H.J. Lu <hongjiu.lu@intel.com>
496
497 * config/tc-i386.c (md_assemble): Update NOTRACK prefix check.
498 * testsuite/gas/i386/notrack-intel.d: Updated.
499 * testsuite/gas/i386/notrack.d: Likewise.
500 * testsuite/gas/i386/notrackbad.l: Likewise.
501 * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
502 * testsuite/gas/i386/x86-64-notrack.d: Likewise.
503 * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
504 * testsuite/gas/i386/notrack.s: Add NOTRACK prefix tests with
505 memory indirect branch.
506 * testsuite/gas/i386/x86-64-notrack.s: Likewise.
507 * testsuite/gas/i386/notrackbad.s: Remove memory indirect branch
508 with NOTRACK prefix.
509 * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
510
3d030cdb
TP
5112017-06-20 Thomas Preud'homme <thomas.preudhomme@arm.com>
512
513 * config/tc-arm.c (arm_extensions): New duplicate idiv entry to enable
514 Thumb division for ARMv7 architecture.
515 (arm_parse_extension): Document expected behavior for duplicate
516 entries.
517 (s_arm_arch_extension): Likewise.
518 * testsuite/gas/arm/forbid-armv7-idiv-ext.d: New test.
519 * testsuite/gas/arm/forbid-armv7-idiv-ext.l: New expected output for
520 above test.
521
54bab281
TP
5222017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
523
524 * config/tc-arm.c (aeabi_set_public_attributes): Populate flags from
525 feature bits used or selected_cpu depending on whether a CPU was
526 selected by the user.
527
6c290d53
TP
5282017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
529
530 * config/tc-arm.c (aeabi_set_public_attributes): Test *mcpu_ext_opt to
531 decide whether to set Tag_DSP_extension build attribute value. Remove
532 now useless arm_arch variable.
533
c168ce07
TP
5342017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
535
536 * config/tc-arm.c (dyn_mcpu_ext_opt): New static variable.
537 (dyn_march_ext_opt): Likewise.
538 (md_begin): Copy extension feature bits alongside architecture ones.
539 Merge extensions feature bits in selected_cpu and cpu_variant if there
540 is some.
541 (arm_parse_extension): Pass architecture and extension feature bits in
542 separate parameters, with architecture bits being read only. Update
543 **opt_p directly rather than *ext_set and initialize it if needed.
544 (arm_parse_cpu): Stop merging architecture and extension feature bits
545 and instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
546 respectively. Adapt to change in parameters of arm_parse_extension.
547 (arm_parse_arch): Adapt to change in parameters of arm_parse_extension.
548 (aeabi_set_attribute_string): Make function static.
549 (arm_md_post_relax): New function.
550 (s_arm_cpu): Stop merging architecture and extension feature bits and
551 instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
552 respectively. Merge extension feature bits in cpu_variant
553 if there is any.
554 (s_arm_arch): Reset extension feature bit. Set selected_cpu from
555 *mcpu_cpu_opt and cpu_variant from selected_cpu and *mfpu_opt for
556 consistency with s_arm_cpu.
557 (s_arm_arch_extension): Update *dyn_mcpu_ext_opt rather than
558 selected_cpu, allocating it before hand if needed. Set selected_cpu
559 from it and then cpu_variant.
560 (s_arm_fpu): Merge *mcpu_ext_opt feature bits if any in cpu_variant.
561 * config/tc-arm.h (md_post_relax_hook): Set to arm_md_post_relax.
562 (aeabi_set_public_attributes): Delete external declaration.
563 (arm_md_post_relax): Declare externally.
564
996b5569
TP
5652017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
566
567 * config/tc-arm.c (struct arm_cpu_option_table): New ext field.
568 (ARM_CPU_OPT): Add parameter to set new ext field and reorder canonical
569 name field just after the name field.
570 (arm_cpus): Move extension feature bit from value field to ext field,
571 reorder parameter according to changes in ARM_CPU_OPT and reindent.
572 (arm_parse_cpu): Point mcpu_cpu_opt to a bitfield merging the value and
573 ext field from the selected arm_cpus entry.
574 (s_arm_cpu): Likewise.
575
1e292627
JG
5762017-06-21 James Greenhalgh <james.greenhalgh@arm.com>
577
578 * config/tc-aarch64.c (aarch64_cpus): Add cortex-a55 and cortex-a75.
579 * doc/c-aarch64.texi (-mcpu): Document cortex-a55 and cortex-a75.
580
8cac017d
L
5812017-06-15 H.J. Lu <hongjiu.lu@intel.com>
582
583 PR binutils/21594
584 * testsuite/gas/i386/mpx.s: Add 2 tests with invalid bnd
585 register.
586 * testsuite/gas/i386/x86-64-mpx.s: Likewise.
587 * testsuite/gas/i386/mpx.d: Updated.
588 * testsuite/gas/i386/x86-64-mpx.d: Likewise.
589
f7e16c2a
MF
5902017-06-14 Max Filippov <jcmvbkbc@gmail.com>
591
592 * config/tc-xtensa.c (density_supported, xtensa_fetch_width,
593 absolute_literals_supported): Leave definitions uninitialized.
594 (directive_state): Leave entries for directive_density and
595 directive_absolute_literals initialized to false.
596 (xg_init_global_config, xtensa_init): New functions.
597 * config/tc-xtensa.h (TARGET_BYTES_BIG_ENDIAN): Define as 0.
598 (HOST_SPECIAL_INIT): New definition.
599 (xtensa_init): New declaration.
600
62e20ed4
MC
6012017-06-07 Michael Collison <michael.collison@arm.com>
602
603 * config/tc-aarch64.c (reg_entry_reg_names): Add IP0,
604 IP1, FP, and LR as register aliases of register 16, 17, 29
605 and 30 respectively.
606 * testsuite/gas/aarch64/diagnostic.l: Remove diagnostic
607 prohibiting register 'lr' which is now an alias.
608 * testsuite/gas/aarch64/diagnostic.s: Remove instruction
609 utilizing register 'lr' which is now an alias.
610
5c8ed6a4
JW
6112017-06-06 Jiong Wang <jiong.wang@arm.com>
612
613 * config/tc-arm.c (reject_bad_reg): Allow REG_SP on ARMv8-A.
614 (parse_operands): Allow REG_SP for OP_oRRnpcsp and OP_RRnpcsp on
615 ARMv8-A.
616 (do_co_reg): Allow REG_SP for Rd on ARMv8-A.
617 (do_t_add_sub): Likewise.
618 (do_t_mov_cmp): Likewise.
619 (do_t_tb): Likewise.
620 * testsuite/gas/arm/ld-sp-warn.l: Delete the warning on REG_SP as Rt for
621 ldrsb.
622 * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.d: New test.
623 * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.l: New test.
624 * testsuite/gas/arm/sp-pc-validations-bad-t.d: Specifies -march=armv7-a.
625 * testsuite/gas/arm/sp-pc-validations-bad-t.s: Remove ".arch armv7-a".
626 * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.d: New test.
627 * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.l: New test.
628 * testsuite/gas/arm/sp-usage-thumb2-relax-on-v8.d: New test.
629 * testsuite/gas/arm/sp-usage-thumb2-relax.s: New test.
630 * testsuite/gas/arm/strex-bad-t.d: Specifies -march=armv7-a.
631
61756f84
JW
6322017-06-05 Jim Wilson <jim.wilson@linaro.org>
633
634 * config/tc-arm.c (arm_cpus): Delete falkor and qdf24xx entries.
635 * doc/c-arm.texi (-mcpu): Likewise.
636
940171d0
AK
6372017-05-30 Anton Kolesov <anton.kolesov@synopsys.com>
638
639 * config/tc-arc.c (cpu_types): Include arc-cpu.def
640
6e92fed5
L
6412017-05-23 H.J. Lu <hongjiu.lu@intel.com>
642
643 * gas/testsuite/gas/i386/notrackbad.l: Updated for non-ELF
644 targets.
645 * gas/testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
646
6e3f3473 6472017-05-23 Claudiu Zissulescu <claziss@synopsys.com>
648
649 * config/tc-arc.c (md_apply_fix): Use as_bad_where.
650 (assemble_insn): Use as_bad.
651
04ef582a
L
6522017-05-22 H.J. Lu <hongjiu.lu@intel.com>
653
654 * config/tc-i386.c (REX_PREFIX): Changed to 7.
655 (NOTRACK_PREFIX): New.
656 (MAX_PREFIXES): Changed to 8.
657 (_i386_insn): Add notrack_prefix.
658 (PREFIX_GROUP): Add PREFIX_DS.
659 (add_prefix): Return PREFIX_DS for DS_PREFIX_OPCODE.
660 (md_assemble): Check if NOTRACK prefix is supported.
661 (parse_insn): Set notrack_prefix and issue an error for
662 other prefixes after NOTRACK prefix.
663 * testsuite/gas/i386/i386.exp: Run tests for NOTRACK prefix.
664 * testsuite/gas/i386/notrack-intel.d: New file.
665 * testsuite/gas/i386/notrack.d: Likewise.
666 * testsuite/gas/i386/notrack.s: Likewise.
667 * testsuite/gas/i386/notrackbad.l: Likewise.
668 * testsuite/gas/i386/notrackbad.s: Likewise.
669 * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
670 * testsuite/gas/i386/x86-64-notrack.d: Likewise.
671 * testsuite/gas/i386/x86-64-notrack.s: Likewise.
672 * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
673 * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
674
3c0367d0
JW
6752017-05-22 Jiong Wang <jiong.wang@arm.com>
676
677 * configure.tgt: Set "arch" to "aarch64" if ${cpu} equals "aarch64".
678 Recognize the new triplet name aarch64*-linux-gnu_ilp32.
679 * configure.ac: Output DEFAULT_ARCH macro for AArch64.
680 * configure: Regenerate.
681 * config/tc-aarch64.h (aarch64_after_parse_args): New declaration.
682 (md_after_parse_args): New define.
683 * config/tc-aarch64.c (aarch64_abi_type): New enumeration
684 AARCH64_ABI_NONE.
685 (DEFAULT_ARCH): New define.
686 (aarch64_abi): Set default value to AARCH64_ABI_NONE.
687 (aarch64_after_parse_args): New function.
688
64517994
JM
6892017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
690
691 * config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
692 `v9m8' and `v8plusm8'.
693 (sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
694 (get_hwcap_name): Support the M8 hardware capabilities.
695 (sparc_ip): Handle new operand types.
696 * doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
697 -Asparc6, and the corresponding -xarch aliases.
698 * testsuite/gas/sparc/sparc6.s: New file.
699 * testsuite/gas/sparc/sparc6.d: Likewise.
700 * testsuite/gas/sparc/sparc6-diag.s: Likewise.
701 * testsuite/gas/sparc/sparc6-diag.l: Likewise.
702 * testsuite/gas/sparc/fpcmpshl.s: Likewise.
703 * testsuite/gas/sparc/fpcmpshl.d: Likewise.
704 * testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
705 * testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
706 * testsuite/gas/sparc/ldm-stm.s: Likewise.
707 * testsuite/gas/sparc/ldm-stm.d: Likewise.
708 * testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
709 * testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
710 * testsuite/gas/sparc/ldmf-stmf.s: Likewise.
711 * testsuite/gas/sparc/ldmf-stmf.d: Likewise.
712 * testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
713 * testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
714 * testsuite/gas/sparc/on.s: Likewise.
715 * testsuite/gas/sparc/on.d: Likewise.
716 * testsuite/gas/sparc/on-diag.s: Likewise.
717 * testsuite/gas/sparc/on-diag.l: Likewise.
718 * testsuite/gas/sparc/rle.s: Likewise.
719 * testsuite/gas/sparc/rle.d: Likewise.
720 * testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
721 * testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
722 * testsuite/gas/sparc/rdasr.d: Likewise.
723
ae0264a6
JM
7242017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
725
726 * testsuite/gas/sparc/call-relax.d: Support 32-bit targets.
727 * testsuite/gas/sparc/sparc.exp (gas_64_check): Use -64 to
728 run asi-bump-warn.
729
f4203b2b
JL
7302017-05-19 Georg-Johann Lay <avr@gjlay.de>
731
732 PR ld/21472
733 * config/tc-avr.c (mcu_types): Add entries for: attiny416,
734 attiny417, attiny816, attiny817.
735
535b785f
AM
7362017-05-18 Alan Modra <amodra@gmail.com>
737
738 * config/tc-aarch64.c: Don't compare booleans against TRUE or FALSE.
739 * config/tc-hppa.c: Likewise.
740 * config/tc-mips.c: Likewise.
741 * config/tc-score7.c: Likewise.
742
91cb9803
AM
7432017-05-16 Alan Modra <amodra@gmail.com>
744
745 * write.c (GENERIC_FORCE_RELOCATION_LOCAL): Define.
746 (TC_FORCE_RELOCATION_LOCAL): Use it.
747 (GENERIC_FORCE_RELOCATION_SUB_SAME): Define.
748 (TC_FORCE_RELOCATION_SUB_SAME): Use it.
749 * config/tc-arm.h (TC_FORCE_RELOCATION_LOCAL,
750 TC_FORCE_RELOCATION_SUB_SAME): Use GENERIC defines.
751 * config/tc-aarch64.h: Similarly.
752 * config/tc-avr.h: Similarly.
753 * config/tc-cris.h: Similarly.
754 * config/tc-i386.h: Similarly.
755 * config/tc-i960.h: Similarly.
756 * config/tc-ia64.h: Similarly.
757 * config/tc-microblaze.h: Similarly.
758 * config/tc-mips.h: Similarly.
759 * config/tc-msp430.h: Similarly.
760 * config/tc-nds32.h: Similarly.
761 * config/tc-pru.h: Similarly.
762 * config/tc-riscv.h: Similarly.
763 * config/tc-rl78.h: Similarly.
764 * config/tc-s390.h: Similarly.
765 * config/tc-sh.h: Similarly.
766 * config/tc-sh64.h: Similarly.
767 * config/tc-sparc.h: Similarly.
768 * config/tc-xtensa.h: Similarly.
769 * config/tc-mn10300.h: Similarly.
770 (GENERIC_FORCE_RELOCATION_LOCAL): Define.
771 * config/tc-msp430.c (msp430_force_relocation_local): Modify to
772 be addition to rather than replacement of standard
773 TC_FORCE_RELOCATION_LOCAL.
774
52a86f84
NC
7752017-05-15 Nick Clifton <nickc@redhat.com>
776
777 PR gas/21458
778 * config/tc-arm.c (do_adr): If the ADR involves a thumb function
779 symbol, ensure that the T bit will be set.
780 (do_adrl): Likewise.
781 (do_t_adr): Likewise.
782 * testsuite/gas/arm/pr21458.s: New test.
783 * testsuite/gas/arm/pr21458.d: New test driver.
784
b32465c9
MR
7852017-05-15 Maciej W. Rozycki <macro@imgtec.com>
786
787 * testsuite/gas/mips/mips16-pcrel-1.d: Remove `-mips3' from `as'
788 flags.
789 * testsuite/gas/mips/mips16-pcrel-pic-1.d: Likewise.
790 * testsuite/gas/mips/mips16-pcrel-n32-0.d: Likewise.
791 * testsuite/gas/mips/mips16-pcrel-n32-1.d: Likewise.
792 * testsuite/gas/mips/mips16-pcrel-n64-0.d: Likewise.
793 * testsuite/gas/mips/mips16-pcrel-n64-1.d: Likewise.
794 * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: Likewise.
795 * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: Likewise.
796 * testsuite/gas/mips/mips16-pcrel-reloc-4.d: Likewise.
797 * testsuite/gas/mips/mips16-pcrel-reloc-5.d: Likewise.
798 * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Likewise.
799 * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Likewise.
800 * testsuite/gas/mips/mips16-pcrel-addend-4.d: Likewise.
801 * testsuite/gas/mips/mips16-pcrel-addend-5.d: Likewise.
802 * testsuite/gas/mips/mips16-pcrel-addend-6.d: Likewise.
803 * testsuite/gas/mips/mips16-pcrel-addend-7.d: Likewise.
804 * testsuite/gas/mips/mips16-pcrel-addend-9.d: Likewise.
805 * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: Likewise.
806 * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: Likewise.
807 * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: Likewise.
808 * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d:
809 Likewise.
810 * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d:
811 Likewise.
812 * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: Likewise.
813 * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: Likewise.
814 * testsuite/gas/mips/mips16-pcrel-absolute-2.d: Likewise.
815 * testsuite/gas/mips/mips16-pcrel-absolute-3.d: Likewise.
816 * testsuite/gas/mips/mips16-pcrel-absolute-6.d: Likewise.
817 * testsuite/gas/mips/mips16-pcrel-absolute-7.d: Likewise.
818 * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: Likewise.
819 * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: Likewise.
820 * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: Likewise.
821 * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: Likewise.
822 * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: Likewise.
823 * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d:
824 Likewise.
825 * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d:
826 Likewise.
827 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d:
828 Likewise.
829 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d:
830 Likewise.
831 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d:
832 Likewise.
833 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d:
834 Likewise.
835 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
836 Likewise.
837 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
838 Likewise.
839 * testsuite/gas/mips/mips16e2@mips16-pcrel-0.d: New test.
840 * testsuite/gas/mips/mips16e2@mips16-pcrel-1.d: New test.
841 * testsuite/gas/mips/mips16e2@mips16-pcrel-2.d: New test.
842 * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-0.d: New test.
843 * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-1.d: New test.
844 * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-0.d: New
845 test.
846 * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-1.d: New
847 test.
848 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d: New test.
849 * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d: New test.
850 * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-2.d: New test.
851 * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-3.d: New test.
852 * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-6.d: New test.
853 * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-7.d: New test.
854 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-2.d: New test.
855 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-3.d: New test.
856 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-6.d: New test.
857 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-7.d: New test.
858 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-8.d: New test.
859 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-9.d: New test.
860 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-8.d: New
861 test.
862 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-9.d: New
863 test.
864 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-8.d:
865 New test.
866 * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-9.d:
867 New test.
868 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute.d: New test.
869 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-1.d: New
870 test.
871 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-2.d: New
872 test.
873 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-3.d: New
874 test.
875 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-4.d: New
876 test.
877 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-5.d: New
878 test.
879 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-6.d: New
880 test.
881 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-7.d: New
882 test.
883 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-4.d: New
884 test.
885 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-6.d: New
886 test.
887 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-4.d: New
888 test.
889 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-6.d: New
890 test.
891 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-4.d:
892 New test.
893 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-6.d:
894 New test.
895 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-4.d:
896 New test.
897 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-6.d:
898 New test.
899 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-4.d:
900 New test.
901 * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-6.d:
902 New test.
903 * testsuite/gas/mips/mips16-pcrel-1.l: Adjust line numbers.
904 * testsuite/gas/mips/mips16-pcrel-1.s: Adjust for alignment
905 preservation between MIPS16 and MIPS16e2 code.
906 * testsuite/gas/mips/mips.exp: Run MIPS16 relaxation tests over
907 all MIPS16 architectures.
908
3f3467ff
MR
9092017-05-15 Maciej W. Rozycki <macro@imgtec.com>
910
911 * testsuite/gas/mips/mips16e2.d: New test.
912 * testsuite/gas/mips/mips16e2-mt.d: New test.
913 * testsuite/gas/mips/mips16e2-sub.d: New test.
914 * testsuite/gas/mips/mips16e2@mips16e2-sub.d: New test.
915 * testsuite/gas/mips/mips16e2-mt-sub.d: New test.
916 * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: New test.
917 * testsuite/gas/mips/mips16e2-hilo.d: New test.
918 * testsuite/gas/mips/mips16e2-hilo-n32.d: New test.
919 * testsuite/gas/mips/mips16e2-reloc-error.d: New test.
920 * testsuite/gas/mips/mips16e2-imm-error.d: New test.
921 * testsuite/gas/mips/elf_ase_mips16e2.d: New test.
922 * testsuite/gas/mips/elf_ase_mips16e2-2.d: New test.
923 * testsuite/gas/mips/elf-rel9-mips16e2.d: New test.
924 * testsuite/gas/mips/mips16e2-lui.d: New test.
925 * testsuite/gas/mips/mips16e2@mips32r2-sync.d: New test.
926 * testsuite/gas/mips/mips16e2@mips32r2-sync-1.d: New test.
927 * testsuite/gas/mips/mips16e2@lui-2.d: New test.
928 * testsuite/gas/mips/mips16e2-reloc-error.l: New stderr output.
929 * testsuite/gas/mips/mips16e2-imm-error.l: New stderr output.
930 * testsuite/gas/mips/mips16e2@lui-2.l: New stderr output.
931 * testsuite/gas/mips/mips16e2.s: New test source.
932 * testsuite/gas/mips/mips16e2-mt.s: New test source.
933 * testsuite/gas/mips/mips16e2-sub.s: New test source.
934 * testsuite/gas/mips/mips16e2-mt-sub.s: New test source.
935 * testsuite/gas/mips/mips16e2-hilo.s: New test source.
936 * testsuite/gas/mips/mips16e2-reloc-error.s: New test source.
937 * testsuite/gas/mips/mips16e2-imm-error.s: New test source.
938 * testsuite/gas/mips/elf-rel9-mips16e2.s: New test source.
939 * testsuite/gas/mips/mips16e2-lui.s: New test source.
940 * testsuite/gas/mips/mips.exp: Expand `mips32r2-sync',
941 `mips32r2-sync-1', `lui-1' and `lui-2' tests across MIPS16e2
942 architectures. Run the new tests.
943
70ab592f
MR
9442017-05-15 Maciej W. Rozycki <macro@imgtec.com>
945
946 * testsuite/gas/mips/mips.exp (run_dump_test_arch): Add
947 `mips16e2@' prefix.
948 (run_list_test_arch): Likewise.
949 (mips16e2-32, mips16e2-64): New architectures.
950 * testsuite/gas/mips/mips16e2-32@mips16-macro.d: New test.
951 * testsuite/gas/mips/mips16e2-32@mips16-macro-t.d: New test.
952 * testsuite/gas/mips/mips16e2-32@mips16-macro-e.d: New test.
953 * testsuite/gas/mips/mips16e2-32@mips16-insn-t.d: New test.
954 * testsuite/gas/mips/mips16e2-32@mips16-insn-e.d: New test.
955 * testsuite/gas/mips/mips16e2-32@mips16e-64.d: New test.
956 * testsuite/gas/mips/mips16e2-32@mips16-sub.d: New test.
957 * testsuite/gas/mips/mips16e2-32@mips16e-64-sub.d: New test.
958 * testsuite/gas/mips/mips16e2@relax-swap3.d: New test.
959 * testsuite/gas/mips/mips16-32@mips16-asmacro.d: Remove `source'
960 tag. Add `-I$srcdir/$subdir' to `as' flags.
961 * testsuite/gas/mips/mips16-64@mips16-asmacro.d: Likewise.
962 * testsuite/gas/mips/mips16e2-32@mips16-macro.l: New stderr
963 output.
964 * testsuite/gas/mips/mips16e2-32@mips16-macro-t.l: New stderr
965 output.
966 * testsuite/gas/mips/mips16e2-32@mips16-macro-e.l: New stderr
967 output.
968 * testsuite/gas/mips/mips16e2-32@mips16-insn-t.l: New stderr
969 output.
970 * testsuite/gas/mips/mips16e2-32@mips16-insn-e.l: New stderr
971 output.
972 * testsuite/gas/mips/mips16-sub.s: Add `.set nomips16e2'.
973 * testsuite/gas/mips/mips16e-sub.s: Likewise.
974 * testsuite/gas/mips/mips16e-64-sub.s: Likewise.
975 * testsuite/gas/mips/mips16-asmacro.s: Remove `.set mips32'.
976 * testsuite/gas/mips/mips16-32@mips16-asmacro.s: New test
977 source.
978 * testsuite/gas/mips/mips16-64@mips16-asmacro.s: New test
979 source.
980
25499ac7
MR
9812017-05-15 Maciej W. Rozycki <macro@imgtec.com>
982 Matthew Fortune <matthew.fortune@imgtec.com>
983 Andrew Bennett <andrew.bennett@imgtec.com>
984
985 * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `e2' flag.
986 (RELAX_MIPS16_E2): New macro.
987 (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO)
988 (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
989 (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
990 (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
991 (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
992 (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
993 (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED, RELAX_MIPS16_MACRO)
994 (RELAX_MIPS16_MARK_MACRO, RELAX_MIPS16_CLEAR_MACRO): Shift bits.
995 (mips16_immed_extend): New prototype.
996 (options): Add OPTION_MIPS16E2 and OPTION_NO_MIPS16E2 enum
997 values.
998 (md_longopts): Add "mmips16e2" and "mno-mips16e2" options.
999 (mips_ases): Add "mips16e2" entry.
1000 (mips_set_ase): Handle MIPS16e2 ASE.
1001 (insn_insert_operand): Explicitly handle immediates with MIPS16
1002 instructions that require 32-bit encoding.
1003 (is_opcode_valid_16): Pass enabled ASE bitmask on to
1004 `opcode_is_member'.
1005 (validate_mips_insn): Explicitly handle immediates with MIPS16
1006 instructions that require 32-bit encoding.
1007 (operand_reg_mask) <OP_REG28>: Add handler.
1008 (match_reg28_operand): New function.
1009 (match_operand) <OP_REG28>: Add handler.
1010 (append_insn): Pass ASE_MIPS16E2 setting to RELAX_MIPS16_ENCODE.
1011 (match_mips16_insn): Handle MIPS16 instructions that require
1012 32-bit encoding and `V' and `u' operand codes.
1013 (mips16_ip): Allow any characters except from `.' in opcodes.
1014 (mips16_immed_extend): Handle 9-bit immediates. Do not shuffle
1015 immediates whose width is not one of these listed.
1016 (md_estimate_size_before_relax): Handle MIPS16e2 relaxation.
1017 (mips_relax_frag): Likewise.
1018 (md_convert_frag): Likewise.
1019 (mips_convert_ase_flags): Handle MIPS16e2 ASE.
1020
1021 * doc/as.texinfo (Target MIPS options): Add `-mmips16e2' and
1022 `-mno-mips16e2' options.
1023 (-mmips16e2, -mno-mips16e2): New options.
1024 * doc/c-mips.texi (MIPS Options): Add `-mmips16e2' and
1025 `-mno-mips16e2' options.
1026 (MIPS ASE Instruction Generation Overrides): Add `.set mips16e2'
1027 and `.set nomips16e2'.
1028
20c59b84
MR
10292017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1030
1031 * config/tc-mips.c (match_int_operand): Call
1032 `match_out_of_range' before returning failure for 0x8000-0xffff
1033 values conditionally allowed.
1034
602b88e3
MR
10352017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1036
1037 * config/tc-mips.c (match_int_operand): Call
1038 `match_not_constant' before returning failure for a non-constant
1039 16-bit immediate conditionally allowed.
1040
c96425c5
MR
10412017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1042
1043 * config/tc-mips.c (match_const_int): Call `match_out_of_range'
1044 rather than `match_not_constant' for unrelocated operands
1045 retrieved as an `O_big' expression.
1046 (match_int_operand): Call `match_out_of_range' for relocatable
1047 operands retrieved as an `O_big' expression.
1048 (match_mips16_insn): Call `match_out_of_range' for relaxable
1049 operands retrieved as an `O_big' expression.
1050 * testsuite/gas/mips/addiu-error.d: New test.
1051 * testsuite/gas/mips/mips16@addiu-error.d: New test.
1052 * testsuite/gas/mips/micromips@addiu-error.d: New test.
1053 * testsuite/gas/mips/break-error.d: New test.
1054 * testsuite/gas/mips/lui-1.l: Adjust error message.
1055 * testsuite/gas/mips/addiu-error.l: New stderr output.
1056 * testsuite/gas/mips/mips16@addiu-error.l: New stderr output.
1057 * testsuite/gas/mips/micromips@addiu-error.l: New stderr output.
1058 * testsuite/gas/mips/break-error.l: New stderr output.
1059 * testsuite/gas/mips/addiu-error.s: New test source.
1060 * testsuite/gas/mips/break-error.s: New test source.
1061 * testsuite/gas/mips/mips.exp: Run the new tests.
1062
1a7bf198
MR
10632017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1064
1065 * config/tc-mips.c (match_mips16_insn): Remove the explicit
1066 OT_INTEGER check before the `match_expression' call.
1067 * testsuite/gas/mips/mips16-insn-e.l: Adjust messages.
1068 * testsuite/gas/mips/mips16-32@mips16-insn-e.l: Likewise.
1069 * testsuite/gas/mips/mips16-64@mips16-insn-e.l: Likewise.
1070 * testsuite/gas/mips/mips16e-32@mips16-insn-e.l: Likewise.
1071 * testsuite/gas/mips/mips16-reg-error.d: New test.
1072 * testsuite/gas/mips/mips16-reg-error.l: New stderr output.
1073 * testsuite/gas/mips/mips16-reg-error.s: New test source.
1074 * testsuite/gas/mips/mips.exp: Run the new test.
1075
e295202f
MR
10762017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1077
1078 * config/tc-mips.c (match_mips16_insn): Call
1079 `match_not_constant' for a disallowed relocation operation.
1080 * testsuite/gas/mips/mips16-reloc-error.d: New test.
1081 * testsuite/gas/mips/mips16-reloc-error.l: New stderr output.
1082 * testsuite/gas/mips/mips16-reloc-error.s: New test source.
1083 * testsuite/gas/mips/mips.exp: Run the new test.
1084
c76081bc
MR
10852017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1086
1087 * testsuite/gas/mips/lui-1.d: New test.
1088 * testsuite/gas/mips/lui-2.d: New test.
1089 * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
1090 into the new tests.
1091
a54d5f8b
MR
10922017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1093
1094 * config/tc-mips.c (match_const_int): Update description.
1095
32035f51
MR
10962017-05-15 Maciej W. Rozycki <macro@imgtec.com>
1097
1098 * doc/as.texinfo (-mips16, -no-mips16): Refer to `.module
1099 mips16' rather than `.set mips16'.
1100 (-mmicromips, -mno-micromips): Refer to `.module micromips' and
1101 `.module nomicromips' rather than `.set micromips' and `.set
1102 nomicromips'.
1103 (-msmartmips, -mno-smartmips): Refer to `.module smartmips'
1104 rather than `.set smartmips'.
1105 * doc/c-mips.texi (MIPS Options): Refer to `.module mips16',
1106 `.module micromips', `.module nomicromips' and `.module
1107 smartmips' rather than `.set mips16', `.set micromips', `.set
1108 nomicromips' and `.set smartmips' respectively.
1109
be3f1006
MR
11102017-05-12 Maciej W. Rozycki <macro@imgtec.com>
1111 Matthew Fortune <matthew.fortune@imgtec.com>
1112
1113 * config/tc-mips.c (mips_percent_op): Add "%gprel".
1114 (mips16_percent_op): Add "%gp_rel".
1115 * testsuite/gas/mips/elf-rel8.s:: Add `%gprel' forms.
1116 * testsuite/gas/mips/elf-rel8-mips16.s: Add `%gp_rel' forms.
1117 * testsuite/gas/mips/elf-rel8.d: Adjust accordingly.
1118 * testsuite/gas/mips/elf-rel8-mips16.d: Likewise.
1119
a4f89915
MR
11202017-05-12 Maciej W. Rozycki <macro@imgtec.com>
1121
1122 * testsuite/gas/mips/mips16.d: Adjust BREAK disassembly.
1123 * testsuite/gas/mips/mips16-64@mips16.d: Likewise.
1124 * testsuite/gas/mips/mips16-64.d: Likewise.
1125 * testsuite/gas/mips/mips16-64@mips16-64.d: Likewise.
1126 * testsuite/gas/mips/mips16-macro.d: Likewise.
1127 * testsuite/gas/mips/mips16-64@mips16-macro.d: Likewise.
1128 * testsuite/gas/mips/mips16-sub.d: Likewise.
1129 * testsuite/gas/mips/mips16-32@mips16-sub.d: Likewise.
1130
99e2d67a
MR
11312017-05-11 Maciej W. Rozycki <macro@imgtec.com>
1132
1133 * testsuite/gas/mips/mips32r2-sync-1.d: New test.
1134 * testsuite/gas/mips/micromips@mips32r2-sync-1.d: New test.
1135 * testsuite/gas/mips/mips.exp: Run the new tests.
1136
7f401e84
MR
11372017-05-10 Maciej W. Rozycki <macro@imgtec.com>
1138
1139 * testsuite/gas/mips/isa-override-2.d: New test.
1140 * testsuite/gas/mips/mips1@isa-override-2.d: New test.
1141 * testsuite/gas/mips/r3000@isa-override-2.d: New test.
1142 * testsuite/gas/mips/r3900@isa-override-2.d: New test.
1143 * testsuite/gas/mips/mips2@isa-override-2.d: New test.
1144 * testsuite/gas/mips/mips32@isa-override-2.d: New test.
1145 * testsuite/gas/mips/mips32r2@isa-override-2.d: New test.
1146 * testsuite/gas/mips/mips32r3@isa-override-2.d: New test.
1147 * testsuite/gas/mips/mips32r5@isa-override-2.d: New test.
1148 * testsuite/gas/mips/mips32r6@isa-override-2.d: New test.
1149 * testsuite/gas/mips/octeon3@isa-override-2.d: New test.
1150 * testsuite/gas/mips/r3000@isa-override-2.l: Remove list test.
1151 * testsuite/gas/mips/mips1@isa-override-2.s: Remove test source.
1152 * testsuite/gas/mips/r3000@isa-override-2.s: Remove test source.
1153 * testsuite/gas/mips/r3900@isa-override-2.s: Remove test source.
1154 * testsuite/gas/mips/mips2@isa-override-2.s: Remove test source.
1155 * testsuite/gas/mips/mips32@isa-override-2.s: Remove test
1156 source.
1157 * testsuite/gas/mips/mips32r2@isa-override-2.s: Remove test
1158 source.
1159 * testsuite/gas/mips/mips32r3@isa-override-2.s: Remove test
1160 source.
1161 * testsuite/gas/mips/mips32r5@isa-override-2.s: Remove test
1162 source.
1163 * testsuite/gas/mips/mips32r6@isa-override-2.s: Remove test
1164 source.
1165 * testsuite/gas/mips/octeon3@isa-override-2.s: Remove test
1166 source.
1167 * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
1168 into the new tests.
1169
9fc18134
MR
11702017-05-10 Maciej W. Rozycki <macro@imgtec.com>
1171
1172 * testsuite/gas/mips/mips16e-sub.d: Correct test name.
1173 * testsuite/gas/mips/mips16-32@mips16e-sub.d: Likewise.
1174 * testsuite/gas/mips/mips16-64@mips16e-sub.d: Likewise.
1175 * testsuite/gas/mips/mips16e-64-sub.d: Likewise.
1176 * testsuite/gas/mips/mips16-32@mips16e-64-sub.d: Likewise.
1177 * testsuite/gas/mips/mips16-64@mips16e-64-sub.d: Likewise.
1178 * testsuite/gas/mips/mips16e-32@mips16e-64-sub.d: Likewise.
1179
f78c0b91
MR
11802017-05-10 Maciej W. Rozycki <macro@imgtec.com>
1181
1182 * testsuite/gas/mips/mips16-macro.l: Remove list test.
1183
58667758
MR
11842017-05-10 Maciej W. Rozycki <macro@imgtec.com>
1185
1186 * testsuite/gas/mips/r3900@ecoff@ld.d: Remove test.
1187 * testsuite/gas/mips/mips2@ecoff@ld.d: Remove test.
1188 * testsuite/gas/mips/mips32@ecoff@ld.d: Remove test.
1189 * testsuite/gas/mips/mips32r2@ecoff@ld.d: Remove test.
1190 * testsuite/gas/mips/r3900@ecoff@ld-forward.d: Remove test.
1191 * testsuite/gas/mips/mips2@ecoff@ld-forward.d: Remove test.
1192 * testsuite/gas/mips/mips32@ecoff@ld-forward.d: Remove test.
1193 * testsuite/gas/mips/mips32r2@ecoff@ld-forward.d: Remove test.
1194 * testsuite/gas/mips/mips1@ecoff@sd.d: Remove test.
1195 * testsuite/gas/mips/r3000@ecoff@sd.d: Remove test.
1196 * testsuite/gas/mips/r3900@ecoff@sd.d: Remove test.
1197 * testsuite/gas/mips/mips2@ecoff@sd.d: Remove test.
1198 * testsuite/gas/mips/mips32@ecoff@sd.d: Remove test.
1199 * testsuite/gas/mips/mips32r2@ecoff@sd.d: Remove test.
1200 * testsuite/gas/mips/mips1@ecoff@sd-forward.d: Remove test.
1201 * testsuite/gas/mips/r3000@ecoff@sd-forward.d: Remove test.
1202 * testsuite/gas/mips/r3900@ecoff@sd-forward.d: Remove test.
1203 * testsuite/gas/mips/mips2@ecoff@sd-forward.d: Remove test.
1204 * testsuite/gas/mips/mips32@ecoff@sd-forward.d: Remove test.
1205 * testsuite/gas/mips/mips32r2@ecoff@sd-forward.d: Remove test.
1206
53a346d8
CZ
12072017-05-10 Claudiu Zissulescu <claziss@synopsys.com>
1208
1209 * testsuite/gas/arc/attr-arc600.d: New file.
1210 * testsuite/gas/arc/attr-arc600_mul32x16.d: Likewise.
1211 * testsuite/gas/arc/attr-arc600_norm.d: Likewise.
1212 * testsuite/gas/arc/attr-arc601.d: Likewise.
1213 * testsuite/gas/arc/attr-arc601_mul32x16.d: Likewise.
1214 * testsuite/gas/arc/attr-arc601_mul64.d: Likewise.
1215 * testsuite/gas/arc/attr-arc601_norm.d: Likewise.
1216 * testsuite/gas/arc/attr-arc700.d: Likewise.
1217 * testsuite/gas/arc/attr-arcem.d: Likewise.
1218 * testsuite/gas/arc/attr-archs.d: Likewise.
1219 * testsuite/gas/arc/attr-autodetect-1.d: Likewise.
1220 * testsuite/gas/arc/attr-autodetect-1.s: Likewise.
1221 * testsuite/gas/arc/attr-cpu-a601.d: Likewise.
1222 * testsuite/gas/arc/attr-cpu-a601.s: Likewise.
1223 * testsuite/gas/arc/attr-cpu-a700.d: Likewise.
1224 * testsuite/gas/arc/attr-cpu-a700.s: Likewise.
1225 * testsuite/gas/arc/attr-cpu-em.d: Likewise.
1226 * testsuite/gas/arc/attr-cpu-em.s: Likewise.
1227 * testsuite/gas/arc/attr-cpu-hs.d: Likewise.
1228 * testsuite/gas/arc/attr-cpu-hs.s: Likewise.
1229 * testsuite/gas/arc/attr-em.d: Likewise.
1230 * testsuite/gas/arc/attr-em4.d: Likewise.
1231 * testsuite/gas/arc/attr-em4_dmips.d: Likewise.
1232 * testsuite/gas/arc/attr-em4_fpuda.d: Likewise.
1233 * testsuite/gas/arc/attr-em4_fpus.d: Likewise.
1234 * testsuite/gas/arc/attr-hs.d: Likewise.
1235 * testsuite/gas/arc/attr-hs34.d: Likewise.
1236 * testsuite/gas/arc/attr-hs38.d: Likewise.
1237 * testsuite/gas/arc/attr-hs38_linux.d: Likewise.
1238 * testsuite/gas/arc/attr-mul64.d: Likewise.
1239 * testsuite/gas/arc/attr-name.d: Likewise.
1240 * testsuite/gas/arc/attr-name.s: Likewise.
1241 * testsuite/gas/arc/attr-nps400.d: Likewise.
1242 * testsuite/gas/arc/attr-override-mcpu.d: Likewise.
1243 * testsuite/gas/arc/attr-override-mcpu.s
1244 * testsuite/gas/arc/attr-quarkse_em.d: Likewise.
1245 * testsuite/gas/arc/blank.s: Likewise.
1246 * testsuite/gas/elf/section2.e-arc: Likewise.
1247 * testsuite/gas/arc/cpu-pseudop-1.d: Update test.
1248 * testsuite/gas/arc/cpu-pseudop-2.d: Likewise.
1249 * testsuite/gas/arc/nps400-0.d: Likewise.
1250 * testsuite/gas/elf/elf.exp: Set target_machine for ARC.
1251 * config/tc-arc.c (opcode/arc-attrs.h): Include.
1252 (ARC_GET_FLAG, ARC_SET_FLAG, streq): Define.
1253 (arc_attribute): Declare new function.
1254 (md_pseudo_table): Add arc_attribute.
1255 (cpu_types): Rename default cpu features.
1256 (selected_cpu): Set the default OSABI flag.
1257 (mpy_option): New variable.
1258 (pic_option): Likewise.
1259 (sda_option): Likewise.
1260 (tls_option): Likewise.
1261 (feature_type, feature_list): Remove.
1262 (arc_initial_eflag): Likewise.
1263 (attributes_set_explicitly): New variable.
1264 (arc_check_feature): Check also for the conflicting features.
1265 (arc_select_cpu): Refactor assignment of selected_cpu.eflags.
1266 (arc_option): Remove setting of private flags and architecture.
1267 (check_cpu_feature): Refactor feature names.
1268 (autodetect_attributes): New function.
1269 (assemble_tokens): Use above function.
1270 (md_parse_option): Refactor feature names.
1271 (arc_attribute): New function.
1272 (arc_set_attribute_int): Likewise.
1273 (arc_set_attribute_string): Likewise.
1274 (arc_stralloc): Likewise.
1275 (arc_set_public_attributes): Likewise.
1276 (arc_md_end): Likewise.
1277 (arc_copy_symbol_attributes): Likewise.
1278 (rc_convert_symbolic_attribute): Likewise.
1279 * config/tc-arc.h (md_end): Define.
1280 (CONVERT_SYMBOLIC_ATTRIBUTE): Likewise.
1281 (TC_COPY_SYMBOL_ATTRIBUTES): Likewise.
1282 * doc/c-arc.texi: Document ARC object attributes.
1283
8507b6e7
MR
12842017-05-03 Maciej W. Rozycki <macro@imgtec.com>
1285
1286 * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `pic', `sym32' and
1287 `nomacro' flags.
1288 (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO):
1289 New macros.
1290 (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
1291 (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
1292 (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
1293 (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
1294 (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
1295 (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): Shift bits.
1296 (RELAX_MIPS16_MACRO, RELAX_MIPS16_MARK_MACRO)
1297 (RELAX_MIPS16_CLEAR_MACRO): New macros.
1298 (append_insn): Pass `mips_pic', HAVE_32BIT_SYMBOLS and
1299 `mips_opts.warn_about_macros' settings to RELAX_MIPS16_ENCODE.
1300 (mips16_macro_frag): New function.
1301 (md_estimate_size_before_relax): Handle HI16/LO16 relaxation.
1302 (mips_relax_frag): Likewise.
1303 (md_convert_frag): Likewise.
1304
1305 * testsuite/gas/mips/mips16@relax-swap3.d: Remove error output,
1306 add dump patterns.
1307 * testsuite/gas/mips/mips16e@relax-swap3.d: New test
1308 subarchitecture.
1309 * testsuite/gas/mips/micromips@relax-swap3.d: Remove trailing
1310 NOP padding.
1311 * testsuite/gas/mips/mips16-pcrel-reloc-2.d: Remove error
1312 output, add dump patterns.
1313 * testsuite/gas/mips/mips16-pcrel-reloc-3.d: Remove error
1314 output, add dump patterns.
1315 * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Remove error
1316 output, add dump patterns.
1317 * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Remove error
1318 output, add dump patterns.
1319 * testsuite/gas/mips/mips16-pcrel-addend-2.d: Remove error
1320 output, add dump patterns.
1321 * testsuite/gas/mips/mips16-pcrel-addend-3.d: Remove error
1322 output, add dump patterns.
1323 * testsuite/gas/mips/mips16-pcrel-absolute.d: Remove error
1324 output, add dump patterns.
1325 * testsuite/gas/mips/mips16-pcrel-absolute-1.d: Remove error
1326 output, add dump patterns.
1327 * testsuite/gas/mips/mips16@relax-swap3.l: Remove file.
1328 * testsuite/gas/mips/mips16-pcrel-reloc-2.l: Remove file.
1329 * testsuite/gas/mips/mips16-pcrel-reloc-3.l: Remove file.
1330 * testsuite/gas/mips/mips16-pcrel-reloc-6.l: Remove file.
1331 * testsuite/gas/mips/mips16-pcrel-reloc-7.l: Remove file.
1332 * testsuite/gas/mips/mips16-pcrel-addend-2.l: Remove file.
1333 * testsuite/gas/mips/mips16-pcrel-addend-3.l: Remove file.
1334 * testsuite/gas/mips/mips16-pcrel-absolute.l: Remove file.
1335 * testsuite/gas/mips/mips16-pcrel-absolute-1.l: Remove file.
1336 * testsuite/gas/mips/relax-swap3.s: Adjust trailing padding.
1337
1338 * testsuite/gas/mips/mips16-pcrel-0.d: New test.
1339 * testsuite/gas/mips/mips16-pcrel-1.d: New test.
1340 * testsuite/gas/mips/mips16-pcrel-2.d: New test.
1341 * testsuite/gas/mips/mips16-pcrel-3.d: New test.
1342 * testsuite/gas/mips/mips16-pcrel-4.d: New test.
1343 * testsuite/gas/mips/mips16-pcrel-5.d: New test.
1344 * testsuite/gas/mips/mips16-pcrel-pic-0.d: New test.
1345 * testsuite/gas/mips/mips16-pcrel-pic-1.d: New test.
1346 * testsuite/gas/mips/mips16-pcrel-n32-0.d: New test.
1347 * testsuite/gas/mips/mips16-pcrel-n32-1.d: New test.
1348 * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: New test.
1349 * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: New test.
1350 * testsuite/gas/mips/mips16-pcrel-n64-0.d: New test.
1351 * testsuite/gas/mips/mips16-pcrel-n64-1.d: New test.
1352 * testsuite/gas/mips/mips16-pcrel-delay-0.d: New test.
1353 * testsuite/gas/mips/mips16-pcrel-delay-1.d: New test.
1354 * testsuite/gas/mips/mips16-pcrel-addend-4.d: New test.
1355 * testsuite/gas/mips/mips16-pcrel-addend-5.d: New test.
1356 * testsuite/gas/mips/mips16-pcrel-addend-6.d: New test.
1357 * testsuite/gas/mips/mips16-pcrel-addend-7.d: New test.
1358 * testsuite/gas/mips/mips16-pcrel-addend-8.d: New test.
1359 * testsuite/gas/mips/mips16-pcrel-addend-9.d: New test.
1360 * testsuite/gas/mips/mips16-pcrel-addend-pic-8.d: New test.
1361 * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: New test.
1362 * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: New test.
1363 * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: New test.
1364 * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d: New test.
1365 * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d: New test.
1366 * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: New test.
1367 * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: New test.
1368 * testsuite/gas/mips/mips16-pcrel-absolute-2.d: New test.
1369 * testsuite/gas/mips/mips16-pcrel-absolute-3.d: New test.
1370 * testsuite/gas/mips/mips16-pcrel-absolute-4.d: New test.
1371 * testsuite/gas/mips/mips16-pcrel-absolute-5.d: New test.
1372 * testsuite/gas/mips/mips16-pcrel-absolute-6.d: New test.
1373 * testsuite/gas/mips/mips16-pcrel-absolute-7.d: New test.
1374 * testsuite/gas/mips/mips16-pcrel-absolute-pic-4.d: New test.
1375 * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: New test.
1376 * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: New test.
1377 * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: New test.
1378 * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: New test.
1379 * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: New test.
1380 * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d: New
1381 test.
1382 * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d: New
1383 test.
1384 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d: New
1385 test.
1386 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d: New
1387 test.
1388 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d: New
1389 test.
1390 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d: New
1391 test.
1392 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
1393 New test.
1394 * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
1395 New test.
1396 * testsuite/gas/mips/mips16-pcrel-0.l: New stderr output.
1397 * testsuite/gas/mips/mips16-pcrel-1.l: New stderr output.
1398 * testsuite/gas/mips/mips16-pcrel-2.l: New stderr output.
1399 * testsuite/gas/mips/mips16-pcrel-3.l: New stderr output.
1400 * testsuite/gas/mips/mips16-pcrel-4.l: New stderr output.
1401 * testsuite/gas/mips/mips16-pcrel-5.l: New stderr output.
1402 * testsuite/gas/mips/mips16-pcrel-delay-0.l: New stderr output.
1403 * testsuite/gas/mips/mips16-pcrel-delay-1.l: New stderr output.
1404 * testsuite/gas/mips/mips16-pcrel-addend-8.l: New stderr output.
1405 * testsuite/gas/mips/mips16-pcrel-addend-9.l: New stderr output.
1406 * testsuite/gas/mips/mips16-pcrel-absolute-4.l: New stderr
1407 output.
1408 * testsuite/gas/mips/mips16-pcrel-absolute-6.l: New stderr
1409 output.
1410 * testsuite/gas/mips/mips16-pcrel-0.s: New test source.
1411 * testsuite/gas/mips/mips16-pcrel-1.s: New test source.
1412 * testsuite/gas/mips/mips16-pcrel-2.s: New test source.
1413 * testsuite/gas/mips/mips16-pcrel-3.s: New test source.
1414 * testsuite/gas/mips/mips16-pcrel-4.s: New test source.
1415 * testsuite/gas/mips/mips16-pcrel-5.s: New test source.
1416 * testsuite/gas/mips/mips16-pcrel-delay-0.s: New test source.
1417 * testsuite/gas/mips/mips16-pcrel-delay-1.s: New test source.
1418 * testsuite/gas/mips/mips16-pcrel-addend-4.s: New test source.
1419 * testsuite/gas/mips/mips16-pcrel-addend-5.s: New test source.
1420 * testsuite/gas/mips/mips16-pcrel-addend-6.s: New test source.
1421 * testsuite/gas/mips/mips16-pcrel-addend-7.s: New test source.
1422 * testsuite/gas/mips/mips16-pcrel-addend-8.s: New test source.
1423 * testsuite/gas/mips/mips16-pcrel-addend-9.s: New test source.
1424 * testsuite/gas/mips/mips16-pcrel-absolute-2.s: New test.
1425 * testsuite/gas/mips/mips16-pcrel-absolute-3.s: New test.
1426 * testsuite/gas/mips/mips16-pcrel-absolute-4.s: New test.
1427 * testsuite/gas/mips/mips16-pcrel-absolute-5.s: New test.
1428 * testsuite/gas/mips/mips16-pcrel-absolute-6.s: New test.
1429 * testsuite/gas/mips/mips16-pcrel-absolute-7.s: New test.
1430 * testsuite/gas/mips/mips.exp: Run the new tests.
1431
e78bb25c
NC
14322017-05-03 Nick Clifton <nickc@redhat.com>
1433
1434 PR gas/20941
1435 * symbols.c (snapshot_symbol): Handle the case where
1436 resolve_expression returns a local symbol.
1437
82d808ed
MR
14382017-05-02 Maciej W. Rozycki <macro@imgtec.com>
1439
1440 * config/tc-mips.c (append_insn): Call `symbol_append' for any
1441 expression symbol created for MIPS16 relaxation.
1442 (match_mips16_insn): Don't encode a constant value as an
1443 immediate with a PC-relative operand.
1444
1445 * testsuite/gas/mips/mips16-pcrel-absolute-1.d: New test.
1446 * testsuite/gas/mips/mips16-branch-absolute-1.d: New test.
1447 * testsuite/gas/mips/mips16-branch-absolute-2.d: New test.
1448 * testsuite/gas/mips/mips16-branch-absolute-addend-1.d: New
1449 test.
1450 * testsuite/gas/mips/mips16-branch-absolute-n32-1.d: New test.
1451 * testsuite/gas/mips/mips16-branch-absolute-n32-2.d: New test.
1452 * testsuite/gas/mips/mips16-branch-absolute-addend-n32-1.d: New
1453 test.
1454 * testsuite/gas/mips/mips16-branch-absolute-n64-1.d: New test.
1455 * testsuite/gas/mips/mips16-branch-absolute-n64-2.d: New test.
1456 * testsuite/gas/mips/mips16-branch-absolute-addend-n64-1.d: New
1457 test.
1458 * testsuite/gas/mips/mips16-pcrel-absolute-1.l: New stderr
1459 output.
1460 * testsuite/gas/mips/mips16-pcrel-absolute-1.s: New test source.
1461 * testsuite/gas/mips/mips16-branch-absolute-1.s: New test
1462 source.
1463 * testsuite/gas/mips/mips16-branch-absolute-2.s: New test
1464 source.
1465 * testsuite/gas/mips/mips16-branch-absolute-addend-1.s: New test
1466 source.
1467 * testsuite/gas/mips/mips.exp: Run the new tests.
1468
14f72d45
MR
14692017-04-27 Maciej W. Rozycki <macro@imgtec.com>
1470
1471 * config/tc-mips.c (mips16_pcrel_val): New function, factored
1472 out from...
1473 (mips16_extended_frag): ... here.
1474 (md_convert_frag): Use `mips16_pcrel_val' rather than repeated
1475 code in MIPS16 relaxation, with `stretch' hardcoded to 0.
1476
1425c41d
MR
14772017-04-27 Maciej W. Rozycki <macro@imgtec.com>
1478
1479 * config/tc-mips.c (RELAX_MIPS16_LONG_BRANCH): Rename to...
1480 (RELAX_MIPS16_ALWAYS_EXTENDED): ... this.
1481 (RELAX_MIPS16_MARK_LONG_BRANCH): Rename to...
1482 (RELAX_MIPS16_MARK_ALWAYS_EXTENDED): ... this.
1483 (RELAX_MIPS16_CLEAR_LONG_BRANCH): Rename to...
1484 (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): ... this.
1485 (mips16_extended_frag): Adjust accordingly.
1486
f2d830a5
AM
14872017-04-27 Alan Modra <amodra@gmail.com>
1488
1489 * symbols.c (S_FORCE_RELOC): Separate section and symbol tests.
1490
ce8ad872
MR
14912017-04-26 Maciej W. Rozycki <macro@imgtec.com>
1492
1493 * config/tc-mips.c (RELAX_ENCODE): Add `PIC' flag.
1494 (RELAX_PIC): New macro.
1495 (RELAX_USE_SECOND, RELAX_SECOND_LONGER, RELAX_NOMACRO)
1496 (RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT)
1497 (RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND):
1498 Shift bits.
1499 (RELAX_BRANCH_ENCODE): Add `pic' flag.
1500 (RELAX_BRANCH_UNCOND, RELAX_BRANCH_LIKELY, RELAX_BRANCH_LINK)
1501 (RELAX_BRANCH_TOOFAR): Shift bits.
1502 (RELAX_BRANCH_PIC): New macro.
1503 (RELAX_MICROMIPS_ENCODE): Add `pic' flag.
1504 (RELAX_MICROMIPS_PIC): New macro.
1505 (RELAX_MICROMIPS_UNCOND, RELAX_MICROMIPS_COMPACT)
1506 (RELAX_MICROMIPS_LINK, RELAX_MICROMIPS_NODS)
1507 (RELAX_MICROMIPS_RELAX32): Shift bits.
1508 (relax_close_frag): Pass `mips_pic' setting to RELAX_ENCODE.
1509 (append_insn): Pass `mips_pic' setting to RELAX_BRANCH_ENCODE
1510 and RELAX_MICROMIPS_ENCODE, and record it in `fx_tcbit2' of the
1511 first fixup created.
1512 (md_apply_fix) <BFD_RELOC_16_PCREL_S2>: Use `fx_tcbit2' of the
1513 fixup processed rather than `mips_pic' in choosing to relax an
1514 out of range branch to a jump.
1515 (relaxed_branch_length): Use the `pic' flag of the relaxed frag
1516 rather than `mips_pic'.
1517 (relaxed_micromips_32bit_branch_length): Likewise.
1518 (md_estimate_size_before_relax): Likewise.
1519 (md_convert_frag): Likewise.
1520
1521 * testsuite/gas/mips/option-pic-relax-0.d: New test.
1522 * testsuite/gas/mips/option-pic-relax-1.d: New test.
1523 * testsuite/gas/mips/option-pic-relax-2.d: New test.
1524 * testsuite/gas/mips/option-pic-relax-3.d: New test.
1525 * testsuite/gas/mips/option-pic-relax-3a.d: New test.
1526 * testsuite/gas/mips/option-pic-relax-4.d: New test.
1527 * testsuite/gas/mips/option-pic-relax-5.d: New test.
1528 * testsuite/gas/mips/option-pic-relax-2.l: New stderr output.
1529 * testsuite/gas/mips/option-pic-relax-3.l: New stderr output.
1530 * testsuite/gas/mips/option-pic-relax-4.l: New stderr output.
1531 * testsuite/gas/mips/option-pic-relax-5.l: New stderr output.
1532 * testsuite/gas/mips/option-pic-relax-0.s: New test source.
1533 * testsuite/gas/mips/option-pic-relax-1.s: New test source.
1534 * testsuite/gas/mips/option-pic-relax-2.s: New test source.
1535 * testsuite/gas/mips/option-pic-relax-3.s: New test source.
1536 * testsuite/gas/mips/option-pic-relax-4.s: New test source.
1537 * testsuite/gas/mips/option-pic-relax-5.s: New test source.
1538 * testsuite/gas/mips/mips.exp: Run the new tests.
1539
126124cc
CZ
15402017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
1541
1542 * testsuite/gas/arc/leave_enter.d: Update test.
1543 * testsuite/gas/arc/leave_enter.s: Likewise.
1544
be6a24d8
CZ
15452017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
1546
1547 * testsuite/gas/arc/b.d: Update test.
1548 * testsuite/gas/arc/noargs_hs.d: Likewise.
1549
adc1273c
MR
15502017-04-25 Maciej W. Rozycki <macro@imgtec.com>
1551
1552 * config/tc-mips.c (md_convert_frag): Correct
1553 BFD_RELOC_MIPS16_16_PCREL_S1 fixup size.
1554 * testsuite/gas/mips/mips16-branch-addend-4.d: New test.
1555 * testsuite/gas/mips/mips16-branch-addend-5.d: New test.
1556 * testsuite/gas/mips/mips16-branch-addend-5.l: New stderr
1557 output.
1558 * testsuite/gas/mips/mips16-branch-addend-4.s: New test source.
1559 * testsuite/gas/mips/mips16-branch-addend-5.s: New test source.
1560 * testsuite/gas/mips/mips.exp: Run the new tests.
1561
d28b6364
JM
15622017-04-25 Jose E. Marchesi <jose.marchesi@oracle.com>
1563
1564 PR gas/21407
1565 * config/tc-sparc.c (md_apply_fix): Do not transform `call'
1566 instructions into branch instructions in fixups generating
1567 additional relocations.
1568 * testsuite/gas/sparc/call-relax.s: New file.
1569 * testsuite/gas/sparc/call-relax.d: Likewise.
1570 * testsuite/gas/sparc/call-relax-aout.d: Likewise.
1571 * testsuite/gas/sparc/sparc.exp: Test call-relax and call-relax-aout.
1572
53445554
TP
15732017-04-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
1574
1575 * config/tc-arm.c (move_or_literal_pool): Remove code generating MOVS.
1576 Forbid MOV.W and MOVW if destination is SP or PC.
1577 * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.s: Explain
1578 expectation of LDR not generating a MOVS for low registers and small
1579 constants. Add tests of MOVW generation.
1580 * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.d: Update
1581 expected disassembly.
1582
a8cc8a54
AM
15832017-04-22 Alan Modra <amodra@gmail.com>
1584
1585 * testsuite/gas/ppc/vle.s: Format. Add se_rfgi and e_sc.
1586 * testsuite/gas/ppc/vle.d: Update.
1587
792f174f
NC
15882017-04-21 Nick Clifton <nickc@redhat.com>
1589
1590 PR binutils/21380
1591 * testsuite/gas/aarch64/illegal-3.s: New file.
1592 * testsuite/gas/aarch64/illegal-3.d: New file.
1593
ef85eab0
AM
15942017-04-11 Alan Modra <amodra@gmail.com>
1595
1596 * config/tc-ppc.c (md_show_usage): Delete mention of -mhtm.
1597 * testsuite/gas/ppc/htm.d: Pass -mpower8 and -Mpower8.
1598
947fa914
MF
15992017-04-10 Max Filippov <jcmvbkbc@gmail.com>
1600
1601 * config/tc-xtensa.c (xtensa_maybe_create_literal_pool_frag):
1602 Initialize lps->frag_count with auto_litpool_limit.
1603 (xg_promote_candidate_litpool): New function.
1604 (xtensa_move_literals): Extract candidate litpool promotion code
1605 into separate function. Call it for all possible found
1606 candidates.
1607 (xtensa_switch_to_literal_fragment): Drop 'recursive' flag and
1608 call to xtensa_mark_literal_pool_location that it guards.
1609 Replace it with call to xtensa_maybe_create_literal_pool_frag.
1610 Initialize pool_location with created literal pool candidate.
1611 * testsuite/gas/xtensa/all.exp: Add new tests.
1612 * testsuite/gas/xtensa/auto-litpools-first1.d: New test results.
1613 * testsuite/gas/xtensa/auto-litpools-first1.s: New test.
1614 * testsuite/gas/xtensa/auto-litpools-first2.d: New test results.
1615 * testsuite/gas/xtensa/auto-litpools-first2.s: New test.
1616 * testsuite/gas/xtensa/auto-litpools.d: Fix offsets changed due
1617 to additional jump instruction.
1618
ac8f0f72
AM
16192017-04-07 Alan Modra <amodra@gmail.com>
1620
1621 * testsuite/gas/ppc/altivec2.s: Delete E6500 vector insns.
1622 * testsuite/gas/ppc/altivec2.d: Adjust to suit.
1623
498e3442
AM
16242017-04-07 Alan Modra <amodra@gmail.com>
1625
1626 * testsuite/gas/elf/section12a.d: Don't expect alignment of 1
1627 for .mbind.text.
1628
62ecb94c
PC
16292017-04-06 Pip Cet <pipcet@gmail.com>
1630
1631 * testsuite/gas/wasm32/allinsn.d: Adjust test for disassembler
1632 changes.
1633 * testsuite/gas/wasm32/disass.d: New test.
1634 * testsuite/gas/wasm32/disass.s: New test.
1635 * testsuite/gas/wasm32/disass-2.d: New test.
1636 * testsuite/gas/wasm32/disass-2.s: New test.
1637 * testsuite/gas/wasm32/reloc.d: Adjust test for changed reloc
1638 names.
1639 * testsuite/gas/wasm32/reloc.s: Update test for changed assembler
1640 syntax.
1641 * testsuite/gas/wasm32/wasm32.exp: Run new tests. Expect allinsn
1642 test to succeed.
1643
a91e1603
L
16442017-04-04 H.J. Lu <hongjiu.lu@intel.com>
1645
1646 * NEWS: Mention support for ELF SHF_GNU_MBIND.
1647 * config/obj-elf.c (section_match): New.
1648 (get_section): Match both sh_info and group name.
1649 (obj_elf_change_section): Add argument for sh_info. Pass both
1650 sh_info and group name to get_section. Issue an error for
1651 SHF_GNU_MBIND section without SHF_ALLOC. Set sh_info.
1652 (obj_elf_parse_section_letters): Set SHF_GNU_MBIND for 'd'.
1653 (obj_elf_section): Support SHF_GNU_MBIND section info.
1654 * config/obj-elf.h (obj_elf_change_section): Add argument for
1655 sh_info.
1656 * config/tc-arm.c (start_unwind_section): Pass 0 as sh_info to
1657 obj_elf_change_section.
1658 * config/tc-ia64.c (obj_elf_vms_common): Likewise.
1659 * config/tc-microblaze.c (microblaze_s_data): Likewise.
1660 (microblaze_s_sdata): Likewise.
1661 (microblaze_s_rdata): Likewise.
1662 (microblaze_s_bss): Likewise.
1663 * config/tc-mips.c (s_change_section): Likewise.
1664 * config/tc-msp430.c (msp430_profiler): Likewise.
1665 * config/tc-rx.c (parse_rx_section): Likewise.
1666 * config/tc-tic6x.c (tic6x_start_unwind_section): Likewise.
1667 * doc/as.texinfo: Document 'd' for SHF_GNU_MBIND.
1668 * testsuite/gas/elf/elf.exp: Run section12a, section12b and
1669 section13.
1670 * testsuite/gas/elf/section10.d: Updated.
1671 * testsuite/gas/elf/section10.s: Likewise.
1672 * testsuite/gas/elf/section12.s: New file.
1673 * testsuite/gas/elf/section12a.d: Likewise.
1674 * testsuite/gas/elf/section12b.d: Likewise.
1675 * testsuite/gas/elf/section13.l: Likewise.
1676 * testsuite/gas/elf/section13.d: Likewise.
1677 * testsuite/gas/elf/section13.s: Likewise.
1678
c41cf6fd
PD
16792017-04-03 Palmer Dabbelt <palmer@dabbelt.com>
1680
1681 * config/tc-riscv.c (riscv_clear_subsets): Cast argument to free to
1682 avoid const warnings.
1683
fecb9c46
PD
16842017-03-30 Palmer Dabbelt <palmer@dabbelt.com>
1685
1686 * config/tc-riscv.c (riscv_clear_subsets): New function.
1687 (riscv_add_subset): Call riscv_clear_subsets and riscv_set_rvc to
1688 clear RVC when it's been previously set.
1689
dc1e4d6d
NC
16902017-03-31 Nick Clifton <nickc@redhat.com>
1691
1692 PR gas/21333
1693 * config/tc-s390.c (tc_s390_fix_adjustable): Allow non pc-relative
1694 fixups in mergeable sections to be adjusted.
1695
f96bd6c2
PC
16962017-03-30 Pip Cet <pipcet@gmail.com>
1697
1698 * config/tc-wasm32.h: New file: Add WebAssembly assembler target.
1699 * config/tc-wasm32.c: New file: Add WebAssembly assembler target.
1700 * Makefile.am: Add WebAssembly assembler target.
1701 * configure.tgt: Add WebAssembly assembler target.
1702 * doc/c-wasm32.texi: New file: Start documenting WebAssembly
1703 assembler.
1704 * doc/all.texi: Define WASM32.
1705 * doc/as.texinfo: Add WebAssembly entries.
1706 * NEWS: Mention the new support.
1707 * Makefile.in: Regenerate.
1708 * po/gas.pot: Regenerate.
1709 * po/POTFILES.in: Regenerate.
1710 * testsuite/gas/wasm32: New directory.
1711 * testsuite/gas/wasm32/allinsn.d: New file.
1712 * testsuite/gas/wasm32/allinsn.s: New file.
1713 * testsuite/gas/wasm32/illegal.l: New file.
1714 * testsuite/gas/wasm32/illegal.s: New file.
1715 * testsuite/gas/wasm32/illegal-2.l: New file.
1716 * testsuite/gas/wasm32/illegal-2.s: New file.
1717 * testsuite/gas/wasm32/illegal-3.l: New file.
1718 * testsuite/gas/wasm32/illegal-3.s: New file.
1719 * testsuite/gas/wasm32/illegal-4.l: New file.
1720 * testsuite/gas/wasm32/illegal-4.s: New file.
1721 * testsuite/gas/wasm32/illegal-5.l: New file.
1722 * testsuite/gas/wasm32/illegal-5.s: New file.
1723 * testsuite/gas/wasm32/illegal-6.l: New file.
1724 * testsuite/gas/wasm32/illegal-6.s: New file.
1725 * testsuite/gas/wasm32/illegal-7.l: New file.
1726 * testsuite/gas/wasm32/illegal-7.s: New file.
1727 * testsuite/gas/wasm32/illegal-8.l: New file.
1728 * testsuite/gas/wasm32/illegal-8.s: New file.
1729 * testsuite/gas/wasm32/illegal-9.l: New file.
1730 * testsuite/gas/wasm32/illegal-9.s: New file.
1731 * testsuite/gas/wasm32/illegal-10.l: New file.
1732 * testsuite/gas/wasm32/illegal-10.s: New file.
1733 * testsuite/gas/wasm32/illegal-11.l: New file.
1734 * testsuite/gas/wasm32/illegal-11.s: New file.
1735 * testsuite/gas/wasm32/illegal-12.l: New file.
1736 * testsuite/gas/wasm32/illegal-12.s: New file.
1737 * testsuite/gas/wasm32/illegal-13.l: New file.
1738 * testsuite/gas/wasm32/illegal-13.s: New file.
1739 * testsuite/gas/wasm32/illegal-14.l: New file.
1740 * testsuite/gas/wasm32/illegal-14.s: New file.
1741 * testsuite/gas/wasm32/illegal-15.l: New file.
1742 * testsuite/gas/wasm32/illegal-15.s: New file.
1743 * testsuite/gas/wasm32/illegal-16.l: New file.
1744 * testsuite/gas/wasm32/illegal-16.s: New file.
1745 * testsuite/gas/wasm32/illegal-17.l: New file.
1746 * testsuite/gas/wasm32/illegal-17.s: New file.
1747 * testsuite/gas/wasm32/illegal-18.l: New file.
1748 * testsuite/gas/wasm32/illegal-18.s: New file.
1749 * testsuite/gas/wasm32/illegal-19.l: New file.
1750 * testsuite/gas/wasm32/illegal-19.s: New file.
1751 * testsuite/gas/wasm32/illegal-20.l: New file.
1752 * testsuite/gas/wasm32/illegal-20.s: New file.
1753 * testsuite/gas/wasm32/illegal-21.l: New file.
1754 * testsuite/gas/wasm32/illegal-21.s: New file.
1755 * testsuite/gas/wasm32/illegal-22.l: New file.
1756 * testsuite/gas/wasm32/illegal-22.s: New file.
1757 * testsuite/gas/wasm32/illegal-24.l: New file.
1758 * testsuite/gas/wasm32/illegal-24.s: New file.
1759 * testsuite/gas/wasm32/illegal-25.l: New file.
1760 * testsuite/gas/wasm32/illegal-25.s: New file.
1761 * testsuite/gas/wasm32/reloc.d: New file.
1762 * testsuite/gas/wasm32/reloc.s: New file.
1763 * testsuite/gas/wasm32/wasm32.exp: New tests for WebAssembly
1764 architecture.
1765
52be03fd
AM
17662017-03-29 Alan Modra <amodra@gmail.com>
1767
1768 * config/tc-ppc.c (md_parse_option): Reject -mraw.
1769
9b753937
AM
17702017-03-27 Alan Modra <amodra@gmail.com>
1771
1772 PR 21303
1773 * testsuite/gas/ppc/pr21303.d,
1774 * testsuite/gas/ppc/pr21303.s: New test
1775 * testsuite/gas/ppc/ppc.exp: Run it.
1776
c0c31e91
RZ
17772017-03-27 Rinat Zelig <rinat@mellanox.com>
1778
1779 * testsuite/gas/arc/nps400-12.s: New file.
1780 * testsuite/gas/arc/nps400-12.d: New file.
1781
62785b09
TP
17822017-03-24 Thomas preud'homme <thomas.preudhomme@arm.com>
1783
1784 * config/tc-arm.: (md_begin): Set selected_cpu from *mcpu_cpu_opt when
1785 CPU_DEFAULT is defined.
1786
19683c04
PD
17872017-03-21 Palmer Dabbbelt <palmer@dabbelt.com>
1788
1789 * config/tc-riscv.c (md_show_usage): Remode defuct -m32, -m64,
1790 -msoft-float, -mhard-float, -mno-rvc, and -mrvc options; and don't
1791 print an invalid default ISA string.
1792 * doc/c-riscv.texi (OPTIONS): Add -fpic and -fno-pic options.
1793
24e5b4e6
MF
17942017-03-22 Max Filippov <jcmvbkbc@gmail.com>
1795
1796 * config/tc-xtensa.c (xtensa_relax_frag): Change fx_size of the
1797 reassigned fixup to size of jump instruction (3) and fx_r_type
1798 to BFD_RELOC_XTENSA_SLOT0_OP, as there's only one slot.
1799 (add_jump_to_trampoline): Search
1800 origfrag->tc_frag_data.slot_symbols for the slot with non-NULL
1801 symbol and use that slot instead of slot 0.
1802
2253c8f0
AK
18032017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
1804
1805 * config/tc-s390.c (s390_parse_cpu): Remove S390_INSTR_FLAG_VX2
1806 from cpu_table. Remove vx2, and novx2 from cpu_flags.
1807
645d3342
RZ
18082017-03-21 Rinat Zelig <rinat@mellanox.com>
1809
1810 * testsuite/gas/arc/nps400-11.s: New file.
1811 * testsuite/gas/arc/nps400-11.d: New file.
1812
e406e428
NC
18132017-03-20 Nick Clifton <nickc@redhat.com>
1814
1815 * doc/as.texinfo (2byte): Note that if no expressions are present
1816 the directive does nothing. Emphasize that the output is
1817 unaligned, and that this can have an effect on the relocations
1818 generated.
1819 (4byte): Simplify description. Refer back to the 2byte
1820 description.
1821 (8byte): Likewise.
1822
d5e0ba9c
RE
18232017-03-20 Richard Earnshaw <rearnsha@arm.com>
1824
1825 * config/tc-arm.c (arm_fpus): Note entires that should not be
1826 documented.
1827 * doc/c-arm.texi (-mfpu): Add missing FPU entries for neon-vfpv3 and
1828 neon-fp16. Fix spelling error.
1829
d3375ddd
RE
18302017-03-20 Richard Earnshaw <rearnsha@arm.com>
1831
1832 * config/tc-arm.c (arm_fpus): Add neon-vfpv3 as an alias for neon.
1833
2c52e2e8
RZ
18342017-03-16 Rinat Zelig <rinat@mellanox.com>
1835
1836 * config/tc-arc.c (assemble_insn): Only handle ".t" and ".nt"
1837 specially for ARCv2.
1838
b416fe87
KC
18392017-03-14 Kito Cheng <kito.cheng@gmail.com>
1840
1841 * config/tc-riscv.c (validate_riscv_insn): Add 'o' RVC immediate
1842 encoding format, which can accept 0-valued immediates.
1843 (riscv_ip): Likewise.
1844
7cb7b948
NC
18452017-03-15 Nick Clifton <nickc@redhat.com>
1846
1847 * config/tc-riscv.c (riscv_pre_output_hook): Fix compile time
1848 warning about discarding a const qualifier.
1849
d47c3ff7
KLC
18502017-03-02 Kuan-Lin Chen <rufus@andestech.com>
1851
1852 * config/tc-riscv.h (HWARD2_USE_FIXED_ADVANCE_PC): New define.
1853
2aece2ba
KLC
18542017-03-02 Kuan-Lin Chen <rufus@andestech.com>
1855
1856 * config/tc-riscv.c (md_apply_fix): Set fx_frag and
1857 fx_next->fx_frag for CFA_advance_loc relocations.
1858
c1b465c9
KLC
18592017-03-02 Kuan-Lin Chen <rufus@andestech.com>
1860
1861 * config/tc-riscv.c (md_apply_fix): Compute the correct offsets
1862 for CFA relocations.
1863
f955cccf
NC
18642017-03-13 Nick Clifton <nickc@redhat.com>
1865
1866 PR binutils/21202
1867 * config/tc-aarch64.c (reloc_table): Rename
1868 BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC to
1869 BFD_RELOC_AARCH64_TLSDESC_LD64_LO12. Rname
1870 BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC to
1871 BFD_RELOC_AARCH64_TLSDESC_ADD_LO12.
1872 (md_apply_fix): Likewise.
1873 (aarch64_force_relocation): Likewise.
1874 * testsuite/gas/aarch64/tls.d: Update regexp.
1875
8b1e5da1
NC
18762017-03-10 Tobin C. Harding <me@tobin.cc>
1877 Nick Clifton <nickc@redhat.com>
1878
1879 * doc/as.texinfo (2byte): Tidy up wording. Add note that
1880 overlarge values will produce a warning message and be trunacted.
1881 (4byte): Likewise.
1882
86fa6981
L
18832017-03-09 H.J. Lu <hongjiu.lu@intel.com>
1884
1885 * config/tc-i386.c (_i386_insn): Add dir_encoding and
1886 vec_encoding. Remove swap_operand and need_vrex.
1887 (extra_symbol_chars): Add '}'.
1888 (md_begin): Mark '}' with LEX_BEGIN_NAME. Allow '}' in
1889 mnemonic.
1890 (build_vex_prefix): Don't use 2-byte VEX encoding with
1891 {vex3}. Check dir_encoding and load.
1892 (parse_insn): Check pseudo prefixes. Set dir_encoding.
1893 (VEX_check_operands): Likewise.
1894 (match_template): Check dir_encoding and load.
1895 (parse_real_register): Set vec_encoding instead of need_vrex.
1896 (parse_register): Likewise.
1897 * doc/c-i386.texi: Document {disp8}, {disp32}, {load}, {store},
1898 {vex2}, {vex3} and {evex}. Remove ".s", ".d8" and ".d32"
1899 * testsuite/gas/i386/i386.exp: Run pseudos and x86-64-pseudos.
1900 * testsuite/gas/i386/pseudos.d: New file.
1901 * testsuite/gas/i386/pseudos.s: Likewise.
1902 * testsuite/gas/i386/x86-64-pseudos.d: Likewise.
1903 * testsuite/gas/i386/x86-64-pseudos.s: Likewise.
1904
4b8b687e
PB
19052017-03-08 Peter Bergner <bergner@vnet.ibm.com>
1906
1907 * testsuite/gas/ppc/altivec2.d (as): Use the -mpower8 option.
1908 (objdump): Use the -Mpower8 option.
1909
1437d063
PB
19102017-03-08 Peter Bergner <bergner@vnet.ibm.com>
1911
1912 * testsuite/gas/ppc/power9.d <lnia> New test.
1913 * testsuite/gas/ppc/power9.s: Likewise.
1914
ea86f534
AM
19152017-03-07 Alan Modra <amodra@gmail.com>
1916
1917 * doc/as.texinfo (2byte, 4byte, 8byte): Correct @section placement.
1918
2b841ec2
AM
19192017-03-07 Tobin C. Harding <me@tobin.cc>
1920 Alan Modra <amodra@gmail.com>
1921
1922 * doc/as.texinfo (2byte, 4byte, 8byte): Document.
1923 * doc/c-arm.texi (2byte, 4byte, 8byte): Omit if ELF.
1924
603555e5
L
19252017-03-06 H.J. Lu <hongjiu.lu@intel.com>
1926
1927 * config/tc-i386.c (cpu_arch): Add .cet.
1928 * doc/c-i386.texi: Document cet.
1929 * testsuite/gas/i386/cet-intel.d: New file.
1930 * testsuite/gas/i386/cet.d: Likewise.
1931 * testsuite/gas/i386/cet.s: Likewise.
1932 * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
1933 * testsuite/gas/i386/x86-64-cet.d: Likewise.
1934 * testsuite/gas/i386/x86-64-cet.s: Likewise.
1935 * testsuite/gas/i386/i386.exp: Run Intel CET tests.
1936
1cccfb31
L
19372017-03-06 H.J. Lu <hongjiu.lu@intel.com>
1938
1939 * testsuite/gas/i386/x86-64-mpx-inval-2.s: Force a good alignment.
1940 * testsuite/gas/i386/x86-64-mpx-inval-2.l: Expect [0-9A-F]+.
1941
ea0de82e
AM
19422017-03-06 Alan Modra <amodra@gmail.com>
1943
1944 * dw2gencfi.c (encoding_size): Return unsigned int.
1945 (emit_expr_encoded): Assert size matches reloc bitsize.
1946 (output_fde): Use unsigned for offset_size and addr_size. Set
1947 addr_size earlier and use in place of constant 4 and uses of
1948 DWARF2_FDE_RELOC_SIZE. Assert it matches reloc bitsize.
1949
9e1a8675
AM
19502017-03-06 Alan Modra <amodra@gmail.com>
1951
1952 * dw2gencfi.c: Wrap overlong lines. Add parens for emacs
1953 auto reformat. Formatting and whitespace fixes.
1954
49fced12
MW
19552017-03-05 Mark Wielaard <mark@klomp.org>
1956
1957 * dwarf2dbg.c (out_debug_abbrev): Use DW_FORM_strp instead of
1958 DW_FORM_string for DW_AT_name, DW_AT_comp_dir and DW_AT_producer.
1959 (out_debug_info): Accept symbols to name, comp_dir and producer in
1960 the .debug_str section and emit those offsets not full strings.
1961 (out_debug_str): New function that outputs the strings for name,
1962 comp_dir and producer in .debug_str and generates symbols to those
1963 strings.
1964 (out_debug_line): Create a .debug_str section if necessary and call
1965 out_debug_str before calling out_debug_info.
1966 * testsuite/gas/aarch64/dwarf.d: Add extra section symbol to expected
1967 output.
1968
9875b365
MR
19692017-03-02 Maciej W. Rozycki <macro@imgtec.com>
1970
1971 * write.c (relax_segment) <rs_org>: Only bail out if the fixed
1972 part of the frag has overrun the location requested.
1973
1974 * testsuite/gas/all/org-1.d: New test.
1975 * testsuite/gas/all/org-2.d: New test.
1976 * testsuite/gas/all/org-3.d: New test.
1977 * testsuite/gas/all/org-4.d: New test.
1978 * testsuite/gas/all/org-5.d: New test.
1979 * testsuite/gas/all/org-6.d: New test.
1980 * testsuite/gas/all/org-1.l: New stderr output.
1981 * testsuite/gas/all/org-2.l: New stderr output.
1982 * testsuite/gas/all/org-3.l: New stderr output.
1983 * testsuite/gas/all/org-1.s: New test source.
1984 * testsuite/gas/all/org-2.s: New test source.
1985 * testsuite/gas/all/org-3.s: New test source.
1986 * testsuite/gas/all/org-4.s: New test source.
1987 * testsuite/gas/all/org-5.s: New test source.
1988 * testsuite/gas/all/org-6.s: New test source.
1989 * testsuite/gas/all/gas.exp: Run the new tests.
1990
1991 * testsuite/gas/mips/org-1.d: New test.
1992 * testsuite/gas/mips/org-2.d: New test.
1993 * testsuite/gas/mips/org-3.d: New test.
1994 * testsuite/gas/mips/org-4.d: New test.
1995 * testsuite/gas/mips/org-5.d: New test.
1996 * testsuite/gas/mips/org-6.d: New test.
1997 * testsuite/gas/mips/org-7.d: New test.
1998 * testsuite/gas/mips/org-8.d: New test.
1999 * testsuite/gas/mips/org-9.d: New test.
2000 * testsuite/gas/mips/org-10.d: New test.
2001 * testsuite/gas/mips/org-11.d: New test.
2002 * testsuite/gas/mips/org-12.d: New test.
2003 * testsuite/gas/mips/org-1.l: New stderr output.
2004 * testsuite/gas/mips/org-4.l: New stderr output.
2005 * testsuite/gas/mips/org-5.l: New stderr output.
2006 * testsuite/gas/mips/org-6.l: New stderr output.
2007 * testsuite/gas/mips/org-10.l: New stderr output.
2008 * testsuite/gas/mips/org-1.s: New test source.
2009 * testsuite/gas/mips/org-2.s: New test source.
2010 * testsuite/gas/mips/org-3.s: New test source.
2011 * testsuite/gas/mips/org-4.s: New test source.
2012 * testsuite/gas/mips/org-5.s: New test source.
2013 * testsuite/gas/mips/org-6.s: New test source.
2014 * testsuite/gas/mips/org-7.s: New test source.
2015 * testsuite/gas/mips/org-8.s: New test source.
2016 * testsuite/gas/mips/org-9.s: New test source.
2017 * testsuite/gas/mips/org-10.s: New test source.
2018 * testsuite/gas/mips/org-11.s: New test source.
2019 * testsuite/gas/mips/org-12.s: New test source.
2020 * testsuite/gas/mips/mips.exp: Run the new tests.
2021
01cca2f9
SN
20222017-03-01 Szabolcs Nagy <szabolcs.nagy@arm.com>
2023
2024 * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
2025
15c7c1d8
JB
20262017-02-28 Jan Beulich <jbeulich@suse.com>
2027
2028 * testsuite/gas/i386/x86-64-avx.s: Add suffixed variants of
2029 VPCMPESTR{I,M}.
2030 * testsuite/gas/i386/x86-64-sse2avx.s: Likewise.
2031 * testsuite/gas/i386/x86-64-sse4_2.s: Add suffixed variants
2032 of PCMPESTR{I,M}.
2033 * testsuite/gas/i386/ilp32/x86-64-avx-intel.d: Likewise.
2034 * testsuite/gas/i386/ilp32/x86-64-avx.d: Likewise.
2035 * testsuite/gas/i386/ilp32/x86-64-sse2avx.d: Likewise.
2036 * testsuite/gas/i386/ilp32/x86-64-sse4_2-intel.d: Likewise.
2037 * testsuite/gas/i386/ilp32/x86-64-sse4_2.d: Likewise.
2038 * testsuite/gas/i386/x86-64-avx-intel.d: Likewise.
2039 * testsuite/gas/i386/x86-64-avx.d: Likewise.
2040 * testsuite/gas/i386/x86-64-sse2avx.d: Likewise.
2041 * testsuite/gas/i386/x86-64-sse4_2-intel.d: Likewise.
2042 * testsuite/gas/i386/x86-64-sse4_2.d: Likewise.
2043
4ef97a1b
AM
20442017-02-28 Alan Modra <amodra@gmail.com>
2045
2046 * config/tc-nios2.h (TC_FORCE_RELOCATION_SUB_LOCAL): Define.
2047
7ba71655
AM
20482017-02-28 Alan Modra <amodra@gmail.com>
2049
2050 * config/tc-ppc.c (md_assemble): Use BFD_RELOC_PPC_16DX_HA for addpcis.
2051 (md_apply_fix): Remove fx_subsy check. Move code converting to
2052 pcrel reloc earlier and handle BFD_RELOC_PPC_16DX_HA. Remove code
2053 emiiting errors on seeing fx_pcrel set on unexpected relocs, as
2054 that is done now by the generic code via..
2055 * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): ..this. Define.
2056 (TC_VALIDATE_FIX_SUB): Define.
2057
0e392101
MR
20582017-02-28 Maciej W. Rozycki <macro@imgtec.com>
2059
2060 * testsuite/gas/mips/jalr4.s: Add `jalr $0, $25' instructions.
2061 * testsuite/gas/mips/jalr4.d: Adjust accordingly. Remove MIPSr6
2062 encoding patterns.
2063 * testsuite/gas/mips/jalr4-n64.d: Likewise.
2064 * testsuite/gas/mips/mipsr6@jalr4.d: New test.
2065 * testsuite/gas/mips/mipsr6@jalr4-n32.d: New test.
2066 * testsuite/gas/mips/mipsr6@jalr4-n64.d: New test.
2067
dd803a24
AM
20682017-02-25 Alan Modra <amodra@gmail.com>
2069
2070 * testsuite/gas/elf/strtab.s: Don't put directives on first
2071 column or continuation with labels not in first column.
2072
582e12bf
RS
20732017-02-24 Richard Sandiford <richard.sandiford@arm.com>
2074
2075 * doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
2076 * config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
2077 to be used with SVE registers.
2078 (parse_operands): Handle new SVE operands.
2079 (aarch64_features): Make "sve" require F16 rather than FP. Also
2080 require COMPNUM.
2081 * testsuite/gas/aarch64/sve.s: Add tests for new instructions.
2082 Include compnum tests.
2083 * testsuite/gas/aarch64/sve.d: Update accordingly.
2084 * testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
2085 * testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
2086 update expected output for new FMOV and MOV alternatives.
2087
f482d304
RS
20882017-02-24 Richard Sandiford <richard.sandiford@arm.com>
2089
2090 * doc/c-aarch64.texi: Add a "compnum" entry.
2091 * config/tc-aarch64.c (aarch64_features): Likewise,
2092 * testsuite/gas/aarch64/advsimd-compnum.s: New test.
2093 * testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
2094
7db2c588
JB
20952017-02-24 Jan Beulich <jbeulich@suse.com>
2096
2097 * testsuite/gas/i386/opcode.s: Add alternative TEST forms.
2098 * testsuite/gas/i386/x86-64-opcode.s: Likewise.
2099 * testsuite/gas/i386/opcode.d: Adjust accordingly.
2100 * testsuite/gas/i386/opcode-intel.d: Likewise.
2101 * testsuite/gas/i386/x86-64-opcode.d: Likewise.
2102 * testsuite/gas/i386/ilp32/x86-64-opcode.d: Likewise.
2103
1b3cee56
SL
21042017-02-24 Sheldon Lobo <sheldon.lobo@oracle.com>
2105
2106 Test cases for the architecture level aware SPARC ASI work.
2107 * gas/testsuite/gas/sparc/sparc.exp: 2 new tests
2108 * gas/testsuite/gas/sparc/asi-bump-warn.s: New test
2109 * gas/testsuite/gas/sparc/asi-bump-warn.l: Likewise
2110 * gas/testsuite/gas/sparc/asi-arch-error.s: Likewise
2111 * gas/testsuite/gas/sparc/asi-arch-error.l: Likewise
2112
c1556ecd
MR
21132017-02-23 Maciej W. Rozycki <macro@imgtec.com>
2114
2115 * testsuite/gas/mips/jalr4.d: New test.
2116 * testsuite/gas/mips/jalr4-n32.d: New test.
2117 * testsuite/gas/mips/jalr4-n64.d: New test.
2118 * testsuite/gas/mips/jalr4.s: New test source.
2119 * testsuite/gas/mips/mips.exp: Run the new tests.
2120
1e9d41d4
SL
21212017-02-23 Sheldon Lobo <sheldon.lobo@oracle.com>
2122
2123 Add support for associating SPARC ASIs with an architecture level.
2124 * config/tc-sparc.c (parse_sparc_asi): New encode SPARC ASIs.
2125
946416fc
JB
21262017-02-23 Jan Beulich <jbeulich@suse.com>
2127
2128 * testsuite/gas/all/err-sizeof.s: Don't use sums or differences
2129 of symbols as expression.
2130
21312017-02-23 Jan Beulich <jbeulich@suse.com>
4c5b8d1e
JB
2132
2133 * gas/testsuite/gas/i386/x86-64-mpx-inval-2.d: Add 32- and 16-
2134 bit GPR forms of BNDCL, BNDCU, and BNDCN. Add RSP-as-index
2135 Intel syntax forms of BNDMK, BNDSTX, and BNDLDX.
2136 * gas/testsuite/gas/i386/x86-64-mpx-inval-2.l: Adjust.
2137
5ff6a06c
MR
21382017-02-22 Maciej W. Rozycki <macro@imgtec.com>
2139
2140 * ecoff.c (ecoff_directive_end) [md_flush_pending_output]: Call
2141 `md_flush_pending_output'.
2142 * config/tc-mips.c (s_mips_end) [md_flush_pending_output]: Call
2143 `md_flush_pending_output' unconditionally.
2144 * testsuite/gas/mips/debug-label-end-1.d: New test.
2145 * testsuite/gas/mips/debug-label-end-2.d: New test.
2146 * testsuite/gas/mips/debug-label-end-3.d: New test.
2147 * testsuite/gas/mips/debug-label-end.s: New test source.
2148 * testsuite/gas/mips/mips.exp: Run the new tests.
2149
25890fc2
HPN
21502017-02-22 Hans-Peter Nilsson <hp@axis.com>
2151
2152 * testsuite/gas/all/err-sizeof.s: Include cris*-*-* in the list of
2153 targets yielding an error message matching "too complex".
2154
5ffbd927
NC
21552017-02-22 Nick Clifton <nickc@redhat.com>
2156
2157 * testsuite/gas/arm/vcmp-noprefix-imm.d: Skip for non-ELF targets.
2158
b0c53498
JB
21592017-02-21 Jan Beulich <jbeulich@suse.com>
2160
2161 * expr.c (operand): Handle missing operand to .startof.() and
2162 .sizeof.().
2163 * testsuite/gas/all/err-sizeof.s: New.
2164
ece5dcc1
AM
21652017-02-20 Alan Modra <amodra@gmail.com>
2166
2167 PR 21118
2168 * NEWS: Revise powerpc register check.
2169 * config/tc-ppc.c (ppc_optimize_expr, md_assemble): Make "invalid
2170 register expression" a warning.
2171
37f9ec62
MR
21722017-02-17 Maciej W. Rozycki <macro@imgtec.com>
2173
2174 * ecoff.c (ecoff_directive_ent, add_procedure): Handle `.aent'.
2175 * config/obj-ecoff.c (obj_pseudo_table): Add "aent" entry.
2176 * config/obj-elf.c (ecoff_debug_pseudo_table): Likewise.
2177 * testsuite/gas/mips/aent-2.d: New test.
2178 * testsuite/gas/mips/aent-mdebug.d: New test.
2179 * testsuite/gas/mips/aent-mdebug-2.d: New test.
2180 * testsuite/gas/mips/mips.exp: Run the new tests.
2181
773fb663
RS
21822017-02-15 Richard Sandiford <richard.sandiford@arm.com>
2183
2184 * testsuite/gas/aarch64/sve-sysreg.s,
2185 testsuite/gas/aarch64/sve-sysreg.d,
2186 testsuite/gas/aarch64/sve-sysreg-invalid.d,
2187 testsuite/gas/aarch64/sve-sysreg-invalid.l: New tests.
2188
7a2114e7
RS
21892017-02-15 Richard Sandiford <richard.sandiford@arm.com>
2190
2191 * doc/c-aarch64.texi: Fix sve entry.
2192
cc07cda6
CZ
21932017-02-15 Claudiu Zissulescu <claziss@synopsys.com>
2194
2195 * config/tc-arc.c (md_convert_frag): Remove @pcl relocation
2196 information from input expression.
2197 (assemble_insn): Make sure pcrel is correctly set.
2198 (arc_pcrel_adjust): Compensate for PCL rounding.
2199 * testsuite/gas/arc/relax-add01.d: New file.
2200 * testsuite/gas/arc/relax-add01.s: Likewise.
2201 * testsuite/gas/arc/relax-add02.d: Likewise.
2202 * testsuite/gas/arc/relax-add02.s: Likewise.
2203 * testsuite/gas/arc/relax-add03.d: Likewise.
2204 * testsuite/gas/arc/relax-add03.s: Likewise.
2205 * testsuite/gas/arc/relax-add04.d: Likewise.
2206 * testsuite/gas/arc/relax-add04.s: Likewise.
2207 * testsuite/gas/arc/relax-ld01.d: Likewise.
2208 * testsuite/gas/arc/relax-ld01.s: Likewise.
2209 * testsuite/gas/arc/relax-ld02.d: Likewise.
2210 * testsuite/gas/arc/relax-ld02.s: Likewise.
2211 * testsuite/gas/arc/relax-mov01.d: Likewise.
2212 * testsuite/gas/arc/relax-mov01.s: Likewise.
2213 * testsuite/gas/arc/relax-mov02.d: Likewise.
2214 * testsuite/gas/arc/relax-mov02.s: Likewise.
2215 * testsuite/gas/arc/relax-mpy01.d: Likewise.
2216 * testsuite/gas/arc/relax-mpy01.s: Likewise.
2217 * testsuite/gas/arc/relax-sub01.d: Likewise.
2218 * testsuite/gas/arc/relax-sub01.s: Likewise.
2219 * testsuite/gas/arc/relax-sub02.d: Likewise.
2220 * testsuite/gas/arc/relax-sub02.s: Likewise.
2221 * testsuite/gas/arc/relax-sub03.d: Likewise.
2222 * testsuite/gas/arc/relax-sub03.s: Likewise.
2223 * testsuite/gas/arc/relax-sub04.d: Likewise.
2224 * testsuite/gas/arc/relax-sub04.s: Likewise.
2225
66a5a740
VG
22262017-02-09 Vineet Gupta <vgupta@synopsys.com>
2227
2228 * testsuite/gas/arc/st.d: Update for 0xe having a name now
2229
7e0de605
AM
22302017-02-14 Alan Modra <amodra@gmail.com>
2231
2232 PR 21118
2233 * NEWS: Mention powerpc register checks.
2234 * config/tc-ppc.c (struct pd_reg): Make value a short. Add flags.
2235 (pre_defined_registers): Delete fpscr and pmr entries. Set
2236 register type in flags.
2237 (cr_names): Set type in flags.
2238 (reg_name_search): Return pointer to struct pd_reg rather than value.
2239 (register_name): Adjust to suit. Set X_md from flags.
2240 (ppc_parse_name): Likewise.
2241 (ppc_optimize_expr): New function.
2242 (md_assemble): Verify expresion reg flags match operand.
2243 * config/tc-ppc.h (md_optimize_expr): Define.
2244 (ppc_optimize_expr): Declare.
2245
606a935e
AM
22462017-02-14 Alan Modra <amodra@gmail.com>
2247
2248 * testsuite/gas/ppc/cell.s: Correct invalid registers.
2249 * testsuite/gas/ppc/vle-simple-1.s: Likewise.
2250 * testsuite/gas/ppc/vle-simple-2.s: Likewise.
2251
3c6452ae
TP
22522017-02-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
2253
2254 * config/tc-arm.c (parse_ifimm_zero): Make prefix optional in unified
2255 syntax.
2256 * testsuite/gas/arm/vcmp-noprefix-imm.d: New file.
2257 * testsuite/gas/arm/vcmp-noprefix-imm.s: New file.
2258
dce75bf9
NP
22592017-02-10 Nicholas Piggin <npiggin@gmail.com>
2260
2261 * testsuite/gas/ppc/power9.d <scv, rfscv>: New tests.
2262
73201331
MR
22632017-02-02 Maciej W. Rozycki <macro@imgtec.com>
2264
2265 * doc/as.texinfo (Overview): Select MIPS options for man page
2266 inclusion.
2267
8b10b0b3
MR
22682017-01-30 Maciej W. Rozycki <macro@imgtec.com>
2269
2270 * config/tc-mips.c (mips_ignore_branch_isa): New variable.
2271 (options): Add OPTION_IGNORE_BRANCH_ISA and
2272 OPTION_NO_IGNORE_BRANCH_ISA enum values.
2273 (md_longopts): Add "mignore-branch-isa" and
2274 "mno-ignore-branch-isa" options.
2275 (md_parse_option): Handle OPTION_IGNORE_BRANCH_ISA and
2276 OPTION_NO_IGNORE_BRANCH_ISA.
2277 (fix_bad_cross_mode_branch_p): Return FALSE if
2278 `mips_ignore_branch_isa' has been set.
2279 (md_show_usage): Add `-mignore-branch-isa' and
2280 `-mno-ignore-branch-isa'.
2281
2282 * doc/as.texinfo (Target MIPS options): Add
2283 `-mignore-branch-isa' and `-mno-ignore-branch-isa' options.
2284 (-mignore-branch-isa, -mno-ignore-branch-isa): New options.
2285 * doc/c-mips.texi (MIPS Options): Add `-mignore-branch-isa' and
2286 `-mno-ignore-branch-isa' options.
2287
2288 * testsuite/gas/mips/branch-local-ignore-2.d: New test.
2289 * testsuite/gas/mips/branch-local-ignore-3.d: New test.
2290 * testsuite/gas/mips/branch-local-ignore-n32-2.d: New test.
2291 * testsuite/gas/mips/branch-local-ignore-n32-3.d: New test.
2292 * testsuite/gas/mips/branch-local-ignore-n64-2.d: New test.
2293 * testsuite/gas/mips/branch-local-ignore-n64-3.d: New test.
2294 * testsuite/gas/mips/mips.exp: Run the new tests.
2295
7795a8f8
MR
22962017-01-30 Maciej W. Rozycki <macro@imgtec.com>
2297
2298 * testsuite/gas/mips/branch-local-2.d: New test.
2299 * testsuite/gas/mips/branch-local-3.d: New test.
2300 * testsuite/gas/mips/branch-local-n32-2.d: New test.
2301 * testsuite/gas/mips/branch-local-n32-3.d: New test.
2302 * testsuite/gas/mips/branch-local-n64-2.d: New test.
2303 * testsuite/gas/mips/branch-local-n64-3.d: New test.
2304 * testsuite/gas/mips/mips.exp: Fold corresponding list tests
2305 into the new tests.
2306
8ec5cf65
AD
23072017-01-27 Alexis Deruell <alexis.deruelle@gmail.com>
2308
2309 PR 21056
2310 * testsuite/gas/tic6x/insns16-parallel.s: New test case.
2311 * testsuite/gas/tic6x/insns16-parallel.d: New test driver.
2312
de514cf3
SH
23132017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
2314
2315 * configure.tgt (aarch64*-*-rtems*): Remove.
2316 (bfin-*-rtems*): Likewise.
2317 (h8300-*-rtems*): Likewise.
2318 (i386-*-rtems*): Likewise.
2319 (m32c-*-rtems*): Likewise.
2320 (m32r-*-rtems*): Likewise.
2321 (m68k-*-rtems*): Likewise.
2322 (mips-*-rtems*): Likewise.
2323 (nios2-*-rtems*): Likewise.
2324 (ppc-*-rtems*): Likewise.
2325 (sh-*-rtems*): Likewise.
2326 (sparc64-*-rtems*): Likewise.
2327 (sparc-*-rtems*): Likewise.
2328 (*-*-rtems*) Use ELF format.
2329
3e97ba8a
SH
23302017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
2331
2332 * configure.tgt (arm-*-rtems*): Move to (arm-*-eabi*).
2333
850d84f6
SH
23342017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
2335
2336 * configure.tgt (sh-*-rtemscoff*): Remove.
2337
666c6aff
SH
23382017-01-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
2339
2340 * configure.tgt (riscv*-*-*): Remove em=linux.
2341
33eaf5de
NC
23422017-01-23 Sebastian Rasmussen <sebras@gmail.com>
2343
2344 PR gas/21072
2345 * asintl.h: Fix spelling mistakes and typos.
2346 * atof-generic.c: Likewise.
2347 * bit_fix.h: Likewise.
2348 * config/atof-ieee.c: Likewise.
2349 * config/bfin-defs.h: Likewise.
2350 * config/bfin-parse.y: Likewise.
2351 * config/obj-coff-seh.h: Likewise.
2352 * config/obj-coff.c: Likewise.
2353 * config/obj-evax.c: Likewise.
2354 * config/obj-macho.c: Likewise.
2355 * config/rx-parse.y: Likewise.
2356 * config/tc-aarch64.c: Likewise.
2357 * config/tc-alpha.c: Likewise.
2358 * config/tc-arc.c: Likewise.
2359 * config/tc-arm.c: Likewise.
2360 * config/tc-avr.c: Likewise.
2361 * config/tc-bfin.c: Likewise.
2362 * config/tc-cr16.c: Likewise.
2363 * config/tc-cris.c: Likewise.
2364 * config/tc-crx.c: Likewise.
2365 * config/tc-d10v.c: Likewise.
2366 * config/tc-d30v.c: Likewise.
2367 * config/tc-dlx.c: Likewise.
2368 * config/tc-epiphany.c: Likewise.
2369 * config/tc-frv.c: Likewise.
2370 * config/tc-hppa.c: Likewise.
2371 * config/tc-i370.c: Likewise.
2372 * config/tc-i386-intel.c: Likewise.
2373 * config/tc-i386.c: Likewise.
2374 * config/tc-i960.c: Likewise.
2375 * config/tc-ia64.c: Likewise.
2376 * config/tc-m32r.c: Likewise.
2377 * config/tc-m68hc11.c: Likewise.
2378 * config/tc-m68k.c: Likewise.
2379 * config/tc-mcore.c: Likewise.
2380 * config/tc-mep.c: Likewise.
2381 * config/tc-mep.h: Likewise.
2382 * config/tc-metag.c: Likewise.
2383 * config/tc-microblaze.c: Likewise.
2384 * config/tc-mips.c: Likewise.
2385 * config/tc-mmix.c: Likewise.
2386 * config/tc-mn10200.c: Likewise.
2387 * config/tc-mn10300.c: Likewise.
2388 * config/tc-msp430.c: Likewise.
2389 * config/tc-msp430.h: Likewise.
2390 * config/tc-nds32.c: Likewise.
2391 * config/tc-nds32.h: Likewise.
2392 * config/tc-nios2.c: Likewise.
2393 * config/tc-nios2.h: Likewise.
2394 * config/tc-ns32k.c: Likewise.
2395 * config/tc-pdp11.c: Likewise.
2396 * config/tc-ppc.c: Likewise.
2397 * config/tc-pru.c: Likewise.
2398 * config/tc-rx.c: Likewise.
2399 * config/tc-s390.c: Likewise.
2400 * config/tc-score.c: Likewise.
2401 * config/tc-score7.c: Likewise.
2402 * config/tc-sh.c: Likewise.
2403 * config/tc-sh64.c: Likewise.
2404 * config/tc-sparc.c: Likewise.
2405 * config/tc-tic4x.c: Likewise.
2406 * config/tc-tic54x.c: Likewise.
2407 * config/tc-v850.c: Likewise.
2408 * config/tc-vax.c: Likewise.
2409 * config/tc-visium.c: Likewise.
2410 * config/tc-xgate.c: Likewise.
2411 * config/tc-xtensa.c: Likewise.
2412 * config/tc-z80.c: Likewise.
2413 * config/tc-z8k.c: Likewise.
2414 * config/te-vms.c: Likewise.
2415 * config/xtensa-relax.c: Likewise.
2416 * doc/as.texinfo: Likewise.
2417 * doc/c-arm.texi: Likewise.
2418 * doc/c-hppa.texi: Likewise.
2419 * doc/c-i370.texi: Likewise.
2420 * doc/c-i386.texi: Likewise.
2421 * doc/c-m32r.texi: Likewise.
2422 * doc/c-m68k.texi: Likewise.
2423 * doc/c-mmix.texi: Likewise.
2424 * doc/c-msp430.texi: Likewise.
2425 * doc/c-nds32.texi: Likewise.
2426 * doc/c-ns32k.texi: Likewise.
2427 * doc/c-riscv.texi: Likewise.
2428 * doc/c-rx.texi: Likewise.
2429 * doc/c-s390.texi: Likewise.
2430 * doc/c-tic6x.texi: Likewise.
2431 * doc/c-tilegx.texi: Likewise.
2432 * doc/c-tilepro.texi: Likewise.
2433 * doc/c-v850.texi: Likewise.
2434 * doc/c-xgate.texi: Likewise.
2435 * doc/c-xtensa.texi: Likewise.
2436 * dwarf2dbg.c: Likewise.
2437 * ecoff.c: Likewise.
2438 * itbl-ops.c: Likewise.
2439 * listing.c: Likewise.
2440 * macro.c: Likewise.
2441 * po/gas.pot: Likewise.
2442 * read.c: Likewise.
2443 * struc-symbol.h: Likewise.
2444 * symbols.h: Likewise.
2445 * testsuite/gas/arc/relocs-errors.err: Likewise.
2446 * write.c: Likewise.
2447
8069955e
NC
24482017-01-23 Nick Clifton <nickc@redhat.com>
2449
2450 * po/sv.po: Updated Swedish translation.
2451
9d46ce34
NC
24522017-01-20 Nick Clifton <nickc@redhat.com>
2453
2454 * config/tc-i386.c (parse_operands): Check for operand overflow
2455 before setting the unspecified bit.
2456
9e009953
MR
24572017-01-18 Maciej W. Rozycki <macro@imgtec.com>
2458
2459 PR gas/20649
2460 * config/tc-mips.c (pic_need_relax): Don't check for linkonce
2461 symbols, remove the `segtype' parameter.
2462 (mips_frob_file, md_estimate_size_before_relax): Adjust
2463 accordingly.
2464 (s_is_linkonce): Add an explanatory comment.
2465 * testsuite/gas/mips/comdat-reloc.d: New test.
2466 * testsuite/gas/mips/comdat-reloc.s: New test source.
2467 * testsuite/gas/mips/mips.exp: Run the new test.
2468
c13a63b0
SN
24692017-01-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
2470
2471 * testsuite/gas/arm/armv8_3-a-simd.s: Add vcmla tests.
2472 * testsuite/gas/arm/armv8_3-a-simd.d: Update.
2473
2cedb9eb
BR
24742017-01-18 Bernhard Rosenkranzer <bero@lindev.ch>
2475
2476 PR 21059
2477 * config/bfin-lex.l: Support processing with flex 2.6.3.
2478 * itbl-lex.l: Likewise.
2479
1ec4b9f2
NS
24802017-01-18 Nathan Sidwell <nathan@acm.org>
2481
2482 * as.h (gas_assert): Use abort.
2483 (as_assert): Remove.
2484 (signal_init): Declare.
2485 * as.c (main): Call signal_init.
2486 * messages.c: #include <signal.h>
2487 (as_assert): Delete.
2488 (as_abort): Allow NULL FILE.
2489 (signal_crash): New.
2490 (signal_init): Register fatal signal handlers.
2491 * configure.ac: Check for strsignal.
2492 * config.in: Rebuilt.
2493 * configure: Rebuilt.
2494
01fabda4 24952017-01-17 Nick Clifton <nickc@redhat.com>
6aa1df2d
NC
2496
2497 * po/sv.po: Updated Swedish translation.
2498
620214f7
IT
24992017-01-12 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
2500
2501 * config/tc-i386.c (cpu_arch): Add .avx512_vpopcntdq.
2502 (cpu_noarch): Add noavx512_vpopcntdq.
2503 * doc/c-i386.texi: Document avx512_vpopcntdq, noavx512_vpopcntdq.
2504 * testsuite/gas/i386/i386.exp: Run AVX512_VPOPCNTDQ tests.
2505 * testsuite/gas/i386/avx512_vpopcntdqd-intel.d: New file.
2506 * testsuite/gas/i386/avx512_vpopcntdqd.d: Ditto.
2507 * testsuite/gas/i386/avx512_vpopcntdqd.s: Ditto.
2508 * testsuite/gas/i386/x86-64-avx512_vpopcntdqd-intel.d: Ditto.
2509 * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.d: Ditto.
2510 * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.s: Ditto.
2511
1181551e
NC
25122017-01-12 Nick Clifton <nickc@redhat.com>
2513
2514 * read.c (temp_ilp): New function. Installs a temporary input
2515 line pointer.
2516 (restore_ilp): New function. Restores the original input line
2517 pointer.
2518 * read.h (temp_ilp): Prototype.
2519 (restore_ilp): Prototype.
2520 * stabs.c (dot_func_p): Use bfd_boolean type.
2521 (generate_asm_file): Use temp_ilp and restore_ilp.
2522 (stabs_generate_asm_lineno): Likewise.
2523 (stabs_generate_asm_endfunc): Likewise.
2524
f2e2d2f5
JS
25252017-01-11 Jeremy Soller <jackpot51@gmail.com>
2526
2527 * configure.tgt: Add entry for i386-redox.
2528
07e8e623
NC
25292017-01-10 Nick Clifton <nickc@redhat.com>
2530
2531 * po/sv.po: Updated Swedish translation.
2532
1a94eb29
TG
25332017-01-10 Tristan Gingold <gingold@adacore.com>
2534
2535 * testsuite/gas/all/sleb128-8.d: Adjust test.
2536 * testsuite/gas/all/gas.exp (test_cond): Likewise.
2537
74def31d
TG
25382017-01-10 Tristan Gingold <gingold@adacore.com>
2539
2540 * read.c (emit_leb128_expr): Extended unsigned big number for
2541 sleb128.
2542 * testsuite/gas/all/gas.exp (test_cond): Add sleb128-8 test.
2543 * testsuite/gas/all/sleb128.d: New test.
2544 * testsuite/gas/all/sleb128.s: New test source.
2545
a5ec5e3f
AW
25462017-01-09 Andrew Waterman <andrew@sifive.com>
2547
2548 * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
2549 against constants.
2550 (md_apply_fix): Mark relocations against constants as "done."
2551
e294484e
AW
25522017-01-09 Andrew Waterman <andrew@sifive.com>
2553
2554 * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
2555 against constants.
2556 (md_apply_fix): Mark relocations against constants as "done."
2557
6ec11ab9
PD
25582017-01-09 Palmer Dabbelt <palmer@dabbelt.com>
2559 Kito Cheng <kito.cheng@gmail.com>
2560
2561 * emulparams/elf32lriscv-defs.sh (INITIAL_READONLY_SECTIONS):
2562 Removed.
2563 (SDATA_START_SYMBOLS): Likewise.
2564
20b52c88
NC
25652017-01-09 Nick Clifton <nickc@redhat.com>
2566
2567 * po/sv.po: New Swedish translation.
2568 * configure.ac (ALL_LINGUAS): Add sv.
2569 * configure: Regenerate.
2570
01156111
AW
25712017-01-09 Andrew Waterman <andrew@sifive.com>
2572
2573 * config/tc-riscv.c (relaxed_branch_length): Use the long
2574 sequence when the target is a weak symbol.
2575
d74d4880
SN
25762017-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
2577
2578 * config/tc-aarch64.c (aarch64_features): Add rcpc.
2579 * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
2580 * testsuite/gas/aarch64/ldst-exclusive-armv8_3.d: Rename to ...
2581 * testsuite/gas/aarch64/ldst-rcpc.d: This.
2582 * testsuite/gas/aarch64/ldst-exclusive-armv8_3.s: Rename to ...
2583 * testsuite/gas/aarch64/ldst-rcpc.s: This.
2584 * testsuite/gas/aarch64/ldst-rcpc-armv8_2.d: New test.
2585
10ab38d9
NJ
25862017-01-04 Norm Jacobs <norm.jacobs@oracle.com>
2587
2588 PR gas/20992
2589 * configure.tgt: Treat sparcv9 as sparc64.
2590
cc917fd9
KC
25912017-01-03 Kito Cheng <kito.cheng@gmail.com>
2592
2593 * config/tc-riscv.c (riscv_set_arch): Whitelist the "q" ISA
2594 extension.
2595 (riscv_after_parse_args): Set FLOAT_ABI_QUAD when the Q ISA is
2596 enabled and no other ABI is specified.
2597
ddb2c6fd
DD
25982017-01-03 Dimitar Dimitrov <dimitar@dinux.eu>
2599
2600 * config/tc-pru.c (md_number_to_chars): Fix parameter to be
2601 valueT, as declared in tc.h.
2602 (md_apply_fix): Fix to work on 32-bit hosts.
2603
2571583a
AM
26042017-01-02 Alan Modra <amodra@gmail.com>
2605
2606 Update year range in copyright notice of all files.
2607
5c1ad6b5 2608For older changes see ChangeLog-2016
3499769a 2609\f
5c1ad6b5 2610Copyright (C) 2017 Free Software Foundation, Inc.
3499769a
AM
2611
2612Copying and distribution of this file, with or without modification,
2613are permitted in any medium without royalty provided the copyright
2614notice and this notice are preserved.
2615
2616Local Variables:
2617mode: change-log
2618left-margin: 8
2619fill-column: 74
2620version-control: never
2621End:
This page took 0.316869 seconds and 4 git commands to generate.