bfd
[binutils.git] / gas / ChangeLog
blobb8242a371c1fc345f38258c8b8d0992485051d46
1 2009-09-07  Tristan Gingold  <gingold@adacore.com>
3         * po/POTFILES.in: Regenerate.
4         * po/gas.pot: Regenerate.
6         * Makefile.am (TARG_ENV_CFILES): New variable.  Set to te-vms.c
7         (POTFILES): Add $(TARG_ENV_CFILES) in definition.
8         (EXTRA_as_new_SOURCES): Ditto.
9         * Makefile: Regenerate.
10         * acinclude.m4 (BFD_HAVE_TIME_TYPE_MEMBER,
11         BFD_HAVE_SYS_STAT_TYPE_MEMBER): New macro created from bfd/bfd.m4.
12         * configure.in: Add Tests for tm_gmtoff, st_mtim.tv_sec and
13         st_mtim.tv_nsec (from bfd/configure.in).  Check for time.h and
14         sys/stat.h headers.
15         Add te-vms.o in extra_objects if te_file is vms.
16         * configure: Regenerate.
17         * config.in: Regenerate.
18         * config/te-vms.c: New file, from bfd/vmsutil.c
19         (vms_dwarf2_file_time_name, vms_dwarf2_file_size_name)
20         (vms_dwarf2_file_name): New functions.
21         (vms_file_stats_name): Make it static, add a dirname parameter to
22         locally create the full pathname.
23         * config/te-vms.h: Add a copyright header.
24         Declare the above functions.
25         (DWARF2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILE_NAME): Use
26         the above functions in the definition.
27         * makefile.vms (OBJS): Add te-vms.obj.
28         (te-vms.obj): Create a specific target.
29         * configure.com: Create targ-env.h using a per target value.
30         Compile te-vms.c for ia64.
32 2009-09-05  Jie Zhang  <jie.zhang@analog.com>
34         * doc/as.texinfo: Document that Blackfin GAS does not
35         accept SYMBOL = VALUE.
37 2009-09-05  Martin Thuresson  <martin@mtme.org>
39         * config/tc-arc.c (struct syntax_classes): Rename member class
40         to s_class. (arc_extinst): Rename variable class to
41         s_class. Update code to use renamed members.
42         * config/tc-mips.c (insn_uses_reg): Rename argument class to
43         regclass.
44         * config/tc-ppc.c (ppc_csect, ppc_change_csect, ppc_function)
45         (ppc_tc, ppc_is_toc_sym, ppc_symbol_new_hook, ppc_frob_label)
46         (ppc_fix_adjustable, md_apply_fix): Update code to use renamed
47         members.
48         * config/tc-ppc.h (struct ppc_tc_sy): Change name of member
49         from class to symbol_class. (OBJ_COPY_SYMBOL_ATTRIBUTES): Update
50         code to use renamed members.
51         * config/tc-score.c (s3_adjust_paritybit): Rename argument
52         class to i_class.
53         * config/tc-score7.c (s7_adjust_paritybit): Rename argument
54         class to i_class.
56 2009-09-04  Tristan Gingold  <gingold@adacore.com>
58         * NEWS: Add marker for 2.20.
60 2009-09-04  Jie Zhang  <jie.zhang@analog.com>
62         * config/bfin-parse.y (asm_1): Implement HLT instruction.
63         Fix comments for DBGA, DBGAH and DBGAL.
64         * config/tc-bfin.c (bfin_gen_pseudodbg_assert): Change according
65         to the new encoding of DBGA, DBGAH, and DBGAL.
67 2009-09-04  Jie Zhang  <jie.zhang@analog.com>
69         * doc/all.texi: Replace BFIN with Blackfin.
70         * doc/as.texinfo: Likewise.
71         * doc/c-bfin.texi: Likewise.
72         * doc/asconfig.texi: Likewise.
74         * doc/c-bfin.texi: Update -mcpu= option with bf512, bf514,
75         bf516 and bf518.
77 2009-09-04  Jie Zhang  <jie.zhang@analog.com>
79         * Makefile.am (bfin-parse.o): Remove bfin-parse.h from
80         the prerequisite. Add $(srcdir)/config/bfin-aux.h to the
81         prerequisite.
82         (bfin-defs.h, $(srcdir)/config/bfin-defs.h): Rename to ...
83         (bfin-parse.h, $(srcdir)/config/bfin-parse.h): ... these. 
84         (bfin-lex.o): Add bfin-parse.h and $(srcdir)/config/bfin-defs.h
85         to the prerequisite.
86         * Makefile.in: Regenerate.
88 2009-09-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
90         * Makefile.am (itbl-lex.o): Depend on itbl-parse.h.
91         (itbl-ops.o, itbl-tops.o): Likewise.
92         (itbl-parse.h): Use separate rule.
93         * Makefile.in: Regenerate.
95 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
97         * config/tc-bfin.c (md_parse_option): Call as_fatal for bad
98         -mcpu= option.
100 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
102         * config/bfin-lex.l: Remove V as STATUS_REG.
104 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
106         * config/bfin-parse.y: Remove trailing whitespace.
107         (ccstat): Indent.
108         * config/tc-bfin.c (struct bfin_reg_entry): Remove.
109         (bfin_reg_info[]): Remove.
111 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
113         * config/bfin-defs.h (F_REG_ALL): Remove macro.
114         (F_REG_HIGH): Redefine.
115         (F_REG_NONE): New macro.
116         (F_REG_LOW): New macro.
117         (REG_CLASS): Enclose macro argument in parentheses when used.
118         (REG_EVEN): Likewise.
119         (IS_H): Use flags.
120         (IS_HCOMPL): Use flags.
121         * config/bfin-lex.l (SP.L, SP.H, FP.L, FP.H): Set flags.
122         (parse_reg): Set flags.
123         (parse_halfreg): Set flags.
125 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
127         * config/bfin-parse.y (gen_multi_instr_1): Check anomaly
128         05000074 only when both slot1 and slot2 are filled.
130 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
132         * config/tc-bfin.c (md_assemble): Bump line counters if there is
133         EOL in the instruction.
135 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
137         * config/bfin-defs.h (IS_GENREG): Define.
138         (IS_DAGREG): Define.
139         (IS_SYSREG): Define.
140         * config/bfin-parse.y (asm_1): Check illegal register move
141         instructions.
143 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
145         * config/bfin-parse.y (asm_1): Fix a typo.
147 2009-09-03  Jie Zhang  <jie.zhang@analog.com>
149         * config/bfin-parse.y (asm_1): Add LOOP_BEGIN and LOOP_END.
150         * config/tc-bfin.c (bfin_start_line_hook): Remove.
151         (bfin_loop_beginend): New.
152         * config/tc-bfin.h (bfin_start_line_hook): Don't declare.
153         (md_start_line_hook): Don't define.
154         * config/bfin-aux.h (bfin_loop_beginend): Declare.
156 2009-09-03  Tristan Gingold  <gingold@adacore.com>
158         * config/tc-ia64.c (ia64_vms_note): Use lbasename instead of basename.
159         Call xstrdup on the result and free the buffer after use.
161 2009-09-03  Tristan Gingold  <gingold@adacore.com>
163         * as.h (__PRETTY_FUNCTION__): Use the same definition as bfd/libbfd.h.
165 2009-09-02  Jie Zhang  <jie.zhang@analog.com>
167         * config/bfin-parse.y (value_match): Use int instead of long.
169         From  Michael Frysinger  <michael.frysinger@analog.com>
170         * config/bfin-defs.h (Expr_Node_Value): Declare the i_value
171         member as long long.
173 2009-09-02  Jie Zhang  <jie.zhang@analog.com>
175         From  Bernd Schmidt  <bernd.schmidt@analog.com>
176         * config/gas/bfin-parse.y (asm_1): Clean up and unify error handling
177         for load and store insns.
178         (neg_value): Delete function.
180 2009-09-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
182         * Makefile.am (m68k-parse.o, bfin-lex.o, itbl-lex.o, itbl-parse.o):
183         Supply correct source file name for generated files which may be
184         in $(srcdir).
185         * Makefile.in: Regenerate.
187 2009-09-01  H.J. Lu  <hongjiu.lu@intel.com>
189         * version.c (parse_args): Change to "Copyright 2009".
191 2009-09-01  Tristan Gingold  <gingold@adacore.com>
193         * makefile.vms: Adjust include pathes.  Remove useless vaxctrl
194         library.
195         * configure.com: Ported to Itanium VMS.  Create build.com DCL script.
196         Make edit silent.
198 2009-09-01  Jie Zhang  <jie.zhang@analog.com>
200         * config/bfin-parse.y (asm_1): Only PREG and DREG are allowed
201         in comparison.
203 2009-09-01  Jie Zhang  <jie.zhang@analog.com>
205         2007-09-28  Bernd Schmidt  <bernd.schmidt@analog.com>
206         * config/tc-bfin.c (bfin_fix_adjustable): Partially revert the
207         2007-08-23 change; BFD_RELOC_BFIN_GOT is not adjustable.
209         2007-08-23  Jie Zhang  <jie.zhang@analog.com>
210         * config/tc-bfin.c (bfin_fix_adjustable): Adjust
211         BFD_RELOC_BFIN_GOT, BFD_RELOC_BFIN_GOT17M4 and
212         BFD_RELOC_BFIN_FUNCDESC_GOT17M4.
214 2009-09-01  Jie Zhang  <jie.zhang@analog.com>
216         * read.c (TC_START_LABEL): Add a new argument.
217         (read_a_source_file): Pass the beginning of the symbol through
218         the new argument of TC_START_LABEL.
219         * config/tc-arm.h (TC_START_LABEL): Add a new argument.
220         * config/tc-bfin.c (bfin_start_label): Only search '(' and '['
221         from the beginning of the symbol.
222         * config/tc-bfin.h (TC_START_LABEL): Add the new argument.
223         * config/tc-d30v.h (TC_START_LABEL): Likewise.
224         * config/tc-fr30.h (TC_START_LABEL): Likewise.
225         * config/tc-m32c.h (TC_START_LABEL): Likewise.
226         * config/tc-m32r.h (TC_START_LABEL): Likewise.
227         * config/tc-mep.h (TC_START_LABEL): Likewise.
229 2009-08-31  H.J. Lu  <hongjiu.lu@intel.com>
231         PR gas/10570
232         * write.c (write_object_file): Revert the accidental change
233         made in revision 1.124 on 2009-08-17.
235 2009-08-31  Jan Beulich  <jbeulich@novell.com>
237         * config/obj-elf.c (obj_elf_change_section): Set default type
238         by calling bfd_elf_get_default_section_type.
240 2009-08-31  Jie Zhang  <jie.zhang@analog.com>
242         * config/bfin-aux.h: Change format from DOS to UNIX.
244 2009-08-29  Martin Thuresson  <martin@mtme.org>
246         * config/tc-arm.c (struct asm_cond, struct asm_psr, struct
247         asm_barrier_opt): Change member template to
248         template_name. (md_begin): Update code to reflect new member
249         names.
250         * config/tc-i386.c (struct templates, struct _i386_insn)
251         (match_template, cpu_flags_match, match_reg_size, match_mem_size)
252         (operand_size_match, md_begin, i386_print_statistics, pi)
253         (build_vex_prefix, md_assemble, parse_insn, optimize_imm)
254         (optimize_disp): Updated code to use new names. (parse_insn):
255         Added casts.
256         * config/tc-ia64.c (dot_template, emit_one_bundle): Updated
257         code to use new names.
258         * config/tc-score.c (struct s3_asm_opcode): Renamed member
259         template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
260         s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
261         use new names.
262         * config/tc-score7.c (struct s7_asm_opcode): Renamed member
263         template to template_name. (s7_parse_16_32_inst,
264         s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
265         use new names.
266         * config/tc-tic30.c (md_begin, struct tic30_insn)
267         (md_assemble): Update code to use new names.
268         * config/tc-tic54x.c (struct _tic54x_insn, md_begin)
269         (optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
270         Update code to use new names.
271         * config/tc-arm.c (insert_reg_alias): Rename variable new to
272         new_reg.
273         * config/tc-dlx.c (parse_operand): Rename variable new to
274         new_pos.
275         * config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
276         new to newr.
277         * config/tc-mcore.c (parse_exp, parse_imm): Rename variable
278         new to new_pointer.
279         * config/tc-microblaze.c (parse_exp, parse_imm, check_got):
280         Change name from new to new_pointer.
281         * config/tc-or32.c (parse_operand): Rename variable new to
282         new_pointer.
283         * config/tc-pdp11.c (md_assemble): Rename variable new to
284         new_pointer.
285         * config/tc-pj.c (alias): Change argument new to new_name.
286         * config/tc-score.c (s3_build_score_ops_hsh): Rename variable
287         new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
288         new to new_i2n. (s3_convert): Rename variables old and new to
289         r_old and r_new.
290         * config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
291         new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
292         new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
293         variables old and new to r_old and r_new.
294         * config/tc-sh.c (parse_exp): Rename variable new to
295         new_pointer.
296         * config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
297         new_pointer.
298         * config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
299         to new_pointer.
300         * config/tc-z8k.c (parse_exp): Rename variable new to
301         new_pointer.
302         * listing.c (listing_newline): Rename variable new to new_i.
304 2009-08-29  Matt Fleming  <matt@console-pimps.org>
306         * config/tc-sh.c (md_apply_fix): Extend sign of the offset value
307         for 64-bit host.
309 2009-08-28  H.J. Lu  <hongjiu.lu@intel.com>
311         * config/tc-i386.c (cpu_arch): Use PROCESSOR_L1OM on "l1om".
312         (i386_align_code): Handle PROCESSOR_L1OM.
313         (check_cpu_arch_compatible): Fix a typo in comments.
314         (set_cpu_arch): Check cpu_arch_isa instead of
315         cpu_arch_isa_flags.bitfield.cpul1om.
316         (i386_mach): Likewise.
317         (i386_target_format): Likewise.
319         * config/tc-i386.h (processor_type): Add PROCESSOR_L1OM.
321 2009-08-26  DJ Delorie  <dj@redhat.com>
323         * config/tc-mep.c (md_pcrel_from_section): Handle any other
324         forced-relocation cases.
326 2009-08-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
328         * Makefile.am (TARGET_CPU_CFILES): Add config/tc-moxie.c.
329         * config/tc-moxie.c (md_assemble): Fix typos in strings.  Fix
330         syntax error.
331         * Makefile.in: Regenerate.
332         * po/POTFILES.in: Likewise.
333         * po/gas.pot: Likewise.
335 2009-08-26  Nick Clifton  <nickc@redhat.com>
337         * config/obj-coff-seh.c (seh_arm_write_pdata): Test for
338         seh_ctx_root being NULL.
340 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
342         * Makefile.am (am__skiplex, am__skipyacc): New.
343         * Makefile.in: Regenerate.
345 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
347         * Makefile.am (YFLAGS): Remove, not needed any more.
348         (AM_CPPFLAGS): Renamed from ...
349         (INCLUDES): ... this.
350         * Makefile.in: Regenerate.
352         * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8 cygnus, add 1.11,
353         foreign and no-dist.
354         (all): Remove now-unneeded dependency upon info.
355         (DIST_SUBDIRS, MKDEP, DEP_INCLUDES, DEP_FLAGS, CLEANFILES)
356         (DEP_FILE_DEPS): Remove variables.
357         (OBJ_FORMAT_CFILES): Add config/obj-multi.c.
358         (OBJ_FORMAT_HFILES): Add config/obj-multi.h.
359         ($(OBJS), ecoff.o): Remove now-unneeded manual dependencies.
360         ($(TARG_CPU_O), $(ATOF_TARG_O), obj-aout.o, obj-coff.o obj-ecoff.o)
361         (obj-elf.o obj-evax.o, obj-fdpicelf.o, obj-multi.o, obj-som.o)
362         (e-mipself.o, e-mipsecoff.o, e-i386aout.o, e-i386coff.o, e-i386elf.o)
363         (e-crisaout.o, e-criself.o, tc-i386.o, xtensa-relax.o): Remove
364         now-unneeded rules.
365         (EXTRA_as_new_SOURCES): Add $(CFILES), $(HFILES), $(TARGET_CPU_CFILES),
366         $(TARGET_CPU_HFILES), $(OBJ_FORMAT_CFILES), $(OBJ_FORMAT_HFILES),
367         $(CONFIG_ATOF_CFILES), $(MULTI_CFILES), so their dependency fragments
368         are picked up in the Makefile.
369         (itbl-lex.c, itbl-ops.o): Remove manual dependencies.
370         (m68k-parse.o, bfin-lex.o, itbl-lex.o, itbl-parse.o, itbl-tops.o)
371         (itbl-test.o): Rewrite using automake-style dependency
372         tracking rules; only list the dependency upon the primary source
373         file, but no included headers.
374         (DEP, DEP1, DEPTC, DEPOBJ, DEP2, dep.sed, dep, dep-in, dep-am):
375         Remove.
376         (mkdep section): Remove.
377         * Makefile.in: Regenerate.
378         * gas/po/POTFILES.in, gas/po/gas.pot: Regenerate.
380         * Makefile.am (install-pdf, install-pdf-recursive, install-html)
381         (install-html-recursive): Remove.
382         * Makefile.in: Regenerate.
383         * doc/Makefile.am (pdf__strip_dir, install-pdf, install-pdf-am)
384         (html__strip_dir, install-html, install-html-am): Remove.
385         * doc/Makefile.in: Regenerate.
387         * Makefile.in: Regenerate.
388         * aclocal.m4: Likewise.
389         * config.in: Likewise.
390         * configure: Likewise.
391         * doc/Makefile.in: Likewise.
393 2009-08-21  Sterling Augustine  <sterling@jaw.hq.tensilica.com>
395         * config/tc-xtensa.c (config_max_slots): New global variable.
396         (md_begin): Set config_max_slots.
397         (total_frag_text_expansion): Use config_max_slots instead of
398         MAX_SLOTS.
399         (xg_init_vinsn): Likewise.
400         (xg_clear_vinsn): Likewise.
401         (xg_free_vinsn): Likewise.
403 2009-08-20  Sterling Augustine  <sterling@jaw.hq.tensilica.com>
405         * config/tc-xtensa.c (xg_copy_vinsn): New function.
406         (finish_vinsn): Call xg_copy_vinsn.
408 2009-08-19  Sterling Augustine  <sterling@tensilica.com>
410         * config/tc-xtensa.h (xtensa_frag_data): Rename unused field fr_prev
411         to no_transform_end.
412         * config/tc-xtensa.c (xtensa_mark_difference_of_two_symbols): Set
413         and use no_transform_end.
415 2009-08-18  Kai Tietz  <kai.tietz@onevision.com>
417         * config/obj-coff-seh.c: Add copyright notice.
418         * config/obj-coff-seh.h: Add copyright notice.
419         Add x64 specific macros from coff/pe.h header.
421 2009-08-18  Sterling Augustine  <sterling@tensilica.com>
423         * config/tc-xtensa.c (xtensa_create_xproperty_segments): Use
424         sizeof instead of hard-coded value.
425         (add_xt_block_frags): Remove unused local variable.
426         (frag_flags_to_number): Change return type to flagword.  Remove
427         unused local variable.
429 2009-08-17  Sterling Augustine  <sterling@tensilica.com>
431         * config/tc-xtensa.c (xtensa_frob_label): move call to 
432         do_align_targets to set frag_type only.
434 2009-08-17  Kai Tietz  <kai.tietz@onevision.com>
436         * config/obj-coff-seh.c: New file.
437         * config/obj-coff-seh.h: Likewise.
438         * config/obj-coff.c (obj-coff-seh.c): Add include.
439         (coff_pseudo_table): Add new .seh... commands.
440         * config/obj-coff.h (obj_coff_seh_do_final): Add new
441         function prototype.
442         (obj_coff_generate_pdata): New obj-coff hook.
443         * gas/write.c (size_seg): Avoid sizing of already sized
444         sections.
445         (write_object_file): Call conditional hook
446         objc_coff_generate_pdata.
447         * Makefile.am: Add dependencies for new files.
448         * Makefile.in: Regenerated.
450 2009-08-17  Nick Clifton  <nickc@redhat.com>
452         * config/tc-microblaze.c: Include safe-ctype.h instad of ctype.h.
453         (parse_reg): Use safe-ctype.h macros.
454         (parse_exp): Likewise.
455         (md_assemble): Likewise.
457 2009-08-11  DJ Delorie  <dj@redhat.com>
459         * config/tc-mep.c (md_estimate_size_before_relax): Handle weak
460         symbols correctly.
461         (md_convert_frag): Likewise.
462         (md_pcrel_from_section): Likewise.
463         (mep_force_relocation): Likewise.
465 2009-08-11  Bernd Schmidt  <bernd.schmidt@analog.com>
467         * config/bfin-parse.y (gen_multi_instr_1): New function.
468         (asm): Use it instead of bfin_gen_multi_instr.
469         (error): Add a format string when calling as_bad.
470         * config/bfin-defs.h (insn_regmask): Declare.
471         * config/tc-bfin.c (DREG_MASK, DREGH_MASK, DREGL_MASK, IREG_MASK): New
472         macros.
473         (decode_ProgCtrl_0, decode_LDSTpmod_0, decode_dagMODim_0,
474         decode_dagMODik_0, decode_dspLDST_0, decode_LDST_0, decode_LDSTiiFP_0,
475         decode_LDSTii_0, decode_dsp32mac_0, decode_dsp32mult_0,
476         decode_dsp32alu_0, decode_dsp32shift_0, decode_dsp32shitimm_0,
477         insn_regmask): New functions.
479         From Jie Zhang  <jie.zhang@analog.com>
480         * config/tc-bfin.h (bfin_anomaly_checks): Declare.
481         (AC_05000074): Define.
482         (ENABLE_AC_05000074): Define.
483         * config/tc-bfin.c (enum bfin_cpu_type): New.
484         (bfin_cpu_t): Typedef.
485         (bfin_cpu_type): Define.
486         (bfin_si_revision): Define.
487         (bfin_anomaly_checks): Define.
488         (struct bfin_cpu): New.
489         (bfin_cpus[]): New. (struct bfin_cpu_isa): Define.
490         (bfin_isa): New global variable.
491         (OPTION_MCPU): Define.
492         (md_longopts[]): Add -mcpu option.
493         (md_parse_option): Deal with -mcpu option and initialize
494         bfin_anomaly_checks.
495         * doc/c-bfin.texi: Rename BFIN to Blackfin throughout.  Document
496         -mcpu option.
497         * config/bfin-parse.y (gen_multi_instr_1): Check anomaly
498         05000074.
500 2009-08-11  Mike Frysinger  <vapier@gentoo.org>
502         * config/bfin-parse.y (binary): Change "compiler" to "assembler".
503         (unary): Likewise.
505 2009-08-11  Nick Clifton  <nickc@redhat.com>
507         PR 10443
508         * config/tc-arm.c (do_t_mov_cmp): Do not silently ignore shifted
509         operands.
511 2009-08-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
513         Fix compilation of i386-*-go32.
514         * config/tc-i386.c (i386_target_format <TE_GO32>): New.
515         (i386_target_format <OBJ_MAYBE_COFF>): Compile only if !TE_GO32.
516         * config/te-go32.h (TARGET_FORMAT): Move the definition ...
517         * config/tc-i386.h <!i386_target_format>: ... here.
519 2009-08-10  Daniel Gutson  <dgutson@codesourcery.com>
521         PR gas/10479
522         * config/tc-arm.c (do_t_add_sub_w): Fixed constraints.
524 2009-08-07  Daniel Jacobowitz  <dan@codesourcery.com>
526         * config/tc-arm.c (marked_pr_dependency, mapstate): Delete global
527         variables.
528         (mapping_state): Use the section's mapstate.
529         (mapping_state_2): Likewise.  Skip special sections.
530         (s_arm_unwind_fnend): Use the section's marked_pr_dependency.
531         (arm_elf_change_section): Do not set deleted globals.
532         * config/tc-arm.h (struct arm_segment_info_type): Document
533         marked_pr_dependency.
535 2009-08-07  Michael Eager <eager@eagercon.com>
537         * NEWS: Mention MicroBlaze support.
539 2009-08-06  Michael Eager <eager@eagercon.com>
541         * Makefile.am: add microblaze to CPU_TYPES, config/tc-microblaze.c to
542         TARGET_CPU_CFILES, config/tc-microblaze.h to TARGET_CPU_HFILES, add 
543         DEP_microblaze_elf target.
544         * Makefile.in: Regenerate.
545         * config/tc-microblaze.c: Add MicroBlaze assembler.
546         * config/tc-microblaze.h: Add header for tc-microblaze.c.
547         * configure.in: Add microblaze target.
548         * configure: Regenerate.
549         * configure.tgt: Same. 
550         * doc/Makefile.am: Add c-microblaze.texi to CPU_DOCS.
551         * doc/Makefile.in: Same.
552         * doc/all.texi: Set MICROBLAZE.
553         * doc/as.texinfo: Add MicroBlaze doc links.
554         * doc/c-microblaze.texi: New MicroBlaze docs.
556 2009-08-06  Nick Clifton  <nickc@redhat.com>
558         * config/tc-arm.c (md_assemble): Call mapping_state from inside a
559         block in case it is a null macro.
561 2009-08-05  Chao-ying Fu  <fu@mips.com>
563         * config/tc-mips.c (MIPS_JALR_HINT_P): New define. For IRIX, it is
564         true for new abi.  For non-IRIX targets, it is always true.
565         (macro_build_jalr): If MIPS_JALR_HINT_P, emit BFD_RELOC_MIPS_JALR.
567 2009-08-05  Eric B. Weddington  <eric.weddington@atmel.com>
569         * config/tc-avr.c (mcu_types): Add attiny2313a, attiny4313, attiny261a,
570         attiny861a, atmega644pa, attiny24a, attiny44a.
571         * doc/c-avr.texi: Likewise.
573 2009-08-04  Sandra Loosemore  <sandra@codesourcery.com>
575         * doc/c-mips.texi (MIPS Opts): List 1004K options for -march.
576         * config/tc-mips.c (mips_cpu_info_table): Add 1004K cores.
578 2009-08-04  Nathan Sidwell  <nathan@codesourcery.com>
580         * config/tc-arm.c (my_get_expression): Detect missing expressions.
582 2009-08-02  Eric B. Weddington  <eric.weddington@atmel.com>
584         * config/tc-avr.c (mcu_types): Add atmega8m1, atmega8c1, atmega16c1.
585         * doc/c-avr.texi: Likewise.
587 2009-08-01  Eric B. Weddington  <eric.weddington@atmel.com>
589         * config/tc-avr.c (mcu_types): Add atmega8u2, atmega16u2, atmega32u2.
590         * doc/c-avr.texi: Likewise.
592 2009-07-31  Daniel Gutson  <dgutson@codesourcery.com>
593             Daniel Jacobowitz  <dan@codesourcery.com>
595         * config/obj-elf.c (obj_elf_ident): Notify section change to the hook.
596         * config/tc-arm.c (make_mapping_symbol): New function, from
597         mapping_state.  Save mapping symbols in the frag.
598         (insert_data_mapping_symbol): New.
599         (mapping_state): Use make_mapping_symbol, improve state transitions.
600         (mapping_state_2): New.  Provide dummy definition.
601         (opcode_select): Do not call mapping_state.
602         (s_bss): Call md_elf_section_change_hook instead of mapping_state.
603         (output_inst): Update use of tc_frag_data.
604         (new_automatic_it_block): Call mapping_state before emitting the
605         IT instruction.
606         (md_assemble): Move mapping_state to just before outputting the
607         new instruction.
608         (arm_handle_align): Update use of tc_frag_data.
609         Call insert_data_mapping_symbol.
610         (arm_init_frag): Update use of tc_frag_data.  Call
611         mapping_state_2.
612         (arm_elf_change_section): Always update the mapping symbol FSM state.
613         (check_mapping_symbols): New function.
614         (arm_adjust_symtab): Use check_mapping_symbols.
615         * config/tc-arm.h (struct arm_frag_type): New.
616         (TC_FRAG_TYPE): Change to struct arm_frag_type.
617         (TC_FRAG_INIT): Pass max_chars.
618         (arm_init_frag): Update prototype.
620 2009-07-31  Anthony Green  <green@moxielogic.com>
622         * configure.tgt (generic_target): Add moxie-uclinux support.
624 2009-07-30  Nick Clifton  <nickc@redhat.com>
626         * doc/c-arm.texi (ARM-Instruction-Set): New node.  Documents the
627         different syntaxes support by the ARM port.
628         (ARM Directives): Add entry for .syntax.
630         * doc/c-mips.texi (MIPS insn): Fix typo.
632 2009-07-29  Alan Modra  <amodra@bigpond.net.au>
634         PR ld/10269
635         * symbols.c (S_FORCE_RELOC): True for BSF_GNU_INDIRECT_FUNCTION.
636         * config/tc-i386.c: Revert 2009-06-13 change.
637         * config/tc-i386.h: Likewise.
639 2009-07-28  Jan Beulich  <jbeulich@novell.com>
641         * expr.c (op_rank): Specify size. Remove O_md* initializers.
643 2009-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
645         * config/tc-m68k.c (mcf5221x_ctrl): New.
646         (m68k_cpu): Add line for MCF5221x.
648 2009-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
650         * config/tc-m68k.c (mcf52235_ctrl): Remove non-existent CACR, ACR[01].
651         (mcf53017_ctrl): Fix RAMBAR.
653 2009-07-27  Jan Beulich  <jbeulich@novell.com>
655         * obj-elf.c (elf_file_symbol): Replace symbol name set up by
656         symbol_new() with the passed in, unmodified one.
658 2009-07-27  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
660         * config/tc-cr16.c (md_apply_fix): Put the addend value alone in to
661         object file without symbol values.
662         (tc_gen_reloc): For local symbols resolved or its absolute symbol,
663         then set the relocation type as NULL. 
665 2009-07-25  H.J. Lu  <hongjiu.lu@intel.com>
667         * config/tc-i386.c (cpu_arch): Add l1om.
668         (check_cpu_arch_compatible): New.
669         (set_cpu_arch): Use it.
670         (i386_arch): New.
671         (i386_mach): Return bfd_mach_l1om for Intel L1OM.
672         (md_show_usage): Display l1om.
673         (i386_target_format): Return ELF_TARGET_L1OM_FORMAT if
674         cpu_arch_isa_flags.bitfield.cpul1om is set.
676         * config/tc-i386.h (TARGET_ARCH): Use (i386_arch ()).
677         (i386_arch): New.
678         (ELF_TARGET_L1OM_FORMAT): Likewise.
680         * doc/c-i386.texi: Document l1om.
682 2009-07-24  Roland McGrath  <roland@redhat.com>
683             Mark Wielaard  <mjw@redhat.com>
685         * config/obj-elf.c (obj_elf_ident): Set SEC_MERGE | SEC_STRINGS
686         flags on .comment section.
688 2009-07-24  Trevor Smigiel  <Trevor_Smigiel@playstation.sony.com>
689             Alan Modra  <amodra@bigpond.net.au>
691         * config/tc-spu.c (md_apply_fix): Handle SPU_ADD_PIC.
692         * config/tc-spu.h (tc_fix_adjustable): Don't adjust for SPU_ADD_PIC.
693         (TC_FORCE_RELOCATION): Emit relocs for SPU_ADD_PIC.
695 2009-07-24  Jan Beulich  <jbeulich@novell.com>
697         * tc-i386.c (cpu_arch): Add .8087, .287, .387, .no87, .nommx,
698         .nosse, and .noavx.
699         (cpu_flags_and_not): New.
700         (set_cpu_arch): Check whether sub-architecture specified is a
701         feature disable.
702         (md_parse_option): Likewise.
703         (parse_real_register): Don't return floating point register
704         when x87 functionality is disabled.
705         (md_show_usage): Add new sub-options.
706         * doc/c-i386.texi: Update with new command line sub-options.
708 2009-07-24  Nick Clifton  <nickc@redhat.com>
710         PR 10437
711         * config/tc-alpha.c: Fix up uses of gas printf like functions so
712         that the format string is a constant string.  Add translation
713         support to message strings.
714         * config/tc-arc.c: Likewise.
715         * config/tc-arm.c: Likewise.
716         * config/tc-cris.c: Likewise.
717         * config/tc-fr30.c: Likewise.
718         * config/tc-frv.c: Likewise.
719         * config/tc-h8300.c: Likewise.
720         * config/tc-hppa.c: Likewise.
721         * config/tc-i370.c: Likewise.
722         * config/tc-i960.c: Likewise.
723         * config/tc-ia64.c: Likewise.
724         * config/tc-m32r.c: Likewise.
725         * config/tc-mep.c: Likewise.
726         * config/tc-mips.c: Likewise.
727         * config/tc-moxie.c: Likewise.
728         * config/tc-msp430.c: Likewise.
729         * config/tc-openrisc.c: Likewise.
730         * config/tc-pdp11.c: Likewise.
731         * config/tc-pj.c: Likewise.
732         * config/tc-s390.c: Likewise.
733         * config/tc-sh.c: Likewise.
734         * config/tc-sh64.c: Likewise.
735         * config/tc-sparc.c: Likewise.
736         * config/tc-spu.c: Likewise.
737         * config/tc-tic30.c: Likewise.
738         * config/tc-tic4x.c: Likewise.
739         * config/tc-tic54x.c: Likewise.
740         * config/tc-v850.c: Likewise.
741         * config/tc-xc16x.c: Likewise.
742         * config/tc-xstormy16.c: Likewise.
743         * config/tc-z80.c: Likewise.
744         * config/tc-z8k.c: Likewise.
745         * config/atof-ieee.c: Add translation support to as_warn
746         messages.
747         * config/obj-coff.c: Likewise.
749 2009-07-23  Ulrich Drepper  <drepper@redhat.com>
751         * config/obj-elf.c (obj_elf_type): Add code to support a type of
752         gnu_unique_object.
753         * doc/as.texinfo: Document new feature of .type directive.
754         * NEWS: Mention support for gnu_unique_object symbol type.
756 2009-07-23  Nick Clifton  <nickc@redhat.com>
758         PR binutils/10379
759         * doc/c-mips.texi (MIPS insn): Document the special behaviour of
760         the .global directive for MIPS ports.
762 2009-07-21  H.J. Lu  <hongjiu.lu@intel.com>
764         PR gas/10420
765         * config/tc-i386.c (i386_align_code): Tune for 32bit nops in
766         64bit.
767         (i386_target_format): Set cpu_arch_isa_flags.bitfield.cpulm
768         for 64bit.
770 2009-07-17  H.J. Lu  <hongjiu.lu@intel.com>
772         * config/tc-i386.c (md_assemble): Update operand types.
773         (update_imm): Updated.
774         (finalize_imm): Update the first 2 immediate operands only
775         for instructions with 2 operands or more.
777 2009-07-17  H.J. Lu  <hongjiu.lu@intel.com>
779         * config/tc-i386.c (md_assemble): Check implicit registers
780         only for instructions with 3 operands or less.
782 2009-07-17  Nick Clifton  <nickc@redhat.com>
784         * config/tc-avr.c (md_apply_fix): Cast fixup reloc type to avoid
785         compile time warning.
787 2009-07-16  H.J. Lu  <hongjiu.lu@intel.com>
789         * config/tc-i386.c (md_assemble): Only check i.operands for AX.
790         (md_estimate_size_before_relax): Don't relax IFUNC symbols.
792 2009-07-16  Nathan Sidwell  <nathan@codesourcery.com>
794         * config/tc-arm.c (md_apply_fix <BFD_RELOC_ARM_TARGET2>): Write
795         the offset for REL targets here.
797 2009-07-15  Kai Tietz  <kai.tietz@onevision.com>
799         * listing.c (print_source): Initialize cache by NULL.
801 2009-07-15  Daniel Gutson  <dgutson@codesourcery.com>
803         * doc/c-arm.texi (mauto-it): Removed old option.
804         (mimplicit-it): Added right option.
806 2009-07-14  Daniel Gutson  <dgutson@codesourcery.com>
808         * config/tc-arm.h (MAX_MEM_ALIGNMENT_BYTES): Define.
809         (MAX_MEM_FOR_RS_ALIGN_CODE): Define in terms of
810         MAX_MEM_ALIGNMENT_BYTES.
811         * config/tc-arm.c (arm_frag_align_code): Replace hard coded
812         constant with MAX_MEM_FOR_RS_ALIGN_CODE.
814 2009-07-14  Nick Clifton  <nickc@redhat.com>
816         PR 10387
817         * config/tc-arm.h (THUMB_IS_FUNC): Handle a NULL pointer.
818         (ARM_IS_FUNC): Likewise.
820 2009-07-14  Daniel Gutson  <dgutson@codesourcery.com>
822         * config/tc-arm.c (md_assemble): Added validation.
824 2009-07-10  H.J. Lu  <hongjiu.lu@intel.com>
826         * Makefile.am: Run "make dep-am".
827         * Makefile.in: Regenerated.
829 2009-07-10  Tom Tromey  <tromey@redhat.com>
831         * Makefile.am (DEPTC_alpha_ecoff): Refer to dwarf2.h, not
832         elf/dwarf2.h.
833         (DEPTC_alpha_elf): Likewise.
834         (DEPTC_alpha_evax): Likewise.
835         (DEPTC_arm_elf): Likewise.
836         (DEPTC_hppa_elf): Likewise.
837         (DEPTC_i386_aout): Likewise.
838         (DEPTC_i386_coff): Likewise.
839         (DEPTC_i386_elf): Likewise.
840         (DEPTC_m68k_aout): Likewise.
841         (DEPTC_m68k_coff): Likewise.
842         (DEPTC_m68k_elf): Likewise.
843         (DEPTC_mips_coff): Likewise.
844         (DEPTC_mips_ecoff): Likewise.
845         (DEPTC_mips_elf): Likewise.
846         (DEPTC_ppc_coff): Likewise.
847         (DEPTC_ppc_elf): Likewise.
848         (DEPTC_s390_elf): Likewise.
849         (DEPTC_sh_coff): Likewise.
850         (DEPTC_sh_elf): Likewise.
851         (DEPTC_sh64_elf): Likewise.
852         (DEPTC_sparc_aout): Likewise.
853         (DEPTC_sparc_coff): Likewise.
854         (DEPTC_sparc_elf): Likewise.
855         (as.o): Likewise.
856         (dwarf2dbg.o): Likewise.
857         (dw2gencfi.o): Likewise.
858         (ehopt.o): Likewise.
859         (read.o): Likewise.
860         * Makefile.in: Rebuild.
861         * dw2gencfi.h: Include dwarf2.h, not elf/dwarf2.h.
862         * dwarf2dbg.c: Likewise.
863         * ehopt.c: Likewise.
865 2009-07-09  Daniel Gutson  <dgutson@codesourcery.com>
867         * config/tc-arm.c (it_fsm_post_encode): New forward declaration.
868         (set_it_insn_type_nonvoid): New macro.
869         (emit_thumb32_expr): New function.
870         (thumb_insn_size): New function.
871         (emit_insn): New function.
872         (s_arm_elf_inst): New function.
873         (md_pseudo_table): New pseudo-opcode entries added.
874         * doc/c-arm.texi: New directive added.
876 2009-07-07  DJ Delorie  <dj@redhat.com>
878         * config/tc-mep.c (md_begin): Don't reset the coprocessor options
879         when enabling other options without a specific configuration.
881 2009-07-07  Chung-Lin Tang  <cltang@pllab.cs.nthu.edu.tw>
883         * config/tc-arm.c (insns): Fix encoding for torvsc.
885 2009-07-06  Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
887         * config/tc-i386.c (cpu_arch): Add .fma4 and CPU_FMA4_FLAGS.
888         (build_modrm_byte): Add support to handle FMA4 instructions.
889         (md_show_usage): Add fma4.
891 2009-07-04  Alan Modra  <amodra@bigpond.net.au>
893         * config/tc-cr16.h (TC_LINKRELAX_FIXUP): Set only for code sections.
895 2009-07-02  Tristan Gingold  <gingold@adacore.com>
897         * Makefile.am (OBJ_FORMATS): Add macho.
898         (CPU_OBJ_VALID): Ditto.
899         (OBJ_FORMAT_CFILES): Add config/obj-macho.c
900         (OBJ_FORMAT_HFILES): Add config/obj-macho.h
901         (obj-macho.o): New rule.
902         * Makefile.in: Regenerated.
903         * configure.tgt (generic_target): Add i386-*-darwin*.
904         * config/tc-i386.h: Use i386_target_format for Mach-O.
905         * config/tc-i386.c (i386_target_format): Define it for Mach-O.
906         (i386_target_format): Add a case for bfd_target_mach_o_flavour.
907         * config/obj-macho.h: New file.
908         * config/obj-macho.c: New file.
910 2009-07-01  Nick Clifton  <nickc@redhat.com>
912         PR 10168
913         * config/tc-arm.c (do_t_pkhtb): Swap Rm and Rn when encoding as
914         PKHBT.
916 2009-07-01  Paul Brook <paul@codesourcery.com>
918         * config/tc-arm.c (MISSING_FNSTART): Define.
919         (s_arm_unwind_fnstart): Diagnose duplicate directive.
920         (s_arm_unwind_handlerdata, s_arm_unwind_fnend, s_arm_unwind_fnend,
921         s_arm_unwind_cantunwind, s_arm_unwind_personalityindex,
922         s_arm_unwind_personality, s_arm_unwind_save, s_arm_unwind_movsp,
923         s_arm_unwind_pad, s_arm_unwind_setfp, s_arm_unwind_raw): Error if
924         not inside function unwinding region.
926 2009-06-29  H.J. Lu  <hongjiu.lu@intel.com>
928         * config/tc-i386.c: Reformat.
930 2009-06-23  DJ Delorie  <dj@redhat.com>
932         * config/tc-mep.c (mep_check_ivc2_scheduling): For IVC2, allocate
933         32 bits for relaxable branches so that we can relax them later.
934         (md_estimate_size_before_relax): Assume IVC2 branches will be relaxed.
935         (mep_relax_frag): New.
936         (md_convert_frag): Relax IVC2 branches in-place.
937         * config/tc-mep.h ((mep_relax_frag): New.
939 2009-06-22  Martin Thuresson  <martin@mtme.org>
941         * gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
942         gas/config/atof-ieee.c, gas/config/obj-aout.c,
943         gas/config/obj-coff.c, gas/config/obj-ecoff.c,
944         gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
945         gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
946         gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
947         gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
948         gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
949         gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
950         gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
951         gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
952         gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
953         gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
954         gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
955         gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
956         gas/config/tc-s390.c, gas/config/tc-score.c,
957         gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
958         gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
959         gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
960         gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
961         gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
962         gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
963         gas macro `assert' to `gas_assert'.
965 2009-06-22  Daniel Gutson <dgutson@codesourcery.com>
967         * config/tc-arm.c (implicit_it_mode): New enum.
968         (implicit_it_mode): New global.
969         (it_instruction_type): New enum.
970         (arm_parse_it_mode): New function.
971         (arm_long_opts): New option added.
972         (arm_it): New field.
973         (it_state): New enum.
974         (now_it): New macro.
975         (check_it_blocks_finished): New function.
976         (insns[]): Use the IT Thumb opcodes for ARM too.
977         (arm_cleanup): Call check_it_blocks_finished.
978         (now_it_compatible): New function.
979         (conditional_insn): New function.
980         (set_it_insn_type): New macro.
981         (set_it_insn_type_last): New macro.
982         (do_it): Call automatic IT machinery functions.
983         (do_t_add_sub): Likewise
984         (do_t_arit3): Likewise.
985         (do_t_arit3c): Likewise.
986         (do_t_blx): Likewise.
987         (do_t_branch): Likewise.
988         (do_t_bkpt): Likewise.
989         (do_t_branch23): Likewise.
990         (do_t_bx): Likewise.
991         (do_t_bxj): Likewise.
992         (do_t_cps): Likewise.
993         (do_t_cpsi): Likewise.
994         (do_t_cbz): Likewise.
995         (do_t_it): Likewise.
996         (encode_thumb2_ldmstm): Likewise.
997         (do_t_ldst): Likewise.
998         (do_t_mov_cmp): Likewise.
999         (do_t_mvn_tst): Likewise.
1000         (do_t_mul): Likewise.
1001         (do_t_neg): Likewise.
1002         (do_t_setend): Likewise.
1003         (do_t_shift): Likewise.
1004         (do_t_tb): Likewise.
1005         (output_it_inst): New function.
1006         (new_automatic_it_block): New function.
1007         (close_automatic_it_block): New function.
1008         (now_it_add_mask): New function.
1009         (it_fsm_pre_encode): New function.
1010         (handle_it_state): New function.
1011         (it_fsm_post_encode): New function.
1012         (force_automatic_it_block_close): New function.
1013         (in_it_block): New function.
1014         (md_assemble): Call automatic IT block machinery functions.
1015         (arm_frob_label): Likewise.
1016         (arm_opts): New element.
1017         * config/tc-arm.h (it_state): New enum.
1018         (current_it): New struct.
1019         (arm_segment_info_type): New member added.
1020         * doc/c-arm.texi: New option -mimplicit-it documented.
1022 2009-06-20  Alan Modra  <amodra@bigpond.net.au>
1024         PR 10302
1025         * doc/as.texinfo (Section <ELF "M,S" flag>): Clarify tail merge.
1027 2009-06-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1029         * config/tc-s390.c (md_gather_operands): Accept an instruction
1030         without operands if all operands are tagged as optional.
1032 2009-06-18  Nick Clifton  <nickc@redhat.com>
1034         PR 10169
1035         * gas/tc-arm.c (do_t_ssat): Move common code from here...
1036         (do_t_usat): ... and here to...
1037         (do_t_ssat_usat): New function: ... here.  Add code to check that
1038         the shift value, if present, is in range.
1040 2009-06-18  Dave Korn  <dave.korn.cygwin@gmail.com>
1042         Merge cegcc and mingw32ce target name changes
1043         from CeGCC project:
1045         2007-12-25  Pedro Alves  <pedro_alves@portugalmail.pt>
1047         * configure.tgt: Add arm*-*-cegcc* target.
1049         2007-12-17  Pedro Alves  <pedro_alves@portugalmail.pt>
1051         * configure.tgt: Add arm-*-mingw32ce* target.
1053 2009-06-16  Maciej W. Rozycki  <macro@linux-mips.org>
1055         * config/tc-vax.c (md_estimate_size_before_relax): Accept
1056         indirect symbol references in the PIC mode and emit a
1057         PC-relative relocation instead of a GOT/PLT one.  Likewise
1058         for symbols known to be hidden at this point.
1060 2009-06-15  Nick Clifton  <nickc@redhat.com>
1062         PR 10186
1063         * config/tc-arm.c (T16_32_TAB): Fix binary value of SEV.W
1064         instruction.
1066 2009-06-13  H.J. Lu  <hongjiu.lu@intel.com>
1068         PR ld/10269
1069         * config/tc-i386.c (md_apply_fix): Use TC_FORCE_RELOCATION
1070         instead of generic_force_reloc.
1072         * config/tc-i386.h (TC_FORCE_RELOCATION): New.
1074 2009-06-11  Anthony Green  <green@moxielogic.com>
1076         * config/tc-moxie.c (md_chars_to_number): Define.
1077         (md_begin): Populate opcode hashtable with more form 3 opcodes.
1078         (md_assemble): Assemble MOXIE_F3_PCREL encoded instructions.
1079         (md_apply_fix): Handle BFD_RELOC_MOXIE_10_PCREL relocations.
1080         (tc_gen_reloc): Ditto.
1081         (md_pcrel_from): Ditto.
1082         (md_chars_to_number): New function.
1084 2009-06-10  Anthony Green  <green@moxielogic.com>
1086         * config/tc-moxie.c (md_assemble): Handle MOXIE_F1_M encoded
1087         opcodes.
1089 2009-06-09  Jakub Jelinek  <jakub@redhat.com>
1091         PR gas/10255
1092         * dw2gencfi.c (output_cfi_insn): Initialize fragment before rs_cfa
1093         to DW_CFA_advance_loc4.
1095 2009-06-08  Dave Korn  <dave.korn.cygwin@gmail.com>
1097         PR gas/977
1098         * config/tc-i386.c (md_estimate_size_before_relax):  Don't relax
1099         branches to weak symbols.
1100         (md_apply_fix):  Don't convert fixes against weak symbols to
1101         section-relative offsets, but save addend for later reloc emission.
1102         (tc_gen_reloc):  When emitting reloc against weak symbol, adjust
1103         addend to pre-compensate for bfd_install_relocation.
1105 2009-06-04  Alan Modra  <amodra@bigpond.net.au>
1107         * dep-in.sed: Don't use \n in replacement part of s command.
1108         * Makefile.am (DEP1, DEPTC, DEPOBJ, DEP2): LC_ALL for uniq.
1109         * Makefile.in: Regenerate.
1111 2009-06-01  H.J. Lu  <hongjiu.lu@intel.com>
1113         PR gas/10198
1114         * config/tc-i386-intel.c (i386_intel_operand): Check '$' as '.'.
1116 2009-05-26  Catherine Moore  <clm@codesourcery.com>
1118         * config/tc-mips.c (check_for_24k_errata): Remove.
1119         (md_mips_end): Remove call to check_for_24k_errata.
1120         (start_noreorder): Likewise.
1121         (s_change_sec): Likewise.
1122         (s_change_section): Likewise.
1123         (insns_between): Add 24k errata checks.
1124         (append_insn): Remove declaration and references to nhdx_24k.
1125         Remove calls to check_for_24k_errata.
1127 2009-05-26  Nick Clifton  <nickc@redhat.com>
1129         * po/id.po: Updated Indonesian translation.
1130         * po/gas.pot: Updated template file.
1132 2009-05-26  Nick Clifton  <nickc@redhat.com>
1134         PR 10143
1135         * config/bfin-parse.y (error): Use "%s" as format string for error
1136         message.
1138 2009-05-26  Alan Modra  <amodra@bigpond.net.au>
1140         * dep-in.sed: Output one filename per line with all lines having
1141         continuation backslash.  Prefix first line with "A", following
1142         lines with "B".
1143         * Makefile.am (DEP): Don't use dep.sed here.
1144         (DEP1): Run $MKDEP on single files, use dep.sed here on dependencies,
1145         sort and uniq.
1146         (DEPTC, DEPOBJ, DEP2): Use dep.sed on dependencies, sort and uniq.
1147         Emit multi dependencies on one line.
1148         * Makefile.in: Regenerate.
1150 2009-05-25  Tristan Gingold  <gingold@adacore.com>
1152         * makefile.vms: New file to compile gas on VMS.
1154         * configure.com: New file to do configuration on VMS with DCL.
1156 2009-05-23  Richard Sandiford  <rdsandiford@googlemail.com>
1158         * config/tc-mips.c (nops_for_vr4130): Don't check noreorder_p.
1159         (nops_for_insn): Likewise.
1161 2009-05-22  H.J. Lu  <hongjiu.lu@intel.com>
1163         * symbols.c (COPIED_SYMFLAGS): Add BSF_GNU_INDIRECT_FUNCTION.
1165 2009-05-22  Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
1167         * config/tc-i386.c (process_drex): Delete. Remove SSE5 support.
1168         (build_modrm_byte): Remove DREX handling support.
1169         (DREX_*): Delete.
1170         (drex_byte): Delete.
1171         (md_assemble): Remove DREX handling support.
1172         (process_operands): Remove DREX, SSE5 support.
1173         (i386_insn): Remove DREX.
1175 2009-05-22  Alan Modra  <amodra@bigpond.net.au>
1177         * Makefile.am: Run "make dep-am".
1178         * Makefile.in: Regenerate.
1180 2009-05-20  Kai Tietz  <kai.tietz@onevision.com>
1181             H.J. Lu  <hongjiu.lu@intel.com>
1183         * config/obj-coff.h: Include "coff/x86_64.h" for x86 pe-coff.
1184         (TARGET_FORMAT): Removed for x86 pe-coff.
1185         (COFF_TARGET_FORMAT): Likewise.
1187         * config/tc-i386.c (md_longopts): Allow --64 for x86 pe-coff.
1188         (md_parse_option): Likewise.
1189         (md_show_usage): Show option --32/--64 for x86 pe-coff.
1190         (i386_target_format): Use also for x86 pe-coff.
1192         * config/tc-i386.h (TARGET_FORMAT): Defined as i386_target_format
1193         for x86 pe-coff.
1195 2009-05-19  DJ Delorie  <dj@redhat.com>
1197         * config/tc-mep.c (mep_machine): Only check CPU flags, not COP flags.
1198         (mep_process_saved_insns): Remove debugging printfs.
1200 2009-05-19  Dave Korn  <dave.korn.cygwin@gmail.com>
1202         * NEWS:  Mention new feature.
1203         * config/obj-coff.c (obj_coff_common_parse):  New function.
1204         (obj_coff_comm):  Likewise.
1205         (coff_pseudo_table):  Override default ".comm" definition on PE.
1206         * doc/as.texinfo:  Document new feature.
1208 2009-05-17  Kai Tietz  <kai.tietz@onevision.com>
1210         * config/obj-coff.c (obj_coff_section): Add 'y' as
1211         specifier for SEC_COFF_NOREAD section flag.
1212         * doc/as.texinfo: Add documentation about .section flag 'y'.
1214 2009-05-13  DJ Delorie  <dj@redhat.com>
1216         * cgen.c (gas_cgen_parse_operand): Guard against NULL pointers.
1218 2009-05-13  Andrew Jenner  <andrew@codesourcery.com>
1220         * config/tc-arm.c: Move as.h to start of file.
1222 2009-05-05 Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1224         * config/tc-arm.h: Fix typo in comment.
1225         (ARM_IS_FUNC): New macro.
1226         (MD_APPLY_SYM_VALUE): Define.
1228         * config/tc-arm.c (do_blx): Retain BFD_RELOC_ARM_PCREL_BLX for
1229         all versions of EABI.
1230         (relax_branch): Do not relax for branches to ARM functions.
1231         (md_pcrel_from_section): Set up base correctly for
1232         BFD_RELOC_THUMB_PCREL_BLX, BFD_RELOC_THUMB_PCREL_CALL,
1233         BFD_RELOC_THUMB_PCREL_BRANCH23, BFD_RELOC_ARM_PCREL_BLX
1234         BFD_RELOC_ARM_PCREL_CALL.
1235         (md_apply_fix): Flip bl to blx where possible.
1236         Flip blx to bl where possible.
1237         (arm_force_relocation): Force relocations for
1238         BFD_RELOC_ARM_PCREL_JUMP, BFD_RELOC_ARM_PCREL_JUMP,
1239         BFD_RELOC_ARM_PCREL_BLX, BFD_RELOC_THUMB_PCREL_BLX,
1240         BFD_RELOC_THUMB_PCREL_BRANCH20, BFD_RELOC_THUMB_PCREL_BRANCH23,
1241         BFD_RELOC_THUMB_PCREL_BRANCH25.
1242         (arm_apply_sym_value): New function.
1244 2009-05-04  Tristan Gingold  <gingold@adacore.com>
1246         * config/tc-alpha.c: Also declare alpha_prologue_label for OBJ_EVAX.
1248 2009-05-01  Nathan Sidwell  <nathan@codesourcery.com>
1250         * config/tc-armlinux-eabi.h (FPU_DEFAULT): Default to plain VFP.
1251         * config/tc-armeabi.h (FPU_DEFAULT): Likewise.
1252         * config/tc-arm.c (md_begin): If FPU_DEFAULT is set, don't infer
1253         the default FPU from the processor.
1255 2009-05-01  Julian Brown  <julian@codesourcery.com>
1257         * config/tc-arm.c (do_t_blx): Always use BFD_RELOC_THUMB_PCREL_BLX.
1258         (md_pcrel_from_section): Align address for BLX.
1259         (tc_gen_reloc): Change BFD_RELOC_THUMB_PCREL_BLX relocations to
1260         BFD_RELOC_THUMB_PCREL_BRANCH23 for EABI v4+.
1262 2009-04-29  DJ Delorie  <dj@redhat.com>
1264         * config/tc-mep.c (md_begin): Check coprocessor type.
1265         (md_check_parallel64_scheduling): Use memset to initialize the buffer.
1266         (md_check_parallel32_scheduling): Likewise.
1267         (slot_ok): New.
1268         (mep_check_ivc2_scheduling): New.
1269         (mep_check_parallel_scheduling): Call it.
1270         (mep_process_saved_insns): Add IVC2 slot support.
1271         (md_assemble): Likewise.
1273 2009-04-30  Nick Clifton  <nickc@redhat.com>
1275         * config/obj-elf.c (obj_elf_type): Add support for a
1276         gnu_indirect_function type.
1277         * config/tc-i386.c (tc_i386_fix_adjustable): Do not adjust fixups
1278         against indirect function symbols.
1279         * doc/as.texinfo (.type): Document the support for the
1280         gnu_indirect_function symbol type.
1281         * NEWS: Mention the new feature.
1283 2009-04-24  Cary Coutant  <ccoutant@google.com>
1285         * NEWS: Add item about discriminator support.
1286         * dwarf2dbg.h (struct dwarf2_line_info): Add discriminator field.
1287         * dwarf2dbg.c (current): Add discriminator field.
1288         (dwarf2_where): Copy discriminator value.
1289         (dwarf2_consume_line_info): Set discriminator to 0.
1290         (dwarf2_directive_loc): Process discriminator sub-op.
1291         (out_leb128): New function.
1292         (process_entries): Output DW_LNE_set_discriminator.
1293         * doc/as.texinfo: Add discriminator operand to .loc directive.
1295 2009-04-22  Nathan Sidwell  <nathan@codesourcery.com>
1297         * config/tc-mips.c (macro_end, md_convert_frag): Use '%s' for
1298         as_bad calls to silence compiler warning.
1300 2009-04-21  H.J. Lu  <hongjiu.lu@intel.com>
1302         * config/tc-i386-intel.c (O_XXX): Reorder.
1304 2009-04-20  Jan Beulich  <jbeulich@novell.com>
1306         * Makefile.am: Add explicit dependency of tc-i386.o on
1307         tc-i386-intel.c.
1308         * Makefile.in: Likewise.
1309         * config/tc-i386.c (i386_finalize_immediate): Declare, broken
1310         out from i386_immediate.
1311         (i386_immediate): Slightly re-arrange, call
1312         i386_finalize_immediate.
1313         (i386_finalize_displacement): Declare, broken out from
1314         i386_displacement.
1315         (i386_displacement): Slightly re-arrange, call
1316         i386_finalize_displacement.
1317         (i386_intel_simplify, i386_intel_parse_name): Declare.
1318         (this_operand): Initialize to -1.
1319         (set_intel_syntax): Set expression rank for O_full_ptr.
1320         (md_assemble): Set this_operand back to -1 after parsing
1321         operands.
1322         (x86_cons): Negate intel_syntax to indicate state. Call
1323         i386_intel_simplify.
1324         (md_operand): Convert if to switch. Handle '[' for Intel
1325         syntax.
1326         (i386_intel_operand): Delete, including all helper functions
1327         and data.
1328         * config/tc-i386-intel.c: New file, all new code.
1329         * config/tc-i386.h (i386_operator): Declare.
1330         (md_operator): Define to i386_operator.
1331         (i386_need_index_operator): Declare.
1332         (md_need_index_operator): Define to i386_need_index_operator.
1333         (O_full_ptr): Define.
1335 2009-04-20  Jan Beulich  <jbeulich@novell.com>
1337         * expr.c (operand): Call md_need_index_operator() and
1338         md_operator() if defined. Add unary label.
1339         (operator): Call md_operator() if defined.
1340         (expr): Adjust assertions on range and rank of op_left and
1341         op_right. Don't abort on unhandled operators when reducing
1342         expressions with both operands being constant.
1343         (expr_set_rank): New.
1344         * expr.h (expr_set_rank): Declare.
1346 2009-04-15  Anthony Green  <green@moxielogic.com>
1348         * config/tc-moxie.h: New file.
1349         * config/tc-moxie.c: New file.
1350         * configure: Add support for moxie.
1351         * configure.tgt: Add support for moxie.
1353 2009-04-16  Jan Beulich  <jbeulich@novell.com>
1355         * expr.c: Include limits.h if available, and #define CHAR_BITS
1356         otherwise.
1357         (expr): Check range of shift count when evaluating a constant
1358         expression.
1360 2009-04-15  Jan Beulich  <jbeulich@novell.com>
1362         * config/tc-i386.c (process_operands): Print operands in
1363         correct order depending on intel_syntax.
1365 2009-04-09  Catherine Moore  <clm@codesourcery.com>
1367         * config/tc-mips.c (mips_fix_24k): Declare.
1368         (check_for_24k_errata): New.
1369         (mips_cleanup): Call check_for_24k_errata.
1370         (start_noreorder): Likewise.
1371         (md_mips_end): Likewise.
1372         (s_change_sec): Likewise.
1373         (s_change_section): Likewise.
1374         (append_insn): Call check_for_24k_errata.  Prevent
1375         ERET/DERET instructions from being moved into delay
1376         slots.
1377         (OPTION_FIX_24K): New.
1378         (OPTION_NO_FIX_24k) New.
1379         (md_longopts): Add "mfix-24k" and "mno-fix-24k".
1380         (md_parse_option): Handle fix-24k options.
1381         (md_show_usage): Display fix-24k options.
1382         * doc/c-mips.texi: Document.
1384 2009-04-09  Adam Nemet  <anemet@caviumnetworks.com>
1386         * config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS
1387         instead of HAVE_64BIT_SYMBOLS.
1389 2009-04-07  DJ Delorie  <dj@redhat.com>
1391         * config/tc-mep.c: Add UCI/DSP instruction support.  Add C5 support.
1392         (md_show_usage): Change default endian to little.
1393         * config/tc-mep.h (TARGET_BYTES_BIG_ENDIAN): Change default to little.
1395 2009-04-06  DJ Delorie  <dj@redhat.com>
1397         * tc-h8300.c (do_a_fix_imm): Pass the insn, force relocs for MOVA
1398         immediates.
1399         (build_bytes): Pass insn to do_a_fix_imm.
1401 2009-04-02  Daniel Gutson <dgutson@codesourcery.com>
1403         * config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
1404         * doc/c-arm.texi: Added codes for processors ARM Cortex-M0 and
1405         Cortex-M1.
1407 2009-04-01  Matt Thomas <matt@netbsd.org>
1409         * config/tc-vax.c (synthetic_votstrs): add "jbbcci" and "jbbssi"
1410         (md_assemble): emit symbol name when used as immediate in PIC mode.
1411         (md_assemble): fix LP64 bug (use sizeof (valueT) instead 4).
1413 2009-04-01  Sterling Augustine  <sterling@jaw.hq.tensilica.com>
1415         * config/tc-xtensa.c (parse_arguments): call demand_empty_rest_of_line
1417 2009-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1419         * config/tc-arm.c (arm_validate_fix): Define only for OBJ_COFF.
1420         (find_real_start): Likewise.
1421         * config/tc-arm.h (TC_VALIDATE_FIX): Likewise
1423 2009-04-01  Nathan Sidwell  <nathan@codesourcery.com>
1425         * config/tc-arm.c (do_nop): Generate v6k nops whenever possible.
1426         (arm_handle_align): Generate v6k ARM, thumb2 wide & narrow nops
1427         whenever possible.
1429 2009-03-31  Peter Bergner  <bergner@vnet.ibm.com>
1431         * config/tc-ppc.c (ppc_handle_align): Handle power7's group ending nop.
1433 2009-03-31  Dave Korn  <dave.korn.cygwin@gmail.com>
1435         * doc/internals.texi:  Fix trivial syntax errors.
1437 2009-03-26  Alan Modra  <amodra@bigpond.net.au>
1439         PR 10005
1440         * config/tc-i386.c (reloc): Don't abort on lack of required
1441         reloc type.
1443 2009-03-25  H.J. Lu  <hongjiu.lu@intel.com>
1445         * config/tc-i386.c (parse_insn): Use default_arch on unsupported
1446         arch.
1448 2009-03-23  H.J. Lu  <hongjiu.lu@intel.com>
1450         PR gas/9966
1451         * listing.c (listing_newline): Properly handle `\\"' and ';'.
1453         * read.c (is_end_of_line): Update comments for line separator.
1454         (read_begin): Set line separator in is_end_of_line to 2.
1456 2009-03-19  David S. Miller  <davem@davemloft.net>
1458         * config/tc-sparc.c (md_parse_option): If the user gives
1459         us '--64' make sure max_architecture is at least V9.
1461 2009-03-18  Andrew Stubbs  <ams@codesourcery.com>
1463         * config/tc-arm.c (md_apply_fix): Check BFD_RELOC_ARM_IMMEDIATE and
1464         BFD_RELOC_ARM_ADRL_IMMEDIATE value is in the correct section.
1465         Check BFD_RELOC_ARM_ADRL_IMMEDIATE has a defined symbol.
1467 2009-03-18  Alan Modra  <amodra@bigpond.net.au>
1469         * as.h: Include alloca-conf.h instead of config.h and remove
1470         existing #if's handling alloca.
1471         * Makefile.am: Run "make dep-am".
1472         * Makefile.in: Regenerate.
1474 2009-03-14  Richard Sandiford  <r.sandiford@uk.ibm.com>
1476         * config/tc-ppc.c (ppc_frob_symbol): Add csect information for
1477         C_AIX_WEAKEXT too.
1479 2009-03-14  Richard Sandiford  <r.sandiford@uk.ibm.com>
1481         * config/tc-ppc.c (md_apply_fix): On COFF targets, always reread
1482         "value" from fx_offset.  Manually resubtract md_pcrel_from_section
1483         where necessary.
1485 2009-03-14  Richard Sandiford  <r.sandiford@uk.ibm.com>
1487         * configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
1488         * configure.in: Likewise.
1489         * configure: Regenerate.
1491 2009-03-11  Hans-Peter Nilsson  <hp@axis.com>
1493         * config/tc-cris.c (cris_create_short_jump): Remove prototype.
1494         Rename, changing all callers, to...
1495         (md_create_short_jump): Adjust head comment.  Assert
1496         word-sized-branch distance for v32.  Bail out calling as_fatal for
1497         compatibility mode here.
1498         (md_create_long_jump): ...not here.
1499         * config/tc-cris.h (md_create_short_jump): Do not define.
1501 2009-03-10  Hans-Peter Nilsson  <hp@axis.com>
1503         * write.c (write_object_file) [!WORKING_DOT_WORD]: When patching
1504         the jump table for multiple overflowing entries with the same
1505         target, handle base symbols being different.
1506         (relax_segment) <case rs_broken_word, second loop>: Whenever a
1507         single entry overflows, arrange to redirect all entries with the
1508         same target.
1510 2009-03-10  Alan Modra  <amodra@bigpond.net.au>
1512         * config/tc-ppc.c (parse_cpu): Delete.
1513         (md_parse_option, ppc_machine): Use ppc_parse_cpu.
1515 2009-03-09  H.J. Lu  <hongjiu.lu@intel.com>
1517         PR gas/9915
1518         * config/tc-i386.h (LOCAL_LABELS_DOLLAR): New.  Defined as 0.
1519         (LOCAL_LABELS_FB): Undefine befoe define.
1521 2009-03-06  Nick Clifton  <nickc@redhat.com>
1523         * po/es.po: Updated Spanish translation.
1525 2009-03-05  Joseph Myers  <joseph@codesourcery.com>
1527         * read.c (s_fill, s_space, s_float_space, float_cons, stringer,
1528         s_incbin): Call md_cons_align (1).
1530 2009-03-04  Nick Clifton  <nickc@redhat.com>
1532         * config/tc-alpha.c (alpha_prologue_label): Only define for ELF
1533         based targets.
1534         (s_alpha_comm): Only define "temp" and "log_align" local variables
1535         for EVAX targets.
1537 2009-03-04  Alan Modra  <amodra@bigpond.net.au>
1539         * config/tc-ppc.c (ppc_elf_suffix): Error if ppc32 tls got relocs
1540         have non-zero addend.
1541         (md_assemble): Parse args of __tls_get_addr calls.
1542         (md_apply_fix): Handle BFD_RELOC_PPC_TLSGD and BFD_RELOC_PPC_TLSLD.
1544 2009-03-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1546         binutils/3807
1547         * config/tc-hppa.h (tc_frob_symbol): Don't frob absolute symbols with
1548         local scope for ELF targets.
1550 2009-03-04  Alan Modra  <amodra@bigpond.net.au>
1552         * config/tc-ppc.c (md_assemble): APUinfo only for e500.
1554 2009-03-03  Tristan Gingold  <gingold@adacore.com>
1555             Eric Botcazou  <ebotcazou@adacore.com>
1556             Douglas B Rupp  <rupp@gnat.com>
1558         * doc/as.texinfo (Overview): Mention -replace/-noreplace options
1559         for Alpha.
1560         * doc/c-alpha.texi (Alpha Options): Document -replace/-noreplace.
1561         * config/tc-alpha.h (TC_VALIDATE_FIX_SUB): Define to 1 (evax).
1562         (OBJ_SYMFIELD_TYPE): Remove.
1563         (tc_canonicalize_symbol_name): Define to evax_shorten_name.
1564         (TC_IMPLICIT_LCOMM_ALIGNMENT): For alignment to 3 on evax.
1565         (tc_frob_file_before_fix): Do not defined on evax.
1566         * config/tc-alpha.c: Always includes dwarf2dbg.h.
1567         Include vms.h if OBJ_EVAX.
1568         (struct alpha_fixup): Add xtrasym and procsym (evax only).
1569         (enum alpha_macro_arg): Remove trailing comma.
1570         (md_longopts): Add replace and noreplace arguments (evax only).
1571         (alpha_evax_proc_hash): New variable.
1572         (alpha_link_section): Make it global.
1573         (alpha_ctors_section, alpha_dtors_section): Removed.
1574         (alpha_ctors_symbol, alpha_dtors_symbol): Ditto.
1575         (alpha_lit8_section): Ifndef'ed on evax.
1576         (alpha_lit8_symbol): Ditto.
1577         (alpha_prologue_label): New variable.
1578         (alpha_linkage_symbol): New variable (evax only).
1579         (alpha_flag_replace): Ditto.
1580         (struct alpha_evax_procs): Add handler and handler_data field.
1581         (alpha_evax_proc): Now of type pointer.
1582         (alpha_linkage_fixup_root, alpha_linkage_fixup_tail): New variables.
1583         (struct alpha_reloc_tag): Add sym and psym fields (evax only).
1584         (get_alpha_reloc_tag): Initialize sym and psym fields (evax only).
1585         (alpha_adjust_relocs): Ifndef'ed on evax.
1586         (load_expression): Add opname argument.
1587         Implement LDA/BSR optimization for evax.
1588         (emit_lda): Adjust for new prototype of load_expression.
1589         (emit_ir_load): Ditto. Do not nothing for GP if ..lk symbols.
1590         (emit_loadstore): Likewise.
1591         (emit_ldXu): Likewise.
1592         (emit_stX): Likewise.
1593         (emit_jsrjmp): Likewise.  Implement LDA/BSR optimization for evax.
1594         (emit_ldgp): Avoid warning in evax case.
1595         (add_to_link_pool): Make it static.  Return symbolic expression rather
1596         than number expression for the offset.
1597         (s_alpha_text): Create .text symbol for evax if not already created.
1598         (s_alpha_comm): Do not create specific section for common symbol.
1599         Fill common area with zeros for evax.
1600         (s_alpha_prologue): Create alpha_prologue_label.
1601         (s_alpha_section_name): New function (evax).
1602         (s_alpha_section_word): Likewise.
1603         (section_name): New static variabke moved out from ...
1604         (s_alpha_section): ... here.  Create new sections on demand.
1605         (s_alpha_literals): New function (evax).
1606         (s_alpha_ent): Create alpha_evax_proc instance and insert it in the
1607         alpha_evax_proc_hash table.
1608         (s_alpha_handler): New function (evax).
1609         (s_alpha_frame): Adjust for new type of alpha_evax_proc.
1610         (s_alpha_prologue): New function (evax).
1611         (s_alpha_pdesc): Adjust for new type of alpha_evax_proc and new
1612         handling of procedures with hash table.
1613         Add support for condition handlers.
1614         (s_alpha_linkage): Create linkage_fixup instance and chain it.
1615         (s_alpha_fp_save): Adjust for new type of alpha_evax_proc.
1616         (s_alpha_mask): Likewise.
1617         (s_alpha_fmask): Likewise.
1618         (s_alpha_end): Clear alpha_evax_proc.
1619         (s_alpha_align): Increase max_alignment to 16.
1620         (alpha_print_token): Call print_expr_1 instead of print_expr.
1621         (md_pseudo_table): Add "section", "literals", "handler" and
1622         "handler_data" (evax).  Do not ignore "prologue" on evax.
1623         Fix indentation.
1624         (md_begin): Create hash table for alpha_evax_proc_hash.
1625         (md_parse_option): Handle OPTION_REPLACE and OPTION_NOREPLACE.
1626         (md_show_usage): Mention -replace/-noreplace for evax.
1627         (md_apply_fix): Handle evax relocs (_NOP, _LDA, _BSR and _BOH).
1628         (alpha_force_relocation): Likewise.
1629         (alpha_fix_adjustable): Likewise. Add BFD_RELOC_16 case.
1630         (tc_gen_reloc): Likewise.  Add BFD_RELOC_ALPHA_LINKAGE for evax.
1631         (emit_insn): New cases for evax specific relocs.
1632         (assemble_insn): Fix indentation.
1633         Take care of -MDISP in operand table.
1634         * config/obj-evax.h (struct alpha_linkage_fixups): New struct.
1635         (OBJ_SYMFIELD_TYPE): New macro.
1636         (obj_symbol_new_hook): Define.
1637         (obj_frob_symbol, obj_frob_file_before_adjust): Ditto.
1638         (obj_frob_file_before_fix): Ditto.
1639         (PDSC_S_M_HANDLER_VALID): New macro.
1640         (PDSC_S_M_HANDLER_DATA_VALID): Ditto.
1641         (TC_IMPLICIT_LCOMM_ALIGNMENT): Remove.
1642         Add prototypes for functions declared in obj-evax.c
1643         * config/obj-evax.c: Include subsegs.h, struc-symbol.h, safe-ctype.h.
1644         (s_evax_weak): Convert to ansi-C.
1645         (evax_symbol_new_hook): New function.
1646         (evax_frob_symbol): Ditto.
1647         (evax_frob_file_before_adjust): Ditto.
1648         (evax_frob_file_before_fix): Ditto.
1649         (evax_shorten_name): Ditto.
1650         (crc32): Ditto.
1651         (encode_32): Ditto.
1652         (encode_16): Ditto.
1653         (decode_16): Ditto.
1654         (shorten_identifier): Ditto.
1655         (is_truncated_identifier): Ditto.
1656         * dwarf2dbg.c (out_debug_info): Do not append trailing slash on VMS.
1657         * as.c (close_output_file): Remove #ifndef OBJ_VMS.
1658         (main): Ditto.
1660 2009-03-03  Alan Modra  <amodra@bigpond.net.au>
1662         * Makefile.am: Run "make dep-am".
1663         * Makefile.in: Regenerate.
1665 2009-03-02  Nick Clifton  <nickc@redhat.com>
1667         PR 9874
1668         * config/tc-ia64.c (fix_insn): Fix warning reported by
1669         -Wformat-security.
1671 2009-03-02  Qinwei  <qinwei@sunnorth.com.cn>
1673         * config/tc-score7.c: New file.
1674         * doc/c-score.texi: New file.
1675         * Makefile.am: Update dependencies for tc-score.c.
1676         * Makefile.in: Regenerate.
1677         * NEWS: Mention support for Score7 architecture.
1678         * config/tc-score.c: Add support for Score7 architecture.
1679         * config/tc-score.h: Likewise.
1680         * doc/Makefile.am: Add c-score.texi.
1681         * doc/Makefile.in: Regenerate.
1682         * doc/all.texi: Add Score7.
1683         * doc/as.texinfo: Add Score7.
1685 2009-03-01  Mark Mitchell  <mark@codesourcery.com>
1687         * config/tc-arm.c (md_assemble): Allow barrier instructions on
1688         ARMv6-M cores.
1690 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1692         * configure: Regenerate.
1694 2009-02-26  Peter Bergner  <bergner@vnet.ibm.com>
1696         * config/tc-ppc.c (pre_defined_registers): Add "f32" to "f63",
1697         "f.32" to "f.63", "vs0" to "vs63" and "vs.0" to "vs.63".
1698         (parse_cpu): Extend -mpower7 to accept power7 and isel instructions.
1700 2009-02-25  H.J. Lu  <hongjiu.lu@intel.com>
1702         * config/tc-i386.c (fits_in_imm4): Removed.
1704 2009-02-24  Helge Deller <deller@gmx.de>
1706         * config/tc-hppa.c (pa_ip): Add check of immediate values.
1707         (SAVE_IMMEDIATE): New define.
1709 2009-02-23  Mark Mitchell  <mark@codesourcery.com>
1711         * config/tc-arm.c (warn_deprecated_sp): New macro.
1712         (do_t_mov_cmp): Permit R13 as the second
1713         argument to "cmp.n".
1715 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
1717         * config/tc-i386.c (type_names): Add OPERAND_TYPE_REGYMM.
1718         (pt): Replace UINTS_ALL_ZERO with operand_type_all_zero.
1720 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
1722         * config/tc-i386.c (type_names): Remove OPERAND_TYPE_VEX_IMM4.
1724 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
1726         * config/tc-i386.c (vex_imm4): Removed.
1727         (VEX_check_operands): Likewise.
1728         (match_template): Updated.
1730 2009-02-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1732         * doc/all.texi: Set S390.
1733         * doc/as.texinfo: Add S390 support and pull in c-s390.texi.
1734         * doc/Makefile.am (CPU_DOCS): Add c-s390.texi.
1735         * doc/Makefile.in: Likewise.
1736         * doc/c-s390.texi: New.
1738 2009-02-12  Nathan Sidwell  <nathan@codesourcery.com>
1740         * config/tc-m68k.c (mcf51qe_ctrl): Add CPUCR.
1741         (mcf52259_ctrl, mcf52277_ctrl, mcf53017_ctrl): New.
1742         (mcf5307_ctrl): Add VBR.
1743         (no_mac): New variable.
1744         (m68k_extensions): Refer to no_mac mask.
1745         (m68k_cpus): Add 51, 51ac, 51cn, 51em, 51jm, 52274, 52277,
1746         52252..52259, 53011..53017.
1747         (m68k_ip): Process CPUCR.
1748         (init_table): Add cpucr entry.
1749         (m68k_set_extension): Allow negated mask to refer to a variable.
1750         (md_show_usage): Use '%s' to silence fprintf warning.
1751         * config/m68k-parse.h (CPUCR): New control register.
1753 2009-02-10  Nathan Sidwell  <nathan@codesourcery.com>
1755         * config/tc-ppc.c (ppc_insert_operand, md_assemble): Use '%s' for
1756         as_bad calls to silence compiler warning.
1758 2009-02-06  Nick Clifton  <nickc@redhat.com>
1760         PR 9814
1761         * config/tc-arm.c (MODE_RECORDED): New define.
1762         (output_inst): Record the thumb_mode in the current frag.
1763         (arm_handle_align): Ignore the MODE_RECORDED bit in tc_frag_data.
1764         (arm_init_frag): Only set the tc_frag_data field if it has not
1765         already been set.
1767 2009-02-04  H.J. Lu  <hongjiu.lu@intel.com>
1769         AVX Programming Reference (January, 2009)
1770         * config/tc-i386.c (CPU_FLAGS_PCLMUL_MATCH): New.
1771         (CPU_FLAGS_AVX_MATCH): Updated.
1772         (CPU_FLAGS_32BIT_MATCH): Likewise.
1773         (cpu_flags_match): Likewise.
1775 2009-02-03  Sandip Matte  <sandip@rmicorp.com>
1777         * config/tc-mips.c (macro): Handle M_MSGSND, M_MSGLD, M_MSGLD_T,
1778         M_MSGWAIT and M_MSGWAIT_T.
1779         (mips_cpu_info_table): Add XLR entry.
1780         * doc/c-mips.texi (-march): Document xlr.
1782 2009-02-03  Eric B. Weddington  <eric.weddington@atmel.com>
1784         * config/tc-avr.c (mcu_types): Add ata6289.
1785         * doc/c-avr.texi: Likewise.
1787 2009-02-03  Carlos O'Donell  <carlos@codesourcery.com>
1789         * configure.in: AC_SUBST pdfdir.
1790         * Makefile.am: Add install-pdf, install-pdf-am,
1791         and install-pdf-recursive targets.
1792         * doc/Makefile.am: Define pdf__strip_dir. Add
1793         install-pdf and install-pdf-am targets.
1794         * po/Make-in: Add install-pdf target.
1795         * configure: Regenerate.
1796         * Makefile.in: Regenerate.
1797         * doc/Makefile.in: Regenerate.
1799 2009-02-03  Maxim Kuvyrkov  <maxim@codesourcery.com>
1801         * config/m68k-parse.h (enum pic_relocation): Add values for TLS
1802         relocations.
1803         * config/m68k-parse.y (yylex): Parse TLS relocations.
1804         * config/tc-m68k.c (m68k_elf_cons): New static function.
1805         (md_pseudo_table): Use it.
1806         (get_reloc_code, tc_m68k_fix_adjustable, tc_gen_reloc): Handle TLS
1807         relocations.
1808         (md_apply_fix): Fix to set thread local flag.
1809         (m68k_elf_suffix): New static function; helper for m68k_elf_cons.
1811 2009-02-03  Vince Weaver <vince@csl.cornell.edu>
1813         PR 9779
1814         * config/tc-pdp11.c (parse_op_no_deferred): Fix handling of
1815         indexed addressing for symbolic expressions.
1817 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
1819         * config/tc-arm.c (BAD_SP): Define.
1820         (s_arm_unwind_fnstart): Use REG_SP.
1821         (s_arm_unwind_setfp): Likewise.
1822         (reject_bad_reg): New macro.
1823         (do_co_reg): Check for bad registers.
1824         (do_co_reg2c): Likewise.
1825         (do_srs): Use REG_SP.
1826         (do_t_add_sub): Check for bad registers.
1827         (do_t_adr): Likewise.
1828         (do_t_arit3): Likewise.
1829         (do_t_arit3c): Likewise.
1830         (do_t_bfc): Likewise.
1831         (do_t_bfi): Likewise.
1832         (do_t_bfx): Likewise.
1833         (do_t_blx): Likewise.
1834         (do_t_bx): Likewise.
1835         (do_t_bxj): Likewise.
1836         (do_t_clz): Likewise.
1837         (do_t_div): Likewise.
1838         (do_t_mla): Likewise.
1839         (do_t_mlal): Likewise.
1840         (do_t_mov_cmp): Likewise.
1841         (do_t_mov16): Likewise.
1842         (do_t_mvn_tst): Likewise.
1843         (do_t_mrs): Likewise.
1844         (do_t_msr): Likewise.
1845         (do_t_mul): Likewise.
1846         (do_t_mull): Likewise.
1847         (do_t_orn): Likewise.
1848         (do_t_pkhbt): Likewise.
1849         (do_t_pld): Likewise.
1850         (do_t_rbit): Likewise.
1851         (do_t_rev): Likewise.
1852         (do_t_rrx): Likewise.
1853         (do_t_rsb): Likewise.
1854         (do_t_shift): Likewise.
1855         (do_t_simd): Likewise.
1856         (do_t_ssat): Likewise.
1857         (do_t_ssat16): Likewise.
1858         (do_t_sxtah): Likewise.
1859         (do_t_sxth): Likewise.
1860         (do_t_tb): Likewise.
1861         (do_t_usat): Likewise.
1862         (do_t_usat16): Likewise.
1863         (nysn_insert_sp): Use REG_SP.
1865 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
1867         * config/tc-arm.c (do_t_orn): New function.
1868         (do_t_rrx): Likewise.
1869         (insns): Add orn and rrx.
1871 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
1873         * config/tc-arm.c (insns): Add qasx, qsax, shasx, shsax, ssax,
1874         uasx, uhasx, uhsx, uqasx, uqsax, usax.
1876 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
1878         * config/tc-arm.c (insns): Correct encoding of qadd, qdadd, qsub,
1879         qdsub in Thumb-2 mode.
1881 2009-01-29  Paul Brook  <paul@codesourcery.com>
1882             Mark Mitchell  <mark@codesourcery.com>
1884         * config/tc-arm.c (do_t_mul): In Thumb-2 mode, use 16-bit encoding
1885         of MUL when possible.
1887 2009-01-29  Nick Clifton  <nickc@redhat.com>
1889         * config/tc-mep.h (DIFF_EXPR_OK): Do not define.
1891 2009-01-29  Nathan Sidwell  <nathan@codesourcery.com>
1892             Catherine Moore <clm@codesourcery.com?
1894         * doc/c-arm.texi (ARM Directives): Alphabetize. Document .2byte,
1895         .4byte, .8byte, .bss, .even, .extend, .ldouble, .packed, .secrel32
1896         directives.
1898 2009-01-27  Nick Clifton  <nickc@redhat.com>
1900         * config/tc-mips.c (append_insn): Cope with a complex reloc
1901         sequence containing an unsupported reloc type.
1902         (enum options): Replace computed #define's constants for option
1903         numbers with this enum.
1904         (struct md_longopts): Use the enum.  Allow OPTION_32 in a non-ELF
1905         environment.
1906         (md_parse_option): Allow -32 in a non-ELF environment.
1908 2009-01-26  Andrew Stubbs  <ams@codesourcery.com>
1910         * config/tc-arm.c (attributes_set_explicitly): New array.
1911         (s_arm_eabi_attribute): Check return value from s_vendor_attribute.
1912         (cpu_arch): Add ARM_ARCH_V5T.
1913         (aeabi_set_attribute_int): New function.
1914         (aeabi_set_attribute_string): New function.
1915         (aeabi_set_public_attributes): Set attributes according to the user's
1916         intentions, rather than the actual state of the binary.
1917         Use aeabi_set_attribute_int and aeabi_set_attribute_string instead of
1918         bfd_elf_add_proc_attr_int and bfd_elf_add_proc_attr_string.
1919         Support WMMXv2. Use attribute names instead of numbers.
1920         * read.c (s_vendor_attribute): Change return type to int.
1921         Return the tag number that was set.
1922         * read.h (s_vendor_attribute): Change return type to int.
1924 2009-01-26  Eric B. Weddington  <eric.weddington@atmel.com>
1926         PR 9789
1927         * config/tc-avr.c (mcu_types): Fix typo in atmega128rfa1 name.
1928         * doc/c-avr.texi: Likewise.
1930 2009-01-23  Nathan Sidwell  <nathan@codesourcery.com>
1932         * doc/c-arm.texi (): Document -mwarn-deprecated.
1933         * config/tc-arm.c (WARN_DEPRECATED): Remove.  Replace with ...
1934         (warn_on_deprecated): ... this.
1935         (opcode_lookup, md_assemble): Check it before warning.
1936         (arm_opts): Add m[no-]warn-deprecated.
1937         (md_parse_option): Replace WARN_DEPRECATED with
1938         warn_on_deprecated.
1940 2009-01-23  Andreas Schwab  <schwab@suse.de>
1942         * config/tc-mips.c (macro) [M_DINS, M_SEQ_I, M_SNE_I]: Cast
1943         arguments to macro_build to match format.
1945         * config/obj-elf.h (LOCAL_LABEL_PREFIX): Conditionally define.
1946         * config/tc-s390.h (LOCAL_LABEL_PREFIX): Don't define.
1948 2009-01-19  Nick Clifton  <nickc@redhat.com>
1950         * config/tc-arm.h (CONVERT_SYMBOLIC_ATTRIBUTE): Only define for
1951         ELF format ARM targets.
1952         * config/tc-arm.c (arm_convert_symbolic_attribute): Likewise.
1954 2009-01-19  Nick Clifton  <nickc@redhat.com>
1956         * configure.tgt: Restore alpha sorting to object format switch
1957         statement.
1959 2009-01-19  Andrew Stubbs  <ams@codesourcery.com>
1961         * read.c (s_vendor_attribute): Allow for unknown flag bits in type.
1963 2009-01-16  Mark Shinwell  <shinwell@codesourcery.com>
1965         * config/te-armeabi.h (EABI_DEFAULT): Use EF_ARM_EABI_VER5.
1966         * config/te-armlinuxeabi.h (EABI_DEFAULT): Likewise.
1968 2009-01-16  Andrew Stubbs  <ams@codesourcery.com>
1969             Daniel Jacobowitz  <dan@codesourcery.com>
1971         * config/tc-arm.c (arm_copy_symbol_attributes): New function.
1972         * config/tc-arm.h (arm_copy_symbol_attributes): New prototype.
1973         (CONVERT_SYMBOLIC_ATTRIBUTE): New define.
1974         * read.c (s_vendor_attribute): Add support for symbolic tag names.
1975         Improve string parser.
1976         * doc/c-arm.texi (ARM Machine Directives): Document
1977         .eabi_attribute symbolic tag names.
1979 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
1981         * configure.in (commonbfdlib): Delete.
1982         * configure: Regenerate.
1983         * po/POTFILES.in: Regenerate.
1985 2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
1986             Julian Brown   <julian@codesourcery.com>
1988         * config/tc-arm.c (cpu_arch): Change ARM_ARCH_V6M to 11.
1990 2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
1992         * read.c (s_vendor_attribute): bfd_elf_add_obj_attr_compat ->
1993         bfd_elf_add_obj_attr_int_string.
1995 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
1997         * configure.tgt(ia64-*-*vms*): New target.
1998         * dwarf2dbg.h (dwarf2_loc_mark_labels): Make extern.
1999         * tc.h (md_number_to_chars): Declare iff undefined.
2000         * config/obj-elf.c (obj_elf_change_section): Change type of arg
2001         attr to bfd_vma.
2002         (obj_elf_parse_section_letters): Return a bfd_vma. Change type of
2003         variables attr, md_attr to bfd_vma.
2004         (obj_elf_section_word): Likewise.
2005         (obj_elf_section): Change type of variable attr to bfd_vma
2006         * config/obj-elf.h (obj_elf_change_section): Change type of arg
2007         attr to bfd_vma.
2008         * config/tc-ia64.c (bfdver.h,time.h): Include.
2009         (ia64_elf_section_letter): Now returns a bfd_vma.
2010         Handle VMS specific attributes.
2011         (ia64_elf_section_flags): Arg attr now a bfd_vma.
2012         (ia64_init): Don't turn on dependency checking for VMS.
2013         (ia64_target_format): Check for VMS flag bit.
2014         (do_alias): Hande decc$ functions.
2015         (get_vms_time): New function.
2016         (ia64_vms_note): New function.
2017         * config/tc-ia64.h (ia64_elf_section_letter): Now returns a bfd_vma.
2018         (ia64_elf_section_flags): Arg attr now a bfd_vma.
2019         (tc_init_after_args): Define for VMS.
2020         * config/tc-alpha.c (alpha_elf_section_letter): Return a bfd_vma.
2021         (alpha_elf_section_flags): Change type of arg attr to bfd_vma.
2022         * config/tc-alpha.h: Likewise.
2023         * config/tc-i386.c (x86_64_section_letter): Return a bfd_vma.
2024         (x86_64_section_word): Return a bfd_vma.
2025         * config/tc-i386.h: Likewise.
2026         * config/tc-ip2k.c (ip2k_elf_section_flags): Change type of arg
2027         attr to bfd_vma.
2028         * config/tc-ip2k.h: Likewise.
2029         * config/tc-mep.c (mep_elf_section_letter): Return a bfd_vma.
2030         (mep_elf_section_flags): Change type of arg attr to bfd_vma.
2031         * config/tc-mep.h: Likewise.
2032         * config/tc-ppc.c  (ppc_section_letter): Return a bfd_vma.
2033         (ppc_section_word): Return a bfd_vma.
2034         (ppc_section_flags): Change type of arg attr to bfd_vma.
2035         * config/tc-ppc.h: Likewise.
2036         * config/tc-frv.h: Provide a prototype for frv_md_number_to_chars.
2037         * config/te-vms.h (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
2038         DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
2039         New file with new macros
2040         * dwarf2dbg.c (get_filenum, out_file_list): Default and call new
2041         macros.
2043 2009-01-15  Nick Clifton  <nickc@redhat.com>
2045         PR 9722
2046         * config/tc-arm.c (do_t_nop): Check for availability of Thumb2
2047         instructions before generating a Thumb2 nop.
2049 2009-01-14  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
2051         * config/tc-s390.h: Define LOCAL_LABEL_PREFIX.
2053 2009-01-12  Alan Modra  <amodra@bigpond.net.au>
2055         * config/tc-spu.c (md_pseudo_table): Add "brinfo".
2056         (brinfo): New var.
2057         (md_assemble): Poke brinfo into branch instructions.
2058         (spu_brinfo): New function.
2059         (md_apply_fix): Don't assume insn fields start off at zero, mask
2060         them to remove possible brinfo.
2062 2009-01-10  H.J. Lu  <hongjiu.lu@intel.com>
2064         * doc/c-i386.texi: Reformat.
2066 2009-01-10  H.J. Lu  <hongjiu.lu@intel.com>
2068         * config/tc-i386.c (cpu_arch): Add corei7, .clflush and
2069         .syscall.
2070         (i386_align_code): Handle PROCESSOR_COREI7.
2071         (md_show_usage): Add corei7, clflush and syscall.
2072         (i386_target_format): Replace cpup4 with cpuclflush.
2074         * config/tc-i386.h (processor_type): Add PROCESSOR_COREI7.
2076         * doc/c-i386.texi: Document corei7, clflush and syscall.
2078 2009-01-09  H.J. Lu  <hongjiu.lu@intel.com>
2080         * config/tc-i386.c (cpu_arch): Add .rdtscp.
2081         (md_show_usage): Display rdtscp.
2083         * doc/c-i386.texi: Document rdtscp.
2085 2009-01-09  Peter Bergner  <bergner@vnet.ibm.com>
2087         * config/tc-ppc.c (ppc_setup_opcodes): Remove PPC_OPCODE_NOPOWER4 test.
2088         Test the new "deprecated" opcode field.
2090 2009-01-07  Sterling Augustine  <sterling@tensilica.com>
2092         * config/tc-xtensa.c (produce_flix): New.
2093         (option_flix, optoin_no_generate_flix, option_no_flix) Define.
2094         (md_longopts): Add support for them.
2095         (md_parse_option): Likewise.
2096         (md_show_usage): Add help message.
2097         (finish_vinsn): Don't allow multi-slot flix when produce_flix
2098         option is set to FLIX_NONE.
2099         * config/xtensa-relax.c (transition_applies): Only relax to
2100         flix branches when produce_flix equals FLIX_ALL.
2101         * config/xtensa-relax.h (flix_level, FLIX_ALL, FLIX_NO_GENERATE
2102         FLIX_NONE): New.
2103         (produce_flix): Declare.
2105 2009-01-06  Chao-ying Fu  <fu@mips.com>
2107         * config/tc-mips.c (mips_ip): Set lastregno to 0xffffffff.
2108         Use strncmp to match jalr and jalr.hb.
2109         Fix a typo.
2111 2009-01-05  H.J. Lu  <hongjiu.lu@intel.com>
2113         AVX Programming Reference (December, 2008)
2114         * config/tc-i386.c (build_modrm_byte): Remove 5 operand instruction
2115         support.  Don't swap REG and NDS for FMA.
2117 2009-01-02  Matthias Klose  <doko@ubuntu.com>
2119         * itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf
2120         behaviour.
2122 For older changes see ChangeLog-2008
2124 Local Variables:
2125 mode: change-log
2126 left-margin: 8
2127 fill-column: 74
2128 version-control: never
2129 End: