2009-03-03 Tristan Gingold <gingold@adacore.com>
[binutils.git] / gas / ChangeLog
blobd90b214fa345b8c66279cc8bd73bfc1bbbb93927
1 2009-03-03  Tristan Gingold  <gingold@adacore.com>
2             Eric Botcazou  <ebotcazou@adacore.com>
3             Douglas B Rupp  <rupp@gnat.com>
5         * doc/as.texinfo (Overview): Mention -replace/-noreplace options
6         for Alpha.
7         * doc/c-alpha.texi (Alpha Options): Document -replace/-noreplace.
8         * config/tc-alpha.h (TC_VALIDATE_FIX_SUB): Define to 1 (evax).
9         (OBJ_SYMFIELD_TYPE): Remove.
10         (tc_canonicalize_symbol_name): Define to evax_shorten_name.
11         (TC_IMPLICIT_LCOMM_ALIGNMENT): For alignment to 3 on evax.
12         (tc_frob_file_before_fix): Do not defined on evax.
13         * config/tc-alpha.c: Always includes dwarf2dbg.h.
14         Include vms.h if OBJ_EVAX.
15         (struct alpha_fixup): Add xtrasym and procsym (evax only).
16         (enum alpha_macro_arg): Remove trailing comma.
17         (md_longopts): Add replace and noreplace arguments (evax only).
18         (alpha_evax_proc_hash): New variable.
19         (alpha_link_section): Make it global.
20         (alpha_ctors_section, alpha_dtors_section): Removed.
21         (alpha_ctors_symbol, alpha_dtors_symbol): Ditto.
22         (alpha_lit8_section): Ifndef'ed on evax.
23         (alpha_lit8_symbol): Ditto.
24         (alpha_prologue_label): New variable.
25         (alpha_linkage_symbol): New variable (evax only).
26         (alpha_flag_replace): Ditto.
27         (struct alpha_evax_procs): Add handler and handler_data field.
28         (alpha_evax_proc): Now of type pointer.
29         (alpha_linkage_fixup_root, alpha_linkage_fixup_tail): New variables.
30         (struct alpha_reloc_tag): Add sym and psym fields (evax only).
31         (get_alpha_reloc_tag): Initialize sym and psym fields (evax only).
32         (alpha_adjust_relocs): Ifndef'ed on evax.
33         (load_expression): Add opname argument.
34         Implement LDA/BSR optimization for evax.
35         (emit_lda): Adjust for new prototype of load_expression.
36         (emit_ir_load): Ditto. Do not nothing for GP if ..lk symbols.
37         (emit_loadstore): Likewise.
38         (emit_ldXu): Likewise.
39         (emit_stX): Likewise.
40         (emit_jsrjmp): Likewise.  Implement LDA/BSR optimization for evax.
41         (emit_ldgp): Avoid warning in evax case.
42         (add_to_link_pool): Make it static.  Return symbolic expression rather
43         than number expression for the offset.
44         (s_alpha_text): Create .text symbol for evax if not already created.
45         (s_alpha_comm): Do not create specific section for common symbol.
46         Fill common area with zeros for evax.
47         (s_alpha_prologue): Create alpha_prologue_label.
48         (s_alpha_section_name): New function (evax).
49         (s_alpha_section_word): Likewise.
50         (section_name): New static variabke moved out from ...
51         (s_alpha_section): ... here.  Create new sections on demand.
52         (s_alpha_literals): New function (evax).
53         (s_alpha_ent): Create alpha_evax_proc instance and insert it in the
54         alpha_evax_proc_hash table.
55         (s_alpha_handler): New function (evax).
56         (s_alpha_frame): Adjust for new type of alpha_evax_proc.
57         (s_alpha_prologue): New function (evax).
58         (s_alpha_pdesc): Adjust for new type of alpha_evax_proc and new
59         handling of procedures with hash table.
60         Add support for condition handlers.
61         (s_alpha_linkage): Create linkage_fixup instance and chain it.
62         (s_alpha_fp_save): Adjust for new type of alpha_evax_proc.
63         (s_alpha_mask): Likewise.
64         (s_alpha_fmask): Likewise.
65         (s_alpha_end): Clear alpha_evax_proc.
66         (s_alpha_align): Increase max_alignment to 16.
67         (alpha_print_token): Call print_expr_1 instead of print_expr.
68         (md_pseudo_table): Add "section", "literals", "handler" and 
69         "handler_data" (evax).  Do not ignore "prologue" on evax.
70         Fix indentation.
71         (md_begin): Create hash table for alpha_evax_proc_hash.
72         (md_parse_option): Handle OPTION_REPLACE and OPTION_NOREPLACE.
73         (md_show_usage): Mention -replace/-noreplace for evax.
74         (md_apply_fix): Handle evax relocs (_NOP, _LDA, _BSR and _BOH).
75         (alpha_force_relocation): Likewise.
76         (alpha_fix_adjustable): Likewise. Add BFD_RELOC_16 case.
77         (tc_gen_reloc): Likewise.  Add BFD_RELOC_ALPHA_LINKAGE for evax.
78         (emit_insn): New cases for evax specific relocs.
79         (assemble_insn): Fix indentation.
80         Take care of -MDISP in operand table.
81         * config/obj-evax.h (struct alpha_linkage_fixups): New struct.
82         (OBJ_SYMFIELD_TYPE): New macro.
83         (obj_symbol_new_hook): Define.
84         (obj_frob_symbol, obj_frob_file_before_adjust): Ditto.
85         (obj_frob_file_before_fix): Ditto.
86         (PDSC_S_M_HANDLER_VALID): New macro.
87         (PDSC_S_M_HANDLER_DATA_VALID): Ditto.
88         (TC_IMPLICIT_LCOMM_ALIGNMENT): Remove.
89         Add prototypes for functions declared in obj-evax.c
90         * config/obj-evax.c: Include subsegs.h, struc-symbol.h, safe-ctype.h.
91         (s_evax_weak): Convert to ansi-C.
92         (evax_symbol_new_hook): New function.
93         (evax_frob_symbol): Ditto.
94         (evax_frob_file_before_adjust): Ditto.
95         (evax_frob_file_before_fix): Ditto.
96         (evax_shorten_name): Ditto.
97         (crc32): Ditto.
98         (encode_32): Ditto.
99         (encode_16): Ditto.
100         (decode_16): Ditto.
101         (shorten_identifier): Ditto.
102         (is_truncated_identifier): Ditto.
103         * dwarf2dbg.c (out_debug_info): Do not append trailing slash on VMS.
104         * as.c (close_output_file): Remove #ifndef OBJ_VMS.
105         (main): Ditto.
107 2009-03-02  Nick Clifton  <nickc@redhat.com>
109         PR 9874
110         * config/tc-ia64.c (fix_insn): Fix warning reported by
111         -Wformat-security.
113 2009-03-02  Qinwei  <qinwei@sunnorth.com.cn>
115         * config/tc-score7.c: New file.
116         * doc/c-score.texi: New file.
117         * Makefile.am: Update dependencies for tc-score.c.
118         * Makefile.in: Regenerate.
119         * NEWS: Mention support for Score7 architecture.
120         * config/tc-score.c: Add support for Score7 architecture.
121         * config/tc-score.h: Likewise.
122         * doc/Makefile.am: Add c-score.texi.
123         * doc/Makefile.in: Regenerate.
124         * doc/all.texi: Add Score7.
125         * doc/as.texinfo: Add Score7.
127 2009-03-01  Mark Mitchell  <mark@codesourcery.com>
129         * config/tc-arm.c (md_assemble): Allow barrier instructions on
130         ARMv6-M cores.
132 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
134         * configure: Regenerate.
136 2009-02-26  Peter Bergner  <bergner@vnet.ibm.com>
138         * config/tc-ppc.c (pre_defined_registers): Add "f32" to "f63",
139         "f.32" to "f.63", "vs0" to "vs63" and "vs.0" to "vs.63".
140         (parse_cpu): Extend -mpower7 to accept power7 and isel instructions.
142 2009-02-25  H.J. Lu  <hongjiu.lu@intel.com>
144         * config/tc-i386.c (fits_in_imm4): Removed.
146 2009-02-24  Helge Deller <deller@gmx.de>
148         * config/tc-hppa.c (pa_ip): Add check of immediate values.
149         (SAVE_IMMEDIATE): New define.
151 2009-02-23  Mark Mitchell  <mark@codesourcery.com>
153         * config/tc-arm.c (warn_deprecated_sp): New macro.
154         (do_t_mov_cmp): Permit R13 as the second
155         argument to "cmp.n".
157 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
159         * config/tc-i386.c (type_names): Add OPERAND_TYPE_REGYMM.
160         (pt): Replace UINTS_ALL_ZERO with operand_type_all_zero.
162 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
164         * config/tc-i386.c (type_names): Remove OPERAND_TYPE_VEX_IMM4.
166 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
168         * config/tc-i386.c (vex_imm4): Removed.
169         (VEX_check_operands): Likewise.
170         (match_template): Updated.
172 2009-02-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
174         * doc/all.texi: Set S390.
175         * doc/as.texinfo: Add S390 support and pull in c-s390.texi.
176         * doc/Makefile.am (CPU_DOCS): Add c-s390.texi.
177         * doc/Makefile.in: Likewise.
178         * doc/c-s390.texi: New.
180 2009-02-12  Nathan Sidwell  <nathan@codesourcery.com>
182         * config/tc-m68k.c (mcf51qe_ctrl): Add CPUCR.
183         (mcf52259_ctrl, mcf52277_ctrl, mcf53017_ctrl): New.
184         (mcf5307_ctrl): Add VBR.
185         (no_mac): New variable.
186         (m68k_extensions): Refer to no_mac mask.
187         (m68k_cpus): Add 51, 51ac, 51cn, 51em, 51jm, 52274, 52277,
188         52252..52259, 53011..53017.
189         (m68k_ip): Process CPUCR.
190         (init_table): Add cpucr entry.
191         (m68k_set_extension): Allow negated mask to refer to a variable.
192         (md_show_usage): Use '%s' to silence fprintf warning.
193         * config/m68k-parse.h (CPUCR): New control register.
195 2009-02-10  Nathan Sidwell  <nathan@codesourcery.com>
197         * config/tc-ppc.c (ppc_insert_operand, md_assemble): Use '%s' for
198         as_bad calls to silence compiler warning.
200 2009-02-06  Nick Clifton  <nickc@redhat.com>
202         PR 9814
203         * config/tc-arm.c (MODE_RECORDED): New define.
204         (output_inst): Record the thumb_mode in the current frag.
205         (arm_handle_align): Ignore the MODE_RECORDED bit in tc_frag_data.
206         (arm_init_frag): Only set the tc_frag_data field if it has not
207         already been set.
209 2009-02-04  H.J. Lu  <hongjiu.lu@intel.com>
211         AVX Programming Reference (January, 2009)
212         * config/tc-i386.c (CPU_FLAGS_PCLMUL_MATCH): New.
213         (CPU_FLAGS_AVX_MATCH): Updated.
214         (CPU_FLAGS_32BIT_MATCH): Likewise.
215         (cpu_flags_match): Likewise.
217 2009-02-03  Sandip Matte  <sandip@rmicorp.com>
219         * config/tc-mips.c (macro): Handle M_MSGSND, M_MSGLD, M_MSGLD_T,
220         M_MSGWAIT and M_MSGWAIT_T.
221         (mips_cpu_info_table): Add XLR entry.
222         * doc/c-mips.texi (-march): Document xlr.
224 2009-02-03  Eric B. Weddington  <eric.weddington@atmel.com>
226         * config/tc-avr.c (mcu_types): Add ata6289.
227         * doc/c-avr.texi: Likewise.
229 2009-02-03  Carlos O'Donell  <carlos@codesourcery.com>
231         * configure.in: AC_SUBST pdfdir.
232         * Makefile.am: Add install-pdf, install-pdf-am,
233         and install-pdf-recursive targets.
234         * doc/Makefile.am: Define pdf__strip_dir. Add
235         install-pdf and install-pdf-am targets.
236         * po/Make-in: Add install-pdf target.
237         * configure: Regenerate.
238         * Makefile.in: Regenerate.
239         * doc/Makefile.in: Regenerate.
241 2009-02-03  Maxim Kuvyrkov  <maxim@codesourcery.com>
243         * config/m68k-parse.h (enum pic_relocation): Add values for TLS
244         relocations.
245         * config/m68k-parse.y (yylex): Parse TLS relocations.
246         * config/tc-m68k.c (m68k_elf_cons): New static function.
247         (md_pseudo_table): Use it.
248         (get_reloc_code, tc_m68k_fix_adjustable, tc_gen_reloc): Handle TLS
249         relocations.
250         (md_apply_fix): Fix to set thread local flag.
251         (m68k_elf_suffix): New static function; helper for m68k_elf_cons.
253 2009-02-03  Vince Weaver <vince@csl.cornell.edu>
255         PR 9779
256         * config/tc-pdp11.c (parse_op_no_deferred): Fix handling of
257         indexed addressing for symbolic expressions.
259 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
261         * config/tc-arm.c (BAD_SP): Define.
262         (s_arm_unwind_fnstart): Use REG_SP.
263         (s_arm_unwind_setfp): Likewise.
264         (reject_bad_reg): New macro.
265         (do_co_reg): Check for bad registers.
266         (do_co_reg2c): Likewise.
267         (do_srs): Use REG_SP.
268         (do_t_add_sub): Check for bad registers.
269         (do_t_adr): Likewise.
270         (do_t_arit3): Likewise.
271         (do_t_arit3c): Likewise.
272         (do_t_bfc): Likewise.
273         (do_t_bfi): Likewise.
274         (do_t_bfx): Likewise.
275         (do_t_blx): Likewise.
276         (do_t_bx): Likewise.
277         (do_t_bxj): Likewise.
278         (do_t_clz): Likewise.
279         (do_t_div): Likewise.
280         (do_t_mla): Likewise.
281         (do_t_mlal): Likewise.
282         (do_t_mov_cmp): Likewise.
283         (do_t_mov16): Likewise.
284         (do_t_mvn_tst): Likewise.
285         (do_t_mrs): Likewise.
286         (do_t_msr): Likewise.
287         (do_t_mul): Likewise.
288         (do_t_mull): Likewise.
289         (do_t_orn): Likewise.
290         (do_t_pkhbt): Likewise.
291         (do_t_pld): Likewise.
292         (do_t_rbit): Likewise.
293         (do_t_rev): Likewise.
294         (do_t_rrx): Likewise.
295         (do_t_rsb): Likewise.
296         (do_t_shift): Likewise.
297         (do_t_simd): Likewise.
298         (do_t_ssat): Likewise.
299         (do_t_ssat16): Likewise.
300         (do_t_sxtah): Likewise.
301         (do_t_sxth): Likewise.
302         (do_t_tb): Likewise.
303         (do_t_usat): Likewise.
304         (do_t_usat16): Likewise.
305         (nysn_insert_sp): Use REG_SP.
307 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
309         * config/tc-arm.c (do_t_orn): New function.
310         (do_t_rrx): Likewise.
311         (insns): Add orn and rrx.
313 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
315         * config/tc-arm.c (insns): Add qasx, qsax, shasx, shsax, ssax,
316         uasx, uhasx, uhsx, uqasx, uqsax, usax. 
318 2009-01-29  Mark Mitchell  <mark@codesourcery.com>
320         * config/tc-arm.c (insns): Correct encoding of qadd, qdadd, qsub,
321         qdsub in Thumb-2 mode.
323 2009-01-29  Paul Brook  <paul@codesourcery.com>
324             Mark Mitchell  <mark@codesourcery.com>
326         * config/tc-arm.c (do_t_mul): In Thumb-2 mode, use 16-bit encoding
327         of MUL when possible.
329 2009-01-29  Nick Clifton  <nickc@redhat.com>
331         * config/tc-mep.h (DIFF_EXPR_OK): Do not define.
333 2009-01-29  Nathan Sidwell  <nathan@codesourcery.com>
334             Catherine Moore <clm@codesourcery.com?
336         * doc/c-arm.texi (ARM Directives): Alphabetize. Document .2byte,
337         .4byte, .8byte, .bss, .even, .extend, .ldouble, .packed, .secrel32
338         directives.
340 2009-01-27  Nick Clifton  <nickc@redhat.com>
342         * config/tc-mips.c (append_insn): Cope with a complex reloc
343         sequence containing an unsupported reloc type.
344         (enum options): Replace computed #define's constants for option
345         numbers with this enum.
346         (struct md_longopts): Use the enum.  Allow OPTION_32 in a non-ELF
347         environment.
348         (md_parse_option): Allow -32 in a non-ELF environment.
350 2009-01-26  Andrew Stubbs  <ams@codesourcery.com>
352         * config/tc-arm.c (attributes_set_explicitly): New array.
353         (s_arm_eabi_attribute): Check return value from s_vendor_attribute.
354         (cpu_arch): Add ARM_ARCH_V5T.
355         (aeabi_set_attribute_int): New function.
356         (aeabi_set_attribute_string): New function.
357         (aeabi_set_public_attributes): Set attributes according to the user's
358         intentions, rather than the actual state of the binary.
359         Use aeabi_set_attribute_int and aeabi_set_attribute_string instead of
360         bfd_elf_add_proc_attr_int and bfd_elf_add_proc_attr_string.
361         Support WMMXv2. Use attribute names instead of numbers.
362         * read.c (s_vendor_attribute): Change return type to int.
363         Return the tag number that was set.
364         * read.h (s_vendor_attribute): Change return type to int.
366 2009-01-26  Eric B. Weddington  <eric.weddington@atmel.com>
368         PR 9789
369         * config/tc-avr.c (mcu_types): Fix typo in atmega128rfa1 name.
370         * doc/c-avr.texi: Likewise.
372 2009-01-23  Nathan Sidwell  <nathan@codesourcery.com>
374         * doc/c-arm.texi (): Document -mwarn-deprecated.
375         * config/tc-arm.c (WARN_DEPRECATED): Remove.  Replace with ...
376         (warn_on_deprecated): ... this.
377         (opcode_lookup, md_assemble): Check it before warning.
378         (arm_opts): Add m[no-]warn-deprecated.
379         (md_parse_option): Replace WARN_DEPRECATED with
380         warn_on_deprecated.
382 2009-01-23  Andreas Schwab  <schwab@suse.de>
384         * config/tc-mips.c (macro) [M_DINS, M_SEQ_I, M_SNE_I]: Cast
385         arguments to macro_build to match format.
387         * config/obj-elf.h (LOCAL_LABEL_PREFIX): Conditionally define.
388         * config/tc-s390.h (LOCAL_LABEL_PREFIX): Don't define.
390 2009-01-19  Nick Clifton  <nickc@redhat.com>
392         * config/tc-arm.h (CONVERT_SYMBOLIC_ATTRIBUTE): Only define for
393         ELF format ARM targets.
394         * config/tc-arm.c (arm_convert_symbolic_attribute): Likewise.
396 2009-01-19  Nick Clifton  <nickc@redhat.com>
398         * configure.tgt: Restore alpha sorting to object format switch
399         statement.
401 2009-01-19  Andrew Stubbs  <ams@codesourcery.com>
403         * read.c (s_vendor_attribute): Allow for unknown flag bits in type.
405 2009-01-16  Mark Shinwell  <shinwell@codesourcery.com>
407         * config/te-armeabi.h (EABI_DEFAULT): Use EF_ARM_EABI_VER5.
408         * config/te-armlinuxeabi.h (EABI_DEFAULT): Likewise.
410 2009-01-16  Andrew Stubbs  <ams@codesourcery.com>
411             Daniel Jacobowitz  <dan@codesourcery.com>
413         * config/tc-arm.c (arm_copy_symbol_attributes): New function.
414         * config/tc-arm.h (arm_copy_symbol_attributes): New prototype.
415         (CONVERT_SYMBOLIC_ATTRIBUTE): New define.
416         * read.c (s_vendor_attribute): Add support for symbolic tag names.
417         Improve string parser.
418         * doc/c-arm.texi (ARM Machine Directives): Document
419         .eabi_attribute symbolic tag names.
421 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
423         * configure.in (commonbfdlib): Delete.
424         * configure: Regenerate.
425         * po/POTFILES.in: Regenerate.
427 2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
428             Julian Brown   <julian@codesourcery.com>
430         * config/tc-arm.c (cpu_arch): Change ARM_ARCH_V6M to 11.
432 2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
434         * read.c (s_vendor_attribute): bfd_elf_add_obj_attr_compat ->
435         bfd_elf_add_obj_attr_int_string.
437 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
439         * configure.tgt(ia64-*-*vms*): New target.
440         * dwarf2dbg.h (dwarf2_loc_mark_labels): Make extern.
441         * tc.h (md_number_to_chars): Declare iff undefined.
442         * config/obj-elf.c (obj_elf_change_section): Change type of arg
443         attr to bfd_vma.
444         (obj_elf_parse_section_letters): Return a bfd_vma. Change type of
445         variables attr, md_attr to bfd_vma.
446         (obj_elf_section_word): Likewise.
447         (obj_elf_section): Change type of variable attr to bfd_vma
448         * config/obj-elf.h (obj_elf_change_section): Change type of arg
449         attr to bfd_vma.
450         * config/tc-ia64.c (bfdver.h,time.h): Include.
451         (ia64_elf_section_letter): Now returns a bfd_vma.
452         Handle VMS specific attributes.
453         (ia64_elf_section_flags): Arg attr now a bfd_vma.
454         (ia64_init): Don't turn on dependency checking for VMS.
455         (ia64_target_format): Check for VMS flag bit.
456         (do_alias): Hande decc$ functions.
457         (get_vms_time): New function.
458         (ia64_vms_note): New function.
459         * config/tc-ia64.h (ia64_elf_section_letter): Now returns a bfd_vma.
460         (ia64_elf_section_flags): Arg attr now a bfd_vma.
461         (tc_init_after_args): Define for VMS.
462         * config/tc-alpha.c (alpha_elf_section_letter): Return a bfd_vma.
463         (alpha_elf_section_flags): Change type of arg attr to bfd_vma.
464         * config/tc-alpha.h: Likewise.
465         * config/tc-i386.c (x86_64_section_letter): Return a bfd_vma.
466         (x86_64_section_word): Return a bfd_vma.
467         * config/tc-i386.h: Likewise.
468         * config/tc-ip2k.c (ip2k_elf_section_flags): Change type of arg
469         attr to bfd_vma.
470         * config/tc-ip2k.h: Likewise.
471         * config/tc-mep.c (mep_elf_section_letter): Return a bfd_vma.
472         (mep_elf_section_flags): Change type of arg attr to bfd_vma.
473         * config/tc-mep.h: Likewise.
474         * config/tc-ppc.c  (ppc_section_letter): Return a bfd_vma.
475         (ppc_section_word): Return a bfd_vma.
476         (ppc_section_flags): Change type of arg attr to bfd_vma.
477         * config/tc-ppc.h: Likewise.
478         * config/tc-frv.h: Provide a prototype for frv_md_number_to_chars.
479         * config/te-vms.h (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
480         DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
481         New file with new macros
482         * dwarf2dbg.c (get_filenum, out_file_list): Default and call new
483         macros.
485 2009-01-15  Nick Clifton  <nickc@redhat.com>
487         PR 9722
488         * config/tc-arm.c (do_t_nop): Check for availability of Thumb2
489         instructions before generating a Thumb2 nop.
491 2009-01-14  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
493         * config/tc-s390.h: Define LOCAL_LABEL_PREFIX.
495 2009-01-12  Alan Modra  <amodra@bigpond.net.au>
497         * config/tc-spu.c (md_pseudo_table): Add "brinfo".
498         (brinfo): New var.
499         (md_assemble): Poke brinfo into branch instructions.
500         (spu_brinfo): New function.
501         (md_apply_fix): Don't assume insn fields start off at zero, mask
502         them to remove possible brinfo.
504 2009-01-10  H.J. Lu  <hongjiu.lu@intel.com>
506         * doc/c-i386.texi: Reformat.
508 2009-01-10  H.J. Lu  <hongjiu.lu@intel.com>
510         * config/tc-i386.c (cpu_arch): Add corei7, .clflush and
511         .syscall.
512         (i386_align_code): Handle PROCESSOR_COREI7.
513         (md_show_usage): Add corei7, clflush and syscall.
514         (i386_target_format): Replace cpup4 with cpuclflush.
516         * config/tc-i386.h (processor_type): Add PROCESSOR_COREI7.
518         * doc/c-i386.texi: Document corei7, clflush and syscall.
520 2009-01-09  H.J. Lu  <hongjiu.lu@intel.com>
522         * config/tc-i386.c (cpu_arch): Add .rdtscp.
523         (md_show_usage): Display rdtscp.
525         * doc/c-i386.texi: Document rdtscp.
527 2009-01-09  Peter Bergner  <bergner@vnet.ibm.com>
529         * config/tc-ppc.c (ppc_setup_opcodes): Remove PPC_OPCODE_NOPOWER4 test.
530         Test the new "deprecated" opcode field.
532 2009-01-07  Sterling Augustine  <sterling@tensilica.com>
534         * config/tc-xtensa.c (produce_flix): New.
535         (option_flix, optoin_no_generate_flix, option_no_flix) Define.
536         (md_longopts): Add support for them.
537         (md_parse_option): Likewise.
538         (md_show_usage): Add help message.
539         (finish_vinsn): Don't allow multi-slot flix when produce_flix
540         option is set to FLIX_NONE.
541         * config/xtensa-relax.c (transition_applies): Only relax to
542         flix branches when produce_flix equals FLIX_ALL.
543         * config/xtensa-relax.h (flix_level, FLIX_ALL, FLIX_NO_GENERATE
544         FLIX_NONE): New.
545         (produce_flix): Declare.
547 2009-01-06  Chao-ying Fu  <fu@mips.com>
549         * config/tc-mips.c (mips_ip): Set lastregno to 0xffffffff.
550         Use strncmp to match jalr and jalr.hb.
551         Fix a typo.
553 2009-01-05  H.J. Lu  <hongjiu.lu@intel.com>
555         AVX Programming Reference (December, 2008)
556         * config/tc-i386.c (build_modrm_byte): Remove 5 operand instruction
557         support.  Don't swap REG and NDS for FMA.
559 2009-01-02  Matthias Klose  <doko@ubuntu.com>
561         * itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf
562         behaviour.
564 For older changes see ChangeLog-2008
566 Local Variables:
567 mode: change-log
568 left-margin: 8
569 fill-column: 74
570 version-control: never
571 End: