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