bf47c39a11600a758f8f7056b5b5b86efc162e67
[deliverable/binutils-gdb.git] / gas / ChangeLog
1 2006-02-23 H.J. Lu <hongjiu.lu@intel.com>
2
3 * config/tc-ia64.c: Update copyright years.
4
5 2006-02-22 H.J. Lu <hongjiu.lu@intel.com>
6
7 * config/tc-ia64.c (specify_resource): Add the rule 17 from
8 SDM 2.2.
9
10 2005-02-22 Paul Brook <paul@codesourcery.com>
11
12 * config/tc-arm.c (do_pld): Remove incorrect write to
13 inst.instruction.
14 (encode_thumb32_addr_mode): Use correct operand.
15
16 2006-02-21 Paul Brook <paul@codesourcery.com>
17
18 * config/tc-arm.c (md_apply_fix): Fix off-by-one errors.
19
20 2006-02-17 Shrirang Khisti <shrirangk@kpitcummins.com>
21 Anil Paranjape <anilp1@kpitcummins.com>
22 Shilin Shakti <shilins@kpitcummins.com>
23
24 * Makefile.am: Add xc16x related entry.
25 * Makefile.in: Regenerate.
26 * configure.in: Added xc16x related entry.
27 * configure: Regenerate.
28 * config/tc-xc16x.h: New file
29 * config/tc-xc16x.c: New file
30 * doc/c-xc16x.texi: New file for xc16x
31 * doc/all.texi: Entry for xc16x
32 * doc/Makefile.texi: Added c-xc16x.texi
33 * NEWS: Announce the support for the new target.
34
35 2006-02-16 Nick Hudson <nick.hudson@dsl.pipex.com>
36
37 * configure.tgt: set emulation for mips-*-netbsd*
38
39 2006-02-14 Jakub Jelinek <jakub@redhat.com>
40
41 * config.in: Rebuilt.
42
43 2006-02-13 Bob Wilson <bob.wilson@acm.org>
44
45 * config/tc-xtensa.c (xg_add_opcode_fix): Number operands starting
46 from 1, not 0, in error messages.
47 (md_assemble): Simplify special-case check for ENTRY instructions.
48 (tinsn_has_invalid_symbolic_operands): Do not include opcode and
49 operand in error message.
50
51 2006-02-13 Joseph S. Myers <joseph@codesourcery.com>
52
53 * configure.tgt (arm-*-linux-gnueabi*): Change to
54 arm-*-linux-*eabi*.
55
56 2006-02-10 Nick Clifton <nickc@redhat.com>
57
58 * config/tc-crx.c (check_range): Ensure that the sign bit of a
59 32-bit value is propagated into the upper bits of a 64-bit long.
60
61 * config/tc-arc.c (init_opcode_tables): Fix cast.
62 (arc_extoper, md_operand): Likewise.
63
64 2006-02-09 David Heine <dlheine@tensilica.com>
65
66 * config/tc-xtensa.c (xg_assembly_relax): Increment steps_taken for
67 each relaxation step.
68
69 2006-02-09 Eric Botcazou <ebotcazou@libertysurf.fr>
70
71 * configure.in (CHECK_DECLS): Add vsnprintf.
72 * configure: Regenerate.
73 * messages.c (errno.h, stdarg.h, varargs.h, va_list): Do not
74 include/declare here, but...
75 * as.h: Move code detecting VARARGS idiom to the top.
76 (errno.h, stdarg.h, varargs.h, va_list): ...here.
77 (vsnprintf): Declare if not already declared.
78
79 2006-02-08 H.J. Lu <hongjiu.lu@intel.com>
80
81 * as.c (close_output_file): New.
82 (main): Register close_output_file with xatexit before
83 dump_statistics. Don't call output_file_close.
84
85 2006-02-07 Nathan Sidwell <nathan@codesourcery.com>
86
87 * config/tc-m68k.c (mcf5208_control_regs, mcf5213_control_regs,
88 mcf5329_control_regs): New.
89 (not_current_architecture, selected_arch, selected_cpu): New.
90 (m68k_archs, m68k_extensions): New.
91 (archs): Renamed to ...
92 (m68k_cpus): ... here. Adjust.
93 (n_arches): Remove.
94 (md_pseudo_table): Add arch and cpu directives.
95 (find_cf_chip, m68k_ip): Adjust table scanning.
96 (no_68851, no_68881): Remove.
97 (md_assemble): Lazily initialize.
98 (select_control_regs): Adjust cpu names. Add 5208, 5213, 5329.
99 (md_init_after_args): Move functionality to m68k_init_arch.
100 (mri_chip): Adjust table scanning.
101 (md_parse_option): Reimplement 'm' processing to add -march & -mcpu
102 options with saner parsing.
103 (m68k_lookup_cpu, m68k_set_arch, m68k_set_cpu, m68k_set_extension,
104 m68k_init_arch): New.
105 (s_m68k_cpu, s_m68k_arch): New.
106 (md_show_usage): Adjust.
107 (m68k_elf_final_processing): Set CF EF flags.
108 * config/tc-m68k.h (m68k_init_after_args): Remove.
109 (tc_init_after_args): Remove.
110 * doc/c-m68k.texi (M68K-Opts): Document -march, -mcpu options.
111 (M68k-Directives): Document .arch and .cpu directives.
112
113 2006-02-05 Arnold Metselaar <arnold.metselaar@planet.nl>
114
115 * config/tc-z80.c (z80_start_line_hook): allow .equ and .defl as
116 synonyms for equ and defl.
117 (z80_cons_fix_new): New function.
118 (emit_byte): Disallow relative jumps to absolute locations.
119 (emit_data): Only handle defb, prototype changed, because defb is
120 now handled as pseudo-op rather than an instruction.
121 (instab): Entries for defb,defw,db,dw moved from here...
122 (md_pseudo_table): ... to here, use generic cons() for defw,dw.
123 Add entries for def24,def32,d24,d32.
124 (md_assemble): Improved error handling.
125 (md_apply_fix): New case BFD_RELOC_24, set fixP->fx_no_overflow to one.
126 * config/tc-z80.h (TC_CONS_FIX_NEW): Define.
127 (z80_cons_fix_new): Declare.
128 * doc/c-z80.texi (defb, db): Mention warning on overflow.
129 (def24,d24,def32,d32): New pseudo-ops.
130
131 2006-02-02 Paul Brook <paul@codesourcery.com>
132
133 * config/tc-arm.c (do_shift): Remove Thumb-1 constraint.
134
135 2005-02-02 Paul Brook <paul@codesourcery.com>
136
137 * config/tc-arm.c (T2_OPCODE_MASK, T2_DATA_OP_SHIFT, T2_OPCODE_AND,
138 T2_OPCODE_BIC, T2_OPCODE_ORR, T2_OPCODE_ORN, T2_OPCODE_EOR,
139 T2_OPCODE_ADD, T2_OPCODE_ADC, T2_OPCODE_SBC, T2_OPCODE_SUB,
140 T2_OPCODE_RSB): Define.
141 (thumb32_negate_data_op): New function.
142 (md_apply_fix): Use it.
143
144 2006-01-31 Bob Wilson <bob.wilson@acm.org>
145
146 * config/xtensa-istack.h (TInsn): Remove record_fix and sub_symbol
147 fields.
148 * config/tc-xtensa.h (xtensa_frag_type): Remove slot_sub_symbols field.
149 * config/tc-xtensa.c (md_apply_fix): Check for unexpected uses of
150 subtracted symbols.
151 (relaxation_requirements): Add pfinish_frag argument and use it to
152 replace setting tinsn->record_fix fields.
153 (xg_assemble_vliw_tokens): Adjust calls to relaxation_requirements
154 and vinsn_to_insnbuf. Remove references to record_fix and
155 slot_sub_symbols fields.
156 (xtensa_mark_narrow_branches): Delete unused code.
157 (is_narrow_branch_guaranteed_in_range): Handle expr that is not just
158 a symbol.
159 (convert_frag_immed): Adjust vinsn_to_insnbuf call and do not set
160 record_fix fields.
161 (tinsn_immed_from_frag): Remove code for handling slot_sub_symbols.
162 (vinsn_to_insnbuf): Change use of record_fixup argument, replacing use
163 of the record_fix field. Simplify error messages for unexpected
164 symbolic operands.
165 (set_expr_symbol_offset_diff): Delete.
166
167 2006-01-31 Paul Brook <paul@codesourcery.com>
168
169 * config/tc-arm.c (arm_reg_parse): Check if reg is non-NULL.
170
171 2006-01-31 Paul Brook <paul@codesourcery.com>
172 Richard Earnshaw <rearnsha@arm.com>
173
174 * config/tc-arm.c: Use arm_feature_set.
175 (arm_ext_*, arm_arch_full, arm_arch_t2, arm_arch_none,
176 arm_cext_iwmmxt, arm_cext_xscale, arm_cext_maverick, fpu_fpa_ext_v1,
177 fpu_fpa_ext_v2, fpu_vfp_ext_v1xd, fpu_vfp_ext_v1, fpu_vfp_ext_v2):
178 New variables.
179 (insns): Use them.
180 (md_atof, opcode_select, opcode_select, md_assemble, md_assemble,
181 md_begin, arm_parse_extension, arm_parse_cpu, arm_parse_arch,
182 arm_parse_fpu, arm_parse_float_abi, aeabi_set_public_attributes,
183 s_arm_cpu, s_arm_arch, s_arm_fpu): Use macros for accessing CPU
184 feature flags.
185 (arm_legacy_option_table, arm_option_cpu_value_table): New types.
186 (arm_opts): Move old cpu/arch options from here...
187 (arm_legacy_opts): ... to here.
188 (md_parse_option): Search arm_legacy_opts.
189 (arm_cpus, arm_archs, arm_extensions, arm_fpus)
190 (arm_float_abis, arm_eabis): Make const.
191
192 2006-01-25 Bob Wilson <bob.wilson@acm.org>
193
194 * config/tc-xtensa.c (md_apply_fix): Set value to zero for PLT relocs.
195
196 2006-01-21 Jie Zhang <jie.zhang@analog.com>
197
198 * config/bfin-parse.y (asm_1): Check value range for 16 bit immediate
199 in load immediate intruction.
200
201 2006-01-21 Jie Zhang <jie.zhang@analog.com>
202
203 * config/bfin-parse.y (value_match): Use correct conversion
204 specifications in template string for __FILE__ and __LINE__.
205 (binary): Ditto.
206 (unary): Ditto.
207
208 2006-01-18 Alexandre Oliva <aoliva@redhat.com>
209
210 Introduce TLS descriptors for i386 and x86_64.
211 * config/tc-i386.c (tc_i386_fix_adjustable): Handle
212 BFD_RELOC_386_TLS_GOTDESC, BFD_RELOC_386_TLS_DESC_CALL,
213 BFD_RELOC_X86_64_GOTPC32_TLSDESC, BFD_RELOC_X86_64_TLSDESC_CALL.
214 (optimize_disp): Emit fix up for BFD_RELOC_386_TLS_DESC_CALL and
215 BFD_RELOC_X86_64_TLSDESC_CALL immediately, and clear the
216 displacement bits.
217 (build_modrm_byte): Set up zero modrm for TLS desc calls.
218 (lex_got): Handle @tlsdesc and @tlscall.
219 (md_apply_fix, tc_gen_reloc): Handle the new relocations.
220
221 2006-01-11 Nick Clifton <nickc@redhat.com>
222
223 Fixes for building on 64-bit hosts:
224 * config/tc-avr.c (mod_index): New union to allow conversion
225 between pointers and integers.
226 (md_begin, avr_ldi_expression): Use it.
227 * config/tc-i370.c (md_assemble): Add cast for argument to print
228 statement.
229 * config/tc-tic54x.c (subsym_substitute): Likewise.
230 * config/tc-mn10200.c (md_assemble): Use a union to convert the
231 opindex field of fr_cgen structure into a pointer so that it can
232 be stored in a frag.
233 * config/tc-mn10300.c (md_assemble): Likewise.
234 * config/tc-frv.c (frv_debug_tomcat): Use %p to print pointer
235 types.
236 * config/tc-v850.c: Replace uses of (int) casts with correct
237 types.
238
239 2006-01-09 H.J. Lu <hongjiu.lu@intel.com>
240
241 PR gas/2117
242 * symbols.c (snapshot_symbol): Don't change a defined symbol.
243
244 2006-01-03 Hans-Peter Nilsson <hp@bitrange.com>
245
246 PR gas/2101
247 * config/tc-mmix.c (mmix_handle_mmixal): Don't treat #[0-9][FB] as
248 a local-label reference.
249
250 For older changes see ChangeLog-2005
251 \f
252 Local Variables:
253 mode: change-log
254 left-margin: 8
255 fill-column: 74
256 version-control: never
257 End:
This page took 0.03386 seconds and 3 git commands to generate.