OSDN Git Service

c62639e9ead12ee1d83e074a4fa34fc7f2e0ee9e
[pf3gnuchains/pf3gnuchains4x.git] / gas / ChangeLog
1 2007-09-17  H.J. Lu  <hongjiu.lu@intel.com>
2
3         PR gas/5035
4         * config/obj-coff.c (obj_coff_endef): Remove checking size of
5         def_symbol_in_progress.
6
7 2007-09-17  Evandro Menezes  <evandro@yahoo.com>
8
9         PR gas/5026
10         * read.c (emit_expr): Use unsigned long long values in warning
11         message about truncated expressions.
12
13 2007-09-17  H.J. Lu  <hongjiu.lu@intel.com>
14
15         * config/tc-i386.c (intel_e04): Revert the last change.
16
17 2007-09-17  Nick Clifton  <nickc@redhat.com>
18
19         * po/es.po: Updated Spanish translation.
20
21 2007-09-15  H.J. Lu  <hongjiu.lu@intel.com>
22
23         PR gas/5034
24         * config/tc-i386.c (intel_e04): Return 1 if cur_token.code is
25         T_NIL.
26
27 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
28
29         * config/tc-i386.c (build_modrm_byte): Adjust comment line
30         wrap.
31
32 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
33
34         * config/tc-i386.c (build_modrm_byte): Use (A || B) instead
35         of (A || B) != 0.
36
37 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
38
39         * config/tc-i386.c (build_modrm_byte): Adjust indentation.
40
41 2007-09-14  Michael Meissner  <michael.meissner@amd.com>
42             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
43             Tony Linthicum  <tony.linthicum@amd.com>
44
45         * NEWS: Add SSE5 support to NEWS file.
46         
47         * config/tc-i386.h (drex_byte): Add fields to allow process_drex
48         and build_modrm_byte to communicate.
49         (DREX_OC0): New SSE5 macro.
50         (DREX_OC0_MASK): Ditto.
51         (DREX_OC1): Ditto.
52         (DREX_OC1_MASK): Ditto.
53         (DREX_XMEM_X1_X2_X2): Ditto.
54         (DREX_X1_XMEM_X2_X2): Ditto.
55         (DREX_X1_XMEM_X2_X1: Ditto.
56         (DREX_X1_X2_XMEM_X1: Ditto.
57         (DREX_XMEM_X1_X2): Ditto.
58         (DREX_X1_XMEM_X2): Ditto.
59         (drex_byte): New structure to describe the DREX byte.
60
61         * config/tc-i386.c (process_drex): New function to handle SSE5
62         DREX bits.
63         (build_modrm_byte): Use the information cached away in
64         process_drex in the case of DREX instructions.
65         (i386_insn): Add drex field.
66         (pi): Add debugging of drex field.
67         (md_assemble): Treat SSE5 like SSE3 in instructions with an
68         immediate byte.  Move REX field to DREX if this is a DREX
69         instruction.
70         (process_operands): Add SSE5 support.
71         (build_modrm_byte): Ditto.
72         (output_insn): Ditto.
73         (cpu_arch): Ditto.
74         (i386_align_code): Ditto.
75
76 2007-09-12  Jan Beulich  <jbeulich@novell.com>
77
78         * config/tc-i386.c (md_assemble): Move handling of extrq/insertq
79         after generic operand swapping, and swap only the immediate operands.
80
81 2007-09-11  Nathan Sidwell  <nathan@codesourcery.com>
82
83         * config/tc-m68k.c (m68k_ip): Add mcfisa_c case.
84         (m68k_elf_final_processing): Add EF_M68K_CF_ISA_C_NODIV.
85
86 2007-09-09  H.J. Lu  <hongjiu.lu@intel.com>
87
88         * tc-i386.c (output_insn): Only check SSE4.2 and ABM for 3
89         byte opcode.
90
91 2007-09-08  H.J. Lu  <hongjiu.lu@intel.com>
92
93         * config/tc-i386.c (cpu_flags_check_x64): Renamed to ...
94         (cpu_flags_check_cpu64): This. Inline.
95         (uints_all_zero): New.
96         (uints_set): Likewise
97         (uints_equal): Likewise
98         (UINTS_ALL_ZERO): Likewise
99         (UINTS_SET): Likewise
100         (UINTS_CLEAR): Likewise
101         (UINTS_EQUAL): Likewise
102         (cpu_flags_and): Likewise.
103         (cpu_flags_or): Likewise.
104         (operand_type_and): Likewise.
105         (operand_type_or): Likewise.
106         (operand_type_xor): Likewise.
107         (cpu_flags_not): Inline and use switch instead of loop.
108         (cpu_flags_match): Updated.
109         (operand_type_match): Likewise.
110         (smallest_imm_type): Likewise.
111         (set_cpu_arch): Likewise.
112         (pt): Likewise.
113         (md_assemble): Likewise.
114         (parse_insn): Likewise.
115         (optimize_imm): Likewise.
116         (match_template): Likewise.
117         (process_suffix): Likewise.
118         (update_imm): Likewise.
119         (finalize_imm): Likewise.
120         (process_operands): Likewise.
121         (build_modrm_byte): Likewise.
122         (i386_immediate): Likewise.
123         (i386_displacement): Likewise.
124         (i386_index_check): Likewise.
125         (i386_operand): Likewise.
126         (i386_target_format): Likewise.
127         (intel_e11): Likewise.
128         (operand_type): Remove implicitregister.
129         (operand_type_check): Updated. Inline.
130         (cpu_flags_all_zero): Removed.
131         (operand_type_all_zero): Likewise.
132         (i386_array_biop): Likewise.
133         (cpu_flags_biop): Likewise.
134         (operand_type_biop): Likewise.
135
136 2007-09-08  H.J. Lu  <hongjiu.lu@intel.com>
137
138         * Makefile.am: Run "make dep-am".
139         * Makefile.in: Regenerate.
140
141 2007-09-08  H.J. Lu  <hongjiu.lu@intel.com>
142
143         * configure.in (AC_CHECK_HEADERS): Add limits.h.
144         * configure: Regenerated.
145         * config.in: Likewise.
146
147         * config/tc-i386.c: Include "opcodes/i386-init.h".
148         (_i386_insn): Use i386_operand_type for types.
149         (cpu_arch_flags): Updated to new types with bitfield.
150         (cpu_arch_tune_flags): Likewise.
151         (cpu_arch_isa_flags): Likewise.
152         (cpu_arch): Likewise.
153         (i386_align_code): Likewise.
154         (set_code_flag): Likewise.
155         (set_16bit_gcc_code_flag): Likewise.
156         (set_cpu_arch): Likewise.
157         (md_assemble): Likewise.
158         (parse_insn): Likewise.
159         (process_operands): Likewise.
160         (output_branch): Likewise.
161         (output_jump): Likewise.
162         (parse_real_register): Likewise.
163         (mode_from_disp_size): Likewise.
164         (smallest_imm_type): Likewise.
165         (pi): Likewise.
166         (type_names): Likewise.
167         (pt): Likewise.
168         (pte): Likewise.
169         (swap_2_operands): Likewise.
170         (optimize_imm): Likewise.
171         (optimize_disp): Likewise.
172         (match_template): Likewise.
173         (check_string): Likewise.
174         (process_suffix): Likewise.
175         (check_byte_reg): Likewise.
176         (check_long_reg): Likewise.
177         (check_qword_reg): Likewise.
178         (check_word_reg): Likewise.
179         (finalize_imm): Likewise.
180         (build_modrm_byte): Likewise.
181         (output_insn): Likewise.
182         (disp_size): Likewise.
183         (imm_size): Likewise.
184         (output_disp): Likewise.
185         (output_imm): Likewise.
186         (gotrel): Likewise.
187         (i386_immediate): Likewise.
188         (i386_displacement): Likewise.
189         (i386_index_check): Likewise.
190         (i386_operand): Likewise.
191         (parse_real_register): Likewise.
192         (i386_intel_operand): Likewise.
193         (intel_e09): Likewise.
194         (intel_bracket_expr): Likewise.
195         (intel_e11): Likewise.
196         (cpu_arch_flags_not): New.
197         (cpu_flags_check_x64): Likewise.
198         (cpu_flags_all_zero): Likewise.
199         (cpu_flags_not): Likewise.
200         (i386_cpu_flags_biop): Likewise.
201         (cpu_flags_biop): Likewise.
202         (cpu_flags_match); Likewise.
203         (acc32): New.
204         (acc64): Likewise.
205         (control): Likewise.
206         (reg16_inoutportreg): Likewise.
207         (disp16): Likewise.
208         (disp32): Likewise.
209         (disp32s): Likewise.
210         (disp16_32): Likewise.
211         (anydisp): Likewise.
212         (baseindex): Likewise.
213         (regxmm): Likewise.
214         (imm8): Likewise.
215         (imm8s): Likewise.
216         (imm16): Likewise.
217         (imm32): Likewise.
218         (imm32s): Likewise.
219         (imm64): Likewise.
220         (imm16_32): Likewise.
221         (imm16_32s): Likewise.
222         (imm16_32_32s): Likewise.
223         (operand_type): Likewise.
224         (operand_type_check): Likewise.
225         (operand_type_match): Likewise.
226         (operand_type_register_match): Likewise.
227         (update_imm): Likewise.
228         (set_code_flag): Also update cpu_arch_flags_not.
229         (set_16bit_gcc_code_flag): Likewise.
230         (md_begin): Likewise.
231         (parse_insn): Use cpu_flags_check_x64 to check 64bit support.
232         Use cpu_flags_match to match instructions.
233         (i386_target_format): Update cpu_arch_isa_flags and
234         cpu_arch_tune_flags to i386_cpu_flags type with bitfield.
235         (smallest_imm_type): Check cpu_arch_tune to tune for i486.
236         (match_template): Don't initialize overlap0, overlap1,
237         overlap2, overlap3 and operand_types.
238         (process_suffix): Handle crc32 with 64bit register.
239         (MATCH): Removed.
240         (CONSISTENT_REGISTER_MATCH): Likewise.
241
242         * config/tc-i386.h (arch_entry): Updated to i386_cpu_flags
243         type.
244
245 2007-09-06  H.J. Lu  <hongjiu.lu@intel.com>
246
247         * config/tc-i386.c (match_template): Handle invlpga, vmload,
248         vmrun and vmsave in SVME.
249         (process_suffix): Likewise.
250
251 2007-09-05  H.J. Lu  <hongjiu.lu@intel.com>
252
253         * config/tc-i386.c (i386_index_check): Don't use RegRex
254         on the reg_type field.
255         (parse_real_register): Use `||' instead of `|'.
256
257 2007-09-04  H.J. Lu  <hongjiu.lu@intel.com>
258
259         * config/tc-i386.c (process_operands): Remove segment override
260         check on SVME instructions.
261         (i386_index_check): Remove memory operand check on SVME
262         instructions.
263
264 2007-09-04  Alan Modra  <amodra@bigpond.net.au>
265
266         * config/tc-spu.c (struct spu_insn): Delete "flag".  Add "reloc".
267         (md_assemble): Update init of insn.  Use insn.reloc instead of
268         calculating from flag.
269         (get_imm): Set reloc rather than flag.
270         (calcop): Formatting.
271
272 2007-08-29  Daniel Jacobowitz  <dan@codesourcery.com>
273
274         * dwarf2dbg.c (dwarf2_directive_loc): Emit duplicate .loc directives.
275
276 2007-08-28  Daniel Jacobowitz  <dan@codesourcery.com>
277
278         * doc/c-arc.texi: Fix typo.
279
280 2007-08-28  H.J. Lu  <hongjiu.lu@intel.com>
281
282         * config/tc-i386.c (process_suffix): Handle cmpxchg8b in
283         Intel mode.
284
285 2007-08-28  Nathan Sidwell  <nathan@codesourcery.com>
286
287         * config/tc-m68k.c (mcf52235_ctrl): Add cache registers.
288         (mcf5253_ctrl): Add RAMBAR, MBAR, MBAR2.
289         (mcf5407_ctrl): New.
290         (m68k_cpus): Adjust 5407 entry.
291
292 2007-08-28  Maxim Kuvyrkov  <maxim@codesourcery.com>
293
294         * config/tc-m68k.c (mcf51qe_ctrl): Define 51QE control registers.
295         (m68k_cpus): Define 51QE cpu.
296
297 2007-08-28  Mark Shinwell  <shinwell@codesourcery.com>
298             Joseph Myers  <joseph@codesourcery.com>
299
300         * as.c (main): Flush stderr before printing listings to ensure
301         consistent output order across platforms.
302
303 2007-08-28  Robert Sebastian Gerus  <arachnist@gmail.com>
304
305         * configure.tgt: Add support for i[3-7]86-*-dragonfly*.
306
307 2007-08-24  Joseph Myers  <joseph@codesourcery.com>
308             Paul Brook  <paul@codesourcery.com>
309
310         * remap.c: New.
311         * as.h (remap_debug_filename, add_debug_prefix_map): Declare.
312         * as.c (show_usage): Document --debug-prefix-map option.
313         (parse_args): Handle --debug-prefix-map.
314         * dwarf2dbg.c (out_file_list, out_debug_info): Remap debug paths.
315         * stabs.c (stabs_generate_asm_file): Remap debug paths.
316         * Makefile.am (GAS_CFILES): Add remap.c
317         (GENERIC_OBJS): Add remap.o.
318         Regenerate dependencies.
319         * Makefile.in: Regenerate.
320         * doc/as.texinfo (--debug-prefix-map): Document.
321
322 2007-08-24  Aurelien Jarno  <aurel32@debian.org>
323
324         * config/tc-arm.c (md_apply_fix): Cast bfd_vma values to long
325         before printing them.
326
327 2007-08-24  Anders Waldenborg  <anders@0x63.nu>
328             Alan Modra  <amodra@bigpond.net.au>
329
330         * config/tc-i386.c (lex_got): Don't scan past a comma.
331
332 2007-08-23  Ben Elliston  <bje@au.ibm.com>
333
334         * config/tc-ppc.c (parse_cpu): Handle "750cl".
335         (pre_defined_registers): Add "gqr0" to "gqr7", "gqr.0" to "gqr.7".
336         (md_show_usage): Document -m750cl.
337         (md_assemble): Handle two delimiters in succession (eg. `),').
338         * doc/c-ppc.texi (PowerPC-Opts): Document -m750cl.
339         * testsuite/gas/ppc/ppc.exp: Run ppc70ps dump tests.
340         * testsuite/gas/ppc/ppc750ps.s: New file.
341         * testsuite/gas/ppc/ppc750ps.d: Likewise.
342
343 2007-08-23  Ben Elliston  <bje@au.ibm.com>
344
345         * doc/c-arm.texi (ARM Directives): Move brackets out of @vars.
346
347 2007-08-17  Alan Modra  <amodra@bigpond.net.au>
348
349         PR gas/4079
350         * config/tc-i386.c (x86_cons): Complain about invalid @got etc.
351         expressions.
352         (i386_immediate): Detect and complain about more cases of
353         invalid immediate expressions.  Return failure rather than
354         converting them to zero.
355         (i386_displacement): Likewise.
356
357 2007-08-17  Alan Modra  <amodra@bigpond.net.au>
358
359         * po/Make-in: Add --msgid-bugs-address to xgettext invocation.
360
361 2007-08-14  Andreas Schwab  <schwab@suse.de>
362
363         * config/tc-ia64.c (tc_gen_reloc): Return NULL if relocation is
364         unrepresentable.
365
366 2007-08-12  Matthias Klose  <doko@ubuntu.com>
367
368         * doc/Makefile.am (AM_MAKEINFOFLAGS, TEXI2DVI): Include
369         $(top_srcdir)/../../bfd/doc.
370         * doc/Makefile.in: Regenerate.
371
372 2007-08-10  Nick Clifton  <nickc@redhat.com>
373
374         * NEWS: Add a marker for the 2.18 features.
375
376 2007-08-09  Paul Brook  <paul@codesourcery.com>
377
378         * config/tc-arm.c (relaxed_symbol_addr): Compensate for alignment.
379
380 2007-08-09  H.J. Lu  <hongjiu.lu@intel.com>
381
382         * config/tc-i386.c (check_byte_reg): Support pextrb and pinsrb.
383
384 2007-07-29  H.J. Lu  <hongjiu.lu@intel.com>
385
386         * config/tc-i386.c (check_long_reg): Allow cvtss2si to convert
387         DWORD memory to Reg64 in Intel synax.
388         (check_qword_reg): Allow cvtsd2si to convert QWORD memory to
389         Reg32 in Intel syntax.
390
391 2007-07-25  Sterling Augustine  <sterling@tensilica.com>
392
393         * config/tc-xtensa.c (xtensa_extui_opcode): New.
394         (xg_expand_assembly_insn): Check for invalid extui operands.
395         (md_begin): Initialize xtensa_extui_opcode.
396
397 2007-07-24  Nick Clifton  <nickc@redhat.com>
398
399         * config/tc-mep.h (skip_whitespace): Remove definition.
400
401 2007-07-23  H.J. Lu  <hongjiu.lu@intel.com>
402
403         * config/tc-i386.c (cpu_arch): Change i386 to PROCESSOR_I386.
404         (f32_15): Removed.
405         (jump_31): New.
406         (f32_patt): Remove f32_15.
407         (f16_patt): Likewise.
408         (i386_align_code): Updated to alt_long_patt for 64bit by
409         default.
410
411         * config/tc-i386.h (processor_type): Add PROCESSOR_I386.
412
413 2007-07-23  Evandro Menezes  <evandro.menezes@amd.com>
414
415         * config/tc-i386.c (i386_align_code): Enable alignment up to
416         MAX_MEM_FOR_RS_ALIGN_CODE bytes.  Remove special treatment
417         for K8.
418
419         * config/tc-i386.h (MAX_MEM_FOR_RS_ALIGN_CODE): Changed to 31.
420
421 2007-07-20  Nick Clifton  <nickc@redhat.com>
422
423         * app.c (do_scrub_chars): Provide a one character buffer to hold a
424         pushed back newline at the end of an unterminated quoted string.
425
426 2007-07-14  Nick Clifton  <nickc@redhat.com>
427
428         * config/tc-arm.c (create_register_alias): Return a boolean rather
429         than an integer.
430         Check the return value of insert_reg_alias and do not continue to
431         create aliases once an insertion has failed.
432         (s_unreq): Delete the all-upper-case and all-lower-case
433         alternatives as well.
434
435 2007-07-12  Kai Tietz   <kai.tietz@onevision.com>
436
437         * symbols.c: Print bfd_hostptr_t to file via fprintf_vma.
438         * write.c: Likewise.
439
440 2007-07-11  Daniel Jacobowitz  <dan@codesourcery.com>
441
442         * config/tc-mips.c (mips_dwarf2_format, mips_dwarf2_addr_size): Use
443         HAVE_64BIT_SYMBOLS.
444
445 2007-07-04  Richard Sandiford  <richard@codesourcery.com>
446
447         * config/tc-mips.c (mips_cpu_info_table): Add new entries for
448         {24k,24ke,34k,74k}f{2_1,1_1,x}.  Also add an entry for 74kf3_2.
449         Deprecate *x and *fx.
450         * doc/c-mips.texi: Document the new CPU arguments.  Deprecate
451         *x and *fx.
452
453 2007-07-04  H.J. Lu  <hongjiu.lu@intel.com>
454
455         * config/obj-coff.h (x86_64_target_format): Renamed to ...
456         (i386_target_format): This
457         (TARGET_FORMAT): Use i386_target_format.
458
459         * config/tc-i386.c (x86_64_target_format): Removed.
460         (i386_target_format): Handle PE formats.
461
462 2007-07-04  Nick Clifton  <nickc@redhat.com>
463
464         * symbols.c (symbol_relc_make_value): Use bfd_sprintf_vma in order
465         to get the right length of printed value.
466
467 2007-07-03  Nick Clifton  <nickc@redhat.com>
468
469         * COPYING: Replace with GPLv3 text.
470         * app.c: Update copyright notice to refer to GPLv3.
471         * as.c, as.h, asintl.h, atof_generic.c, bignum.h, bit_fix.h,
472         cgen.c, cond.c, debug.c, depend.c, dw2gencfi.c, dw2gencfi.h,
473         dwarf2dbg.c, dwarf2dbg.h, ecoff.c, ecoff.h, ehopt.c, emul.h,
474         emul_target.h, expr.c, expr.h, flonum-copy.c, flonum.h,
475         flonum-konst.c, frags.c, frags.h, hash.c, hash.h, input-file.c,
476         input-file.h, input-scrub.c, ibtl-lex.h, itbl-lex.l, itbl-ops.c,
477         itbl-ops.h, itbl-parse.y, listing.c, listing.h, literal.c,
478         macro.c, messages.c, obj.h, output-file.c, output-file.h, read.c,
479         read.h, sb.c, sb,h, stabs.c, struc-symbol.h, subsegs.c, subsegs.h,
480         symbols.c, symbols.h, tc.h, write.c, write.h, config/aout_gnu.h,
481         config/config/atof-ieee.c, config/atof-vax.c, config/bfin-aux.h, 
482         config/bfin-defs.h, config/bfin-lex.l, config/bfin-parse.y,
483         config/itbl-mips.h, config/m68k-parse.h, config/m68k-parse.y,
484         config/obj-aout.c, config/obj-aout.h, config/obj-coff.c,
485         config/obj-coff.h, config/obj-ecoff.c, config/obj-ecoff.h,
486         config/obj-elf.c, config/obj-elf.h, config/obj-evax.c,
487         config/obj-evax.h, config/obj-multi.h, config/obj-som.c,
488         config/obj-som.h, config/tc-alpha.c, config/tc-alpha.h,
489         config/tc-arc.c, config/tc-arc.h, config/tc-arm.c,
490         config/tc-arm.h, config/tc-avr.c, config/tc-avr.h,
491         config/tc-bfin.c, config/tc-bfin.h, config/tc-cr16.c,
492         config/tc-cr16.h, config/tc-cris.c, config/tc-cris.h,
493         config/tc-crx.c, config/tc-crx.h, config/tc-d10v.c,
494         config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h,
495         config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.c,
496         config/tc-fr30.h, config/tc-frv.c, config/tc-frv.h,
497         config/tc-generic.c, config/tc-generic.h, config/tc-h8300.c,
498         config/tc-h8300.h, config/tc-hppa.c, config/tc-hppa.h,
499         config/tc-i370.c, config/tc-i370.h, config/tc-i386.c,
500         config/tc-i386.h, config/tc-i860.c, config/tc-i860.h,
501         config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c,
502         config/tc-ia64.h, config/tc-ip2k.c, config/tc-ip2k.h,
503         config/tc-iq2000.c, config/tc-iq2000.h, config/tc-m32c.c,
504         config/tc-m32c.h, config/tc-m32r.c, config/tc-m32r.h,
505         config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c,
506         config/tc-m68k.h, config/tc-maxq.c, config/tc-maxq.h,
507         config/tc-mcore.c, config/tc-mcore.h, config/tc-mep.c,
508         config/tc-mep.h, config/tc-mips.c, config/tc-mips.h,
509         config/tc-mmix.c, config/tc-mmix.h, config/tc-mn10200.c,
510         config/tc-mn10200.h, config/tc-mn10300.c, config/tc-mn10300.h,
511         config/tc-msp430.c, config/tc-msp430.h, config/tc-mt.c,
512         config/tc-mt.h, config/tc-ns32k.c, config/tc-ms32k.h,
513         config/tc-openrisc.c, config/tc-openrisc.h, config/tc-or32.c,
514         config/tc-or32.h, config/tc-pdp11.c, config/tc-pdp11.h,
515         config/tc-pj.c, config/tc-pj.h, config/tc-ppc.c, config/tc-ppc.h,
516         config/tc-s390.c, config/tc-s390.h, config/tc-score.c,
517         config/tc-score.h, config/tc-sh64.c, config/tc-sh64.h,
518         config/tc-sh.c, config/tc-sh.h, config/tc-sparc.c,
519         config/tc-sparc.h, config/tc-spu.c, config/tc-spu.h,
520         config/tc-tic30.c, config/tc-tic30.h, config/tc-tic4x.c,
521         config/tc-tic4x.h, config/tc-tic54x.c, config/tc-tic54x.h,
522         config/tc-v850.c, config/tc-v850.h, config/tc-vax.c,
523         config/tc-vax.h, config/tc-xc16x.c, config/tc-x16x.h,
524         config/tc-xstormy16.c, config/tc-xstormy16.h, config/tc-xtensa.c,
525         config/tc-xtensa.h, config/tc-z80.c, config/tc-z80.h,
526         config/tc-z8k.c, config/tc-z8k.h, config/te-386bsd.h,
527         config/te-freebsd.h, config/te-hppa.h, config/te-irix.h,
528         config/te-netware.h, config/te-sparcaout.h,  config/te-tmips.h,
529         config/te-vxworks.h, config/vax-inst.h, config/xtensa-istack.h,
530         config/xtensa-relax.c, config/xtensa-relax.h: Likewise.
531         
532         * flonum-mult.c: Likewise, and also correct typo referring to
533         non-existant GNU Assembler General Public License.
534         * config/tc-m68851.h: Likewise.
535         * NEWS: Mention the new license.  Also note where the 2.17 release
536         happened.
537         * config/e-crisaout.c: Add copyright header.
538         * config/e-criself.c, config/e-i386aout.c, config/e-i386coff.c,
539         config/e-i386elf.c, config/e-mipscoff.c, config/e-mipself.c,
540         config/obj-multi.c, config/te-aix5.h, config/te-armeabi.h,
541         config/te-armlinuxeabi.h, config/te-dynix.h, config/te-epoc-pe.h,
542         config/te-generic.h, config/te-gnu.h, config/te-go32.h,
543         config/te-hppa64.h, config/te-hppalinux64.h, config/te-hpux.h,
544         config/te-i386aix.h, config/te-ia64aix.h, config/te-interix.h,
545         config/te-linux.h, config/te-lnews.h, config/te-lynx.h,
546         config/te-mach.h, config/te-macos.h, config/te-nbsd532.h,
547         config/te-nbsd.h, config/te-pc532mach.h, config/te-pe.h,
548         config/te-pep.h, config/te-psos.h, config/te-riscix.h,
549         config/te-sun3.h, config/te-svr4.h, config/te-symbian.h,
550         config/te-wince-pe.h: Likewise.
551
552 2007-07-03  Nathan Sidwell  <nathan@codesourcery.com>
553
554         * config/tc-m68k.c (m68k_ip): Add j & K operand types.
555         (install_operand): Add E encoding.
556         (md_begin): Check and skip initial '.' arg character.
557         (get_num): Add 0..511 case.
558
559 2007-07-03  Alan Modra  <amodra@bigpond.net.au>
560
561         PR 4713
562         * config/obj-elf.c (elf_ecoff_set_ext): Make static when OBJ_MAYBE_ELF.
563         * config/obj-elf.h (obj_ecoff_set_ext): Comment.
564
565 2007-07-03  Mikkel Lauritsen  <renard@nospam.dk>
566
567         PR 4722
568         * app.c (do_scrub_chars <state 5>): Check for output buffer full
569         after memcpy.
570
571 2007-07-02  Joseph Myers  <joseph@codesourcery.com>
572
573         * config/tc-mips.c (s_dtprelword, s_dtpreldword,
574         s_dtprel_internal): New.
575         (mips_pseudo_table): Add .dtprelword and .dtpreldword.
576         (md_apply_fix): Handle BFD_RELOC_MIPS_TLS_DTPREL32 and
577         BFD_RELOC_MIPS_TLS_DTPREL64.
578
579 2007-07-02  Alan Modra  <amodra@bigpond.net.au>
580
581         * Makefile.am: Run "make dep-am".
582         * Makefile.in: Regenerate.
583         * aclocal.m4: Regenerate.
584         * config.in: Regenerate.
585         * doc/Makefile.in: Regenerate.
586         * po/POTFILES.in: Regenerate.
587         * po/gas.pot: Regenerate.
588
589 2007-07-02  Alan Modra  <amodra@bigpond.net.au>
590
591         * config/tc-ppc.c (ppc_pe_section): Comment out code assigning
592         coff section flag values to bfd section flag.
593
594 2007-06-30  H.J. Lu  <hongjiu.lu@intel.com>
595
596         * aclocal.m4: Regenerated.
597         * doc/Makefile.in: Likewise.
598         * Makefile.in: Likewise.
599
600 2007-06-29  Joseph Myers  <joseph@codesourcery.com>
601
602         * as.c (main): Only call create_obj_attrs_section if IS_ELF.
603
604 2007-06-29  Joseph Myers  <joseph@codesourcery.com>
605
606         * as.c (create_obj_attrs_section): New.
607         (main): Call create_obj_attrs_section for ELF.
608         * read.c (s_gnu_attribute, skip_whitespace, skip_past_char,
609         skip_past_comma, s_vendor_attribute): New.
610         (potable): Add gnu_attribute for ELF.
611         * read.h (s_vendor_attribute): Declare.
612         * config/tc-arm.c (s_arm_eabi_attribute): Replace by wrapper
613         round s_vendor_attribute.
614         (aeabi_set_public_attributes): Update for new attributes
615         interfaces.
616         (arm_md_end): Remove attributes contents setting now done
617         generically.
618
619 2007-06-29  M R Swami Reddy  <MR.Swami.Redd@nsc.com>
620
621         * Makefile.am: Add CR16 related entry.
622         * Makefile.in: Regenerate.
623         * config/tc-cr16.h: New file
624         * config/tc-cr16.c: New file
625         * doc/c-cr16.texi: New file for cr16 
626         * doc/all.texi: Entry for cr16 
627         * doc/Makefile.am: Added c-cr16.texi
628         * doc/Makefile.in: Regenerate 
629         * doc/as.texinfo: Entry for CR16 target
630         * NEWS: Announce the support for the new target.
631
632 2007-06-26  Paul Brook  <paul@codesourcery.com>
633
634         * config/tc-arm.c (parse_operands): Accept generic coprocessor regs
635         for OP_RVC.
636         (reg_names): Add fpinst, pfinst2, mvfr0 and mvfr1.
637
638 2007-06-25  H.J. Lu  <hongjiu.lu@intel.com>
639
640         * config/tc-i386.c (process_operands): Replace regKludge
641         with RegKludge.
642
643 2007-06-25  Richard Sandiford  <richard@codesourcery.com>
644
645         * config/tc-mips.h (TC_SYMFIELD_TYPE): New.
646         * config/tc-mips.c (append_insn): Record which symbols have
647         R_MIPS16_26 relocations against them.
648         (mips_fix_adjustable): Don't reduce relocations against such symbols.
649
650 2007-06-22  Sterling Augustine  <sterling@tensilica.com>
651
652         * config/tc-xtensa.c (xg_assembly_relax): Comment termination rules.
653         (frag_format_size): Handle RELAX_IMMED_STEP3.
654         (xtensa_relax_frag, md_convert_frag): Likewise.
655         * config/tc-xtensa.h (xtensa_relax_statesE): Add RELAX_IMMED_STEP3.
656         (RELAX_IMMED_MAXSTEPS): Adjust.
657         * config/xtensa-relax.c (widen_spec_list): Add transitions from
658         wide branches to branch-over-jumps.
659         (build_transition): Handle wide branches in transition patterns.
660         
661 2007-06-22  H.J. Lu  <hongjiu.lu@intel.com>
662
663         * config/tc-i386.c (disp_size): New.
664         (imm_size): Likewise.
665         (output_disp): Use disp_size and imm_size.
666         (output_imm): Use imm_size.
667
668 2007-06-19  Sterling Augustine  <sterling@tensilica.com>
669
670         * config/tc-xtensa.h (struct xtensa_frag_type): Update comment about
671         use of literal_frag field.
672         * config/tc-xtensa.c (xtensa_mark_literal_pool_location): Record frag
673         in the literal_frag field.
674         (xtensa_move_literals): Use it here instead of searching.  Update
675         literal_frag field with new value.
676
677 2007-06-14  Paul Brook  <paul@codesourcery.com>
678
679         * config/tc-arm.c (do_t_mov_cmp): Handle shift by register and
680         narrow shift by immediate.
681
682 2007-06-14  H.J. Lu  <hongjiu.lu@intel.com>
683
684         * Makefile.am (ACLOCAL_AMFLAGS): Add -I ../config -I ../bfd.
685
686         * acinclude.m4: Don't include m4 files.
687         (BFD_BINARY_FOPEN): Removed.
688         Remove libtool kludge.
689
690         * Makefile.in: Regenerated.
691         * doc/Makefile.in: Likewise.
692         * aclocal.m4: Likewise.
693         * configure: Likewise.
694
695 2007-06-11  Sterling Augustine  <sterling@tensilica.com>
696             Bob Wilson  <bob.wilson@acm.org>
697         
698         * config/tc-xtensa.c (XTENSA_PROP_INSN_NO_TRANSFORM): Renamed to...
699         (XTENSA_PROP_NO_TRANSFORM): ...this.
700         (frag_flags_struct): Move is_no_transform out of the insn sub-struct.
701         (xtensa_mark_frags_for_org): New.
702         (xtensa_handle_align): Set RELAX_ORG frag subtype for rs_org.
703         (xtensa_post_relax_hook): Call xtensa_mark_frags_for_org.
704         (get_frag_property_flags): Adjust reference to is_no_transform flag.
705         (xtensa_frag_flags_combinable): Likewise.
706         (frag_flags_to_number): Likewise.  Use XTENSA_PROP_NO_TRANSFORM.
707         * config/tc-xtensa.h (xtensa_relax_statesE): Add RELAX_ORG.
708         
709 2007-06-06  Paul Brook  <paul@codesourcery.com>
710
711         * config/tc-arm.c (s_align): Pad code sections appropriately.
712
713 2007-06-05  Paul Brook  <paul@codesourcery.com>
714
715         * config/tc-arm.c (insns): Correct Thumb-2 ldrd/strd opcodes.
716
717 2007-06-05  Nick Clifton  <nickc@redhat.com>
718
719         PR gas/4587
720         * config/tc-sparc.c (sparc_ip): Terminate tls_ops array.
721
722 2007-06-05  Alan Modra  <amodra@bigpond.net.au>
723
724         * config/tc-spu.c (spu_cons): Use deferred_expression.  Handle
725         number@ppu.
726         (tc_gen_reloc): Abort if neither addsy or subsy is set.
727         (md_apply_fix): Don't attempt to resolve SPU_PPU relocs.
728         * config/tc-spu.h (md_operand): Handle @ppu without sym.
729
730 2007-05-31  Paul Brook  <paul@codesourcery.com>
731
732         * config/tc-arm.c (insns): Allow strex on M profile cores.
733
734 2007-05-29  David S. Miller  <davem@davemloft.net>
735             Jakub Jelinek  <jakub@redhat.com>
736
737         PR gas/4558
738         * config/tc-sparc.c (md_apply_fix): Fix relocation overflow checks
739         for BFD_RELOC_SPARC_WDISP16 and BFD_RELOC_SPARC_WDISP19.
740
741 2007-05-29  Alan Modra  <amodra@bigpond.net.au>
742
743         * config/tc-spu.h: Wrap in #ifndef/#endif.  Delete coff macros.
744
745 2007-05-29  Alan Modra  <amodra@bigpond.net.au>
746
747         * config/tc-ppc.c: Convert to ISO C.
748         * config/tc-ppc.c: Likewise.
749
750 2007-05-29  Alan Modra  <amodra@bigpond.net.au>
751
752         * write.h (EXEC_MACHINE_TYPE): Delete.
753         (string_byte_count, section_alignment): Delete.
754
755 2007-05-28  Nathan Sidwell  <nathan@codesourcery.com>
756
757         * app.c (do_scrub_chars): Cope with \ at end of buffer.
758
759 2007-05-26  Alan Modra  <amodra@bigpond.net.au>
760
761         * config/tc-ppc.c (ppc_insert_operand): Truncate sign bits in
762         top 32 bits of 64 bit value if so doing results in passing
763         range check.  Rewrite sign extension fudges similarly.  Enable
764         fudges for powerpc64 too.  Report user value if range check
765         fails rather than fudged value.  Negate PPC_OPERAND_NEGATIVE
766         range rather than value, also to report user value on failure.
767
768 2007-03-25  Paul Brook  <paul@codesourcery.com>
769
770         * config/tc-arm.c (T2_SUBS_PC_LR): Define.
771         (do_t_add_sub): Correctly encode subs pc, lr, #const.
772         (do_t_mov_cmp): Correctly encode movs pc, lr.
773
774 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
775
776         * Makefile.in: Regnerate.
777         * configure: Regenerate.
778         * aclocal.m4: Regenerate.
779         * doc/Makefile.in: Regenerate.
780
781 2007-05-22  Bob Wilson  <bob.wilson@acm.org>
782         
783         * doc/c-xtensa.texi (Xtensa Automatic Alignment): Remove statements
784         and index entries about automatic alignment of ENTRY instructions.
785         
786 2007-05-22  Nick Clifton  <nickc@redhat.com>
787
788         * doc/as.texinfo: Use @copying around the copyright notice.
789
790 2007-05-18  Joseph Myers  <joseph@codesourcery.com>
791
792         * config/tc-mips.c (s_mipsset): Use generic s_set for directives
793         containing a comma.
794
795 2007-05-17  H.J. Lu  <hongjiu.lu@intel.com>
796
797         PR gas/4517
798         2003-06-05  Michal Ludvig  <mludvig@suse.cz>
799         * doc/as.texinfo: Document new directives: .cfi_restore, 
800         .cfi_undefined, .cfi_same_value, .cfi_return_column, 
801         .cfi_remember_state and .cfi_restore_state.
802
803 2007-05-17  Nathan Sidwell  <nathan@codesourcery.com>
804
805         * config/tc-m68k.c (md_apply_fix): Show value of out of range
806         fixups in error message.
807         (md_conver_frag_1): Propagate the fix source location and use
808         as_bad_where rather than fatal, for better error messages.
809
810 2007-05-16  Paul Brook  <paul@codesourcery.com>
811
812         * config/tc-arm.c (v7m_psrs): Add uppercase PSR names and xpsr.
813
814 2007-05-15  Mark Shinwell  <shinwell@codesourcery.com>
815
816         * app.c (do_scrub_chars): Don't damage \@ pseudo-variables.
817
818 2007-05-15  Vincent Riviere  <vincent.riviere@freesbee.fr>      
819
820         PR gas/3041
821         * config/tc-m68k.c (relaxable_symbol): Make sure that the correct
822         addend is stored for relocs against weak symbols.
823         (md_apply_fix): So not loose track of addend for relocs against
824         weak symbols.
825
826 2007-05-14  Thiemo Seufer  <ths@mips.com>
827
828         * config/tc-mips.c (md_parse_option): Fix parsing of -O option.
829
830 2007-05-14  Mei Ligang  <ligang@sunnorth.com.cn>
831
832         * config/tc-score.c (data_op2, validate_immediate): Fix bug for
833         addri, addri.c, subi, and subi.c when immediate number is hex.
834         (score_insns): Remove subis and subis.c.
835         (do_sub_rdi16): Delete.
836         
837 2007-05-11  Alan Modra  <amodra@bigpond.net.au>
838
839         * config/tc-spu.c (md_pseudo_table): Add int, long, quad.  Call
840         spu_cons for word.
841         (md_assemble): Tidy use of insn.flag.
842         (get_imm): Likewise.  Handle uppercase input too.
843         (spu_cons): New function.
844         * config/tc-spu.h (tc_fix_adjustable): Don't adjust SPU_PPU relocs.
845         (TC_FORCE_RELOCATION): Don't resolve them either.
846
847 2007-05-05  Mark Shinwell  <shinwell@codesourcery.com>
848  
849         * config/tc-arm.c (md_apply_fix): Generate more accurate
850         diagnostic when 8-bit immediate range is exceeded for
851         BFD_RELOC_ARM_OFFSET_IMM8.
852
853 2007-05-04  Alan Modra  <amodra@bigpond.net.au>
854
855         PR gas/4460
856         * config/tc-i386.c (lex_got): Don't replace the reloc token with
857         a space if we already have a space.
858
859 2007-05-03  H.J. Lu  <hongjiu.lu@intel.com>
860
861         * config/tc-i386.c (match_template): Don't explicitly check
862         suffix for crc32 in Intel mode.
863         (process_suffix): Issue an error for crc32 if the operand size
864         is ambiguous.
865
866 2007-05-03  Vincent Riviere  <vincent.riviere@freesbee.fr>
867             Nick Clifton  <nickc@redhat.com>
868
869         PR gas/3041
870         * config/tc-m68k.c (relaxable_symbol): Do not relax weak symbols.
871         (tc_gen_reloc): Adjust the addend of relocs against weak symbols.
872         (md_apply_fix): Put zero values into the frags referencing weak
873         symbols.
874
875 2007-05-02  Alan Modra  <amodra@bigpond.net.au>
876
877         PR 4448
878         * config/tc-ppc.c (ppc_insert_operand): Don't increase min for
879         PPC_OPERAND_PLUS1.
880
881 2007-05-01  H.J. Lu  <hongjiu.lu@intel.com>
882
883         * config/tc-i386.c (match_template): Check suffix for crc32 in
884         Intel mdoe.
885         (process_suffix): Default the suffix of 8bit crc32 to
886         BYTE_MNEM_SUFFIX.
887         (check_byte_reg): Skip check for 8bit crc32.
888
889 2007-04-30  H.J. Lu  <hongjiu.lu@intel.com>
890
891         * config/tc-i386.c (md_assemble): Use register_prefix in
892         error/warning message.
893         (check_byte_reg): Likewise.
894         (check_long_reg): Likewise.
895         (check_qword_reg): Likewise.
896         (check_word_reg): Likewise.
897         (process_operands): Likewise.
898
899 2007-04-30  Alan Modra  <amodra@bigpond.net.au>
900
901         PR 4436
902         * config/tc-ppc.c (ppc_insert_operand): Disable range check if
903         min > max.
904
905 2007-04-28  Thiemo Seufer  <ths@networkno.de>
906
907         * config/tc-mips.c: Fix comment.
908
909 2007-04-26  Anatoly Sokolov <aesok@post.ru>
910
911         * config/tc-avr.c (mcu_types): Add support for atmega8hva and
912         atmega16hva devices. Move at90usb82 device to 'avr5' architecture.
913         * doc/c-avr.texi: Document new devices.
914
915 2007-04-24  Alan Modra  <amodra@bigpond.net.au>
916
917         * Makefile.am: Run "make dep-am".
918         * Makefile.in: Regenerate.
919
920 2007-04-23  Nathan Sidwell  <nathan@codesourcery.com>
921
922         * config/tc-m68k.c (mcf54455_ctrl): New.
923         (HAVE_LONG_DISP, HAVE_LONG_CALL, HAVE_LONG_COND): New.
924         (m68k_archs): Add isac.
925         (m68k_cpus): Add 54455 family.
926         (m68k_ip): Split Bg into Bb, Bs, Bg.
927         (m68k_elf_final_processing): Add ISA_C.
928         * doc/c-m68k.texi (M680x0 Options): Add isac.
929
930 2007-04-22  Alan Modra  <amodra@bigpond.net.au>
931
932         * read.c (read_a_source_file): Skip multiple spaces to
933         cover hack in mmix md_start_line_hook which overwrites a
934         colon with a space.  Delete sermon and needless assertion.
935
936 2007-04-21  Alan Modra  <amodra@bigpond.net.au>
937
938         * config/atof-vax.c (atof_vax_sizeof): Change return type to unsigned.
939         (md_atof): Make number_of_chars unsigned.  Revert last change.
940         * config/tc-or32.c (md_apply_fix): Delete bogus assertions.
941         * config/tc-sh.c (sh_optimize_expr): Only define for OBJ_ELF.
942         * config/tc-sh.h (md_optimize_expr): Likewise.
943         * config/tc-sh64.c (shmedia_md_pcrel_from_section): Delete bogus
944         assertion.
945         * config/tc-xtensa.c (convert_frag_immed_finish_loop): Likewise.
946
947 2007-04-21  Nick Clifton  <nickc@redhat.com>
948
949         * config/atof-vax.c (md_atof): Fix comparison inside know().
950
951         * config/tc-ia64.c (emit_one_bundle): Fix typo.
952
953 2007-04-21  Alan Modra  <amodra@bigpond.net.au>
954
955         * expr.c (expr): Assert on rankarg, not rank which can be unsigned.
956         * read.c (read_a_source_file): Remove buffer_limit[-1] assertion.
957         Don't skip over NUL char.
958         (pseudo_set): Set X_op for registers to O_register.
959         * symbols.c (symbol_clone): Remove assertion that sym is defined.
960         (resolve_symbol_value): Resolve O_register symbols.
961         * config/tc-i386.c (parse_real_register): Don't use i386_float_regtab.
962         Instead find st(0) by hash lookup.
963         * config/tc-ppc.c (ppc_macro): Warning fix.
964
965         * as.h (ENABLE_CHECKING): Default define to 0.
966         (know): Assert if ENABLE_CHECKING.
967         (struct relax_type): Remove superfluous declaration.
968         * configure.in (--enable-checking): New.
969         * configure: Regenerate.
970         * config.in: Regenerate.
971         * config/tc-ppc.c (ppc_setup_opcodes): Do checks when ENABLE_CHECKING.
972         Check for duplicate powerpc_operands entries.
973
974 2007-04-20  Nathan Sidwell  <nathan@codesourcery.com>
975
976         * config/tc-m68k.c (mcf5253_ctrl): New.
977         (mcf52223_ctrl): New.
978         (m68k_cpus): Add 5253, 52221, 52223.
979
980         * config/m68k-parse.h (RAMBAR_ALT): New.
981         * config/tc-m68k.c (mcf5206_ctrl, mcf5307_ctrl): New.
982         (mcf_ctrl, mcf5208_ctrl, mcf5210a_ctrl, mcf5213_ctrl, mcf52235_ctrl,
983         mcf5225_ctrl, mcf5235_ctrl, mcf5271_ctrl, mcf5275_ctrl,
984         mcf5282_ctrl, mcf5329_ctrl, mcf5373_ctrl, mcfv4e_ctrl,
985         mcf5475_ctrl, mcf5485_ctrl): Add RAMBAR synonym for
986         RAMBAR1.
987         (mcf5272_ctrl): Add RAMBAR0, replace add RAMBAR with RAMBAR_ALT.
988         (m68k_cpus): Adjust 5206, 5206e & 5307 entries.
989         (m68k_ip) <Case J>: Detect when RAMBAR_ALT should be used.  Add it
990         to control register mapping.
991
992 2007-04-20  Alan Modra  <amodra@bigpond.net.au>
993
994         * messages.c (as_internal_value_out_of_range): Fix typo in
995         error message.  Return after printing domain error.
996         * config/tc-ppc.c (ppc_insert_operand): Preserve low zero bits
997         in max when shifting right.
998
999 2007-04-20  Alan Modra  <amodra@bigpond.net.au>
1000
1001         * messages.c (as_internal_value_out_of_range): Extend to report
1002         errors for values with invalid low bits set.
1003         * config/tc-ppc.c (ppc_setup_opcodes): Check powerpc_operands bitm
1004         fields.  Check that operands and opcode fields are disjoint.
1005         (ppc_insert_operand): Check operands using mask rather than bit
1006         count.   Check low bits too.  Handle PPC_OPERAND_PLUS1.  Adjust
1007         insertion code.
1008         (md_apply_fix): Adjust for struct powerpc_operand change.
1009
1010 2007-04-19  Paul Brook  <paul@codesourcery.com>
1011
1012         * config/tc-arm.c (md_assemble): Only allow 16-bit instructions on
1013         Thumb-1.  Add sanity check for bogus relaxations.
1014
1015 2007-04-19  Paul Brook  <paul@codesourcery.com>
1016
1017         * config/tc-arm.c (insns): Allow rsb and rsbs on Thumb-1.
1018
1019 2007-04-19  Alan Modra  <amodra@bigpond.net.au>
1020
1021         * Makefile.am: Run "make dep-am".
1022         * Makefile.in: Regenerate.
1023
1024 2007-04-19  Nathan Froyd <froydnj@codesourcery.com>
1025
1026         * doc/c-ppc.texi (PowerPC-Opts): Document -me500, -me500x2, -mspe.
1027
1028 2007-04-18  H.J. Lu <hongjiu.lu@intel.com>
1029
1030         * doc/c-i386.texi; Document .ssse3, .sse4.1, .sse4.2 and .sse4.
1031
1032 2007-04-18  H.J. Lu <hongjiu.lu@intel.com>
1033
1034         * config/tc-i386.c (cpu_arch): Add .sse4.2 and .sse4.
1035         (match_template): Handle operand size for crc32 in SSE4.2.
1036         (process_suffix): Handle operand type for crc32 in SSE4.2.
1037         (output_insn): Support SSE4.2.
1038
1039 2007-04-18  H.J. Lu <hongjiu.lu@intel.com>
1040
1041         * config/tc-i386.c (cpu_arch): Add .sse4.1.
1042         (process_operands): Adjust implicit operand for blendvpd,
1043         blendvps and pblendvb in SSE4.1.
1044         (output_insn): Support SSE4.1.
1045
1046 2007-04-18  Paul Brook  <paul@codesourcery.com>
1047
1048         * config/tc-arm.c (do_t_rsb): Use 16-bit encoding when possible.
1049
1050 2007-04-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1051
1052         * config/tc-sh.c (sh_handle_align):  Call as_bad_where instead
1053         of as_warn_where for misaligned data.
1054
1055 2007-04-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1056
1057         * config/tc-sh.c (align_test_frag_offset_fixed_p): Handle
1058         rs_fill frags.
1059
1060 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
1061
1062         * Makefile.am: Add ACLOCAL_AMFLAGS.
1063         * Makefile.in: Regenerate.
1064
1065 2007-04-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1066
1067         * config/tc-sh.c (align_test_frag_offset_fixed_p): New.
1068         (sh_optimize_expr): Likewise.
1069         * config/tc-sh.h (md_optimize_expr): Define.
1070         (sh_optimize_expr): Prototype.
1071
1072 2007-04-06  Matt Thomas  <matt@netbsd.org>
1073
1074         * config/tc-vax.c (vax_cons): Added to support %pcrel{8,16,32}(exp)
1075         to emit pcrel relocations by DWARF2 in non-code sections.  Borrowed
1076         heavily from tc-sparc.c.  (vax_cons_fix_new): Likewise.
1077
1078 2007-04-04  Kazu Hirata  <kazu@codesourcery.com>
1079
1080         * config/tc-m68k.c (HAVE_LONG_BRANCH): Add fido_a.
1081
1082 2007-04-04  Paul Brook  <paul@codesourcery.com>
1083
1084         * config/tc-arm.c (do_neon_ext): Enforce immediate range.
1085         (insns): Use I15 for vext.
1086
1087 2007-04-04  Paul Brook  <paul@codesourcery.com>
1088
1089         * configure.tgt: Loosen checks for arm uclinux eabi targets.
1090
1091 2007-04-02  Sterling Augustine  <sterling@tensilica.com>
1092
1093         * config/tc-xtensa.c (xtensa_flush_pending_output): Check
1094         outputting_stabs_line_debug.
1095
1096 2007-03-26  Anatoly Sokolov <aesok@post.ru>
1097
1098         * config/tc-avr.c (mcu_types): Add support for at90pwm1, at90usb82,
1099         at90usb162, atmega325p, atmega329p, atmega3250p and atmega3290p
1100         devices.
1101         * doc/c-avr.texi: Document new devices.
1102
1103 2007-04-02  Richard Sandiford  <richard@codesourcery.com>
1104
1105         * doc/as.texinfo: Add -mvxworks-pic to the list of MIPS options.
1106         * doc/c-mips.texi (-KPIC, -mvxworks-pic): Document.
1107         * config/tc-mips.c (md_show_usage): Mention -mvxworks-pic.
1108
1109 2007-03-30  Sterling Augustine  <sterling@tensilica.com>
1110             Bob Wilson  <bob.wilson@acm.org>
1111
1112         * config/tc-xtensa.c (xtensa_move_labels): Remove loops_ok argument.
1113         Do not check is_loop_target flag.
1114         (xtensa_frob_label): Adjust calls to xtensa_move_labels.
1115         (xg_assemble_vliw_tokens): Likewise.  Also avoid calling
1116         xtensa_move_labels for alignment of loop opcodes.
1117         
1118 2007-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1119
1120         * config/tc-i386.c (process_suffix): Reindent a bit.
1121
1122 2007-03-30  Paul Brook  <paul@codesourcery.com>
1123
1124         * config/tc-arm.c (encode_thumb2_ldmstm): New function.
1125         (do_t_ldmstm): Generate 16-bit push/pop.  Use encode_thumb2_ldmstm.
1126         (do_t_push_pop):  Use encode_thumb2_ldmstm.
1127
1128 2007-03-29  DJ Delorie  <dj@redhat.com>
1129
1130         * config/tc-m32c.c (rl_for, relaxable): Protect argument.
1131         (md_relax_table): Add entries for ADJNZ macros.
1132         (M32C_Macros): Add ADJNZ macros.
1133         (subtype_mappings): Add entries for ADJNZ macros.
1134         (insn_to_subtype): Check for adjnz and sbjnz insns.
1135         (md_estimate_size_before_relax): Pass insn to insn_to_subtype.
1136         (md_convert_frag): Convert adjnz and sbjnz.
1137
1138 2007-03-29  Nick Clifton  <nickc@redhat.com>
1139
1140         * itbl-ops.c (itbl_entry): Remove unnecessary and excessively long
1141         initialization.
1142         * itbl-ops.h (enum e_processor): Initialise the e_nprocs field
1143         using ITBL_NUMBER_OF_PROCESSORS.
1144         * itbl-parse.y (yyerror): Remove use of redundant macro PARAMS.
1145
1146 2007-03-28  H.J. Lu  <hongjiu.lu@intel.com>
1147
1148         * config/tc-i386.c (build_modrm_byte): For instructions with 2
1149         register operands, encode destination in i.rm.regmem if its
1150         RegMem bit is set.
1151
1152 2007-03-28  Richard Sandiford  <richard@codesourcery.com>
1153             Phil Edwards  <phil@codesourcery.com>
1154
1155         * doc/as.texinfo: Put the contents after the title page rather
1156         than at the end of the document.
1157
1158 2007-03-27  Alan Modra  <amodra@bigpond.net.au>
1159
1160         * NEWS: Mention ".reloc".
1161
1162 2007-03-26  Sterling Augustine  <sterling@tensilica.com>
1163         
1164         * config/tc-xtensa.c (xg_translate_idioms): Allow assembly idioms
1165         in FLIX instructions.
1166         
1167 2007-03-26  Julian Brown  <julian@codesourcery.com>
1168
1169         * config/tc-arm.c (arm_it): Add immisfloat field.
1170         (parse_qfloat_immediate): Disallow integer syntax for floating-point
1171         immediates. Fix hex immediates, handle 0.0 and -0.0 specially.
1172         (parse_neon_mov): Set immisfloat bit for operand if it parsed as a
1173         float.
1174         (neon_cmode_for_move_imm): Reject non-float immediates for float
1175         operands.
1176         (neon_move_immediate): Pass immisfloat bit to neon_cmode_for_move_imm.
1177
1178 2007-03-26  Julian Brown  <julian@codesourcery.com>
1179
1180         * doc/c-arm.texi: Add documentation for .dn/.qn directives.
1181
1182 2007-03-26  Alan Modra  <amodra@bigpond.net.au>
1183
1184         * doc/as.texinfo (Reloc): Document.
1185         * read.c (potable): Add "reloc".
1186         (s_reloc): New function.
1187         * write.c (reloc_list): New global var.
1188         (resolve_reloc_expr_symbols): New function.
1189         (write_object_file): Call it.
1190         (write_relocs): Process reloc_list.
1191         * write.h (struct reloc_list): New.
1192         (reloc_list): Declare.
1193
1194 2007-03-24  Paul Brook  <paul@codesourcery.com>
1195
1196         * config/tc-arm.c (do_t_ldmstm): Error on Thumb-2 addressing modes.
1197
1198 2007-03-24  Paul Brook  <paul@codesourcery.com>
1199         Mark Shinwell  <shinwell@codesourcery.com>
1200
1201         * config/tc-arm.c (operand_parse_code): Add OP_oRRw.
1202         (parse_operands): Don't expect comma if first operand missing.
1203         Handle OP_oRRw.
1204         (do_srs): Encode register number, checking it is r13.  Update comment.
1205         (insns): Update SRS entries to take a register.
1206
1207 2007-03-23  H.J. Lu  <hongjiu.lu@intel.com>
1208
1209         * config/tc-i386.c (md_begin): Allow '.' in mnemonic.
1210
1211 2007-03-23  Mark Shinwell  <shinwell@codesourcery.com>
1212
1213         * config/tc-arm.c (md_apply_fix): Turn CBZ instructions that
1214         attempt to jump to the next instruction into NOPs.
1215
1216 2007-03-23  Alan Modra  <amodra@bigpond.net.au>
1217
1218         * config/tc-spu.c: Don't include opcode/spu.h.
1219         (md_assemble): Set tc_fix_data.insn_tag and arg_format.
1220         (md_apply_fix): Adjust.
1221         * config/tc-spu.h: Include opcode/spu.h.
1222         (struct tc_fix_info): New.
1223         (TC_FIX_TYPE, TC_INIT_FIX_DATA): Adjust.
1224         (TC_FORCE_RELOCATION): Define.
1225
1226 2007-03-22  Joseph Myers  <joseph@codesourcery.com>
1227
1228         * doc/as.texinfo: Include VERSION_PACKAGE when reporting version.
1229
1230 2007-03-21  H.J. Lu  <hongjiu.lu@intel.com>
1231
1232         * config/tc-i386.c (process_suffix): Check 0x90 instead of
1233         xchg for xchg %rax,%rax.
1234
1235 2007-03-21  H.J. Lu  <hongjiu.lu@intel.com>
1236
1237         * config/tc-i386.c: Replace REX_MODE64, REX_EXTX, REX_EXTY
1238         and REX_EXTZ with REX_W, REX_R, REX_X and REX_B respectively.
1239
1240 2007-03-21  H.J. Lu  <hongjiu.lu@intel.com>
1241
1242         PR binutils/4218
1243         * config/tc-i386.c (match_template): Properly handle 64bit mode
1244         "xchg %eax, %eax".
1245
1246 2007-03-21  Anton Ertl  <anton@mips.complang.tuw>
1247
1248         PR gas/4124
1249         * config/tc-alpha.c (emit_ustX): Fix ustq code generation.
1250
1251 2007-03-21  H.J. Lu  <hongjiu.lu@intel.com>
1252
1253         * Makefile.am: Run dep-am.
1254         * Makefile.in: Regenerated.
1255
1256         * config/tc-i386.c: Don't include "opcodes/i386-opc.h".
1257
1258         * config/tc-i386.h: Include "opcodes/i386-opc.h".
1259         (NOP_OPCODE): Removed.
1260         (template): Likewise.
1261
1262 2007-03-21  Andreas Schwab  <schwab@suse.de>
1263
1264         * config/tc-i386.h (NOP_OPCODE): Restore.
1265
1266 2007-03-18  Mark Shinwell  <shinwell@codesourcery.com>
1267
1268         * config/tc-arm.c (do_mul): Don't warn about overlapping
1269         Rd and Rm operands when assembling for v6 or above.
1270         Correctly capitalize register names in the messages.
1271         (do_mlas): Likewise.  Delete spurious blank line.
1272
1273 2007-03-16  Kazu Hirata  <kazu@codesourcery.com>
1274
1275         * config/tc-m68k.c (m68k_cpus): Add an entry for fidoa.
1276
1277 2007-03-15  H.J. Lu  <hongjiu.lu@intel.com>
1278
1279         * config/tc-i386.c (md_begin): Use i386_regtab_size to scan 
1280         i386_regtab.
1281         (parse_register): Use i386_regtab_size instead of ARRAY_SIZE
1282         on i386_regtab.
1283
1284 2007-03-15  Alexandre Oliva  <aoliva@redhat.com>
1285
1286         PR gas/4184
1287         * app.c (do_scrub_chars): PUT after setting states.
1288
1289 2007-03-15  H.J. Lu  <hongjiu.lu@intel.com>
1290
1291         * Makefile.am: Run "make dep-am".
1292         * Makefile.in: Regenerated.
1293
1294         * config/tc-i386.c: Include "opcodes/i386-opc.h" instead of
1295         "opcode/i386.h".
1296         (md_begin): Check reg_name != NULL for the last entry in
1297         i386_regtab.
1298
1299         * config/tc-i386.h: Move many entries to opcode/i386.h and
1300         opcodes/i386-opc.h.
1301
1302         * configure.in (need_opcodes): Set true for i386.
1303         * configure: Regenerated.
1304
1305 2007-03-15  H.J. Lu  <hongjiu.lu@intel.com>
1306
1307         * Makefile.am (REPORT_BUGS_TO): Removed.
1308         (INCLUDES): Remove -DREPORT_BUGS_TO.
1309         * Makefile.in: Regenerated.
1310
1311         * configure.in (--with-bugurl): Removed.
1312         * configure: Regenerated.
1313
1314         * doc/Makefile.am (as_TEXINFOS): Remove gasver.texi.
1315         (AM_MAKEINFOFLAGS): Add -I ../../bfd/doc.
1316         (TEXI2DVI): Likewise.
1317         (gasver.texi): Removed.
1318         (MOSTLYCLEANFILES): Remove gasver.texi.
1319         (as.1): Don't depend on gasver.texi.
1320         * doc/Makefile.in: Regenerated.
1321
1322         * doc/as.texi: Include bfdver.texi instead of gasver.texi.
1323
1324 2007-03-14  Daniel Jacobowitz  <dan@codesourcery.com>
1325
1326         * config/tc-arm.c (arm_copy_symbol_attributes): New.
1327         * config/tc-arm.h (arm_copy_symbol_attributes): Declare.
1328         (TC_COPY_SYMBOL_ATTRIBUTES): Define.
1329         * gas/symbols.c (copy_symbol_attributes): Use
1330         TC_COPY_SYMBOL_ATTRIBUTES.
1331
1332 2007-03-14  Paul Brook  <paul@codesourcery.com>
1333
1334         * config/tc-arm.c (T16_32_TAB): Fix dec_sp encoding.
1335
1336 2007-03-14  Alan Modra  <amodra@bigpond.net.au>
1337
1338         PR 4029
1339         * write.c (relax_segment): Insert extra alignment padding
1340         to break infinite relax loop when given impossible
1341         gcc_except_table assembly.
1342
1343 2007-03-12  H.J. Lu  <hongjiu.lu@intel.com>
1344
1345         * config/tc-i386.c (md_assemble): Use Opcode_XXX instead of XXX
1346         on i.tm.base_opcode.
1347         (match_template): Likewise.
1348         (process_operands): Use ~0x3 mask to match MOV_AX_DISP32.
1349
1350         * config/tc-i386.h (Opcode_D): New.
1351         (Opcode_FloatR): Likewise.
1352         (Opcode_FloatD): Likewise.
1353         (D): Redefined.
1354         (W): Likewise.
1355         (FloatMF): Likewise.
1356         (FloatR): Likewise.
1357         (FloatD): Likewise.
1358
1359 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1360
1361         * app.c (do_scrub_chars): Recognize comments after # line "file".
1362         * read.c (get_linefile_number): New.
1363         (s_app_line): Accept ill-formed .linefile lines as comments.
1364
1365 2007-03-09  Alan Modra  <amodra@bigpond.net.au>
1366
1367         * config/tc-i386.h (WORKING_DOT_WORD): Define.
1368
1369 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1370
1371         * app.c (do_scrub_chars): Turn #<line>"file"flags into .linefile.
1372         * as.h (new_logical_line_flags): New.
1373         * input-scrub.c (new_logical_line): Turned into wrapper for...
1374         (new_logical_line_flags): this.  Handle flags.
1375         * read.c (potable): Add linefile.  Adjust appline argument.
1376         (s_app_file): Fake .appfiles no more.
1377         (s_app_line): For .linefile, accept file name and flags.
1378
1379 2007-03-08  Alan Modra  <amodra@bigpond.net.au>
1380
1381         * symbols.c (symbol_relc_make_sym): Comment typo fixes.
1382
1383 2007-03-08  Alan Modra  <amodra@bigpond.net.au>
1384
1385         * Makefile.am: Run "make dep-am".
1386         * Makefile.in: Regenerate.
1387         * po/POTFILES.in: Regenerate.
1388
1389 2007-03-07  Joseph Myers  <joseph@codesourcery.com>
1390
1391         * configure.in (REPORT_BUGS_TEXI): Define to Texinfo version of
1392         bug-reporting URL.
1393         * doc/Makefile.am (gasver.texi): Define BUGURL.
1394         * doc/as.texinfo: Use BUGURL.
1395         * Makefile.in, configure, doc/Makefile.in: Regenerate.
1396
1397 2007-03-06  Andreas Krebbel  <krebbel1@de.ibm.com>
1398
1399         * config/tc-s390.c (md_parse_option): z9-ec option added.
1400
1401 2007-03-02  Paul Brook  <paul@codesourcery.com>
1402
1403         * config/tc-arm.c (relax_immediate): Always return positive values.
1404         (relaxed_symbol_addr): New function.
1405         (relax_adr, relax_branch): Use it.
1406         (arm_relax_frag): Pass strect argument.  Adjust infinite loop check.
1407
1408 2007-03-01  Joseph Myers  <joseph@codesourcery.com>
1409
1410         * as.c (parse_args): Update copyright date.
1411
1412 2007-02-28  Nathan Sidwell  <nathan@codesourcery.com>
1413
1414         * configure.tgt (sh-*-uclinux, sh[12]-*-uclinux): Specify as elf.
1415
1416 2007-02-28  Nick Clifton  <nickc@redhat.com>
1417
1418         PR gas/3797
1419         * config/tc-d10v.c (do_assemble): Do not generate error messages,
1420         just return -1 whenever a problem is encountered.
1421         (md_assemble): If do_assemble returns -1 generate a non-fatal
1422         error message and return.
1423
1424         PR gas/2623
1425         * config/tc-msp430.c (line_separator_char): Change to '{'.
1426
1427 2007-02-27  Alan Modra  <amodra@bigpond.net.au>
1428
1429         * config/tc-m68hc11.c (fixup24): Correct fixup size.
1430         (build_jump_insn): Likewise.
1431         (build_insn): Likewise.
1432         (s_m68hc11_relax): Likewise.
1433
1434 2007-02-27  Alan Modra  <amodra@bigpond.net.au>
1435
1436         * config/obj-elf.c (elf_frob_file): frag_wane any new frags.
1437
1438 2007-02-25  Mark Shinwell  <shinwell@codesourcery.com>
1439
1440         * config/tc-arm.c (do_vfp_nsyn_pop): Use fldmias/fldmiad.
1441
1442 2007-02-23  Alan Modra  <amodra@bigpond.net.au>
1443
1444         * config/tc-mn10300.c (md_convert_frag): Correct fixup size.
1445         (md_assemble): Likewise.
1446
1447 2007-02-22  Alan Modra  <amodra@bigpond.net.au>
1448
1449         * write.c (size_seg): Always clear SEC_RELOC here.
1450         (install_reloc): New function, extracted from..
1451         (write_relocs): ..here.  Combine RELOC_EXPANSION_POSSIBLE code
1452         with !RELOC_EXPANSION_POSSIBLE code.  Don't add fr_offset when
1453         testing frag size.  Set SEC_RELOC here.
1454
1455 2007-02-21  Alan Modra  <amodra@bigpond.net.au>
1456
1457         PR 4082
1458         * config/tc-avr.h (TC_FX_SIZE_SLACK): Define.
1459
1460 2007-02-20  Thiemo Seufer  <ths@mips.com>
1461
1462         * doc/c-mips.texi: Document 74kc, 74kf, 74kx.
1463
1464 2007-02-20  Thiemo Seufer  <ths@mips.com>
1465
1466         * config/tc-mips.c (mips_cpu_info_table): Add 74K configurations.
1467
1468 2007-02-20  Thiemo Seufer  <ths@mips.com>
1469             Chao-Ying Fu  <fu@mips.com>
1470
1471         * config/tc-mips.c (mips_set_options, mips_opts, file_ase_dspr2,
1472         ISA_SUPPORTS_DSPR2_ASE, MIPS_CPU_ASE_DSPR2): Add DSP R2 ASE support.
1473         (macro_build): Add case '2'.
1474         (macro): Expand M_BALIGN to nop, packrl.ph or balign.
1475         (validate_mips_insn): Add support for balign instruction.
1476         (mips_ip): Handle DSP R2 instructions. Support balign instruction.
1477         (OPTION_DSPR2, OPTION_NO_DSPR2, OPTION_COMPAT_ARCH_BASE,
1478         md_parse_option, mips_after_parse_args): Add -mdspr2 and -mno-dspr2
1479         command line options.
1480         (s_mipsset): Add support for .set dspr2 and .set nodspr2 directives.
1481         (md_show_usage): Add -mdspr2 and -mno-dspr2 help output.
1482         * doc/c-mips.texi, doc/as.texinfo: Document -mdspr2, -mno-dspr2,
1483         .set dspr2, .set nodspr2.
1484
1485 2007-02-20  Nathan Sidwell  <nathan@codesourcery.com>
1486
1487         * config/tc-m68k.c (mcf5210a_ctrl, mcf52235_ctrl, mcf5225_ctrl): New.
1488         (m68k_cpus): Add 5210a..5211a, 52230..52235 5224..5225.
1489
1490 2007-02-18  Alan Modra  <amodra@bigpond.net.au>
1491
1492         * write.c (TC_FX_SIZE_SLACK): Define.
1493         (write_relocs): Reinstate check for fixup within frag.
1494         * config/tc-bfin.h (TC_FX_SIZE_SLACK): Define.
1495         * config/tc-h8300.h (TC_FX_SIZE_SLACK): Define.
1496         * config/tc-mmix.h (TC_FX_SIZE_SLACK): Define.
1497         * config/tc-sh.h (TC_FX_SIZE_SLACK): Define.
1498         * config/tc-xstormy16.h (TC_FX_SIZE_SLACK): Define.
1499
1500 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
1501             Nathan Sidwell  <nathan@codesourcery.com>
1502             Vladimir Prus  <vladimir@codesourcery.com
1503             Joseph Myers  <joseph@codesourcery.com>
1504
1505         * configure.in (--with-bugurl): New option.
1506         * configure: Regenerate.
1507         * dep-in.sed: Remove bin-bugs.h.
1508         * Makefile.am (REPORT_BUGS_TO): Define.
1509         (INCLUDES): Define REPORT_BUGS_TO.
1510         (DEP_INCLUDES): Likewise.
1511         ($(OBJS)): No longer depend on bin-bugs.h.
1512         * Makefile.in: Regenerate.
1513         * doc/Makefile.in: Regenerate.
1514         * as.c (show_usage): Don't print empty REPORT_BUGS_TO.
1515         * as.h: Remove include of bin-bugs.h.
1516
1517 2007-02-17  Alan Modra  <amodra@bigpond.net.au>
1518
1519         * write.c: White space fixes.
1520         (fixup_segment): Move symbol_mri_common_p adjustments..
1521         (write_relocs): ..and symbol_equated_reloc_p adjustments..
1522         (adjust_reloc_syms): ..to here.
1523
1524 2007-02-16  Alan Modra  <amodra@bigpond.net.au>
1525
1526         * subsegs.c (subseg_change, subseg_get): Use xcalloc rather than
1527         xmalloc, memset.  Don't bother assigning NULL to known zero mem.
1528         (subseg_set_rest): Remove unnecessary cast.
1529         * write.c: Include libbfd.h.  Replace PTR with void * throughout.
1530         Remove unnecessary forward declarations and casts.
1531         (set_symtab): Delete extern bfd_alloc.
1532         (fixup_segment): Move.
1533
1534 2007-02-15  Nathan Sidwell  <nathan@codesourcery.com>
1535
1536         * config/m68k-parse.h (m68k_register): Add ROMBAR0, ASID.
1537         * config/tc-m68k.c (mcfv4e_ctrl): Add ColdFire specific names.
1538         (mcf5475_ctrl, mcf5485_ctrl): New.
1539         (m68k_cpus): Use mcf5485_ctrl and mcf5485_ctrl for those families.
1540         (m68k_ip): Add ASID, MMUBAR, ROMBAR0 handling.
1541         (init_table): Add asid, mmubar, adjust rombar0.
1542
1543 2007-02-14  Alan Modra  <amodra@bigpond.net.au>
1544
1545         * config/tc-i386.h (Seg2ShortForm, Seg3ShortForm): Delete.
1546         * config/tc-i386.c: Wrap overly long lines, whitespace fixes.
1547         (process_operands): Move old Seg2ShortForm and Seg3ShortForm
1548         code, and test for these insns using a combination of
1549         opcode_modifier and operand_types.
1550
1551 2007-02-07  Paul Brook  <paul@codesourcery.com>
1552
1553         * configure.tgt: Add arm*-*-uclinux-*eabi.
1554
1555 2007-02-05  Dave Brolley  <brolley@redhat.com>
1556             Richard Sandiford  <rsandifo@redhat.com>
1557             DJ Delorie  <dj@redhat.com>
1558             Stan Cox  <scox@redhat.com>
1559             Jim Blandy  <jimb@redhat.com>
1560             Nick Clifton  <nickc@redhat.com>
1561             Jim Wilson  <wilson@redhat.com>
1562             Frank Ch. Eigler  <fche@redhat.com>
1563             Graydon Hoare  <graydon@redhat.com>
1564             Ben Elliston  <bje@redhat.com>
1565             John Healy  <jhealy@redhat.com>
1566             Richard Henderson  <rth@redhat.com>
1567
1568         * Makefile.am (CPU_TYPES): Add mep.
1569         (TARGET_CPU_CFILES): Add tc-mep.c.
1570         (TARGET_CPU_HFILES): Add tc-mep.h.
1571         (DEPTC_mep_elf): New variable.
1572         (DEPTC_mep_coff): Likewise.
1573         (DEPOBJ_mep_coff, DEPOBJ_mep_elf, DEP_mep_coff, DEP_mep_elf): Likewise.
1574         * configure.in: Support mep.
1575         * configure.tgt: Likewise.
1576         * config/tc-mep.c: New file.
1577         * config/obj-elf.c: New file.
1578         * config/tc-mep.c: New file.
1579         * config/tc-mep.h: New file.
1580         * testsuite/gas/mep: New testsuite with content.
1581         * Makefile.in: Regenerate.
1582         * configure: Regenerate.
1583
1584 2007-02-05  Dave Brolley  <brolley@redhat.com>
1585
1586         * cgen.c (gas_cgen_install_complex_reloc): Removed.
1587         (complex_reloc_installation_howto): Removed.
1588
1589 2007-02-05  Dave Brolley  <brolley@redhat.com>
1590             Graydon Hoare  <graydon@redhat.com>
1591             DJ Delorie  <dj@redhat.com>
1592             Catherine Moore  <clm@redhat.com>
1593             Michael Chastain  <chastain@redhat.com>
1594             Frank Ch. Eigler  <fche@redhat.com>
1595
1596         * symbols.c (use_complex_relocs_for): New, to decide
1597         when to use complex relocs. Add signed RELC support.
1598         (resolve_symbol_value): Call use_complex_relocs_for. Unconditionally
1599         encode expression symbols as mangled complex relocation symbols (when
1600         compiled with -DOBJ_COMPLEX_RELOC).
1601         (symbol_relc_make_sym,value,expr): New traversal/conversion routines.
1602         * cgen.c (gas_cgen_md_apply_fix3):  Only set signed_p if RELC. Call
1603         encode_addend with new args. Modify to get start, length from
1604         ifield whenever it is set. Also change condition on which
1605         self-describing relocs are encoded. Add hook into
1606         gas_cgen_encode_addend.
1607         (queue_fixup_recursively): Add signed RELC support. Change from masked
1608         expr to trunc flag. Restore assignment of sub-field value to
1609         temporary in fixups array. Reflect changed meaning of last arg to
1610         queue_fixup_recursively.
1611         (fixup): Add cgen_maybe_multi_ifield member.
1612         (make_right_shifted_expr): New function.
1613         (queue_fixup): Change to recursive function that fragments
1614         fixups if operand has a multi-ifield.
1615         (gas_cgen_parse_operand): Add RELC code to wrap expressions in
1616         symbols, call weak_operand_overflow_check, and fragment call
1617         queue_fixup with operand fields.
1618         (gas_cgen_finish_insn) Modify to manage ifield pointer.
1619         (weak_operand_overflow_check): New function to try to select
1620         insns correctly.
1621         (gas_cgen_encode_addend): New function for relc.
1622         (gas_cgen_install_complex_reloc): Likewise.
1623         (gas_cgen_tc_gen_reloc): Add hook into gas_cgen_install_complex_reloc.
1624         * write.h (struct fix): Add msb_field_p to fx_cgen sub-struct. Add
1625         cgen_maybe_multi_ifield field to fx_cgen substructure.
1626         * cgen.h (GAS_CGEN_MAX_FIXUPS): Bump from 3 up to 32.
1627         * symbols.h (symbol_relc_make_sym,value,expr): New prototypes.
1628         
1629 2007-02-03  DJ Delorie  <dj@delorie.com>
1630
1631         * config/tc-m32c.c (m32c_cons_fix_new): New.  Added to support 3
1632         byte relocs.
1633         * config/tc-m32c.h (TC_CONS_FIX_NEW): Define.
1634         (m32c_cons_fix_new): Prototype.
1635
1636 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1637         
1638         * config/tc-xtensa.c (xg_build_to_insn): Use tinsn_init.
1639         (xg_expand_assembly_insn, istack_push_space, istack_pop): Likewise.
1640         
1641 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1642
1643         * config/tc-xtensa.c (SUFFIX_MAP, suffix_relocs): New.
1644         (xtensa_elf_suffix): Use suffix_relocs instead of local mapping table.
1645         (map_suffix_reloc_to_operator): New.
1646         (map_operator_to_reloc): New.
1647         (expression_maybe_register): Fix incorrect test of return value from
1648         xtensa_elf_suffix.  Rearrange to use map_suffix_reloc_to_operator.
1649         (xg_assemble_literal, convert_frag_immed): Use map_operator_to_reloc.
1650
1651 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1652
1653         * config/xtensa-istack.h (struct tinsn_struct): Delete fixup field.
1654         (tinsn_get_tok): Delete prototype.
1655         * config/tc-xtensa.c (tinsn_get_tok): Delete.
1656         
1657 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1658
1659         * config/xtensa-relax.h (struct build_instr): Delete id field.
1660         * config/xtensa-relax.c (widen_spec_list): Remove zeros from LITERAL
1661         and LABEL tokens.
1662         (append_literal_op, append_label_op): Remove litnum/labnum arguments;
1663         set op_data fields to zero.
1664         (parse_id_constant): Delete.
1665         (build_transition): Remove code to handle numbered literals and labels.
1666
1667 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1668
1669         * config/xtensa-relax.c (build_transition): Remove code after as_fatal.
1670         (build_transition_table): Likewise.
1671
1672 2007-02-01  Bob Wilson  <bob.wilson@acm.org>
1673
1674         * config/tc-xtensa.c (xg_add_opcode_fix, md_apply_fix): Delete use of
1675         fx_tcbit.
1676         * config/tc-xtensa.h (TC_FORCE_RELOCATION_LOCAL): Remove.
1677
1678 2007-02-02  Alan Modra  <amodra@bigpond.net.au>
1679
1680         * write.h (struct fix <fx_pcrel_adjust, fx_size>): Move.
1681         (struct fix <fx_plt>): Rename to tcbit2.
1682         * write.c (fix_new_internal): Adjust.
1683         (TC_FORCE_RELOCATION_LOCAL): Don't test fx_plt.
1684         * config/tc-arm.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1685         * config/tc-cris.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1686         * config/tc-i386.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1687         * config/tc-i960.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1688         * config/tc-sh.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1689         * config/tc-sh64.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1690         * config/tc-sparc.h (TC_FORCE_RELOCATION_LOCAL): Likewise.
1691         * config/tc-msp430.c (msp430_force_relocation_local): Likewise.
1692         * config/tc-ia64.c (emit_one_bundle): Don't set fx_plt.
1693         * config/tc-ia64.h (TC_FORCE_RELOCATION_LOCAL): Don't test fx_plt.
1694         Instead, compare fx_r_type.
1695         * config/tc-xtensa.c (xg_add_opcode_fix, md_apply_fix): Use
1696         fx_tcbit in place of fx_plt.
1697         * config/tc-xtensa.h (TC_FORCE_RELOCATION_LOCAL): Define.
1698         * doc/internals.texi (TC_FORCE_RELOCATION_LOCAL): Remove reference
1699         to fx_plt.
1700
1701 2007-01-30  Nick Clifton  <nickc@redhat.com>
1702
1703         * as.c (main): Mark symbols created via the --defsym command line
1704         option as volatile so that they can be overridden later on by a
1705         .set directive.  This maintains compatibility with the behaviour
1706         of earlier versions of the assembler.
1707         * doc/as.texinfo (--defsym): Document that the defined symbol's
1708         value can be overridden via a .set directive.
1709
1710 2007-01-28  H.J. Lu  <hongjiu.lu@intel.com>
1711
1712         * config/tc-i386.c (swap_imm_operands): Renamed to ...
1713         (swap_2_operands): This.  Take 2 ints.
1714         (md_assemble): Updated.
1715         (swap_operands): Call swap_2_operands to swap 2 operands.
1716
1717 2007-01-24  DJ Delorie  <dj@redhat.com>
1718
1719         * config/tc-m32c.c (md_pseudo_table): Add .3byte.
1720
1721 2007-01-22  Nick Clifton  <nickc@redhat.com>
1722
1723         PR gas/3871
1724         * tc-score.c: Remove unnecessary uses of _().
1725         Make the err_msg[] a file level local array in order to save
1726         storage space.
1727         Remove unnecessary sprintf()s.
1728
1729 2007-01-18  Mei Ligang  <ligang@sunnorth.com.cn>
1730
1731         PR gas/3871
1732         * config/tc-score.c : Using _() for const string.
1733         Do not assign inst.error with a local string pointer.
1734         (md_section_align): Pad section.
1735         
1736 2007-01-13  H.J. Lu  <hongjiu.lu@intel.com>
1737
1738         * config/tc-i386.c (build_modrm_byte): Check number of operands
1739         when procssing memory/register operand.
1740
1741 2007-01-12  Nick Clifton  <nickc@redhat.com>
1742
1743         PR gas/3856
1744         * macro.c (expand_irp): Do not ignore spaces inside quoted
1745         strings.
1746
1747 2007-01-12  Alan Modra  <amodra@bigpond.net.au>
1748
1749         * config/tc-spu.h (TC_RELOC_RTSYM_LOC_FIXUP): Delete.
1750         * config/tc-m32r.h (TC_RELOC_RTSYM_LOC_FIXUP): Delete.
1751         * config/tc-mn10300.h (TC_RELOC_RTSYM_LOC_FIXUP): Delete.
1752         (TC_FORCE_RELOCATION): Define.
1753         (TC_FORCE_RELOCATION_LOCAL): Define.
1754         * config/tc-mn10300.c (mn10300_fix_adjustable): Adjust.
1755
1756 2007-01-12  Alan Modra  <amodra@bigpond.net.au>
1757
1758         * input-file.c (input_file_open): Check fgets return.
1759
1760 2007-01-11  Paul Brook  <paul@codesourcery.com>
1761
1762         * config/tc-arm.c (do_t_add_sub): Use Rd and Rs.
1763
1764 2007-01-11  Nick Clifton  <nickc@redhat.com>
1765
1766         PR gas/3707
1767         * config/tc-arm.c (md_begin): Cope with an NULL mcpu_fpu_opt
1768         variable.
1769
1770         * config/tc-mcore.c (md_number_to_chars): Use
1771         number_to_chars_{big|little}endian.
1772
1773 2007-01-08  Kazu Hirata  <kazu@codesourcery.com>
1774
1775         * config/tc-m68k.c (m68k_archs, m68k_cpus): Treat Fido as an
1776         architecture by itself.
1777         (m68k_ip): Don't issue a warning for tbl instructions on fido.
1778         (m68k_elf_final_processing): Treat Fido as an architecture by
1779         itself.
1780
1781 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
1782
1783         * configure.tgt: Renamed target x86_64-*-mingw64 to x86_64-*-mingw*
1784
1785 2007-01-05  H.J. Lu  <hongjiu.lu@intel.com>
1786
1787         * config/tc-i386.c (set_intel_syntax): Update set_intel_syntax
1788         depending on allow_naked_reg.
1789
1790 2007-01-04  Paul Brook  <paul@codesourcery.com>
1791
1792         * config/tc-arm.c (do_cpsi): Set mmod bit for 2 argument form.
1793
1794 2007-01-04  H.J. Lu  <hongjiu.lu@intel.com>
1795
1796         PR gas/3830
1797         * config/tc-i386.c (register_prefix): New.
1798         (set_intel_syntax): Set set_intel_syntax to "" if register
1799         prefix isn't needed.
1800         (check_byte_reg): Use register_prefix for error message.
1801         (check_long_reg): Likewise.
1802         (check_qword_reg): Likewise.
1803         (check_word_reg): Likewise.
1804
1805 2007-01-04  Julian Brown  <julian@codesourcery.com>
1806
1807         * config/tc-arm.c (do_neon_shl_imm): Swap rN, rM.
1808         (do_neon_qshl_imm): Likewise.
1809         (do_neon_rshl): New function. Handle rounding variants of
1810         v{q}shl-by-register.
1811         (insns): Use do_neon_rshl for vrshl, vqrshl.
1812
1813 2007-01-04  Paul Brook  <paul@codesourcery.com>
1814
1815         * config/tc-arm.c (NEON_ENC_TAB): Fix encoding of vclt, vcle, vaclt
1816         and vacle.
1817
1818 2007-01-03  H.J. Lu  <hongjiu.lu@intel.com>
1819
1820         * config/tc-i386.c (swap_operands): Remove branches.
1821
1822 2007-01-03  H.J. Lu  <hongjiu.lu@intel.com>
1823
1824         * config/tc-i386.c: Update copyright year.
1825         * config/tc-i386.h: Likewise.
1826
1827 2007-01-03  H.J. Lu  <hongjiu.lu@intel.com>
1828
1829         * config/tc-i386.c (smallest_imm_type): Return unsigned int
1830         instead of int.
1831
1832 2007-01-03  H.J. Lu  <hongjiu.lu@intel.com>
1833
1834         * config/tc-i386.c: Convert to ISO C90 formatting
1835         * config/tc-i386.h: Likewise.
1836
1837 2007-01-03  David Daney  <ddaney@avtrex.com>
1838
1839         * config/tc-mips.c (md_show_usage):  Clean up -mno-shared
1840         documentation.
1841
1842 For older changes see ChangeLog-2006
1843 \f
1844 Local Variables:
1845 mode: change-log
1846 left-margin: 8
1847 fill-column: 74
1848 version-control: never
1849 End: