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