Tue Dec 7 16:02:53 1993 Steve Chamberlain (sac@jonny.cygnus.com)
[deliverable/binutils-gdb.git] / gas / ChangeLog
1 Tue Dec 7 16:02:53 1993 Steve Chamberlain (sac@jonny.cygnus.com)
2
3 * config/tc-sh.c (md_convert_frag): Truncate disps before calling
4 md_number_to_chars. (md_assemble): Don't modify
5 input_line_pointer.
6
7 Mon Dec 6 11:49:03 1993 Doug Evans (dje@canuck.cygnus.com)
8
9 * config/tc-h8300.c (md_assemble): Don't update input_line_pointer.
10
11 Mon Dec 6 11:20:02 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
12
13 * config/obj-som.[ch] (obj_read_begin_hook): Remove last change.
14 Breaks with the HP compilers.
15
16 * config/tc-hppa.c (struct call_info): Remove fields which were
17 set but never used. Remove all code which sets those fields.
18 (struct subspace_dictionary_chain): Likewise.
19 (struct space_dictionary_chain): Likewise.
20 (pa_desc): Delete useless function. Delete all references.
21 (hppa_tc_make_sections): No need to count the number of symbols for
22 the symbol extension section.
23
24 Sun Dec 5 17:05:29 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
25
26 * config/obj-som.c (obj_som_version): Pass version string to
27 SOM BFD backend.
28 (obj_som_copyright): New function. Much like obj_som_version.
29
30 * config/tc-hppa.c (obj_copyright): Define as appropriate for
31 SOM and ELF.
32 (pa_copyright): Just a stub now.
33
34 * config/obj-som.c (obj_read_begin_hook): Delete unused function.
35 * config/obj-som.h (obj_read_begin_hook): Provide dummy definition.
36 (TARGET_SYMBOL_FIELDS): Delete. SOM isn't making use of them.
37
38 * config/tc-hppa.c (tc_gen_reloc, SOM version): Handle relocation
39 expansion due to rounding mode selectors. Handle R_[RDSN]_MODE
40 relocations for selecting the current rounding mode.
41
42 * config/tc-hppa.c (evaluate_absolute): Support e_rrsel and
43 e_rlsel field selectors.
44
45 Fri Dec 3 18:33:24 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
46
47 * config/obj-elf.h: If ECOFF_DEBUGGING, undef
48 SEPARATE_STAB_SECTIONS and INIT_STAB_SECTION, and define
49 OBJ_PROCESS_STAB to call ecoff_stab.
50 * config/obj-elf.c: Don't compile obj_elf_init_stab_section if
51 INIT_STAB_SECTION is not defined.
52
53 Fri Dec 3 10:56:40 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
54
55 * config/tc-hppa.c (md_apply_fix): Delete old wrapper function.
56 (md_apply_fix_1): Rename to md_apply_fix. Fix argument decls.
57 Fix comments in various places. Always return a value.
58 Avoid dereferencing a NULL fx_addsy.
59 (hppa_force_relocation): Avoid dereferencing a NULL fx_addsy.
60
61 Fri Dec 3 09:47:30 1993 Pete Hoogenboom (hoogen@cs.utah.edu)
62
63 * tc-hppa.c: (tc_gen_reloc): Addend for a plabel relocation should
64 be either 0 or 2 (no static link or static link required). Always
65 assume no static link.
66
67 Thu Dec 2 11:52:21 1993 Ken Raeburn (raeburn@cygnus.com)
68
69 * config/tc-sparc.c (tc_gen_reloc): Make adjustment to addend be
70 dependent on howto fields, not on format flavour.
71
72 * struc-symbol.h (struct symbol): New fields sy_obj and sy_tc,
73 defined as types OBJ_SYMFIELD_TYPE and TC_SYMFIELD_TYPE, if those
74 macros are defined.
75 * config/obj-coff.h (TC_SYMFIELD_TYPE, OBJ_SYMFIELD_TYPE): Define.
76 (TARGET_SYMBOL_FIELDS, I960_SYM_FIELDS): Don't define.
77 (sy_tc, sy_obj): Define so that the fields look like they used to,
78 until all references get changed.
79
80 * write.c (fixup_segment): Lots of variables no longer register.
81 Reordered some code for easier reading.
82 * config/obj-coff.c (obj_coff_dim): dim_index no longer register.
83 Deleted superfluous return statement.
84 (obj_coff_line, obj_coff_size, obj_coff_scl, obj_coff_type,
85 obj_coff_val, tag_init, tag_insert): Deleted superfluous return
86 statement.
87 (align, obj_coff_section): Deleted debugging printfs.
88 * config/tc-i386.c (md_assemble): Discard some register decls.
89 Use assignment rather than memcpy to copy template.
90 (op_hash, reg_hash, prefix_hash): Default C initialization of
91 statics is sufficient.
92 * config/tc-sparc.c (print_insn): Array Reloc is now const, and
93 points to const.
94
95 * config/obj-coff.h (TARGET_FORMAT): Only use coff-sparc-lynx if
96 TE_LYNX; use coff-sparc otherwise.
97 [USE_NATIVE_HEADERS]: Delete this code; it isn't used.
98
99 * write.c (fixup_segment): Call TC_VALIDATE_FIX, if defined,
100 before processing a fixup. Call TC_ADJUST_RELOC_COUNT just before
101 returning. Remove some i960-coff-specific code.
102 (TC_ADJUST_RELOC_COUNT): Default to doing nothing.
103 * config/tc-i960.h (TC_ADJUST_RELOC_COUNT) [OBJ_COFF]: Define.
104 (i960_validate_fix): Declare.
105 (TC_VALIDATE_FIX): Define.
106 * config/tc-i960.c (i960_validate_fix): New function.
107
108 * write.c (number_to_chars_littleendian): New function. Write out
109 bytes in little endian order, doing size and range checking.
110 (number_to_chars_bigendian): New function, similar.
111 * write.h: Declare them.
112 * config/tc-*.c (md_number_to_chars): Use them.
113 * config/tc-vax.c (md_apply_fix): Ditto.
114 * config/tc-i386.c (md_apply_fix): Ditto.
115
116 * config/obj-coff.c: Rearranged code for handling line number
117 data.
118 (line_fsym): Renamed from function_lineoff in BFD_ASSEMBLER case,
119 since the usage is different from non-BFD_ASSEMBLER case.
120 (in_function, clear_function, set_function): New macros, to
121 combine some of the functionality implemented in differnet ways in
122 BFD_ASSEMBLER and non-... code. Used in other functions that used
123 to check function_lineoff &c.
124 (obj_emit_lineno): Split into two copies, one for BFD_ASSEMBLER,
125 one for not. Non-BFD_ASSEMBLER version now has temporary variable
126 to contain char* pointer pointed to by char** argument. Always
127 follow CROSS_COMPILE code; easier to read that way.
128 (obj_coff_ln): Don't call add_lineno or c_line_new if appline is
129 set.
130 (obj_coff_endef) [BFD_ASSEMBLER]: Don't do anything special for
131 ".bf", it's been done elsewhere.
132 (coff_frob_symbol): If ilne number data is pending, call
133 add_linesym to flush it.
134 (coff_frob_file): Don't do that here.
135 * config/obj-coff.h (coff_frob_file): Declare.
136 (obj_frob_file): Define, to call it.
137
138 * config/tc-sparc.h (md_create_short_jump, md_create_long_jump,
139 md_estimate_size_before_relax: Define them as macros calling
140 as_fatal.
141 * config/tc-sparc.c: Don't define them as functions.
142
143 * configure.in: Handle target alpha-*-osf*. (No cpu files yet.)
144
145 Wed Dec 1 23:37:14 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
146
147 * Makefile (clean): Depend on clean-here.
148
149 Wed Dec 1 11:35:21 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
150
151 * config/ho-go32.h: Include fopen-bin.h.
152 * as.h: If FOPEN_WB isn't defined, include fopen-same.h.
153 * output-file.c (output_file_create): Use FOPEN_WB instead of "w".
154 * input-file.c (input_file_open): Use FOPEN_RT instead of "r".
155 * listing.c (file_info): Use FOPEN_RB instead of "rb".
156 * read.c (s_include): Use FOPEN_RT instead of "r".
157
158 * stabs.c: Include obstack.h.
159
160 * tc.h (md_create_long_jump): Don't declare if it's already
161 defined as a macro.
162 (md_create_short_jump, md_estimate_size_before_relax): Ditto.
163
164 * messages.c (as_perror) [BFD_ASSEMBLER]: Use bfd_errmsg instead
165 of strerror. Clear bfd_error.
166
167 * config/te-lynx.h (LOCAL_LABELS_FB): Define, if not already
168 defined.
169
170 Wed Dec 1 10:41:56 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
171
172 * config/tc-hppa.c (hppa_elf_mark_end_of_function): New function.
173 (pa_process_exit, pa_procend): Call it for ELF objects.
174
175 Wed Dec 1 12:10:41 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
176
177 * config/tc-mips.c (macro): Subtract 8 from offset in non PIC l.d
178 case. See comment. From wilson@cygnus.com: for M_L_DAB, set
179 coproc before doing goto ld.
180
181 Tue Nov 30 13:40:30 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
182
183 * write.c (TC_FORCE_RELOCATION): Provide a default definition.
184 (fixup_segment): Allow the target machine to specify that a
185 relocation must be generated for a particular fixup. Remove
186 #ifndef TC_HPPA hack.
187
188 * config/tc-hppa.h (TC_FORCE_RELOCATION): Define.
189
190 * config/tc-hppa.c (md_apply_fix_1): Never change fx_addsy to
191 be NULL. Only fixup_segment is supposed to do that.
192 (hppa_force_relocation): New function.
193
194 Tue Nov 30 11:21:41 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
195
196 * Makefile.in (stabs.o): Added dependencies.
197
198 * config/obj-ecoff.c (ecoff_frob_file): Don't call bfd_set_symtab.
199
200 Sun Nov 28 12:11:40 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
201
202 * app.c (do_scrub_next_char): Output a TAB before any
203 .app* directive.
204
205 * config/tc-hppa.c (fix_new_hppa): Make sure a sub_symbol
206 exists before trying to peek at its name.
207 (pa_space): Do not call pa_align_subseg. See hppa/unsorted/align3.s
208 for testcase.
209 (pa_align_subseg): Delete unused/unwanted function.
210
211 Sat Nov 27 22:49:07 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
212
213 * read.c (read_a_source_file): Fix test for when to stick a colon
214 on the end of a label. Make code conditional on either MRI or
215 LABELS_WITHOUT_COLONS.
216
217 * app.c (do_scrub_next_char): If a line begins with whitespace, leave
218 the single whitespace character alone. Eat all others.
219
220 * config/tc-hppa.h (LABELS_WITHOUT_COLONS): Define.
221
222 Wed Nov 24 01:22:54 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
223
224 * config/tc-hppa.c (pa_procend): Do not call process_exit.
225 (exit_processing_complete): Delete unwanted variable and all
226 references.
227
228 Wed Nov 24 02:31:38 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
229
230 * ecoff.c (ecoff_setup_ext): Renamed from ecoff_build_ext.
231 Changed to not actually build the external symbol information, as
232 that is now done by the ECOFF back end.
233 (ecoff_build_debug): Changed accordingly.
234 * ecoff.h (obj_ecoff_set_ext): Declare. obj-format.c function
235 called by ecoff_setup_ext.
236 * config/obj-ecoff.c (ecoff_frob_file): If debug_info count is 0,
237 set corresponding pointer to NULL. Don't set raw_size and
238 raw_syments.
239 (obj_ecoff_set_sym_index): Removed.
240 (obj_ecoff_set_ext): New function.
241 * config/obj-ecoff.h (obj_set_sym_index): Don't define.
242 (obj_ecoff_set_sym_index): Don't declare.
243 * config/obj-elf.c (obj_ecoff_set_ext, elf_get_extr,
244 elf_set_index): New functions used for ECOFF_DEBUGGING.
245 (elf_frob_file): Reworked ECOFF debug generation to use
246 new functions in bfd/ecofflink.c.
247
248 Sun Nov 21 23:54:52 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
249
250 * config/tc-hppa.c (pa_def_subspaces): Only create the unwind
251 subspace for ELF. In the SOM world, the linker is responsible
252 for creating the unwind subspaces.
253
254 Fri Nov 19 16:25:09 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
255
256 * config/obj-coffbfd.c: Use PARAMS rather than EXFUN.
257 (yank_symbols): Don't call S_SET_EXTERNAL if the storage class is
258 already set. Fixes .def var; .val external_var; .scl 3; .endef.
259 (adjust_stab_section): Make static. Declare return type. Remove
260 unused variables.
261
262 * config/tc-i386.h: Declare tc_coff_fix2rtype and
263 tc_coff_sizemachdep.
264
265 Fri Nov 19 04:33:59 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
266
267 * write.c (write_object_file): Disable obj_check_file_symbols
268 hook; only back end using it wasn't using it correctly.
269 (write_object_file): Always call obj_frob_symbol and
270 tc_frob_symbol; always retain symbol if it's used by a relocation,
271 regardless of what these routines indicate.
272 * config/obj-coff.c (coff_frob_symbol): Renamed from
273 coff_check_file_symbols.
274 * config/obj-coff.h (obj_check_file_symbols): Deleted.
275 (coff_frob_symbol): Declare.
276 (obj_frob_symbol): Call it.
277
278 * config/obj-coff.c (obj_crawl_symbol_chain, obj_emit_strings,
279 obj_pre_write_hook): Don't define for BFD_ASSEMBLER.
280 (c_section_header): Ditto. Delete superfluous return at end of
281 function.
282
283 * config/obj-coff.h [TC_SPARC]: Include coff/sparc.h, and specify
284 coff-sparc-lynx.
285 (SA_GET_SYM_TAGNDX): Use BFD_HEADERS version for BFD_ASSEMBLER
286 too.
287 (c_section_header): Rewrite prototype so that it contains no
288 preprocessing directives. Don't declare it at all if
289 BFD_ASSEMBLER.
290
291 * configure.in (sparc*-*-lynxos): New target, using coff and
292 BFD_ASSEMBLER.
293
294 * stabs.c: New file.
295 * Makefile.in (REAL_SOURCES, OBJS): List it.
296 * read.c (STAB_SECTION_NAME, STAB_STRING_SECTION_NAME,
297 get_stab_string_offset, s_stab_generic, s_stab, s_xstab, s_desc):
298 Moved to new file.
299
300 * config/tc-sparc.c (tc_gen_reloc): Handle coff files like elf
301 files.
302
303 Wed Nov 17 17:23:53 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
304
305 * configure.in (mips-*-irix5*): New target. Use elf and mips-big.
306 * config/obj-elf.c: If ECOFF_DEBUGGING, include ecoff.h.
307 (obj_pseudo_table): If ECOFF_DEBUGGING, define ECOFF
308 pseudo-ops.
309 (obj_read_begin_hook): If ECOFF_DEBUGGING, call
310 ecoff_read_begin_hook.
311 (obj_symbol_new_hook): If ECOFF_DEBUGGING, call
312 ecoff_symbol_new_hook.
313 (obj_elf_init_stab_section): Cast alloca result.
314 (elf_frob_file): If ECOFF_DEBUGGING, finish up ECOFF debugging
315 information and write it out into .mdebug section.
316 * config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS): New macro.
317 (TARGET_SYMBOL_FIELDS): Use ELF_TARGET_SYMBOL_FIELDS.
318 (ECOFF_DEBUGGING): Define if TC_MIPS.
319 (TARGET_SYMBOL_FIELDS): If ECOFF_DEBUGGING, override to add
320 fields required by ECOFF.
321 * config/tc-mips.c: Check ECOFF_DEBUGGING rather than
322 OBJ_ECOFF in many cases.
323 (mips_any_noreorder): New variable.
324 (mips_cprestore_offset): Initialize to -1.
325 (mips_frame_reg): New variable.
326 (RELAX_ENCODE, RELAX_OLD, RELAX_NEW, RELAX_RELOC1,
327 RELAX_RELOC2, RELAX_RELOC3, RELAX_WARN): New macros.
328 (md_pseudo_table): Handle "gpword" and "cpadd".
329 (md_begin): Initialize ok to false. If OBJ_ELF, set alignment
330 of text, data and bss sections to 4. Set alignment of
331 .reginfo section to 2. If ECOFF_DEBUGGING, create .mdebug
332 section.
333 (ALIGN_ERR, ALIGN_ERR2): Removed unused and useless alignment
334 check.
335 (append_insn, macro_build, macro_build_lui): Take place
336 argument. Changed all callers.
337 (append_insn): If appending a nop, don't emit one.
338 (macro_build): Changed assertion for 'i', 'j', 'o' case.
339 (gp_reference): Removed.
340 (load_address): New function.
341 (macro): If mips_noreorder is used, set mips_any_noreorder.
342 Extensive changes to handle GP and PIC symbols differently.
343 Build both possible code choices using a variant frag, and
344 make a final decision at the end of assembly when all
345 information is known. Added PIC support for all symbol
346 references.
347 (mips_ip): Don't permit anything but a number after $ for a
348 coprocessor register. Don't use .lit4 or .lit8 sections when
349 generating PIC code. If OBJ_ELF, set alignment of .lit4 or
350 .lit8 section to 4.
351 (md_apply_fix): Accept and ignore GOT16 and GPREL32 relocs.
352 (s_change_sec): Set alignment of ELF .rodata or .sdata section
353 to 4.
354 (s_mipsset): If .set noreorder, set mips_any_noreorder.
355 (s_cpload): Ignore .cpload if not generating PIC code. Warn
356 if .cpload is not in noreorder section.
357 (s_cprestore): Ignore .cprestore if not generating PIC code.
358 (s_gpword, s_cpadd): New functions.
359 (tc_get_register): Added frame argument; if true, set
360 mips_frame_reg to return value. Changed all callers.
361 (md_estimate_size_before_relax): Don't error out, but instead
362 determine how much a frag should grow.
363 (tc_gen_reloc): Return multiple relocs if appropriate, as
364 determined by md_estimate_size_before_relax.
365 (md_convert_frag): New function.
366 (mips_elf_final_processing): Set ELF header flags based on
367 mips_any_noreorder and mips_pic.
368 * config/tc-mips.h (RELOC_EXPANSION_POSSIBLE): Define.
369 (MAX_RELOC_EXPANSION): Define to be 3.
370 (md_relax_frag): Define to be 0.
371 (md_convert_frag): Don't define.
372 (tc_get_register): Changed declaration.
373
374 * ecoff.h, ecoff.c: New files pulled out of config/obj-ecoff.c to
375 support generating ECOFF debugging information for MIPS ELF
376 targets. Compiled only if ECOFF_DEBUGGING is defined. Changed
377 handling of external symbols: it now always generates exactly
378 those external symbols that are defined in the global symbol list.
379 * Makefile.in (REAL_SOURCES): Added ecoff.c.
380 (REAL_HEADERS): Added ecoff.h.
381 (OBJS): Added ecoff.o.
382 (ecoff.o): New target.
383 * config/obj-ecoff.c: Almost entirely moved into ecoff.c.
384 Remaining code mostly just calls ecoff.c code.
385 * config/obj-ecoff.h: Define ECOFF_DEBUGGING.
386 (TARGET_SYMBOL_FIELDS): Make ecoff_symbol a pointer to a
387 struct localsym.
388 (obj_read_begin_hook, obj_symbol_new_hook): Define to call
389 functions in ecoff.c.
390 (ecoff_stab): Don't declare (now declared in ecoff.h).
391 (obj_set_sym_index): Define.
392 (obj_ecoff_set_sym_index): Declare.
393
394 * frags.h (frag_grow): Declare.
395 * frags.c (frag_grow): Made non-static.
396
397 * write.c (is_dnrange): Do not define if md_relax_frag is defined.
398 (relax_segment): If md_relax_frag is defined, use it to handle a
399 frag of type rs_machine_dependent rather than looking through
400 md_relax_table.
401
402 * read.c (read_a_source_file): If we find a bad pseudo-op,
403 do a continue to go on to the next line rather than a break.
404 Removed duplicate bad pseudo-op code which was never executed.
405
406 * read.c (s_lcomm): Do not require a comma after the name.
407
408 * subsegs.h (segment_info_type): Changed hadone field to bitfield.
409 Added bss bitfield.
410 * as.c (perform_an_assembly_pass): Set bss flag for bss_section.
411 * read.c (s_lcomm): Set bss flag for .sbss section if used.
412 * write.c (relax_and_size_seg): Don't set SEC_HAS_CONTENTS for a
413 bss section. Set SEC_RELOC if there are any relocations, even for
414 a zero size section.
415
416 * write.c (write_relocs): In RELOC_EXPANSION_POSSIBLE case, base
417 data offset on reloc[0]->address rather than reloc[j]->address, so
418 that multiple relocs can affect different memory locations.
419
420 * write.c (chain_frchains_together, relax_and_size_seg,
421 adjust_reloc_syms, write_relocs): Make third argument PTR, not
422 char *, to match definition of bfd_map_over_sections.
423
424 * app.c (do_scrub_next_char): Don't interpret a comment character
425 as starting a CPP line directive unless it is a '#' and is the
426 very first characters on the line (i.e., do not permit leading
427 whitespace).
428
429 * messages.c (identify): Make file argument non-const, to match
430 callers.
431
432 Tue Nov 16 20:38:21 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
433
434 * config/tc-hppa.c (pa_ip): Fix thinko in 21bit range check.
435
436 Sat Nov 13 18:22:48 1993 Steve Chamberlain (sac@jonny.cygnus.com)
437
438 * config/tc-sh.c (md_apply_fix): Cope with IMM16 type too.
439 * config/tc-z8k.c (build_bytes, md_apply_fix): Understand nDISP7
440 relocs.
441
442 Fri Nov 12 16:51:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
443
444 * config/tc-hppa.[ch]: Fix assorted trivial indention problems.
445 * config/obj-som.c (obj_som_version): Add missing ';'.
446 (som_frob_file): Delete whitespace at EOL.
447
448 Fri Nov 12 15:26:21 1993 Ken Raeburn (raeburn@cygnus.com)
449
450 * Makefile.in (VERSION): Updated following 2.2 release.
451
452 Fri Nov 12 14:52:17 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
453
454 * config/tc-hppa.c (hppa_fix_struct): Use a real type for the
455 field selector, rather than an int. All uses of field selectors
456 fixed.
457 (tc_gen_reloc): For SOM PLABELs, always set addend to zero for now.
458 (md_apply_fix_1): Do not call hppa_field_adjust for any PLABEL
459 field.
460
461 Thu Nov 11 15:49:08 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
462
463 * config/tc-hppa.c (pa_type_args): For .import statements,
464 silently ignore attempt to change the symbol type for a function
465 from ST_ENTRY to ST_CODE on .import.
466
467 Wed Nov 10 16:19:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
468
469 * write.h (fixS): Rename fx_callj field to fx_tcbit.
470 * write.c, config/obj-coff.c, config/obj-coffbfd.c,
471 config/tc-i960.c: Corresponding changes.
472
473 Tue Nov 9 00:49:01 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
474
475 * Makefile.in (distclean): Delete config-stamp and config.h
476
477 * config/tc-hppa.c (evaluate_absolute): Avoid relying on
478 ANSI-C features.
479
480 * config/tc-hppa.c (pa_type_args): Renamed from pa_export_args.
481 Accept new argument "is_export". All callers changed. When
482 processing a .export directive for a function, do not allow
483 the user to set the type to "CODE", instead warn and set the
484 type to "ENTRY".
485
486 Mon Nov 8 12:05:07 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
487
488 * config/tc-mips.c (mips_ip, printInsn): Handle 'k' (from Ted
489 Lemon <mellon@pepper.ncd.com>).
490 (mips_ip): Permit odd numbered floating point registers if -mips3.
491 (macro): Use BFD_RELOC_MIPS_LITERAL relocation for M_LI_SS.
492
493 Mon Nov 8 07:45:01 1993 Doug Evans (dje@canuck.cygnus.com)
494
495 * configure.in: Remove h8300h, we have multilib now.
496
497 Mon Nov 8 06:09:18 1993 D. V. Henkel-Wallace (gumby@cirdan.cygnus.com)
498
499 * configure.in: Support generic netware as being ELF format.
500 Recognise unixware if the user supplies it.
501
502 Sun Nov 7 01:02:08 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
503
504 * First cut at cleaning up PA instruction parsing.
505 * config/tc-hppa.c (pa_get_absolute_expression): Accept pointer to
506 insn structure as an argument, and a pointer to a string. All
507 callers changed. Always read any field selector here. Call
508 evaluate absolute to get a return value.
509 (evaluate_absolute): Addept pointer to insn structure as its
510 argument. All callers changed.
511 (INSERT_FIELD_AND_CONTINUE): New macro for inserting a bitfield
512 into an instruction and continuing the main pa_ip loop.
513 (CHECK_FIELD): New macro for simple range checking of fields.
514 (pa_ip): Delete unused variables. Use INSERT_FIELD_AND_CONTINUE
515 and CHECK_FIELD. All immediate fields now pass through
516 pa_get_absolute_expression which will also handle field selectors.
517 Delete dead code. Simplify.
518 (md_apply_fix_1): Use CHECK_FIELD to verify any fixes that are
519 applied are in range. Use bfd_put_32 rather than inserting each
520 byte of the fixed instrution into the buffer ourselves.
521
522 * write.c (fixup_segment): Delete {SEG,GLOBAL}_DIFF_ALLOWED code,
523 it was PA specific and is no longer needed (it's now handled
524 within the PA backend).
525 * config/tc-hppa.h (SEG_DIFF_ALLOWED): Delete definition.
526 * config/tc-hppa.c (fix_new_hppa): If the subtract symbol for
527 a fixup is $global$ change it to NULL as $global$ is really only
528 needed long enough to determine the base type of relocation to use.
529
530 * config/tc-hppa.c (create_new_subspace): Initialize subspace_defined.
531
532 * config/tc-hppa.c (pa-ip, case 'z'): Make field selectors work
533 for 'z' operands (target of ble branch).
534
535 Sat Nov 6 22:41:57 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
536
537 * config/tc-hppa.c: (update_subspace): Fix type and name of last
538 parameter. All callers fixed.
539 (md_begin, pa_chk_field_selector, pa_entry): Lint.
540
541 * config/tc-hppa.c (cons_fix_new_hppa): Reset field selector
542 to default state after it's been used.
543
544 Fri Nov 5 12:08:21 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
545
546 * config/obj-som.c (obj_som_init_stab_section): Change
547 space/subspace sort keys for the stab sections so as to avoid
548 bugs in the hp linker and pxdb.
549
550 Thu Nov 4 17:00:05 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
551
552 * write.c (chain_frchains_together): Update pointer to last
553 frag for a segment in the seginfo structure.
554
555 Thu Nov 04 09:09:35 1993 Jeffrey Wheat (cassidy@cygnus.com)
556
557 * Makefile.in: Changed RUNTESTFLAGS to RUNTEST_FLAGS
558
559 Wed Nov 3 12:16:27 1993 Ken Raeburn (raeburn@rover.cygnus.com)
560
561 * write.c (fixup_segment): Handle conversion of subtraction to
562 pc-relative addressing even if pc-relative flag is already set.
563
564 * config/tc-m68k.c (m68k_ip_op): Use strchr, not index. Don't
565 declare either.
566
567 * doc/Makefile.in (distclean): Delete intermediate files from dvi
568 build, but not the dvi or info files.
569 * Makefile.in (clean-here): New target; cleans up current
570 directory only.
571 (distclean): Use it instead of clean.
572
573 * read.c (s_xstab): Don't use alloca.
574
575 * messages.c (identify): New routine; print message identifying
576 following messages as coming from assembler.
577 (as_show_where, as_bad_internal, as_bad_where): Call it.
578 (as_fatal): Don't need to identify program any more.
579
580 Tue Nov 2 18:04:11 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
581
582 * read.c (s_lcomm): Put small objects in .sbss for MIPS ELF as
583 well as MIPS ECOFF.
584 (get_stab_string_offset): Remove unused variable aligned.
585
586 Tue Nov 2 15:07:07 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
587
588 * tc-hppa.c: Add %dp and %rp as synonyms for %r27 and %r2 in the
589 predefined register table.
590 (pa_parse_number): Handle %rp in common register shortcut code.
591 Consistently set return value to -1 for an error. Clean up error
592 messages and only print them when "print_errors" is true. Handle
593 empty string case like the HP assembler -- assume a value of
594 zero.
595
596 * config/ho-hpux.h: Do not include ho-sysv.h. Instead include
597 standard hpux include files to pick up various function decls.
598
599 * config/ho-hppaosf.h: Delete _IO* macros. They are defined in
600 stdio.h. Delete bogus declaration of free. Get path to
601 alloca-conf.h right.
602
603 Tue Nov 2 13:57:30 1993 Ken Raeburn (raeburn@rover.cygnus.com)
604
605 * expr.c (operand): Fix checks for characters following "0b" or
606 "0f".
607
608 Mon Nov 1 21:37:04 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
609
610 * config/obj-som.h (obj_attach_unwind_info): Define as a hook
611 so GAS can attach unwind descriptor information to a BFD symbol.
612 * config/tc-hppa.c (fix_new_hppa): If necessary attach unwind
613 descriptor information to the BFD symbol.
614 (md_apply_fix): R_HPPA_ENTRY and R_HPPA_EXIT can never be "applied",
615 they are simply markers. Make R_HPPA_UNWIND_* handling OBJ_ELF
616 dependent.
617 (pa_build_unwind_subspace): Whole function is OBJ_ELF dependent.
618 (pa_entry): Build a R_HPPA_ENTRY relocation when configured for SOM.
619 (pa_exit): Likewise, but built a R_HPPA_EXIT relocation. Do not
620 build "end-of-function" symbols for SOM, they are not needed.
621
622 * config/tc-hppa.c (process_exit): Create temporary symbols with
623 correct prefixes so they can be eliminated later.
624
625 * config/tc-hppa.c (call_info struct): Delete unused "frame" field.
626 (pa_callinfo): Insert framesize into the unwind information as
627 soon as it's available.
628 (pa_build_unwind_subspace): Do not insert framesize into the unwind
629 information here.
630
631 * Add support for marker type relocations. These mark areas
632 of interest to the linker. ENTRY/EXIT relocations for SOM are
633 an example of marker relocations.
634 * write.c (write_relocs): Instead of assuming size of a relocation
635 is 4 bytes, pick up the size from relocation itself.
636 (fixup_segment): Do not complain that a value is too small for
637 marker relocations.
638
639 * struc-symbol.h: Add new "sy_used" field to the symbol structure.
640 * expr.c (operand): Set sy_used for any symbol used as an operand.
641 (expr): Likewise for any symbol used in an expression.
642 * config/tc-hppa.h (tc_frob_symbol): Define. Punt imported
643 symbols which are never used and absolute symbols which local scope.
644
645 * config/obj-som.h (obj_frob_file): Define.
646 * config/obj-som.c (obj_som_init_stab_section): Set alignment
647 of stab sections. Make space for the special stab entry.
648 (adjust_stab_sections): Adjust the special entry in the
649 stabs section.
650 (som_frob_file): New function. Simply calls adjust_stab_sections
651 for each section.
652
653 Mon Nov 1 17:54:29 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
654
655 * config/tc-mips.c (PIC_CALL_REG, SP, FP): Define.
656 (mips_pic, mips_cprestore_offset): New static variables.
657 (md_pseudo_table): Handle .abicalls, .cpload, and .cprestore.
658 Ignore .bgnb and .endb.
659 (gp_reference): _gp_disp is never addressed off GP.
660 (macro_build): Ignore macros while searching for insn. For cases
661 i, j, and o, accept the reloc type as an argument rather than
662 assuming BFD_RELOC_LO16. Don't try to convert BFD_RELOC_LO16 to
663 BFD_RELOC_MIPS_GPREL. Added new case a.
664 (set_at, load_register, macro): Changed calls to macro_build to
665 pass new argument for i, j and o cases.
666 (macro): Handle M_JAL_1, M_JAL_2 and M_JAL_A. These require
667 special handling when generating SVR4 PIC code.
668 (mips_ip, tc_get_register, s_frame): Use macros FP, SP, GP and AT
669 rather than hard coded constants.
670 (md_apply_fix): Handle BFD_RELOC_MIPS_LITERAL and
671 BFD_RELOC_MIPS_CALL16.
672 (s_option): Set mips_pic based on .option picN.
673 (s_abicalls): New function; set mips_pic to 2.
674 (s_cpload): New function; handle .cpload.
675 (s_cprestore): New function; handle .cprestore.
676
677 * config/obj-ecoff.c (obj_pseudo_table): Add entries for .bgnb,
678 .endb and .verstamp, setting them to s_ignore.
679
680 Sun Oct 31 00:36:40 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
681
682 * config/tc-hppa.c (subspace_dictionary_chain): Add new ssd_defined
683 field. Define SUBSPACE_DEFINED accessor macro.
684 (pa_subspace): Allow user to override subspace attributes for
685 built-in subspaces. Set ssd_defined at the end of fcn -- that
686 way the attributes can only be changed once. Pass newly allocated
687 name to is_defined_subspace, not a pointer to the input line.
688 Fix typo in space/subspace rework.
689 (is_defined_subspace): Delete unused 2nd arg. All callers changed.
690
691 * config/tc-hppa.c (pa_import): If currently in the text segment
692 and a symbol is imported without type information, set BSF_FUNCTION
693 for the symbol.
694 * write.c (relax_and_size_seg): Correct test to determine if
695 the section's size was rounded up.
696
697 * config/obj-som.h (obj_set_symbol_type): Define a hook so GAS
698 can properly set all the SOM symbol types.
699 * config/tc-hppa.c (pa_symbol_type): New enum to represent the
700 symbol types which can be set from an IMPORT/EXPORT statement.
701 (pa_export_args): Set the pa_symbol_type type based on arguments.
702 If defined, call obj_set_symbol_type to pass this information on
703 to the BFD backend.
704
705 * read.c (get_stab_string_offset): Set SEC_DEBUGGING for any
706 stab section we make.
707 (s_stab_generic): Likewise.
708
709 Sat Oct 30 14:26:20 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
710
711 * Allow backends to override the value of the fake label.
712 * write.h (LOCAL_LABEL): Delete DOT_LABEL_PREFIX code. Instead
713 assume backends will define LOCAL_LABEL if anything other than
714 'L' is used to denote a local label.
715 (FAKE_LABEL_NAME): New macro. Defines the default name used for
716 the "fake" label.
717 * expr.c (make_expr_symbol): Delete DOT_LABEL_PREFIX code
718 and instead simply use the string defined by FAKE_LABEL_NAME.
719 (operand): Likewise.
720 * read.c (s_stab_generic): Likewise.
721 * config/tc-hppa.h (FAKE_LABEL_NAME): Define as L$0\001 so it's
722 known to be a local label.
723 * config/tc-i386.h (DOT_LABEL_PREFIX): Delete.
724 (LOCAL_LABEL, FAKE_LABEL_NAME): Define.
725 * config/tc-m68k.h (DOT_LABEL_PREFIX): Delete.
726 (LOCAL_LABEL, FAKE_LABEL_NAME): Define.
727 * config/te-sco386.h (DOT_LABEL_PREFIX): Delete.
728 (LOCAL_LABEL, FAKE_LABEL_NAME): Define.
729
730 Rework space/subspace handling in PA code to fully support
731 SOM spaces/subspaces.
732 * config/tc-hppa.c (USE_ALIASES): New object-format dependent define
733 to control the use of space/subspace name aliases.
734 (update_subspace): Accept space chain entry for containing space
735 as a new parameter. All callers changed.
736 (pa_get_label): Use current_space rather than pa_segment_to_space.
737 (pa_define_label): Likewise.
738 (pa_undefine_label): Likewise.
739 (md_begin): Change into the (possibly modified) text_section.
740 (pa_parse_space_stmt): Create a new segment/space if create_flag
741 is true, and the space name is not one of the two predefined spaces.
742 (pa_subspace): Use current_space rather than a lookup via
743 pa_segment_to_space. Reset BFD section flags as required by
744 the .subspace directive. Likewise for the section alignment.
745 Pass the current space to update_subspace and create_new_subspace.
746 (pa_spaces_begin): Only use space/subspace aliases if USE_ALIASES
747 is true. When not using aliases, create a BFD section for each
748 subspace encountered. When not using aliases replace the default
749 text, data, and bss segments with new ones.
750 (create_new_subspace): When not using aliases each subspace has a
751 section/segment and subsegments are not needed, so set the subsegment
752 to zero.
753
754 * config/tc-hppa.c (pa_parse_space_stmt): If needed, call
755 obj_set_section_attributes to pass space attributes to the
756 BFD backend.
757 (create_new_space): Likewise.
758 (create_new_subspace): Likewise for subspace attributes using
759 obj_set_subsection_attributes.
760 (update_subspace): Likewise for subspace attributes using
761 obj_set_subsection_attributes.
762
763 * config/tc-hppa.c (pa_parse_space_stmt): Get segment and sort key
764 for $TEXT$ and $PRIVATE$ from the default space structure.
765
766 * config/tc-hppa.c (pa_export_args): Always set BSF_FUNCTION
767 as appropriate for the given type.
768
769 * config/tc-hppa.c (tc_gen_reloc): Preliminary stab at handling
770 SOM relocations.
771
772 * config/tc-hppa.c (pa_comm): Delete incorrect check for symbol
773 redefinition.
774
775 * config/obj-som.[ch]: New files for SOM support. Note SOM
776 support is not yet complete in GAS or BFD.
777
778 * config/ho-hppabsd.h: Delete IO* macros, they are defined in
779 stdio.h. Delete declaration of free. Include stdlib.h, unistd.h,
780 and string.h.
781
782 Fri Oct 29 13:26:12 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
783
784 * Allow backends to override the section names used for embedded
785 stabs support. Needed for SOM.
786 * read.c (STAB_SECTION_NAME): Default the name of the stab section
787 to ".stab".
788 (STAB_STRING_SECTION_NAME): Likewise for the stab strings section.
789 (get_stab_string_offset): Is now passed the full name for the
790 stab string section rather than a name prefix. All references
791 changed.
792 (s_stab_generic): New argument for the stab string section name.
793 all references changed.
794 (s_xstab): Append "str" to the stab section name to get the
795 stab string section name.
796 * config/obj-coffbfd.c (obj_coff_init_stab_section): Append "str"
797 to stab section name to get the stab string section name. Pass
798 the full name of the stab string section to get_stab_string_offset.
799 * config/obj-elf.c (obj_elf_init_stab_section): Likewise.
800
801 * config/tc-hppa.c (md_begin): Disable "-R" option to fold
802 textand data segments. Warn user "-R" is unsupported on the
803 PA.
804
805 Thu Oct 28 12:36:13 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
806
807 * config/tc-hppa.c (md_pseudo_table): Default alignment is 8 for
808 .align and .ALIGN directives.
809
810 * config/tc-hppa.c (pa_space): Do not report an error for a .space
811 directive which does not define a "well-known" space and does
812 not include a space number as an argument.
813
814 * config/tc-hppa.c (pa_def_subspaces): Correct initialization of the
815 "defined", "loadable", "code_only" and "space_index" fields.
816 (pa_def_spaces): Correct initialization of the "spnum", "defined",
817 and "private" fields.
818
819 * write.h (struct fix): Add new tc_fix_data field for the various
820 backends to attach machine dependent fixup information to.
821 * write.c (fix_new_internal): Initialize new tc_fix_data field.
822 * config/tc-hppa.c (hppa_fix_struct): Delete unnecessary fix_fixP and
823 fx_next fields.
824 (hppa_find_hppa_fix): Delete unnecessary function. Fix all
825 callers to get HPPA fixup information from the tc_fix_data field
826 in the GAS fixup.
827 (hppa_fix_root): Delete unnecessary variable.
828 (fix_new_hppa): Attach HPPA fixup data to the GAS fixup.
829
830 * config/tc-hppa.c (pa_set_start_symbol); Delete unwanted
831 function. Fix all callers.
832 (subspace_dictionary_chain): Delete unused ssd_start_sym field.
833
834 * config/tc-hppa.c (hppa_fix_adjustable): New function to determine
835 if a particular fixup is adjustable.
836 * config/tc-hppa.h (tc_fix_adjustable): Call hppa_fix_adjustable to
837 perform the real work.
838
839 * config/tc-hppa.h (RELOC_EXPANSION_POSSIBLE): Move definition out
840 of OBJ_XXX conditionals.
841 (MAX_RELOC_EXPANSION): Likewise.
842
843 * config/tc-hppa.c (log2): Renamed from is_power_of_2. Fix all
844 callers. Now returns log2 (N) for positive N which are an exact
845 power of two or -1 for an error.
846
847 * config/tc-hppa.c (pa_callinfo): Range check values provided for
848 ENTRY_GR, ENTRY_FR and ENTRY_SR. Properly adjust vaues before
849 inserting them into the unwind table.
850
851 * config/tc-hppa.c (NEEDS_FIXUP): Delete definition and all references.
852 (hppa_gen_reloc_type): New object format dependent macro.
853 (pa_ip): Delete tons of code which was either OBJ_SOM or OBJ_ELF
854 conditional. The code can (and will) be shared between SOM & ELF
855 formats in the near future.
856 (cons_fix_new_hppa, md_apply_fix_1): Likewise.
857 (pa_build_unwind_subspace, process_exit, pa_exit): Likewise.
858 (tc_gen_reloc): Use hppa_gen_reloc rather than an object format
859 specific call.
860
861 * config/tc-hppa.c (pa_comm): Set the segment for a common symbol
862 to bfd_und_section.
863
864 * config/obj-elf.h (obj_elf_version): Add extern prototype.
865
866 * configure.in (hppa-*-bsd*): New configuration.
867 BFD is always used for GAS generating SOM objects.
868
869 * write.c (adjust_reloc_syms): Set sy_used_in_reloc if an
870 adjustment is rejected by the target machine.
871
872 * config/tc-hppa.c (pa_big_cons): Delete function and its
873 declaration. All callers changed to use pa_cons.
874
875 * write.c (fixup_segment): Fix indention and open/close brace
876 problem.
877
878 From Pete Hoogenboom:
879 * config/tc-hppa.c (md_atof): Return a NULL on success rather than
880 an empty string.
881
882 * config/tc-hppa.c (pa_parse_space_stmt): Advance
883 input_line_poitner when an invalid argument is encountered.
884
885 Thu Oct 28 13:09:26 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
886
887 * config/tc-a29k.c (md_begin): When opcodes are mashed together in
888 the table, require that the one without bit 0x1000000 set come
889 first. Require further that it be case 'b' or 'P'. The a29k
890 opcode table already meets these constraints.
891 (machine_ip): When handling case 'i' or 'A', make sure that the
892 appropriate opcode really exists by looking at the next entry in
893 the opcode table.
894
895 Wed Oct 27 11:48:56 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
896
897 * config/tc-m68k.c (m68k_ip): Adjust offsets for PC relative
898 fixups. Add 6 for long 7.3 case, 2 for short 7.2 case.
899
900 * config/obj-ecoff.c (obj_ecoff_ent): Ignore an optional number
901 after a .ent directive.
902
903 * config/tc-mips.c (mips_ip): Handle '>' case (shift amount
904 between 32 and 63 for double shift instruction). Do & 0x1f rather
905 than % 32.
906 (printInsn): Handle '>'.
907
908 Tue Oct 26 16:58:36 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
909
910 * config/tc-ns32k.c (tc_aout_fix_to_chars): Output the symbol
911 number in the right place. Untested. Probably does not work for
912 cross assembly. From cagney@cs.adelaide.edu.au (Andrew Cagney).
913
914 * config/tc-m68k.c (md_apply_fix_2): Error if a short branch uses
915 an illegal offset of 0 or -1.
916
917 * config/obj-elf.c (obj_elf_init_stab_section): Align .stab
918 section to a longword boundary.
919
920 Tue Oct 26 10:24:31 1993 Ken Raeburn (raeburn@cygnus.com)
921
922 * Makefile.in (CHECKFLAGS): Pass down RUNTESTFLAGS.
923
924 From Jeff Law:
925 * config/tc-hppa.c (tc_gen_reloc): ELF32_HPPA_R_ADDEND ->
926 HPPA_R_ADDEND.
927
928 Mon Oct 25 11:17:58 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
929
930 * config/tc-sh.c (build_Mbytes): Write the relocs to the correct
931 address. (md_assemble): Make error handling a bit more graceful.
932 (md_apply_fix): Don't warn on non aligned displacement.
933
934 * config/tc-z8k.c (get_specific, built_bytes): Understand all the
935 aspects of lda.
936
937 Mon Oct 25 10:20:31 1993 Ken Raeburn (raeburn@rover.cygnus.com)
938
939 * doc/Makefile.in (install-info): Use "$<*" so VPATH will find
940 as.info* even if they're in $(srcdir) (e.g., for FSF
941 distributions).
942
943 * write.c (write_relocs): For relocs that are pc_relative and
944 pcrel_offset and not partial_inplace, adjust reloc->addend to
945 compensate for a bfd_perform_relocation bug.
946
947 * config/tc-sparc.h: Removed remaining non-BFD_ASSEMBLER code.
948 * config/tc-sparc.c: Ditto.
949 (tc_gen_reloc): Include fx_offset for pcrel fixups.
950
951 Sun Oct 24 16:49:00 1993 Jim Wilson (wilson@x1.cygnus.com)
952
953 * tc-mips.c (md_pseudo_table): Add dword pseudo op.
954
955 Fri Oct 22 20:40:56 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
956
957 * messages.c: replaced all variables called Format with 'format',
958 for consistency throughout
959
960 * configure.in: handle mips*- instead of mips, mips*el for little
961 endian configurations
962
963 Fri Oct 22 14:45:49 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
964
965 * input-scrub.c (physical_input_file, logical_input_file,
966 physical_input_line, logical_input_line): Made static.
967 (as_where): Return current file name and line number, don't print
968 them out.
969 * messages.c (as_show_where): New static function. Other
970 functions use it instead of as_where.
971 (as_bad_internal): New static function.
972 (as_bad): Use as_bad_internal.
973 (as_bad_where): New function, like as_bad but taking a file name
974 and line number.
975 * as.h (as_bad_where): Declare.
976 (as_where): Change prototype for new arguments.
977 * write.h (fixS): Added fields fx_file and fx_line.
978 * write.c (fix_new_internal): Save file and line number in fix.
979 (fixup_segment): Use as_bad_where, not as_bad.
980 * input-file.c (f_in, file_name): Made static.
981 * cond.c (struct file_line): Just use file and line fields.
982 (s_else): Use as_where and as_bad_where, not get_file_line and
983 set_file_line.
984 (get_file_line, set_file_line): Removed.
985 * listing.c (listing_newline): Use as_where.
986 * config/obj-coffbfd.c (obj_coff_init_stab_section): Use as_where.
987 * config/obj-ecoff.c (add_file): Use as_where.
988 * config/obj-elf.c (obj_elf_init_stab_section): Use as_where.
989 * config/tc-m68k.c (md_apply_fix_2): Use as_bad_where.
990 * config/tc-mips.c (tc_gen_reloc): Use as_bad_where, not assert.
991
992 Thu Oct 21 12:52:01 1993 Ken Raeburn (raeburn@cygnus.com)
993
994 * config/tc-m68k.h: Don't define REGISTER_PREFIX or
995 OPTIONAL_REGISTER_PREFIX if either is already defined.
996
997 * config/tc-m68k.c (m68k_ip): Delete some code in "#if 0".
998
999 * configure.in: Set bfd_gas for all sparc targets. Added facility
1000 for keeping or rejecting configurations still under development;
1001 default is to assume production environment, and reject configs
1002 still being worked on. Mark Elf configurations (except sparc and
1003 i386) as developmental. Deleted cases matching some generic names
1004 in favor of more specific names. (E.g., when we get Alpha
1005 support, we'll still only support VMS for Vax.)
1006
1007 * config/tc-sparc.h (md_end): New macro.
1008 * config/tc-sparc.c (md_end): Function deleted.
1009 (BFD_RELOC_*): Delete macros that used to help keep the non-bfd
1010 version compiling. All sparc targets will use bfd now.
1011 * tc.h (md_end): Don't declare if it's defined as a macro.
1012
1013 Changes from Jeff Law and Peter Hoogenboom:
1014
1015 * read.c (next_char_of_string): Limit octal character constants to
1016 three digits.
1017
1018 * config/tc-hppa.h: Major cleanup. Use GNU-style comments. Warn
1019 against placing additional object-file dependent code here. Warn
1020 against contaminating all of GAS with the internals of tc-hppa.c
1021 through inclusion of tc-hppa.h. Delete all forward declarations
1022 for functions only used within tc-hppa.c, likewise for structures,
1023 variables, and #defines. Try to group OBJ_ELF and OBJ_SOM
1024 conditional code in a few small places.
1025
1026 * config/tc-hppa.c: Major cleanup. Use GNU-style comments. Group
1027 structures, global variables, forward declarations together.
1028 Reduce (or in some cases eliminate) OBJ_ELF and OBJ_SOM
1029 conditional code -- try to group conditional code together
1030 into a few places. Make all functions and variables which
1031 are only used within tc-hppa.c static. PARAMize all functions.
1032 Add comments to functions. Delete unused functions, variables,
1033 #defines, etc. Delete unused members within structures. Delete
1034 ldil;ble hacks -- it is believed they were installed to work
1035 around old gas bugs. Avoid using mixed case for local
1036 functions, variables, and structures. Fix formatting problems
1037 not found by GNU-indent. Add FIXME notices for things which
1038 should be worked on the near future. Delete lots of old
1039 useless (1.36 PA-SOM) code.
1040
1041 * config/tc-hppa.c: (fix_new_hppa): Initialize the fx_r_type
1042 field of the fixS structure. Needed to build unwind
1043 descriptors correctly.
1044
1045 * write.c: (fixup_segment): Allow expressions such as
1046 sym1-sym2+const as long as sym2 is $global$.
1047
1048 * write.c (adjust_reloc_syms): Provide a hook so that a target
1049 cpu configuration can reject certain relocation reductions.
1050 * tc-hppa.h (tc_fix_adjustable): New macro. Only accept relocations
1051 which do not involve function symbols.
1052
1053 * config/tc-hppa.h: Reindent with GNU-indent. Delete references
1054 to OBJ_OSFROSE. Fix typos (OBJ_SOME -> OBJ_SOM). Delete unused
1055 STAB_FIXUP macro.
1056 * config/tc-hppa.c: Likewise.
1057
1058 * config/tc-hppa.c (md_apply_fix_1): Use elf_symbol_type, instead
1059 of elf32_symbol_type.
1060 (pa_export_args): Likewise.
1061 (elf_hppa_final_processing): Likewise.
1062 (pa_desc): Do not call obj_elf_desc. (Is pa_desc even needed
1063 anymore?)
1064 (hppa_tc_make_sections): Do not declare elf_get_symtab_map any
1065 ore.
1066
1067 * config/tc-hppa.c: (md_section_align): Align all sections to
1068 a multiple of the section alignment rather than always a
1069 multiple of 8.
1070
1071 * config/tc-hppa.c (hppa_tc_symbol): If the argument relocation
1072 bits are zero (eg they specify no relocations), then do not even
1073 bother adding their entries to thesymextn section.
1074
1075 Thu Oct 21 15:44:55 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1076
1077 * config/tc-sparc.c (md_parse_option): Accept and ignore -sparc
1078 option, which is used by the SunOS make default .s.o rule.
1079
1080 Tue Oct 19 18:13:26 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1081
1082 * config/tc-m68k.h (AOUT_MACHTYPE): Define to be external variable
1083 m68k_aout_machtype.
1084 * config/tc-m68k.c (omagic): Remove obsolete and unused variable.
1085 (m68k_aout_machtype): New variable, if OBJ_AOUT.
1086 (md_assemble): Initialize m68k_aout_machtype based on
1087 current_architecture, if OBJ_AOUT.
1088 (md_parse_option): Remove obsolete reference to omagic.
1089
1090 Thu Oct 14 16:51:00 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1091
1092 * config/tc-mips.c (md_pseudo_table): Ignore .livereg pseudo-op.
1093 (s_option): Ignore .option O* and .option pic*.
1094 (s_ent): Skip whitespace between symbol and optional digit.
1095 (my_getSmallExpression): Handle ($xx) correctly: assume 0($xx).
1096
1097 * app.c (do_scrub_next_char): Always accept 'x' and 'X' as escape
1098 characters in state 6.
1099 * read.c (next_char_of_string): Accept \Xh* and \xh* where h* are
1100 hexidecimal digits.
1101
1102 * config/tc-i386.c (md_apply_fix_1): Make cross segment calls work
1103 for ELF by hacking around bizarre bfd_perform_relocation behaviour
1104 that I don't dare change.
1105
1106 Thu Oct 14 11:33:25 1993 Michael Meissner (meissner@osf.org)
1107
1108 * config/tc-i386.c: (md_begin): Do not zero static arrays. Don't
1109 call strchr for each character to see if it is a special char,
1110 instead add a second loop over special_chars. Set alignment
1111 of text, data and bss sections to 4.
1112 (pi, te, pt, pe, ps): Add declarations so that DEBUG386 can be
1113 used again.
1114 (reloc): Don't return 8 and 16 bit non-PC relative relocations on
1115 ELF, since the ELF object format does not have these type of
1116 relocations. Change the abort into as as_bad and return
1117 BFD_RELOC_NONE to silence compiler warnings.
1118 (md_assemble): Keep track of the instruction size. Allow white
1119 space between the $ and the constant for compatibility with older
1120 gases and other assemblers.
1121 (i386_operand): Skip spaces between $ and expression.
1122 (tc_gen_reloc): Don't allow anything but 32 bit relocations on
1123 ELF. Convert abort into an as_bad and assert into as_fatal.
1124
1125 Wed Oct 13 16:50:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1126
1127 * config/obj-coffbfd.c (fixup_segment) [DIFF_EXPR_OK]: If
1128 sub_symbolP is in the current segment, convert to a PC-relative
1129 fixup and discard the symbol.
1130
1131 Wed Oct 13 14:00:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1132
1133 * config/obj-ecoff.c (ecoff_build_symbols): Handle st_End symbol
1134 for st_StaticProc just like st_Proc.
1135
1136 * write.c (relax_and_size_all_segments): Moved #endif for OBJ_BOUT
1137 so that OBJ_BOUT doesn't forget to adjust all the fragments in the
1138 .bss section.
1139
1140 Tue Oct 12 17:26:15 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1141
1142 * config/tc-mips.c: If OBJ_ELF, include elf/mips.h.
1143 (mips_regmask_frag): New static variable, if OBJ_ELF.
1144 (md_begin): If OBJ_ELF, create .reginfo section and set
1145 mips_regmask_frag to a frag.
1146 (mips_elf_final_processing): New function, if OBJ_ELF. Set
1147 mips_regmask_frag to register mask information.
1148 * config/tc-mips.h (elf_tc_final_processing): New macro, defined
1149 if OBJ_ELF.
1150
1151 Tue Oct 12 03:33:26 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1152
1153 * messages.c (as_fatal): Use myname when printing messages.
1154
1155 * config/tc-i960.c (md_begin): Use null pointer, not empty string,
1156 as initial "return" value in case hashing isn't needed.
1157
1158 * config/tc-a29k.c (md_atof): Return null, not empty string, on
1159 success.
1160 * config/tc-h8300.c (md_atof), config/tc-h8500.c (md_atof),
1161 config/tc-hppa.c (md_atof), config/tc-i860.c (md_atof),
1162 config/tc-i960.c (md_atof), config/tc-m88k.c (md_atof),
1163 config/tc-ns32k.c (md_atof), config/tc-sh.c (md_atof): Ditto.
1164
1165 Mon Oct 11 16:46:31 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
1166
1167 fix for pr 3571
1168 * config/tc-h8300.c (get_specific): Special action if 8 bit
1169 address seen. (check_operand): Don't complain if truncating top
1170 bits of an 8 bit address. (build_bytes): Allow an immediate and
1171 an absolute in the same insn.
1172
1173 Mon Oct 11 17:18:51 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1174
1175 * write.c (write_contents): Don't crash if seginfo is NULL.
1176
1177 * config/obj-ecoff.c (ecoff_frob_file): Write out register masks
1178 by modifying .reginfo section, not by directly modifying BFD
1179 backend data.
1180
1181 Mon Oct 11 14:11:32 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1182
1183 * config/ho-sunos.h: remove extern time declaration
1184
1185 Mon Oct 11 16:14:43 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1186
1187 * messages.c (as_fatal): Do mention that it's the assembler that
1188 got the fatal error.
1189
1190 Fri Oct 8 14:09:35 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1191
1192 * config/tc-mips.c (mips_gprmask, mips_cprmask): New variables to
1193 hold register masks.
1194 (md_begin): Initialize them to zero.
1195 (append_insn): Update mips_gprmask and mips_cprmask. Also add
1196 register variables pinfo and prev_pinfo.
1197 * config/tc-mips.h (mips_gprmask, mips_cprmask): Declare.
1198 * config/obj-ecoff.c (ecoff_frob_file): If TC_MIPS, set gprmask
1199 and cprmask from mips_gprmask and mips_cprmask.
1200
1201 * config/tc-mips.h: Define TARGET_FORMAT if OBJ_ELF.
1202 * config/tc-mips.c (GPOPT): Define if OBJ_ECOFF or OBJ_ELF.
1203 (various): Change all references to GP references to apply if
1204 GPOPT, not if OBJ_ECOFF.
1205 (s_change_sec): Rearrange somewhat. If OBJ_ELF, use .rodata
1206 instead of .rdata. If OBJ_ELF, set section flags for .rodata and
1207 .sdata sections.
1208 (s_frame, s_loc, s_mask): Comment out entire functions, rather
1209 than just body. They're not used anyhow.
1210 * configure.in: Set cpu_type to mips for mips*. Accept
1211 mips-*-elfl* and mips-*-elf*.
1212
1213 Thu Oct 7 18:36:29 1993 Michael Meissner (meissner@osf.org)
1214
1215 * config/obj-elf.c (obj_elf_common): Allow the alignment field to
1216 not be specified.
1217
1218 Wed Oct 6 13:01:34 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1219
1220 * config/tc-mips.c (cons_fix_new_mips): New function. Turn
1221 BFD_RELOC_64 into BFD_RELOC_32.
1222 * config/tc-mips.h (TC_CONS_FIX_NEW): Define.
1223 (cons_fix_new_mips): Declare.
1224
1225 Changes to let cons handle bignums like general expressions.
1226 * expr.h (expressionS): New field X_unsigned.
1227 * expr.c (operand): Initialize X_unsigned to 1. Set it to 0 for
1228 unary minus case.
1229 (expr) Fix typo resultP to right if missing operand. Set
1230 X_unsigned to 1 when building new expression.
1231 * read.c (potable): Make "octa" and "quad" call cons, not
1232 big_cons.
1233 (cons): Handle bignums. If given an O_constant (small integer) to
1234 fill a big space, turn it into a bignum.
1235 (parse_bitfield_cons): Set X_unsigned field.
1236 (bignum_low, bignum_limit, bignum_high, grow_bignum, big_cons):
1237 Removed.
1238 * read.h (big_cons): Remove prototype.
1239 * symbols.c (resolve_symbol_value): Don't give a warning if a
1240 symbol in expr_section can not be resolved.
1241 (S_SET_VALUE): Clear X_unsigned.
1242 * write.c (write_object_file): If resolve_symbol_value failed on a
1243 symbol we are writing out, give a warning.
1244 * config/tc-h8500.c (parse_reglist): Set X_unsigned.
1245 * config/tc-hppa.c (md_pseudo_table): Change "octa" and "quad" to
1246 call pa_cons, not pa_big_cons.
1247 (pa_big_cons): Remove.
1248 * config/tc-hppa.h (pa_big_cons): Remove declaration.
1249 * config/tc-i960.c (md_pseudo_table): Change "quad" to call cons,
1250 not big_cons.
1251
1252 Tue Oct 5 10:53:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1253
1254 * doc/as.texinfo (Copying): new node, to handle the recent changes
1255 in the texinfo/gpl.texinfo file
1256
1257 Mon Oct 4 17:10:15 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1258
1259 * read.c (big_cons): Handle "0" correctly.
1260
1261 * config/tc-mips.c (md_begin): Set target_big_endian correctly.
1262
1263 Mon Oct 4 15:37:57 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1264
1265 * config/tc-m68k.c (m68k_ip): Mode 7.3 operand using PC should
1266 have pc-relative fixup.
1267 (md_parse_option): Move "-k" case down near "-pic" case.
1268
1269 * configure.in: Alphabetize list of cpu type alternatives. Enable
1270 OS values of "linux*elf*" and "linux*coff*" to select those
1271 formats, with linux emulation. Don't bother checking for upper-
1272 or mixed-case versions of "ose".
1273
1274 Thu Sep 30 11:05:35 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
1275
1276 * config/z8k.c (md_pseudo_table): add "unseg".
1277
1278 Wed Sep 29 16:15:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
1279
1280 * config/m88k-opcode.h (m88k_opcodes): correct a few mistakes
1281 found while extending the dissassembler.
1282
1283 Tue Sep 28 12:02:04 1993 Stan Shebs (shebs@rtl.cygnus.com)
1284
1285 * configure.in: Split i386 LynxOS out from other coff targets,
1286 add a specific Lynx emulation.
1287 Add m68k LynxOS target.
1288 * config/tc-i386.c: Define specific Lynx target format.
1289 * config/tc-m68k.c: Define specific Lynx target format.
1290 * config/te-lynx.h: New file.
1291
1292 * config/obj-coffbfd.h: Don't set TARGET_FORMAT to be
1293 "coff-{i386,m68k}" if TARGET_FORMAT already defined.
1294 (INIT_STAB_SECTION): Define.
1295 * config/obj-coffbfd.c: Include <time.h>.
1296 (write_object_file): Look for .stab sections and call
1297 adjust_stab_section.
1298 (adjust_stab_section): New function, fills in the first symbol
1299 of a stab section with number of symbols and string table size.
1300 (obj_coff_init_stab_section): New function, creates the initial
1301 symbol for a stab section.
1302
1303 Mon Sep 27 15:21:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1304
1305 * config/atof-vax.c (md_atof): Return null on success instead of
1306 empty string.
1307 * config/atof-tahoe.c (md_atof): Ditto.
1308 * read.c (float_cons): Expect a null pointer for success, not an
1309 empty string.
1310
1311 * hash.c (hash_insert, hash_jam, hash_grow): Return null pointer
1312 on success, instead of empty string. All callers changed.
1313
1314 * config/tc-vax.c: Use PARAMS in declarations.
1315 (vip_op): Use NULL instead of empty string for success in error
1316 and warning fields.
1317
1318 Sun Sep 26 23:45:29 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1319
1320 * expr.c (expr) [DIFF_EXPR_OK]: Permit subtraction of two symbols
1321 in different defined segments.
1322
1323 * write.c (relax_segment): Localize "aim" variable. If
1324 DIFF_EXPR_OK, don't impose checks on symbol segment types.
1325 (fixup_segment) [DIFF_EXPR_OK]: If sub_symbolP is in the current
1326 segment, convert to a PC-relative fixup and discard the symbol.
1327
1328 * config/tc-m68k.c (flag_want_pic): New variable, mostly ignored.
1329 (md_parse_option) [TE_SUN3]: Set it for "-k".
1330 (m68k_ip): Generate proper fixup for mode 7.3.
1331 * config/tc-m68k.h (DIFF_EXPR_OK): Define.
1332
1333 Sat Sep 25 05:08:19 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1334
1335 * config/tc-m68k.c (struct m68k_incant, getone, gettwo): Moved
1336 earlier in the file.
1337 (insop, add_exp): Now defined as functions, for readability.
1338 (insop): Now takes two arguments; callers changed.
1339
1340 Fri Sep 24 12:37:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
1341
1342 * config/tc-m88k.c (get_o6): new function.
1343 (get_bf, get_cmp, get_cnd, get_cr, get_fcr, get_imm16, get_reg,
1344 get_vec9, getval, get_pcr, calcop, match_name): make static and
1345 prototype.
1346 (s_file): remove extraneous forward decl.
1347 (md_begin): add const to retval decl.
1348 (calcop): cope with instructions without arguments. Handle 'o'
1349 type argument, the o6 field of the prot insn.
1350 (md_estimate_size_before_relax): return a dummy value.
1351
1352 * config/m88k-opcode.h (m88k_opcodes): comment change; o6 field is
1353 in bits 10 through 7. flt.[dxs]s requires an r register in the
1354 second argument. New instruction lda.x. New instruction muls
1355 (alias for mul).
1356
1357 Fri Sep 24 13:43:30 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1358
1359 * Makefile.in (distclean): Recurse like clean.
1360 * doc/Makefile.in (distclean): New target.
1361
1362 * config/tc-mips.c (md_begin): Set BFD architecture and machine
1363 based on MIPS ISA level.
1364
1365 Thu Sep 23 17:58:58 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1366
1367 * as.c (main): "exhausted", not "exhuasted".
1368
1369 * struc-symbol.h (struct symbol): Add sy_used_in_reloc field.
1370 * write.c (adjust_reloc_syms): Set sy_used_in_reloc.
1371 (write_object_file): Never strip symbols with sy_used_in_reloc
1372 set.
1373
1374 * config/obj-elf.c (obj_elf_section): Rewrote to handle both
1375 Solaris and SVR4 style .section pseudo-ops.
1376 (obj_elf_ident): Set SEC_READONLY for .comment section.
1377 * config/tc-sparc.c (md_apply_fix): If this is ELF, and we're
1378 generating a reloc, don't apply a fix.
1379
1380 Thu Sep 23 13:16:58 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1381
1382 * config/obj-coffbfd.c (relax_align): Now static.
1383
1384 Mon Sep 20 19:23:35 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1385
1386 * read.c (get_stab_string_offset): Make non-static. Make
1387 arguments const. Don't align strings to 4 byte boundaries.
1388 * read.h: Declare get_stab_string_offset.
1389 * config/obj-elf.c (obj_elf_section): Set SEC_ALLOC as well as
1390 SEC_LOAD for progbits section.
1391 (obj_elf_init_stab_section): New function.
1392 (adjust_stab_sections): Add casts to avoid warnings.
1393 * config/obj-elf.h (INIT_STAB_SECTION): Call
1394 obj_elf_init_stab_section.
1395 (OBJ_PROCESS_STAB): Removed definition.
1396
1397 Fri Sep 17 18:12:34 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1398
1399 * config/obj-elf.h (S_GET_SIZE): Define.
1400 (obj_frob_forward_symbol): Define.
1401 * config/tc-i386.c (line_comment_chars): Initialize in all cases.
1402
1403 Thu Sep 16 14:23:08 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1404
1405 * tc.h: Declare tc_gen_reloc differently depending upon
1406 RELOC_EXPANSION_POSSIBLE.
1407 * config/obj-elf.c (obj_elf_section): Only set flags when first
1408 creating the section.
1409
1410 Wed Sep 15 12:15:53 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1411
1412 * config/tc-mips.c (append_insn): Don't swap a trap instruction
1413 with a branch.
1414
1415 Tue Sep 14 13:31:04 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1416
1417 * config/obj-elf.c (obj_elf_data, obj_elf_text): New functions;
1418 set previous_section and previous_subsection and then call s_data
1419 and s_text, respectively.
1420 (obj_pseudo_table): Add data and text.
1421 (obj_elf_section): Add SEC_LOAD to default initialization of
1422 flags. Treat .rodata1 like .rodata. Set SEC_LOAD as well as
1423 SEC_ALLOC for "alloc" string. Don't bother trying to find the
1424 section; just use subseg_new.
1425
1426 * read.c (change_to_section): Removed. This is now done by
1427 subseg_new.
1428 (get_stab_string_offset): Rearranged somewhat. Create the section
1429 using subseg_new. Store the string index in seg_info, rather than
1430 in a static variable. Force the first string to be empty. Use
1431 frag_more rather than FRAG_APPEND_1_CHAR.
1432 (s_stab_generic): Rewrote.
1433 * subsegs.h (segment_info_type): Added stabu union.
1434 * subsegs.c (subseg_new): Initialize stab_string_size to 0.
1435 * config/obj-aout.c: Don't include aout/stab_gnu.h.
1436 (obj_aout_stab, obj_aout_desc): Removed.
1437 (obj_pseudo_table): Removed desc and stabX entries.
1438 * config/obj-bout.c: Same changes as config/obj-aout.c.
1439 * config/obj-bout.h (S_SET_TYPE): Define.
1440 (tc_bout_fix_to_chars): Declare.
1441 * config/obj-coff.c (obj_coff_stab): Removed.
1442 (obj_pseudo_table): Removed desc and stabX entries.
1443 * config/obj-coff.h (SEPARATE_STAB_SECTIONS): Define.
1444 * config/obj-coffbfd.c (current_stab_symbol): Removed.
1445 * config/obj-coffbfd.h (obj_symbol_type): Removed n_strx, n_type,
1446 n_other, n_desc and n_value fields.
1447 (S_{S,G}ET_{OFFSET,OTHER,TYPE,DESC}): Removed.
1448 (MAKE_STAB_SYMBOL): Removed.
1449 * config/obj-ecoff.c (obj_ecoff_stab): Renamed to ecoff_stab.
1450 Changed arguments and removed parsing code.
1451 (obj_pseudo_table): Removed stabX entries.
1452 * config/obj-ecoff.h (ecoff_stab): Declare.
1453 (OBJ_PROCESS_STAB): Define.
1454 * config/obj-elf.c: Don't include aout/stab_gnu.h.
1455 (obj_elf_stab, obj_elf_xstab, obj_elf_desc,
1456 elf_stab_symbol_string, elf_stab_symbol, obj_elf_stab_generic):
1457 Removed.
1458 (obj_pseudo_table): Removed desc, stabX and xstabs entries.
1459 (obj_elf_version): Use subseg_new, not bfd_make_section. Don't
1460 set SEC_LOAD for .note section.
1461 (adjust_stab_sections): Get frag pointer from seg_info, rather
1462 than looking through frags.
1463 * config/obj-elf.h (S_{S,G}ET_{OTHER,TYPE,DESC}): Removed.
1464 (SEPARATE_STAB_SECTIONS, INIT_STAB_SECTION, OBJ_PROCESS_STAB):
1465 Define.
1466 * config/obj-vms.c (obj_aout_stab): Removed.
1467 (obj_pseudo_table): Removed stabX entries.
1468 * config/obj-vms.h (S_SET_TYPE): Define.
1469
1470 * as.h: Declare listing.
1471 * read.c: Don't declare listing.
1472 (emit_expr): Cast fix_new_exp argument.
1473 (parse_bitfield_cons): Correct printf format.
1474 * symbols.c (symbol_new): Add cast to avoid warning.
1475 * write.h: Declare text_last_frag and data_last_frag.
1476 * config/obj-bout.c (obj_bout_line): Added dummy argument.
1477 * config/obj-coffbfd.c: Add some casts to avoid warnings.
1478 * config/tc-a29k.c: Likewise.
1479 * config/tc-i960.c: Likewise. Also fully bracket structure
1480 initializations, fix printf formats, and remove unused variables.
1481
1482 Mon Sep 13 16:48:38 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1483
1484 * read.c (s_desc): Only compile and use if S_SET_DESC is defined.
1485 * struc-symbol.h: Declare verify_symbol_chain and
1486 verify_symbol_chain_2 even if not SYMBOLS_NEED_BACKPOINTERS.
1487 * symbols.c (verify_symbol_chain): Removed useless expression.
1488 * write.c (headers, the_object_file): Only use if not
1489 BFD_ASSEMBLER and not BFD.
1490 (fixup_segment, cvs_frag_to_fill): Only use if BFD_ASSEMBLER or
1491 not BFD.
1492 (merge_data_into_text): Only use if BFD_ASSEMBLER or (not BFD and
1493 not OBJ_AOUT).
1494 * write.h: Declare relax_segment.
1495 * config/obj-coffbfd.c (stack_pop, stack_push, stack_init): Made
1496 static.
1497 (stack_top): Commented out, since it's not used.
1498 Fixed up pseudo-op functions to take an ignored int argument.
1499 (size_section): Added default BAD_CASE to switch.
1500 Changed bzero calls to memset.
1501 * config/obj-coffbfd.h (S_IS_LOCAL): Call strchr on S_GET_NAME
1502 (s), not on s itself.
1503 * config/tc-a29k.c (s_use): Take ignored int argument. Only
1504 define if OBJ_COFF is not defined.
1505 * config/tc-i386.c: (fits_in_signed_byte, smallest_imm_type): Make
1506 argument signed again.
1507 * config/tc-m68k.c (s_bss, s_even, s_proc): Take ignored int
1508 argument.
1509 (m68k_ip): Fully bracket initialization of archs.
1510 Correct several formats for __LINE__ to be %d rather than %s.
1511 (init_table): Fully bracket initialization.
1512 Cast values larger than 0x7f assigned to fr_opcode to char.
1513
1514 * subsegs.c: Renamed non-BFD_ASSEMBLER subseg_new to subseg_set.
1515 Wrote non-BFD_ASSEMBLER subseg_new. Now subseg_new always takes a
1516 section name, and subseg_set always takes a segT. Changed all
1517 callers as appropriate.
1518 * config/obj-coffbfd.c (change_to_section): Renamed to
1519 obj_coff_add_segment. Corrected. Made callers use subseg_new.
1520 * config/obj-coffbfd.h (obj_segment_name, obj_add_segment):
1521 Define.
1522
1523 Mon Sep 13 13:15:03 1993 Doug Evans (dje@canuck.cygnus.com)
1524
1525 * config/tc-sparc.h (LOCAL_LABEL): Remove test for name[0] == 'L'.
1526
1527 Fri Sep 10 11:22:08 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1528
1529 * config/obj-elf.h (S_SET_SIZE): Actually set the size.
1530
1531 Gcc lint.
1532 * Added a number of casts to function calls.
1533 * app.c (do_scrub_begin), as.c (main), expr.c (integer_constant,
1534 operand, expr), read.c (read_begin, HANDLE_CONDITIONAL_ASSEMBLY,
1535 read_a_source_file, s_align_bytes, demand_empty_rest_of_line,
1536 ignore_rest_of_line, big_cons, is_it_end_of_statement, s_ignore),
1537 read.h (is_name_beginner, is_part_of_name), config/obj-elf.c
1538 (obj_elf_section), config/tc-i386.c (parse_register),
1539 config/tc-sparc.c (isoctal, s_proc): Cast char
1540 array indices to unsigned char.
1541 * app.c (process_escape): Make static. Add prototype. Change
1542 argument from char to int.
1543 * as.c: Include output-file.h for prototypes. Comment out unused
1544 function got_sig.
1545 * Makefile.in (as.o): Depend on output-file.h.
1546 * as.h (BAD_CASE): Cast val argument to long, and use %ld.
1547 (pseudo_typeS): Add prototype to poc_handler field.
1548 (print_version_id): Add prototype.
1549 (xmalloc, xrealloc): Change size arguments to unsigned long.
1550 (do_scrub_next_char): Add prototypes for function arguments.
1551 (had_errors, had_warnings, scrub_from_file): Remove duplicate
1552 declarations.
1553 * atof-generic.c (atof_generic): Make size variables unsigned.
1554 * cond.c (ignore_input): Removed unused local variable ptr.
1555 * expr.c (floating_constant, integer_constant): Make static. Add
1556 prototypes.
1557 * flonum-copy.c (flonum_copy): Make size variables unsigned.
1558 * frags.h: Add prototype for frag_init.
1559 * hash.h, hash.c: Change hash values from char * to PTR, make hash
1560 strings const, make returned error strings const char *. Added
1561 prototypes for functions.
1562 * input-file.h, input-file.c (input_file_buffer_size): Return
1563 unsigned int.
1564 * input-scrub.c (buffer_length): Make unsigned.
1565 (input_scrub_push, input_scrub_pop): Make static.
1566 * listing.c (list_symbol_table): Cast sprintf argument to unsigned
1567 long and use %lx. Print name of segment rather than address of
1568 structure.
1569 (listing_list, listing_title): Change argument to int.
1570 (listing_eject, listing_flags, listing_psize): Add int argument.
1571 * listing.h: Corresponding declaration changes.
1572 * obj.h (obj_emit_symbols): Rename prototype argument to avoid
1573 shadowing.
1574 * read.h: Change get_absolute_expression prototype to return
1575 offsetT. Add prototype for next_char_of_string. Various
1576 prototype changes.
1577 * read.c: Remove prototype for next_char_of_string.
1578 (pobegin): Make errtxt const. Make new_length, tmp_len and num
1579 unsigned.
1580 (s_abort, s_align_ptwo, s_comm, s_data, s_app_line, s_fill,
1581 s_globl, s_lsym, s_org, s_set, s_text, s_desc): Add int argument.
1582 Change all callers.
1583 (s_comm): Change temp from valueT to offsetT. Cast to long when
1584 printing and use %ld (only for error messages anyhow).
1585 (s_long, s_int): Remove unused functions.
1586 (cons): Change argument to int.
1587 (emit_expr): Use %lx when printing longs.
1588 (get_absolute_expression): Return offsetT, not long.
1589 (get_stab_string_offset): Comment out unless
1590 SEPARATE_STAB_SECTIONS.
1591 (s_stab_generic): Remove unused offset. Define seg_is_new only
1592 if SEPARATE_STAB_SECTIONS. Use toP only in local block.
1593 * struc-symbol.h (verify_symbol_chain_2): Add prototype.
1594 * symbols.c: Remove nested comment.
1595 (symbol_new): Rename value to valu.
1596 (colon): Use %ld and cast to long in error message.
1597 * symbols.h: Remove duplicate verify_symbol_chain declaration.
1598 * tc.h: Remove unused md_emit_relocations declaration.
1599 (tc_gen_reloc): Add declaration.
1600 * write.c (cvt_frag_to_fill): Change first argument name depending
1601 on BFD_ASSEMBLER.
1602 (write_relocs): Remove unused offset, frags. Remove tc_gen_reloc
1603 declarations. Make n unsigned.
1604 (write_contents): Remove unused i, n, relocs, fixp. Rename frags
1605 to f to avoid shadowing.
1606 (write_object_file): Define fragP only if not BFD_ASSEMBLER or not
1607 WORKING_DOT_WORD. Remove unused keep. Only declare punt and
1608 punt_it if they will be used. Make i and n unsigned.
1609 (fixup_segment): Cast to long and use %ld in error message.
1610 * xmalloc.c (xmalloc, xrealloc): Make size argument unsigned.
1611 * config/obj-aout.h: Remove nested comment. Add prototype for
1612 obj_aout_frob_symbol.
1613 (obj_aout_line, obj_aout_desc): Add int argument.
1614 * config/obj-ecoff.c: Changed build routines to use an unsigned
1615 offset.
1616 (add_string): Make len unsigned long.
1617 (obj_ecoff_stab): Use %lu in error message.
1618 * config/obj-elf.c (obj_elf_common): Comment out unused label
1619 allocate_bss.
1620 (obj_elf_frob_symbol): Return 0 (currently broken).
1621 (obj_elf_desc, obj_elf_version, obj_elf_size, obj_elf_type,
1622 obj_elf_ident, obj_elf_weak, obj_elf_local, obj_elf_common,
1623 obj_elf_line, obj_elf_previous): Add int argument.
1624 (obj_elf_write_symbol_p): Make static.
1625 * config/obj-elf.h (obj_elf_write_symbol): Add prototype.
1626 * config/tc-hppa.h: Remove declarations of functions declared in
1627 read.h.
1628 * config/tc-i386.c (ENCODE_RELAX_STATE): Cast to relax_substateT.
1629 (s_bss): Add int argument.
1630 (fits_in_signed_byte, smallest_imm_type): Make argument unsigned.
1631 (dummy): Remove unused function.
1632 (md_assemble): Rename local o to op to avoid shadowing.
1633 (tc_gen_reloc): Rename local reloc to rel to avoid shadowing.
1634 * config/tc-m68k.c (s_data1, s_data2): Add int argument.
1635 * config/tc-mips.c (mips_ip, md_apply_fix): Cast to long and use
1636 %ld in error messages.
1637 * config/tc-sparc.c: Remove duplicate declarations.
1638 (getExpression): Rewrite condition to avoid empty conditional
1639 body.
1640 (s_reg, s_proc, s_reserve, s_common, s_seg, s_xword): Add int
1641 argument.
1642
1643 Thu Sep 9 17:10:00 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1644
1645 Changes from Jeff Law:
1646
1647 * config/tc-hppa.c (md_assemble): Fix typo.
1648 (pa_ip): Delete unused variables and labels. Do not check for
1649 unsigned values being < 0, it can't happen.
1650 (is_same_frag): Return a value in recursive call case.
1651 (pa_callinfo): Delete unused variables and labels.
1652 (pa_comm): Likewise.
1653 (pa_copyright): Likewise.
1654 (pa_export): Likewise.
1655 (pa_import): Likewise.
1656 (pa_param): Likewise.
1657 (pa_space): Likewise.
1658 (pa_subspace): Likewise.
1659
1660 Thu Sep 9 15:05:34 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1661
1662 * read.c (get_stab_string_offset, s_stab_generic): If
1663 BFD_ASSEMBLER, call subseg_set rather than subseg_new.
1664
1665 Wed Sep 8 15:09:17 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1666
1667 * config/obj-elf.c (obj_elf_section): Set SEC_LOAD when using
1668 default flag values.
1669
1670 Tue Sep 7 10:22:52 1993 Stan Shebs (shebs@rtl.cygnus.com)
1671
1672 * read.c: (change_to_section): Don't include body if not MANY_SECTIONS.
1673
1674 * read.c: (s_stab, s_xstab, s_desc): New functions to parse
1675 various stab-related directives.
1676 * read.h: (s_stab, s_xstab, s_desc): New function prototypes.
1677 * write.c: (merge_data_into_text): Fix ifdef tangle.
1678 * config/obj-coffbfd.c (current_stab_symbol): Fake symbol
1679 for stab reader to use.
1680 * config/obj-coffbfdh.h (obj_symbol_type): Added fields for
1681 stab reader, macros to access.
1682
1683 Fri Sep 3 16:44:03 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1684
1685 * config/obj-elf.h (elf_symbol): Fixed name of elf_symbol_type.
1686
1687 * config/tc-hppa.h (struct default_subspace_dict, struct
1688 default_space_dict): Field "sort" is now unsigned char.
1689
1690 * config/tc-hppa.c (pa_def_subspaces, pa_def_spaces): Align
1691 columns for easier reading.
1692 (bcmp, index): Deleted USG-specific definitions. Should be dealt
1693 with in ho-*.h, or in libiberty. Changed mention of index to
1694 strchr.
1695 (label_symbolP, label_symbol_defined, callinfo_found,
1696 within_entry_exit, exit_processing_complete, within_procedure,
1697 pa_def_subspaces, pa_def_spaces, pa_pseudo_op_moves_pc,
1698 label_symbols_rootP, pa_get_label, pa_label_is_defined,
1699 pa_undefine_label): Now static.
1700 (movers): Now const, in addition to pointing to const data.
1701 * config/tc-hppa.h (label_symbolS_rootP, pa_get_label,
1702 pa_label_is_defined, pa_undefine_label, pa_pseudo_op_moves_pc):
1703 Delete declarations.
1704
1705 Merged more changes from Jeff Law and Pete Hoogenboom:
1706
1707 * config/tc-hppa.c (pa_def_subspaces, pa_def_subspaces): Remove
1708 entries for .stab and .stabstr.
1709
1710 * config/obj-elf.c: (elf_stab_symbol_string): Set the
1711 SEC_LOAD attribute for the .stabstr section.
1712 (obj_elf_stab_generic): Set the SEC_LOAD attribute for the
1713 .stab section.
1714 (obj_elf_stab_generic): Change '#if 1' to '#if 0'.
1715 (obj_elf_stab_generic): Incorrect byte count on call to
1716 md_number_to_chars function.
1717
1718 * config/tc-hppa.c (hppa_tc_symbol): Static functions need
1719 argument relocation bits too.
1720
1721 * config/tc-hppa.c (pa_stringer): Correctly handle escaping
1722 characters which should appear unaltered in the output string (for
1723 example an escaped double-quote).
1724
1725 * config/tc-hppa.c (pa_parse_nonneg_cmpsub_cmpltr): Always
1726 initialize name.
1727 (pa_parse_neg_cmpsub_cmpltr): Likewise.
1728 (pa_parse_nonneg_add_cmpltr): Likewise.
1729 (pa_parse_neg_add_cmpltr): Likewise.
1730
1731 * config/tc-hppa.h (parse_cons_expression_hppa): Remove prototype
1732 for now.
1733 (cons_fix_new_hppa): Likewise.
1734 * config/tc-hppa.c (md_apply_fix): Fix type of valp to match
1735 prototype.
1736
1737 * config/tc-hppa.c: Include libhppa.h.
1738
1739 * config/tc-hppa.h: Delete extern declarations of functions
1740 found in libhppa.h.
1741
1742 * config/tc-hppa.c (pa_space): Rework to avoid unwanted #ifdef
1743 OBJ_ELF conditionals.
1744 * config/tc-hppa.h (LOCAL_LABEL): Correctly identify local labels
1745 on the PA.
1746
1747 Thu Sep 2 10:43:57 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1748
1749 * config/tc-mips.c (macro_build): Accept 'z', and ignore it.
1750 (macro): Use "z,s,t" for div instructions to match corresponding
1751 change in opcode table.
1752 (mips_ip): Added 'z'--must be zero register.
1753
1754 Wed Sep 1 15:56:42 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1755
1756 * write.c (write_relocs) [RELOC_EXPANSION_POSSIBLE]: Declare
1757 tc_gen_reloc correctly.
1758
1759 * configure.in: Use "case" instead of "if" when possible. Rewrote
1760 Makefile editing to reduce work done. Treat "hppa*" as "hppa".
1761
1762 Wed Sep 1 12:19:07 1993 K. Richard Pixley (rich@sendai.cygnus.com)
1763
1764 * config/obj-coffbfd.c (obj_coff_section): add 'd' as an alias for
1765 section type of data. 'd' seems to be used for m88k.
1766
1767 Wed Aug 25 22:33:22 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1768
1769 * config/tc-mips.c (mips_align, s_stringer, s_cons, s_float_cons,
1770 s_mips_space): Set insn_label to NULL to avoid changing it at the
1771 next .align statement.
1772 (append_insn): Don't swap jal with instruction that sets the
1773 register that jal sets.
1774
1775 Wed Aug 25 16:15:57 1993 K. Richard Pixley (rich@sendai.cygnus.com)
1776
1777 * configure.in: recognize m88110.
1778
1779 Wed Aug 25 13:37:46 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1780
1781 Merged changes from Pete Hoogenboom and Jeff Law at Utah:
1782 * config/tc-hppa.c (pa_build_unwind_subspace): SEC_ALLOC should
1783 not be on for .hppa_unwind.
1784 (md_pseudo_table): .PARAM and .param are valid pseudo-ops for GAS.
1785 (pa_param): New function to handle .PARAM directives.
1786 (pa_ip): Pass "isbranch" argument down to pa_parse_*_compltr
1787 functions. Handle '|' for movb; allow movb,n.
1788 (pa_parse_nonneg_cmpsub_cmpltr): Delete old useless
1789 version. Handle cases where no completer exists for
1790 comb,n or addb,n.
1791 (pa_parse_neg_cmpsub_cmpltr): Handle cases where no
1792 completer exists for comb,n or addb,n. Make logic
1793 mirror that of pa_parse_nonneg_cmpsub_cmpltr.
1794 (pa_parse_nonneg_add_cmpltr): Likewise.
1795 (pa_parse_neg_add_cmpltr): Likewise.
1796 * tc-hppa.h (pa_param): Declare.
1797
1798 Tue Aug 24 15:41:35 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1799
1800 * config/tc-hppa.c (hppa_tc_make_symextn_section): Now static.
1801 Added forward declaration.
1802
1803 Merged changes from Pete Hoogenboom and Jeff Law at Utah:
1804
1805 * config/obj-elf.c (elf_frob_file): Arguments were incorrect on
1806 call to elf_tc_make_sections.
1807 (obj_elf_version): A .note section shouldn't have the SEC_ALLOC
1808 attribute.
1809
1810 * config/tc-hppa.c (hppa_tc_make_sections): Add some processing to
1811 handle symbol extension sections.
1812
1813 * config/tc-hppa.c (pa_build_symextn_section): New function to
1814 create a symbol extension section.
1815 (pa_export_args): Make call to pa_build_symextn_section.
1816 (hppa_tc_symbol, hppa_tc_make_sections,
1817 hppa_tc_make_symextn_section): New functions.
1818 * config/tc-hppa.h: Update elf_tc_symbol and elf_tc_make_sections
1819 macros.
1820
1821 * read.c (emit_expr): Place check for TC_CONS_FIX_NEW in the
1822 BFD_ASSEMBLER branch as well.
1823
1824 * config/tc-hppa.h: If ELF is the target object format, define
1825 some ELF- and hppa-specific types and constants.
1826
1827 * config/tc-hppa.c (getExpression): Fix a typo.
1828
1829 * read.c (read_a_source_file): Use TC_EQUAL_IN_INSN to determine
1830 if a `=' is part of an instruction.
1831 (read_a_source_file): Handle case where end-of-line markers are
1832 also used within instructions.
1833 * config/tc-hppa.h (TC_EQUAL_IN_INSN, TC_EOL_IN_INSN): Define.
1834
1835 * config/tc-hppa.c (md_apply_fix_1): Keep relocations for
1836 out-of-range branches/'calls using "bl" or calls which may need
1837 argument relocation stubs. Do not need/keep relocations for
1838 conditional branches.
1839 (elf_hppa_final_processing): Fix calculation of function size.
1840
1841 * config/obj-elf.c (obj_elf_version): Mark .note section as
1842 READONLY.
1843
1844 * config/tc-hppa.c (parse_cons_expression_hppa): Pass exp, not the
1845 address of exp, to expression.
1846 (pa_build_unwind_subspace): Turn SEC_HAS_CONTENTS flag on.
1847 (md_apply_fix_1): Delete unwanted comments.
1848 (process_exit): Symbols marking the end of a function are always
1849 BSF_LOCAL.
1850
1851 * config/tc-hppa.c: Include elf32-hppa.h from BFD tree.
1852 (pa_space): Declare and initialize gdb_section.
1853
1854 * config/obj-elf.c (elf_frob_file): Change
1855 elf_tc_final_processing_hook to elf_tc_final_processing.
1856
1857 * config/tc-hppa.c (fix_new_hppa): Fix argument list to match
1858 argument type declarations.
1859 (getExpression): Fix typo.
1860 (pa_export_args): Change elf_symbol_type to elf32_symbol_type.
1861 (elf_hppa_final_processing): Likewise. Name changed from
1862 elf_hppa_final_processing_hook.
1863 (start_symbol_root, start_symbol_last): Deleted.
1864
1865 * config/tc-hppa.h (TC_PARSE_CONS_EXPRESSION): Fix typo.
1866
1867 * config/tc-hppa.h: Replace "symbolS" with "struct symbol" to
1868 avoid changing include ordering.
1869
1870 * config/tc-hppa.c (pa_ip, case 'y'): Handle just like 't'.
1871
1872 Mon Aug 23 12:47:58 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1873
1874 * config/tc-mips.c (set_at): Added unsignedp argument. Use
1875 load_register.
1876 (set_at_unsigned): Removed; changed callers to use set_at.
1877 (load_register): Removed unused ip argument. Changed callers.
1878 (append_insn): Don't swap branch and branch likely.
1879 (macro_build): Handle 'u'.
1880 (load_register): Handle 64 bit constants.
1881 (macro): Added M_DABS, removed M_ABSU. Numerous changes to
1882 support 64 bit constants.
1883 (mips_ip): Use hex constants in range checks for clarity.
1884 (md_number_to_chars): Support 8 byte values.
1885
1886 Fri Aug 20 16:50:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
1887
1888 * config/tc-m88k.h: updated copyrights.
1889 (TC_CONS_RELOC): declare to be RELOC_32.
1890
1891 Fri Aug 20 11:16:44 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1892
1893 * config/tc-mips.c (mips_isa): New static variable.
1894 (md_begin): Initialize mips_isa based on TARGET_CPU. Don't sanity
1895 check macros. Set text alignment and GP size here.
1896 (md_assemble): Don't set text alignment and GP size here.
1897 (append_insn): Don't insert NOPs for load delays if mips_isa >= 2.
1898 Use the right mask and shift for WRITE_FPR_T and WRITE_FPR_S. Add
1899 a NOP after a branch likely.
1900 (mips_emit_delays): Don't insert NOPS for load delays if mips_isa
1901 >= 2.
1902 (macro): Support r6000 and r4000 macros.
1903 (mips_ip): Check insn ISA level against mips_isa before using it.
1904 Added 'x' case for ignored register.
1905 (md_parse_option): Handle -mipsN and -mcpu=XX.
1906
1907 Fri Aug 20 01:26:52 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1908
1909 * config/tc-i386.c (md_pseudo_table) [OBJ_ELF]: Handle ".zero".
1910
1911 Thu Aug 19 12:15:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1912
1913 * config/tc-sparc.c (s_local): Function moved and renamed...
1914 * config/obj-elf.c (obj_elf_local): ...to here.
1915 * config/tc-sparc.c (md_pseudo_table), config/obj-elf.c
1916 (obj_pseudo_table): Move handling of ".local".
1917
1918 * tc.h (md_parse_option): Don't declare if defined as a macro.
1919
1920 * config/tc-i386.h (NO_RELOC) [BFD_ASSEMBLER]: Define as
1921 BFD_RELOC_NONE.
1922 (md_parse_option): New macro, converted from function.
1923 * config/tc-i386.c (md_parse_option): Function deleted.
1924 (comment_chars) [OBJ_ELF]: Include "/".
1925 (line_comment_chars) [OBJ_ELF || TE_I386AIX]: Don't include "/".
1926 (md_assemble): Cast 0xe9 to char explicitly, to avoid compiler
1927 warning.
1928 (md_assemble, md_estimate_size_before_relax, md_create_long_jump):
1929 Call reloc for fix_new type, or use correct enumerator, instead of
1930 always using NO_RELOC.
1931 (i386_operand): Change "ifndef I386COFF" to "ifdef OBJ_AOUT" for
1932 tests for valid section.
1933 (md_convert_frag) [BFD_ASSEMBLER]: Compensate for frag start
1934 address.
1935 (md_apply_fix_1) [BFD_ASSEMBLER]: For pc-relative reloc with
1936 symbol, compensate for location of reloc.
1937 (reloc, BFD_RELOC_32, BFD_RELOC_32_PCREL) [!BFD_ASSEMBLER]: Define
1938 to return zero.
1939
1940 Wed Aug 18 16:51:29 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1941
1942 * config/obj-elf.c: Undef NO_RELOC before including aout/aout64.h.
1943 (obj_elf_weak): New function.
1944 (obj_pseudo_table): Handle ".weak".
1945 (obj_elf_section): If section directive includes a string, ignore
1946 it for now. Accept "progbits" flag.
1947 (obj_elf_type): Accept `@' before flag name.
1948
1949 * write.c (relax_and_size_seg) [BFD_ASSEMBLER]: Get rid of `if(1)'
1950 condition.
1951 (fixup_segment) [BFD_ASSEMBLER]: Use bfd_is_com_section, rather
1952 than checking for bfd_com_section directly.
1953 (fixup_segment): Simplify range check.
1954 (fixup_segment) [OBJ_COFF && TC_I960]: Simplify cpp condition
1955 test.
1956
1957 * symbols.h (S_SET_WEAK): Declare.
1958 * symbols.c (S_SET_WEAK): New function.
1959 (S_SET_EXTERNAL, S_CLEAR_EXTERNAL): Don't bother with BSF_EXPORT,
1960 it's not a separate flag any more. Clear BSF_WEAK.
1961
1962 * read.c (potable): Treat "string" like "asciz".
1963
1964 Wed Aug 18 15:30:29 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1965
1966 * config/tc-mips.c (append_insn): Don't swap branch instructions
1967 if .set nobopt or .set volatile.
1968 (gp_reference): .lit8 and .lit4 are accessed via the GP register.
1969 (macro): Added cases M_LI_S, M_LI_SS. Fixed M_LI_D and M_LI_DD.
1970 (mips_ip): Added cases 'F', 'L', 'f', 'l' for floating point.
1971 * config/obj-ecoff.c: Renamed some variables to avoid shadow
1972 warnings.
1973
1974 Mon Aug 16 14:16:02 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1975
1976 * config/obj-coff.h (S_IS_COMMON): add missing backslash
1977
1978 * configure.in (z8k-*-{coff,sim}): use coffbfd for this target
1979
1980 Thu Aug 12 11:47:58 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1981
1982 * config/tc-mips.c (mips_ip): Suggested by
1983 davidj@ICSI.Berkeley.EDU (David Johnson): Don't accept symbolic
1984 names for 'E' and 'G' argument types (coprocessor registers) and
1985 don't warn if $1 is used on the coprocessor.
1986 (macro): Handle M_{L,S}WC{0,2,3}_AB correctly.
1987
1988 Mon Aug 9 12:09:14 1993 Doug Evans (dje@canuck.cygnus.com)
1989
1990 * read.c (emit_expr): Use BFD_RELOC_16 for 2-byte values.
1991 * config/tc-sparc.c (md_apply_fix, tc_gen_reloc): Handle
1992 BFD_RELOC_16.
1993 * config/tc-sparc.h (WORKING_DOT_WORD): Define.
1994
1995 Mon Aug 9 13:36:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1996
1997 * write.c (merge_data_into_text): Define only if BFD_ASSEMBLER is
1998 defined or BFD is not.
1999 (relax_and_size_all_segments): Declare local variable fragP.
2000
2001 Fri Aug 6 15:22:53 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2002
2003 * config/tc-sparc.c (md_apply_fix, case BFD_RELOC_32): Fill in
2004 bytes with real values, not zeros.
2005
2006 Fri Aug 6 10:57:59 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2007
2008 * configure.in (mips-*-riscos*, mips-*-sysv*): New (untested)
2009 targets, using ecoff and mips-big.
2010
2011 * config/tc-mips.c (mips_ip): From davidj@ICSI.Berkeley.EDU (David
2012 Johnson): Added case for 'C' for coprocessor instruction codes.
2013
2014 Thu Aug 5 13:08:56 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2015
2016 * config/obj-elf.c (obj_pseudo_table): Handle ".8byte".
2017
2018 * read.c (emit_expr): Use BFD_RELOC_64 for 8-byte expressions.
2019
2020 * write.c (write_object_file): Test DEBUG_SYMS instead of DEBUG
2021 for verifying symbol chain.
2022 (merge_data_into_text, relax_and_size_all_segments): New
2023 functions, split out from write_object_file.
2024
2025 Tue Aug 3 15:43:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2026
2027 * config/obj-elf.c (obj_elf_stab_generic, in disabled code): If
2028 debug section is new, allocate an extra 12 bytes at its start. If
2029 ".stabs" type is N_SO, fill in filename symbol field of that first
2030 entry. Return early if "goof", to simplify later code slightly.
2031 (adjust_stab_sections): New function.
2032 (elf_frob_file): Apply adjust_stab_sections to each section.
2033
2034 * config/obj-elf.c (obj_elf_section, obj_elf_previous): No longer
2035 static.
2036 * config/obj-elf.h (obj_elf_section, obj_elf_previous): Declare.
2037 * config/tc-sparc.c (md_pseudo_table): Call them for "pushsection"
2038 and "popsection", and call cons for "uaword" and "uahalf".
2039
2040 * config/obj-elf.c (obj_elf_version): Use English in error
2041 messages.
2042
2043 Tue Aug 3 11:29:06 1993 Ian Lance Taylor (ian@cygnus.com)
2044
2045 * config/obj-ecoff.c: Updated for BFD ECOFF changes. Now gets the
2046 swapping routines and external structure sizes via the
2047 ecoff_backend information. No longer includes coff/mips.h.
2048
2049 Mon Aug 2 17:35:48 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2050
2051 * config/obj-ecoff.c (get_tag): Save tag name in permanent memory
2052 and in hash_ptr->string.
2053
2054 * app.c (do_scrub_next_char): Reset state to 0 after .appline if
2055 file name is not seen.
2056
2057 Thu Jul 29 22:21:28 1993 Ian Lance Taylor (ian@cygnus.com)
2058
2059 * write.c: Don't use short int in a prototype.
2060
2061 * expr.c (operand): Make return value simply depend on contents of
2062 returned expression.
2063
2064 Thu Jul 29 18:38:37 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2065
2066 * configure.in: sparc*-aout and sparc*-vxworks are BFD assemblers
2067
2068 Thu Jul 29 18:38:37 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2069
2070 * config/ho-sunos.h: remove some old function decls that conflict
2071 w/ ANSI, and which weren't needed anyway
2072
2073 Wed Jul 28 16:34:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2074
2075 * config/obj-elf.h (obj_frob_symbol): Renamed from tc_frob_symbol,
2076 and disabled since it breaks Ian's new symbol-value code.
2077
2078 * expr.c (integer_constant): Accept more digits if BFD64.
2079
2080 Wed Jul 28 11:30:05 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2081
2082 * config/tc-m68k.c (m68k_ip): If we have a normal constant when we
2083 expect a bignum, turn it into a bignum. Output extra zeroes
2084 before a short bignum, rather than after.
2085
2086 Tue Jul 27 15:54:27 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2087
2088 * symbols.c (symbol_new): Conditionalize verify_symbol_chain call
2089 on DEBUG_SYMS, not DEBUG.
2090 (symbol_remove): Likewise.
2091 (symbol_insert): Likewise.
2092
2093 Tue Jul 27 08:45:05 1993 Ian Lance Taylor (ian@cygnus.com)
2094
2095 * config/tc-mips.c (mips_optimize): New static variable.
2096 (append_insn): If mips_optimize == 0, always insert NOP
2097 instructions. If mips_optimize < 2, don't swap branches.
2098 (md_parse_option): If -Ox or -gx, set mips_optimize accordingly.
2099
2100 Mon Jul 26 18:02:43 1993 K. Richard Pixley (rich@sendai.cygnus.com)
2101
2102 * Makefile.in (clean): if testsuite does not exist, then skip it.
2103
2104 Fri Jul 23 14:13:25 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2105
2106 * config/tc-mips.c (prev_insn_unreordered,
2107 prev_prev_insn_unreordered): New static variables.
2108 (append_insn): Don't swap branch instruction if
2109 prev_prev_insn_unreordered (see comment).
2110 (mips_no_prev_insn): Clear the unreordered variables.
2111 (s_mipsset): When turning on reordering, set the unreordered
2112 variables.
2113
2114 Fri Jul 23 13:09:44 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2115
2116 * config/obj-elf.c (obj_elf_section): Sections ".init" and ".fini"
2117 are also magic, and have special default flag settings.
2118 (obj_elf_frob_symbol): Since the return value from this function
2119 isn't used, don't bother calling obj_elf_write_symbol_p, since it
2120 doesn't accomplish anything else.
2121
2122 * config/tc-sparc.c (md_section_align): Round up section size only
2123 for a.out format.
2124
2125 * symbols.c: Don't define DEBUG by default.
2126
2127 Thu Jul 22 12:09:41 1993 Ian Lance Taylor (ian@cygnus.com)
2128
2129 * write.c (fix_new_exp): Handle a O_uminus expression.
2130
2131 * expr.c (expr): Don't let absolute_section override
2132 undefined_section for the return value.
2133
2134 * read.c (read_a_source_file): In NO_PSEUDO_DOT case, if we find a
2135 pseudo-op with a poc_handler field of NULL, ignore it and treat it
2136 as an instruction instead.
2137 * config/tc-m88k.c (md_pseudo_table): Add "set" with a NULL
2138 poc_handler field.
2139
2140 * config/tc-h8500.c (md_begin): Use a local variable when
2141 initializing md_relax_table to avoid warnings about modifying a
2142 supposedly const data structure.
2143
2144 Thu Jul 22 10:58:51 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
2145
2146 * config/obj-aout.c: Only include aout/aout64.h if BFD_ASSEMBLER
2147 is defined.
2148
2149 Wed Jul 21 17:32:02 1993 Fred Fish (fnf@deneb.cygnus.com)
2150
2151 * configure.in (case ${host}): Map *-*-sysv4* to gas_host=sysv.
2152 * configure.in (case ${generic_target}): Add i[34]86-*-sysv4*
2153 case to set obj_format=elf. Must go before i386-*-sysv* case that
2154 sets obj_format=coffbsd. Add *-*-sysv4* to *-*-elf and
2155 *-*-solaris case, and move to before *-sysv* case that wants to
2156 set obj_format to coff.
2157 * config/tc-i386.c (i386_operand): Change all 'exp.X_op' to
2158 'exp->X_op'.
2159 * config/tc-i386.c (md_apply_fix): Fix valp to be 'valueT *' for
2160 BFD_ASSEMBLER case.
2161
2162 Wed Jul 21 12:47:51 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2163
2164 * config/obj-aout.c: Include aout/aout64.h.
2165 (obj_aout_frob_symbol): Set BSF_DEBUGGING for a constructor
2166 symbol, so that BFD doesn't tamper with the type.
2167
2168 * read.c (read_a_source_file): If NO_PSEUDO_DOT is defined, look
2169 up opcodes as pseudo-ops even if they don't start with '.'.
2170 * config/tc-m88k.h (NO_PSEUDO_DOT): Define.
2171 * config/tc-m88k.c (md_assemble): Removed special pseudo-op
2172 handling.
2173 (md_apply_fix): Set fx_offset to the upper 16 bits of the reloc.
2174 Output the low 16 bits for RELOC_HI16, not the high 16 bits.
2175 * config/obj-coffbfd.c (do_relocs_for): If TC_M88K, set the
2176 r_offset field of the reloc to the fixup offset.
2177 (fixup_segments): If TC_M88K, don't warn about fixup overflows.
2178 * doc/as.texinfo: Minor updates.
2179
2180 Tue Jul 20 19:28:56 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2181
2182 * Extensive changes to permit symbols to contain any expression
2183 type and to delay the computation of the expression until the
2184 value is actually needed. This permits setting symbols to values
2185 calculated based on object code size. Expressions were changed to
2186 no longer be in a section, to stop the overloading of segment and
2187 expression type that previously occurred.
2188
2189 * as.c (big_section, pass1_section, diff_section, absent_section):
2190 Removed.
2191 (expr_section): Added (used for dummy symbols which hold
2192 intermediate expression values).
2193 (perform_an_assembly_pass): Create expr_section, do not create the
2194 sections now removed.
2195 * as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
2196 SEG_DIFFERENCE. Added SEG_EXPR.
2197 (SEG_NORMAL): Corresponding changes.
2198 * subsegs.c (seg_name, subsegs_begin): Changed accordingly.
2199 * write.c (write_object_file): Ditto.
2200 * config/obj-aout.c (seg_N_TYPE): Ditto.
2201 * config/obj-bout.c (seg_N_TYPE): Ditto.
2202 * config/obj-coff.c (seg_N_TYPE): Ditto.
2203 * config/obj-coffbfd.c (seg_N_TYPE): Ditto.
2204 * config/obj-vms.c (seg_N_TYPE): Ditto.
2205
2206 * expr.h (operatorT): Moved in from expr.c, added some values.
2207 (expressionS): Added X_op field, removed X_seg field; renamed
2208 X_subtract_symbol to X_op_symbol.
2209 * expr.c: Extensive changes to assign expression types rather than
2210 sections and to simplify the parsing.
2211 * write.c (fix_new_internal): New static function.
2212 (fix_new): Removed sub_symbol argument.
2213 (fix_new_exp): New function, takes expression argument.
2214 * write.h: Prototype changes for fix_new and fix_new_exp.
2215 * cond.c (s_if): Changed accordingly.
2216 * read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
2217 parse_repeat_cons, get_segmented_expression,
2218 get_known_segmented_expression, get_absolute_expression): Ditto.
2219 * symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
2220 Ditto.
2221 * write.c (write_object_file): Ditto.
2222 * config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
2223 * config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
2224 obj_coff_endef, yank_symbols): Ditto.
2225 * config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
2226 * config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
2227 print_insn, md_operand): Ditto.
2228 * config/tc-h8300.c (parse_exp, colonmod24, check_operand,
2229 do_a_fix_imm, build_bytes): Ditto.
2230 * config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
2231 get_specific, check, insert, md_convert_frag): Ditto.
2232 * config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
2233 md_assemble, pa_ip, getExpression, getAbsoluteExpression,
2234 evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
2235 process_exit): Ditto.
2236 * config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
2237 is_complex): Ditto.
2238 * config/tc-i386.c (pe, md_assemble, i386_operand,
2239 md_estimate_size_before_relax, md_create_long_jump): Ditto.
2240 * config/tc-i860.c (md_assemble, getExpression, print_insn):
2241 Ditto.
2242 * config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
2243 get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
2244 i960_handle_align): Ditto.
2245 * config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
2246 subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
2247 md_estimate_size_before_relax, md_create_long_jump, get_num):
2248 Ditto.
2249 * config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
2250 md_create_short_jump, md_create_long_jump): Ditto.
2251 * config/tc-mips.c (md_assemble, append_insn, gp_reference,
2252 macro_build, macro, my_getExpression): Ditto. Also removed
2253 get_optional_absolute_expression; just use get_absolute_expression
2254 instead.
2255 * config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
2256 fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
2257 * config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
2258 * config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
2259 Ditto.
2260 * config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
2261 print_insn): Ditto.
2262 * config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
2263 tip_op, md_assemble): Ditto.
2264 * config/tc-vax.c (seg_of_operand, md_assemble,
2265 md_estimate_size_before_relax, md_create_long_jump): Ditto.
2266 * config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
2267
2268 Tue Jul 20 12:17:16 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2269
2270 * configure.in: i386-lynx is the same as i386-coff
2271
2272 Mon Jul 19 15:21:20 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
2273
2274 * config/obj-elf.c (obj_elf_previous): New function.
2275 (previous_section, previous_subsection): New vars.
2276 (obj_elf_section): Save current place in case DWARF code wants us
2277 to pop back to it. Handle unquoted section name as well as quoted
2278 section name. Don't crash on invalid strings.
2279 (obj_pseudo_table): Handle new pseudos "previous", "2byte", and
2280 "4byte".
2281
2282 * config/obj-elf.h: Don't include struc-symbol.h.
2283 (obj_elf_frob_symbol): Declare arg as struct symbol *.
2284
2285 * tc-sparc.h (LOCAL_LABEL) [OBJ_ELF]: Local labels can start with
2286 "L" or "_.L_".
2287
2288 * write.c (write_relocs): New function, split off from
2289 write_contents. Use memset instead of bzero.
2290 (write_object_file): Apply write_relocs to each section before
2291 applying write_contents.
2292
2293 * read.c (read_begin): Call obstack_begin with values closer to 1K
2294 multiples.
2295 (read_a_source_file, big_cons, float_cons): Use memcpy instead of
2296 bcopy.
2297
2298 Mon Jul 19 14:30:00 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2299
2300 * config/tc-m68k.c (m68k_ip_op): Don't decrement strend when
2301 calculating opP->isiz; this permits the expression size to be
2302 determined as well, later on.
2303
2304 * expr.c (clean_up_expression): Don't cancel the subtraction of
2305 undefined symbols.
2306
2307 * read.c (s_data), config/obj-coffbfd.c (obj_coff_data): If -R,
2308 switch to text section rather than data section.
2309
2310 Mon Jul 19 12:35:39 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2311
2312 * config/tc-m68k.c (m68k_ip, case AINDX): Add 6 to operand
2313 expression (to take the pc-rel instruction itself into account)
2314 before using the expression, instead of after.
2315
2316 Fri Jul 16 08:56:04 1993 Ian Lance Taylor (ian@cygnus.com)
2317
2318 * read.c (float_cons): Simplified parsing logic. If
2319 REPEAT_CONS_EXPRESSIONS is defined, accept a repeat count.
2320
2321 * symbols.c (colon): Rather than a special case for TC_HPPA,
2322 use new macro tc_frob_label.
2323 * config/tc-hppa.h (tc_frob_label): Define.
2324
2325 * config/tc-mips.c: Many changes to support simple assembler
2326 optimization.
2327 (insn_label, prev_insn, prev_prev_insn, dummy_opcode,
2328 prev_insn_valid, prev_insn_frag, prev_insn_where,
2329 prev_insn_fixp, prev_insn_is_delay_slot): New static
2330 variables.
2331 (insn_uses_reg, mips_no_prev_insn, mips_emit_delays,
2332 mips_align, s_stringer, s_mips_space): New static functions.
2333 (mips_define_label): New global function.
2334 (md_pseudo_table): For "ascii", "asciz", "asciiz", call
2335 s_stringer. Changed argument to float_cons from 0 or 1 to 'f'
2336 or 'd'. For "space" call s_mips_space.
2337 (md_begin): Call mips_no_prev_insn.
2338 (append_insn): Only insert necessary NOP instructions.
2339 (macro): Call mips_emit_delays before setting mips_noreorder.
2340 Increment and decrement mips_noreorder rather than using
2341 save_reorder_condition. Don't bother to use noreorder in
2342 M_L_DOB and M_L_DAB, since append_insn will not insert a NOP.
2343 (md_atof): Handle floating point numbers correctly for both
2344 big and little endian targets.
2345 (s_align, s_cons): Call mips_align rather than frag_align.
2346 (s_change_seg, s_cons): Call mips_emit_delays.
2347 (s_float_cons): Let float_cons do the work.
2348 (s_mipsset): Call mips_emit_delays when setting noreorder.
2349 * config/tc-mips.h (tc_frob_label): Define to be
2350 mips_define_label.
2351
2352 * config/obj-ecoff.c (ecoff_build_symbols, ecoff_build_procs,
2353 ecoff_frob_files): Consistently use S_GET_VALUE rather than
2354 bfd_asymbol_value. Warn if taking difference of symbols in
2355 different segments.
2356
2357 Thu Jul 15 11:51:03 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2358
2359 * config/obj-ecoff.c (ecoff_frob_file): Discard all open scopes,
2360 with a warning.
2361
2362 * config/obj-coffbfd.c (fixup_segment): If TC_M88K, don't adjust
2363 by md_pcrel_from if we are relocating against a symbol (we still
2364 need md_pcrel_from for a PC relative relocation within the same
2365 file).
2366 * config/tc-m88k.c (md_pcrel_from): Corrected return value.
2367 (omagic): Removed unused variable.
2368
2369 * Preliminary support for m88k-coff.
2370 * configure.in (m88k-*-coff*): New target. Use coffbfd and
2371 m88kcoff.
2372 * config/m88kcoff.mt: New file.
2373 * read.c (lex_type): New macro LEX_AT to set lex type of '@'.
2374 (pseudo_set): Handle difference of symbols in different fragments
2375 by saving the entire expression as the value of the symbol.
2376 * symbols.c (resolve_symbol_value): Resolve difference
2377 expressions.
2378 * config/obj-coffbfd.c (obj_pseudo_table): If TC_M88K, accept
2379 "sdef" as a synonym for "def".
2380 * config/obj-coffbfd.h: If TC_M88K, include coff/m88k.h and set
2381 TARGET_FORMAT.
2382 (S_IS_LOCAL): Any symbol which includes \001 in the name is local.
2383 * config/tc-m88k.c, config/tc-m88k.h: Numerous changes to bring
2384 m88k port up to date, and to add COFF support.
2385
2386 Wed Jul 14 15:09:32 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2387
2388 * Removed sy_forward and replaced it with an undefined expression
2389 as the value of a symbol.
2390 * struc-symbol.h (struct symbol): Removed sy_forward field. Added
2391 sy_resolved and sy_resolving single bit fields.
2392 * symbols.c (symbol_new): Don't initialize sy_forward field.
2393 (resolve_symbol_value): New function to adjust symbol value by
2394 fragment address, using recursion to resolve forward symbols.
2395 * symbols.h: Added prototype for new function.
2396 * read.c (pseudo_set): Set symbolP->sy_value to an undefined
2397 expression rather than setting symbolP->sy_forward.
2398 * write.c (write_object_file): Use resolve_symbol_value on
2399 symbols, keeping the common case (the old behaviour) inline.
2400 * config/obj-aout.c (obj_aout_frob_symbol): Removed sy_forward
2401 handling (subsumed by write.c change).
2402 * config/obj-coff.c, config/obj-coffbfd.c (obj_coff_val): Set
2403 sy_value rather than sy_forward.
2404 * config/obj-coffbfd.c (obj_coff_endef, yank_symbols): Check
2405 expression segment rather than sy_forward.
2406 (yank_symbols): Use resolve_symbol_value.
2407 (crawl_symbols): Removed extra pass over symbols.
2408 * config/obj-aout.c, config/obj-bout.c, config/obj-coff.c,
2409 config/obj-vms.c (obj_crawl_symbol_chain): Removed extra pass over
2410 symbols which handled sy_forward; use resolve_symbol_value
2411 instead.
2412 * config/obj-coff.h, config/obj-coffbfd.h (obj_frob_forward_symbol):
2413 Define.
2414 * config/obj-elf.c (obj_elf_stab_generic): Check expression
2415 segment rather than sy_forward.
2416 * config/obj-vms.c (VMS_Check_For_Main): Don't initialize
2417 sy_forward; do initialize sy_resolved and sy_resolving.
2418 * config/tc-hppa.h (STAB_FIXUP): Use sy_value, not sy_forward.
2419
2420 * Changes to keep a full expression as the value of a symbol, not
2421 just a longword:
2422 * struc-symbol.h: New field sy_value.
2423 * as.h: Include expr.h before struc-symbol.h.
2424 * expr.h: Use struct symbol rather than symbolS.
2425 * symbols.c (S_GET_VALUE, S_SET_VALUE): Rewrote to retrieve value
2426 of sy_value field; compile unconditionally, not just if
2427 BFD_ASSEMBLER.
2428 * symbols.h: Compile S_{SG}ET_VALUE prototypes unconditionally.
2429 * write.c (write_object_file): Set BFD symbol value to gas symbol
2430 value.
2431 * config/obj-aout.h, config/obj-bout.h, config/obj-coff.h,
2432 config/obj-coffbfd.h, config/obj-generic.h, config/obj-vms.h
2433 (S_GET_VALUE, S_SET_VALUE): Removed macro definitions.
2434 * config/obj-ieee.c (S_GET_VALUE, S_SET_VALUE): Removed.
2435 * config/obj-coff.h, obj-coffbfd.h: Rewrote several macros to use
2436 S_GET_VALUE rather than ost_entry.n_value.
2437 * config/obj-aout.c (obj_symbol_to_chars), config/obj-bout.c
2438 (obj_symbol_to_chars), config/obj-coff.c (obj_symbol_to_chars),
2439 config/obj-coffbfd.c (symbol_to_chars): Get value to write out
2440 using S_GET_VALUE--don't assume it is already set.
2441 * config/obj-ieee.c (do_symbols): Set BFD symbol value to gas
2442 symbol value.
2443 * config/obj-vms.c (various): Don't assign directly to
2444 S_GET_VALUE; use S_SET_VALUE instead.
2445
2446 Wed Jul 14 09:35:23 1993 Doug Evans (dje@canuck.cygnus.com)
2447
2448 * configure.in: Recognize h8300h.
2449
2450 Tue Jul 13 12:09:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
2451
2452 * config/tc-h8500.c (line_comment_chars): Add hash.
2453 (parse_exp, skip_colonthing, build_bytes): Add support for
2454 R_H8500_HIGH16 relocation type.
2455
2456 Mon Jul 12 11:15:34 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
2457
2458 * config/obj-elf.c (obj_elf_section): Allow `@' to introduce an
2459 attribute name. Handle `execinstr' attribute.
2460
2461 Mon Jul 12 07:22:28 1993 Ian Lance Taylor (ian@cygnus.com)
2462
2463 * config/tc-mips.c (mips_ip): Don't warn on 'i' or 'j' mismatch if
2464 there is another alternative for the instruction.
2465
2466 Fri Jul 9 17:31:34 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
2467
2468 * doc/as.texinfo: updates for H8/300H
2469
2470 Thu Jul 8 14:41:43 1993 Mark Eichin (eichin@cygnus.com)
2471
2472 * config/tc-i960.c (md_create_short_jump, md_create_long_jump,
2473 md_number_to_chars, md_section_align): Adjusted to use valueT,
2474 addressT, to match tc.h.
2475
2476 Thu Jul 8 14:15:05 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2477
2478 * config/tc-sparc.c (s_common): Revamp to handle both syntaxes,
2479 independent of format.
2480
2481 Thu Jul 8 07:25:25 1993 Doug Evans (dje@canuck.cygnus.com)
2482
2483 * config/tc-h8300.h (TC_CONS_RELOC): Use R_RELLONG if h8/300h.
2484
2485 Wed Jul 7 18:11:07 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
2486
2487 * configure.in: define CROSS=-DCROSS_COMPILE if it is a cross
2488 build; also recognize h8300-*-coff
2489
2490 Wed Jul 7 10:21:24 1993 Ian Lance Taylor (ian@cygnus.com)
2491
2492 * symbols.c (fb_label_instance, fb_label_instance_inc): Don't dump
2493 core just because somebody uses a label before it is defined.
2494
2495 * config/mips-opcode.h: Moved to opcode/mips.h.
2496 * config/tc-mips.c: Include opcode/mips.h rather than
2497 mips-opcode.h.
2498 (append_insn): An extra NOP is only needed after instructions
2499 which set HI or LO, not after instructions which read it.
2500 (macro_build, mips_ip): Support new 'E', 'G' and 'B' arguments.
2501 (macro): cfc1 and ctc1 now take "t,G" rather than "t,d".
2502 * config/tc-mips.h (struct mips_opcode): Don't define.
2503 * config/mips-big.mt, config/mips-lit.mt (TARG_CPU_DEPENDENTS):
2504 Set to $(srcdir)/../include/opcode/mips.h.
2505
2506 Get the MIPS assembler up to speed with other gas changes:
2507
2508 * config/obj-ecoff.c (ecoff_set_vma, ecoff_frob_symbol):
2509 Removed; don't change the symbol value.
2510 (ecoff_build_symbols, ecoff_build_procs, ecoff_frob_file): Use
2511 bfd_asymbol_value rather than S_GET_VALUE to include section
2512 vma in symbol value.
2513 (ecoff_frob_file): Ignore BSF_SECTION_SYM symbols, since ECOFF
2514 doesn't output them. Set the vma of sections.
2515 * config/obj-ecoff.h: Don't define obj_frob_symbol.
2516 * config/tc-mips.c (tc_gen_reloc): Adjustment by section vma is no
2517 longer necessary.
2518 (various): use valueT rather than long.
2519
2520 Wed Jul 7 08:33:30 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2521
2522 * as.h (valueT): Typedef moved here.
2523 * struc-symbol.h (valueT): ...from here.
2524 * write.c (write_object_file): Locals from_addr, to_addr,
2525 table_addr are now addressT. Supply prototype for bfd_alloc for
2526 now.
2527 (fixup_segment): Local add_number is now valueT. Correct some
2528 range-checking bugs.
2529 (relax_align): Type `int' should be sufficient for the exponent.
2530 (fix_new): Argument offset is type offsetT. Locals size and
2531 newsize are type valueT.
2532 * write.h (struct fix): Fields fx_offset and fx_addnumber are now
2533 type valueT.
2534 (fix_new): Fix prototype.
2535 * symbols.c (symbol_new): Symbol value is type valueT.
2536 (S_SET_VALUE, S_GET_VALUE): Likewise.
2537 (S_IS_*): Specify int return type explicitly.
2538 * symbols.h (symbol_new, S_GET_VALUE, S_SET_VALUE): Fixed
2539 prototypes.
2540 * read.c (s_comm): Values read are type valueT.
2541 * expr.h (expressionS): Field X_add_number is an offsetT.
2542 * tc.h (md_create_long_jump, md_create_short_jump,
2543 md_section_align): Addresses are now type addressT.
2544 (md_number_to_chars, md_apply_fix): Pass value as valueT.
2545 * config/tc-i386.c (md_create_short_jump, md_create_long_jump,
2546 md_number_to_chars, md_section_align): Adjusted.
2547 * config/tc-sparc.c (sparc_ip): Initialize `len' variable to make
2548 gcc shut up.
2549 (md_create_short_jump, md_create_long_jump, md_number_to_chars,
2550 md_section_align): Adjusted.
2551
2552 * config/tc-sparc.c (s_reserve): Permit use for other than a.out
2553 format.
2554 (s_common): Handle Solaris-2 version.
2555
2556 * config/ho-generic.h (free): Returns void if __STDC__.
2557
2558 * config/obj-elf.h (obj_elf_frob_symbol, elf_frob_file,
2559 elf_file_symbol): Declare.
2560
2561 * expr.c (floating_constant, integer_constant): Now return void.
2562
2563 Thu Jul 1 12:13:43 1993 Ian Lance Taylor (ian@cygnus.com)
2564
2565 * configure.in: Match on sparc*-fujitsu-none rather than
2566 sparclite*-fujitsu-none.
2567
2568 Wed Jun 30 11:12:02 1993 Ian Lance Taylor (ian@cygnus.com)
2569
2570 * read.c (cons): Conditionalize parsing of expression. Move
2571 putting value into object file into separate function. Separate
2572 out MRI and WANT_BITFIELDS cases into separate functions.
2573 (emit_expr): New function to write data into object file.
2574 Conditionalize on TC_CONS_FIX_NEW and TC_CONS_RELOC rather than on
2575 processor types.
2576 (parse_bitfield_cons): New function to parse bitfield expressions
2577 as used by i960 assemblers. Only compiled if
2578 BITFIELD_CONS_EXPRESSIONS is defined.
2579 (parse_mri_cons): New function to parse MRI style strings. Only
2580 compiled if MRI is defined.
2581 (parse_repeat_cons): New function to parse repeat counts. Only
2582 compiled if REPEAT_CONS_EXPRESSIONS is defined.
2583 * read.h (emit_expr): Added declaration of new function.
2584 * config/tc-a29k.h (TC_CONS_RELOC): Define to be RELOC_32.
2585 * config/tc-h8300.h (TC_CONS_RELOC): Define to be R_RELWORD.
2586 * config/tc-hppa.c (parse_cons_expression_hppa): New function to
2587 parse a HPPA expression, rather than special case in cons
2588 function.
2589 (cons_fix_new_hppa): New function to emit an HPPA fixup, rather
2590 than special case in emit_expr function.
2591 * config/tc-hppa.h (TC_PARSE_CONS_EXPRESSION, TC_CONS_FIX_NEW):
2592 Define to use new functions from tc-hppa.c.
2593 * config/tc-i960.h (BITFIELD_CONS_EXPRESSIONS): Define.
2594 (WANT_BITFIELDS): Removed; now obsolete.
2595 * config/tc-mips.h (REPEAT_CONS_EXPRESSIONS): Define.
2596 * config/tc-ns32k.c (cons_fix_new_ns32k): New function to emit an
2597 NS32K fixup, rather than special case in emit_expr function.
2598 * config/tc-ns32k.h (TC_CONS_FIX_NEW): Define to be
2599 cons_fix_new_ns32k. Also use PARAMS rather than checking
2600 __STDC__.
2601 * config/tc-sparc.h (TC_CONS_RELOC): Define to RELOC_32.
2602
2603 * write.c (relax_and_size_seg, adjust_reloc_syms, write_contents):
2604 Don't core dump if gas has no information about a section.
2605
2606 Wed Jun 30 06:21:27 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2607
2608 * write.c (relax_and_size_seg): Always fully process a section.
2609 Section size is last frag's (vm)address plus its size. If no
2610 relocations are present, force SEC_RELOC flag clear.
2611 (dump_section_relocs): New debugging routine.
2612 (adjust_reloc_syms): New routine, broken out from write_contents.
2613 Don't adjust relocs that are already relative to section symbol.
2614 Look for obj_fix_adjustable macro to know what else to skip,
2615 instead of obj_write_symbol. Look for section symbol stored in
2616 section information.
2617 (write_object_file): Map adjust_reloc_syms over all sections.
2618 (write_contents): Clear SEC_RELOC flag if no relocations are
2619 found.
2620
2621 * as.h (__PTR_TO_INT, __INT_TO_PTR): New versions for Saber, to
2622 keep it quiet.
2623
2624 * write.c (remove_subsegs): Don't define for BFD_ASSEMBLER.
2625
2626 Fri Jun 25 14:42:53 1993 K. Richard Pixley (rich@sendai.cygnus.com)
2627
2628 * Makefile.in (all, dvi, info, install-info, clean-info): do not
2629 echo recursion lines.
2630 (install-info, clean-info): collapse into the dvi and info rule.
2631
2632 Fri Jun 25 03:43:06 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
2633
2634 * as.h (strstr): Disable declaration for now.
2635 (fprint_value, sprint_value): Declare.
2636
2637 * subsegs.c (subseg_new_rest): Use memset to clear new frag.
2638 (subseg_new) [BFD_ASSEMBLER]: Initialize all seginfo fields.
2639
2640 * expr.c (expr_part): Made sanity checks a.out-specific.
2641 (expr): Disabled sanity checks.
2642
2643 * subsegs.h (segment_info_type) [BFD_ASSEMBLER]: Add field for
2644 section symbol.
2645 * subsegs.c (subseg_change): Initialize section symbol pointer
2646 when setting up a new section.
2647
2648 * symbols.c (symbol_new) [BFD_ASSEMBLER]: Point BFD symbol's udata
2649 field back at gas symbol structure.
2650
2651 * symbols.c (colon): Cast obstack_next_free value to char* before
2652 doing arithmetic on it.
2653 * subsegs.c (subseg_new_rest): Likewise.
2654 * as.h (frag_now_fix): Likewise.
2655
2656 * config/obj-elf.c (elf_file_symbol): Use subseg_new instead of
2657 calling bfd_make_section_old_way directly, and call subseg_set
2658 instead of subseg_change. Now returns void.
2659 (obj_elf_write_symbol): Only check local symbols for now.
2660 (elf_stab_symbol): Now static and void, and disabled until it
2661 works completely.
2662 (obj_elf_size): For expression values, fail silently for now.
2663 (obj_symbol_new_hook): Do nothing.
2664
2665 * config/tc-sparc.c (tc_gen_reloc): Handle BFD_RELOC_SPARC_WDISP22
2666 relocation.
2667 (s_local) [OBJ_ELF]: New function.
2668 (md_pseudo_table) [OBJ_ELF]: Call it for "local".
2669 (s_common): Rearrange to handle Solaris .common pseudo, which may
2670 sometimes use bss space instead of common.
2671 * config/obj-elf.h (TARGET_SYMBOL_FIELDS): Add new `local' field.
2672
2673 Thu Jun 24 16:33:53 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2674
2675 * configure.in: set host config to hpux for hppa*-hp-hpux
2676
2677 Thu Jun 24 13:35:06 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
2678
2679 * app.c (app_pop, app_push): Fix bug reported by Chris Arthur.
2680
2681 Tue Jun 22 01:04:23 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
2682
2683 * subsegs.c (subseg_new): Don't special-case a.out -R flag here.
2684 * config/obj-aout.c (s_sect): Do it here.
2685
2686 * as.h (BAD_CASE): Don't make some lame compilers think we want
2687 substitution inside strings.
2688
2689 * as.c (print_version_id): New function, split off from main.
2690 (main): Call it.
2691 * config/tc-sparc.c (md_parse_option) [OBJ_ELF]: Print version id
2692 for -V. Ignore -Q and -s options for now.
2693
2694 Mon Jun 21 17:37:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2695
2696 * Makefile.in: make installation & builds work again for crosses
2697
2698 Sun Jun 20 18:18:26 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
2699
2700 * listing.c (list_symbol_table): Rewrite to print wide (>32 bits)
2701 symbol values correctly.
2702
2703 * write.c (write_object_file): Deleted unused variables.
2704 (fixup_segment): Use sprint_value.
2705
2706 * messages.c (sprint_value, fprint_value): New routines.
2707
2708 * config/obj-elf.c (elf_stab_symbol): Now returns void.
2709 (obj_elf_stab_generic): Fix typo in logic.
2710
2711 * Makefile.in (INCLUDES): Look in ../bfd for bfd.h.
2712
2713 * as.h (addressT, offsetT): New types, using BFD types if
2714 available.
2715 (relax_addressT, struct frag): Use them.
2716 * struc-symbol.h (valueT, struct broken_word): Likewise.
2717
2718 * as.h (subseg_new) [BFD_ASSEMBLER]: Name argument is const.
2719 * subsegs.c (subseg_new) [BFD_ASSEMBLER]: Name argument is const.
2720
2721 Thu Jun 17 16:53:56 1993 david d `zoo' zuhn (zoo@cygnus.com)
2722
2723 * Makefile.in: canonicalize install.sh; for use within
2724 this directory (and subdirs)
2725
2726 Sun Jun 20 02:34:04 1993 Ashley Saulsbury (ans@sics.se)
2727
2728 * m88k-opcode.h : fixed tiny tiny mistake - xcr was incorrectly
2729 specified, should have both S1 and S2 fields identical
2730 If only finding the problem was as fast as fixing the bug !!!!
2731
2732 Tue Jun 15 16:01:57 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2733
2734 * write.c (write_contents): Do write out non-loadable sections.
2735 Debug sections can fall in this category.
2736
2737 * read.c (s_app_file): Call elf_file_symbol for ELF files.
2738 * config/obj-elf.c (elf_file_symbol): New function.
2739
2740 * config/obj-elf.c (elf_stab_symbol_string): Renamed from pa_...,
2741 added argument to specify section base name.
2742 (obj_elf_stab_generic): Renamed from ..._stab. New argument
2743 specifies section base name.
2744 (obj_elf_stab): New function, calls obj_elf_stab_generic with
2745 ".stab" as section base name.
2746 (obj_elf_xstab): New function, calls obj_elf_stab_generic.
2747 (obj_elf_type): Handle "object". Use bitwise-or to merge in
2748 symbol flags rather than simply replacing, so global/local flags
2749 are preserved.
2750 (obj_elf_ident): Rewrite.
2751
2752 Tue Jun 15 17:03:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2753
2754 * Makefile.in: remove parentdir support; use INSTALL_XFORM
2755
2756 Wed Jun 9 11:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
2757
2758 * config/tc-i386.c (md_pseudo_table): .align uses a power of two
2759 for any a.out target, not just Linux and 386BSD.
2760 * config/tc-i386.h (DOT_LABEL_PREFIX): Do not define for any a.out
2761 target.
2762
2763 Mon Jun 7 13:33:19 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2764
2765 * config/tc-m88k.c: Don't include flonum.h, md.h, m88k.h. They
2766 don't exist or duplicate other inclusions.
2767
2768 * config/tc-vax.h (NO_RELOC): Define.
2769
2770 Sat Jun 5 19:32:52 1993 Torbjorn Granlund (tege@nada.kth.se)
2771
2772 * gas/config/m88k-opcode.h (m88k_opcodes): Add 88110 instructions.
2773 * gas/config/tc-m88k.c (get_reg): New arg reg_prefix. Compare first
2774 char to reg_prefix instead of to 'r'.
2775 (calcop): Change calls to get_reg.
2776 (calcop): Handle new case 'x' to set reg_prefix.
2777 (calcop): Set reg_prefix to 'r' after each call to get_reg.
2778 (cmpslot): Add 88110 conditions.
2779
2780 * gas/config/m88k-opcode.h: Swap cases for "rot" for consistency.
2781
2782 * gas/config/tc-m88k.c (get_bf): Always restore input_line_pointer
2783 before returning.
2784
2785 * gas/config/m88k-opcode.h (m88k_opcodes): Make equal mnemonics
2786 adjacent; mov.s and mov.d swapped.
2787 (m88k_opcodes): Fix typo `r2' -> `2'.
2788
2789 Fri Jun 4 15:59:31 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
2790
2791 * config/h8300.c: Support for H8/300-H opcodes.
2792
2793 * config/obj-coffbfd.c (w_strings): String table length is 4
2794 bytes, no matter what the host int size is.
2795
2796 * configure.in (alpha-*-osf*): New.
2797
2798 Fri Jun 4 07:51:18 1993 Ian Lance Taylor (ian@cygnus.com)
2799
2800 * configure.in (mips-*-ecoffl*): New target; use ecoff and
2801 mips-lit.
2802 (mips-*-ecoff*): Added trailing '*'.
2803
2804 * config/obj-ecoff.c (ecoff_build_procs): Force the adr of the
2805 first FDR in a file to be zero.
2806
2807 Thu Jun 3 14:09:59 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2808
2809 * Makefile.in (VERSION): Jump to 2.1.4.
2810
2811 * config/ho-hppabsd.h: New file, from Peter Hoogenboom.
2812
2813 * config/tc-mips.c (md_assemble): Call bfd_set_gp_size only for
2814 ECOFF format.
2815
2816 Tue Jun 1 15:21:57 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2817
2818 * config/tc-m68k.c (md_assemble): The 68040 cpu doesn't want a
2819 separate '851 mmu.
2820
2821 * config/obj-elf.c, config/obj-elf.h: Update for new type, macro,
2822 and routine names. Assuming 32 bits for now.
2823
2824 * config/obj-elf.c (elf_frob_file): Look for macro
2825 elf_tc_final_processing_hook, instead of assuming a function
2826 always exists.
2827 * config/tc-hppa.c (elf_hppa_final_processing_hook): Renamed from
2828 tc_final_processing_hook.
2829 * config/tc-hppa.h (elf_tc_final_processing_hook): Use it.
2830
2831 * config/tc-hppa.h (elf_tc_symbol, elf_tc_make_sections): Macros
2832 moved here from obj-elf.h.
2833 * config/obj-elf.h: Don't include CPU-specific header files.
2834
2835 Sun May 30 16:49:37 1993 Peter Hoogenboom (hoogen@fast.cs.utah.edu)
2836
2837 * configure.in: configurations should match on 'hppa*' not 'hppa'.
2838
2839 * read.c: Add support for HPPA assembly language syntax (denoted
2840 with '#ifdef TC_HPPA').
2841
2842 * symbols.c: Add support for HPPA assembly language syntax (denoted
2843 with '#ifdef TC_HPPA').
2844
2845 * write.c (write_contents): Add support for HPPA-style
2846 relocations.
2847
2848 * config/obj-elf.c: Stab symbols weren't written properly.
2849 (obj_elf_version):
2850 (obj_elf_desc):
2851 (obj_elf_write_symbol):
2852 (obj_elf_write_symbol_p):
2853 (obj_elf_frob_symbol):
2854 (elf_stab_symbol):
2855 (elf_frob_file):
2856
2857 * config/tc-hppa.c: Support for HPPA symbol extension sections.
2858 Remove some unused code. Support for HPPA assembly language
2859 syntax.
2860
2861 * app.c:
2862
2863 * symbols.c:
2864
2865 * config/obj-elf.h:
2866 (obj_write_symbol):
2867 (obj_frob_file):
2868 (elf_tc_symbol):
2869 (elf_tc_make_sections):
2870
2871 * config/tc-hppa.h:
2872
2873 Sun May 30 21:44:45 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
2874
2875 * config/obj-ecoff.c (obj_read_begin_hook, add_file): Assume
2876 hash_new will have succeeded if it returns.
2877 * config/tc-a29k.c (md_begin): Likewise.
2878
2879 * config/tc-i386.c (tc_aout_fix_to_chars): Now nbytes_r_length is
2880 const.
2881 (mode_from_disp_size, opcode_suffic_to_type): Now inline under
2882 gcc.
2883 (fits_in_{signed,unsigned}_{byte,word}): Likewise.
2884
2885 * expr.c: Delete register declarations; gcc ignores them anyways.
2886
2887 Fri May 28 19:03:32 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2888
2889 * hash.c (hash_new): Use xmalloc, since many callers don't check
2890 for failure.
2891
2892 Thu May 27 13:02:15 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2893
2894 * frags.c (zero_address_frag, bss_address_frag): These are
2895 external.
2896
2897 * tc.h (md_reloc_size): This is const.
2898 * config/tc-{a29k,h8300,h8500,i386,i860,i960,m68k,ns32k,z8k}.c
2899 (md_reloc_size): Now const.
2900
2901 * config/aout_gnu.h (enum machine_type, enum reloc_type): Delete
2902 trailing commas.
2903 * as.h (enum _segT): Ditto.
2904
2905 * struc-symbol.h (N_TYPE_seg): This should be const.
2906
2907 Thu May 27 11:43:59 1993 Michael Meissner (meissner@osf.org)
2908
2909 * config/obj-ecoff.c (add_file): Cast file_name to char * in
2910 listing_source_file call.
2911
2912 * config/obj-elf.c (elf_stab_symbol_string): Cast first argument
2913 of subseg_new call to eliminate const attribute.
2914 (obj_elf_stab): Ditto.
2915 (obj_symbol_new_hook): Cast first argument of bzero call to char *.
2916
2917 * read.c (s_align_bytes): Properly record alignment.
2918
2919 * expr.c (__): Undefine __ macro before use, since OSF/1 uses it
2920 for the prototype/no prototype macro.
2921
2922 * as.c (got_sig): Don't do return ((SIGTY) 0), SIGTY might well be
2923 void.
2924
2925 * as.h (relax_stateT enum): Delete trailing comma.
2926
2927 Thu May 27 11:07:50 1993 Ian Lance Taylor (ian@cygnus.com)
2928
2929 * app.c (do_scrub_begin): Let line_comment_chars override
2930 comment_chars.
2931 (do_scrub_next_char): If a line comment character is not at the
2932 start of a line, treat it as a comment character if it is one.
2933 For a CPP line comment use pseudo-op .appline rather than .line.
2934 * input-scrub.c (logical_input_line): Make int rather than
2935 unsigned.
2936 (input_scrub_push, input_scrub_begin): Initialize
2937 logical_input_line to -1 rather than 0.
2938 (bump_line_counters): Increment logical_input_line.
2939 (new_logical_line): If line_number is -2, decrement
2940 logical_input_line.
2941 (as_where): Use logical_input_line even if it is 0.
2942 * read.h (s_app_file prototype): Now takes an int argument.
2943 * read.c (potable): Make .appfile call s_app_file with 1. New
2944 .appline pseudo-op calls s_app_line.
2945 (s_app_file): If .appfile, call new_logical_line with -2 to
2946 account for newline inserted by do_scrub_next_char. If listing,
2947 call listing_source_file.
2948 (s_app_line): New function to handle fake pseudo-op .appline.
2949 * config/obj-coff.c (obj_pseudo_table): Make .appline call
2950 obj_coff_ln.
2951 (obj_coff_ln): Added argument to indicate whether .appline.
2952 * config/obj-coffbfd.c (obj_pseudo_table): Make .appline call
2953 obj_coff_ln.
2954 (obj_coff_ln): Added argument to indicate whether .appline.
2955 * config/tc-mips.c (s_file): Pass argument to s_app_file.
2956
2957 Tue May 25 11:59:07 1993 Ian Lance Taylor (ian@cygnus.com)
2958
2959 * config/obj-bout.h (S_GET_VALUE): Removed unnecessary cast.
2960
2961 Thu May 20 19:14:24 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
2962
2963 * config/tc-m68k.c (md_apply_fix_2): Straighten out check for
2964 invalid values.
2965
2966 Wed May 19 07:33:17 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
2967
2968 * config/tc-h5000.c (build_bytes): Understand @rd mode and build
2969 relocations correctly.
2970
2971 Mon May 17 15:06:26 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
2972
2973 * Makefile.in (FLAGS_TO_PASS): Leave out TEXI2DVI for now, because
2974 it's wrong.
2975
2976 * config/tc-m68k.c (md_apply_fix_2): Apply range checks and warn
2977 if value is out of range.
2978
2979 Patch from Minh Tran-Le:
2980 * config/tc-i386.c (i386_operand): For in/out port register used
2981 as base reg, include InOutPortReg in operand type.
2982 (MATCH): Accept overlap value of InOutPortReg.
2983
2984 Mon May 17 09:29:34 1993 Ian Lance Taylor (ian@cygnus.com)
2985
2986 * config/obj-ecoff.c (add_file, obj_ecoff_loc, obj_ecoff_stab):
2987 Add calls to listing routines to produce combined source/assembler
2988 listings.
2989 (obj_ecoff_stab): Create a file pointer if none used yet.
2990 (ecoff_frob_file): Set symcount to correct value.
2991
2992 Fri May 14 06:53:33 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
2993
2994 * Makefile.in (VERSION): Bump to version 2.1, in preparation for
2995 release.
2996
2997 * config/obj-aout.h (H_GET_HEADER_SIZE, H_SET_SYMBOL_TABLE_SIZE):
2998 Define in terms of constants, not C structure sizes.
2999
3000 * config/tc-rs6000.c, config/tc-rs6000.h: Delete empty files.
3001
3002 Thu May 13 17:01:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3003
3004 * config/obj-aout.c (obj_header_append): Don't define if it's
3005 defined as a macro.
3006 * config/obj-hp300.h (obj_header_append): Define it as a macro.
3007 * config/obj-hp300.c (hp300_header_append): New function.
3008
3009 * Makefile.in (distclean): Don't bother cleaning up doc files;
3010 they aren't going to be in this directory.
3011
3012 Thu May 13 07:51:35 1993 Ian Lance Taylor (ian@cygnus.com)
3013
3014 * config/obj-ecoff.c (ecoff_build_symbols): Handle absolute
3015 symbols.
3016
3017 * tc.h (TC_COFF_SIZEMACHDEP): Don't define here.
3018 * config/tc-sh.h (TC_COFF_SIZEMACHDEP): Define here instead.
3019
3020 Mon May 10 06:01:12 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
3021
3022 * config/obj-vms.c (VMS_Symbol_type_list): Don't bother with
3023 initialization.
3024
3025 * configure.in (targets): Treat m68*-*-sysv* like m68k-*-coff.
3026
3027 Wed May 5 14:00:49 1993 Ian Lance Taylor (ian@cygnus.com)
3028
3029 * config/tc-mips.c (macro): Correct floating point double word
3030 loads and stores for big endian target.
3031
3032 Wed May 5 08:39:21 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
3033
3034 * config/tc-i386.c: Replace SEG_* with *_section, fix up subseg_*
3035 calls. Deleted some unused code.
3036 * config/obj-coff.c: Likewise.
3037
3038 ELF support, mostly contributed by Utah:
3039 * config/obj-elf.c (obj_elf_section, obj_elf_stab, obj_elf_line,
3040 obj_elf_type): Rewrite.
3041 (obj_elf_frob_symbol, elf_stab_symbol_string, elf_stab_symbol,
3042 obj_elf_desc, obj_elf_version, obj_symbol_new_hook, obj_elf_size):
3043 New functions.
3044 (obj_elf_ident): Dummy.
3045 * config/obj-elf.h (FALSE, TRUE, S_*, tc_frob_symbol,
3046 TARGET_SYMBOL_FIELDS): New macros.
3047 (gdb_section): New variable decl.
3048
3049 * config/tc-i386.c (md_atof): Return zero, not empty string, on
3050 success.
3051
3052 BFD_ASSEMBLER conditional changes:
3053 * config/obj-coff.c (lineno_rootP, seg_N_TYPE, *_section_header):
3054 Don't define these.
3055 (SA_SET_SYM_ENDNDX, SA_SET_SYM_TAGNDX): New functions.
3056 (fetch_coff_debug_section): Ditto.
3057 (obj_coff_endef): Call fetch_coff_debug_section.
3058 (struct line_no): New type.
3059 (c_symbol_merge): New way for copying aux fields.
3060 (c_dot_file_symbol): Put symbol in absolute section, and set flag
3061 BSF_DEBUGGING.
3062 (function_lineoff): New symbol.
3063 (function_lineoff, text_lineno_number, our_lineno_number,
3064 lineno_lastP): Don't define.
3065 (c_line_new): Don't define.
3066 (obj_emit_lineno, obj_coff_endef): Use abort calls as, uh,
3067 placeholders, until
3068 line-number recording gets implemented.
3069 (obj_new_symbol_hook): New code for handling aux fields.
3070 (add_lineno, add_linesym): New functions.
3071 (obj_coff_ln): Call add_lineno, not c_line_new.
3072 (obj_coff_endef): New code for handling symbol names. New lineno
3073 code. Look for section name "*DEBUG*" for debugging section.
3074 (align, coff_check_file_symbols, obj_coff_section,
3075 coff_frob_file): New functions.
3076 * config/obj-coff.h: Reordered some includes.
3077 (BYTE_ORDERING, FILE_HEADER_MAGIC, seg_N_TYPE, N_TYPE_seg,
3078 DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE, AOUTHDR, AOUTHDRSIZE): Don't
3079 define these.
3080 (TARGET_SYMBOL_FIELDS, I960_SYM_FIELDS): New macros.
3081 (SYM_AUXENT): New macro (for non-BFD_ASSEMBLER too) for accessing
3082 aux entries. Most SA_* macros now use it unconditionally.
3083 (S_*): Use `bsym' field, and access BFD private data.
3084 (SF_*): Use `sy_flags' symbol field for most of these.
3085 (H_*, object_headers, lineno, lineno_*P, OBJ_EMIT_LINENO): Don't
3086 define.
3087 (*_section_header): Don't define.
3088 * config/tc-i386.c (md_convert_frag, md_apply_fix): Changed
3089 interface.
3090 (tc_gen_reloc) [I386COFF]: New function.
3091 (tc_aout_fix_to_chars, tc_coff_fix2rtype): Don't define.
3092 * config/tc-i386.h (TARGET_ARCH, TARGET_BYTES_BIG_ENDIAN): New
3093 macros.
3094
3095 * config/obj-coff.c (stack_init): Don't do assignments inside
3096 conditions.
3097 (obj_coff_def): Simplified handling of symbol name a bit.
3098 (tag_insert): Name argument is now pointer to CONST.
3099 (obj_crawl_symbol_chain): Commented out.
3100
3101 * config/obj-coff.h: Use PARAMS macro in prototypes.
3102
3103 * write.c (relax_and_size_seg) [BFD_ASSEMBLER]: Don't indirect
3104 through frchainP pointer if it is null.
3105
3106 * configure.in: Warn if BFD mode is explicitly turned off but is
3107 required by specified target.
3108 (mips ecoff targets): Don't need to set bfd_gas here; it gets
3109 taken care of later.
3110
3111 * config/obj-coffbfd.c (crawl_symbols): Don't clear sy_forward
3112 field.
3113 (yank_symbols): Merge symbols only if sy_forward is null.
3114
3115 * config/tc-m68k.h (AOUT_MACHTYPE): Don't define if already
3116 defined.
3117
3118 * tc.h (md_convert_frag) [BFD_ASSEMBLER]: Section arg is not
3119 pointer.
3120 * config/tc-m68k.c (md_convert_frag) [BFD_ASSEMBLER]: Ditto.
3121
3122 * config/tc-sparc.h (LOCAL_LABEL) [OBJ_ELF]: Anything starting
3123 with "." is a local label.
3124
3125 * config/te-hppa.h, config/tc-hppa.h, config/tc-hppa.c: New config
3126 files.
3127
3128 * config/te-linux.h, config/te-386bsd.h: New config files.
3129 * configure.in (i386-*-linux, i386-*-bsd): Use them.
3130 * config/tc-i386.h (TARGET_FORMAT): Select format based on target
3131 environment.
3132 (DOT_LABEL_PREFIX): Don't define for 386bsd or Linux.
3133
3134 Wed May 5 13:14:01 1993 Ian Lance Taylor (ian@cygnus.com)
3135
3136 * config/obj-ecoff.c (init_file): Set fMerge to 0 since dbx seems
3137 to want it that way.
3138 (ecoff_build_symbols): Turn local st_Proc symbols into
3139 st_StaticProc symbols. Set index field of external st_Proc and
3140 st_staticProc symbols correctly.
3141 * config/tc-mips.h (NO_LISTING): Don't define. People might want
3142 listings.
3143
3144 Tue May 4 21:22:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3145
3146 * config/obj-hp300.h, config/obj-hp300.c, config/te-hp300.h: New
3147 files.
3148 * configure.in (m68k-*-hpux): Use them.
3149
3150 * config/obj-aout.c (obj_pre_write_hook): Use AOUT_VERSION if
3151 defined, otherwise zero.
3152
3153 * config/aout_gnu.h (OMAGIC): Don't define if already defined.
3154
3155 Mon May 3 15:59:32 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3156
3157 * config/tc-sparc.c (sparc_ip): Allow any abs expression as an
3158 address space number.
3159
3160 Wed Apr 28 19:11:22 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
3161
3162 * config/obj-aout.h (TARGET_DEFAULT): Don't default this at all.
3163
3164 * config/tc-a29k.c: Include ctype.h.
3165 (define_some_regs): Added special-purpose registers for 29050.
3166
3167 * config/tc-i386.c (comment_chars) [TE_I386AIX]: Include "/".
3168
3169 * config/obj-coffbfd.c (fill_section): Don't set STYP_REG here.
3170 (change_to_section): Set it here instead.
3171
3172 Wed Apr 28 13:40:29 1993 Ian Lance Taylor (ian@rtl.cygnus.com)
3173
3174 * config/obj-ecoff.c (obj_symbol_new_hook): Make up a .file if one
3175 hasn't been seen yet.
3176 (add_ecoff_symbol): Don't refer to cur_file_ptr if it is NULL.
3177
3178 Mon Apr 26 18:29:05 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3179
3180 * config/tc-sh.ch, config/tc-sh.h: New files supporting Hitachi
3181 SH.
3182
3183 Mon Apr 26 12:28:27 1993 Ian Lance Taylor (ian@cygnus.com)
3184
3185 * expr.c (operand): Fix unary plus operator (previously was the
3186 same as '~' operator!).
3187
3188 Wed Apr 21 00:20:11 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3189
3190 * write.c (cvt_frag_to_fill): Define even if BFD is defined.
3191 (write_object_file): Do define if BFD_ASSEMBLER. Invoke
3192 obj_check_file_symbols if defined. Call verify_symbol_chain_2
3193 instead of open-coding it. Fix some bugs in patching up symbol
3194 chain.
3195 (relax_segment): Make some code we "ought to be able to" use for
3196 all targets no longer conditionalized on ns32k target; instead, do
3197 it always, and if the appropriate conditions fail, abort.
3198
3199 * symbols.c (DEBUG): Enabled.
3200 (symbol_new): Make sure bfd_make_empty_symbol works.
3201 (verify_symbol_chain_2): New funcion; takes one symbol as
3202 argument, anywhere in the chain.
3203 (dollar_label*): Use default initializers.
3204
3205 * as.c (perform_an_assembly_pass): Call md_begin here...
3206 (main): ...and not here.
3207
3208 * config/tc-m68k.h (TARGET_FORMAT): Use a.out-sunos-big for a.out.
3209 (tc_frob_symbol): New macro: Get rid of symbols in reg_section.
3210
3211 * config/tc-m68k.c (omagic): Don't define for BFD_ASSEMBLER.
3212 (add_fix, add_frag): Now functions instead of macros.
3213 (m68k_reg_parse, m68k_ip, md_estimate_size_before_relax, get_num,
3214 s_data1, s_data2, s_bss): Use new *_section names, for
3215 compatibility with BFD_ASSEMBLER mode; rewrite switch statements
3216 to handle non-integral segT.
3217 (tc_coff_fix2rtype, tc_aout_fix_to_chars,
3218 tc_coff_symbol_emit_hook): Don't define for BFD_ASSEMBLER.
3219 (tc_gen_reloc): New routine for BFD_ASSEMBLER.
3220 (md_apply_fix, md_apply_fix_2): Renamed old md_apply_fix to
3221 md_apply_fix_2; new md_apply_fix definition varies interface
3222 depending on BFD_ASSEMBLER.
3223 (md_convert_frag, md_convert_frag_1): Likewise. Use new *_section
3224 names.
3225
3226 * config/obj-vms.c: Include config.h.
3227 (version_string): Delete declaration.
3228 (Write_VMS_MHD_Records): Use GAS_VERSION instead.
3229 (vms_resolve_symbol_redef): New function, taken from VMS code in
3230 symbols.c.
3231 (_doprnt): Deleted.
3232 (VMS_Store_Struct, VMS_Def_Struct, VMS_Set_Struct,
3233 VMS_TBT_Block_End, get_VMS_time_on_unix, generate_suffix,
3234 VMS_Psect_Spec): Fixed to compiler under traditional C.
3235 * config/obj-vms.h: Use PARAMS macro.
3236 (vms_resolve_symbol_redef): Declare.
3237 (RESOLVE_SYMBOL_REDEFINITION): New macro.
3238 * symbols.c (colon): Remove some VMS-specific code, look for
3239 RESOLVE_SYMBOL_REDEFINITION macro instead.
3240
3241 * config/tc-m68k.c (m68k_ip): Don't try expanding DBcc
3242 instructions.
3243
3244 * config/tc-i386.c: Reordered some functions so inlining might
3245 work. Use PARAMS in function declarations.
3246 (reloc): New routine.
3247 (md_assemble): Rearrange switch statements to work with
3248 non-integral segT.
3249
3250 * struc-symbol.h [BFD_ASSEMBLER]: Undefine
3251 SYMBOLS_NEED_BACKPOINTERS before defining it.
3252
3253 * subsegs.c (subseg_new_rest): Now static.
3254
3255 * read.c (pseudo_set): Better error message for difference of
3256 symbols in different frags.
3257
3258 * Makefile.in (check): Pass down some new variables, indicating
3259 pathname or program name for cc, nm, objdump.
3260
3261 * as.h (OUTPUT_FLAVOR): New macro.
3262 * config/tc-sparc.c (tc_gen_reloc): Use OUTPUT_FLAVOR.
3263
3264 * configure.in: Initialize bfd_gas properly. Warn that ELF
3265 support is incomplete.
3266
3267 Thu Apr 15 22:39:05 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3268
3269 * read.c (float_cons): Accept null pointer return from md_atof.
3270 * config/tc-m68k.c (md_atof): Return null for success.
3271 * config/tc-sparc.c (md_atof): Ditto.
3272
3273 Thu Apr 15 16:04:39 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
3274
3275 * doc/as.texinfo: formatting and comment cleanups; show SPARC
3276 alternative options in same style as other machines; simplify some
3277 conditional use; include GPL as separate file (from texinfo dir)
3278
3279 * doc/Makefile.in: (as.info) include directory containing GPL in
3280 makeinfo search path
3281
3282 * doc/h8.texi: new file; conditional settings for GAS manual
3283 on Hitachi chips
3284
3285 Tue Apr 13 15:31:40 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
3286
3287 * doc/as.texinfo: mention SPARC architecture options.
3288
3289 Fri Apr 9 17:43:11 1993 Ken Raeburn (raeburn@cygnus.com)
3290
3291 * configure.in: Rearranged whitespace in per-host/per-target
3292 sections. Added hooks for dropping in HPPA support (not included
3293 yet). Separate out overrides of variables based on target format
3294 and bfd-gas selection from actual target-specific commands. Add
3295 error message for recognized but unsupported format name.
3296
3297 Fri Apr 9 09:05:47 1993 Ian Lance Taylor (ian@cygnus.com)
3298
3299 * config/obj-ecoff.h (ecoff_build_lineno): Make ilineMax in
3300 symbolic header match cline in FDR; the native linker seems to
3301 want that.
3302
3303 Thu Apr 8 15:51:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
3304
3305 * doc/Makefile.in: as.texinfo is in $(srcdir). Use
3306 $(srcdir)/as.texinfo explicitly in several places
3307
3308 Thu Apr 8 15:15:02 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
3309
3310 * doc/Makefile.in: update dvi, clean targets for new source
3311 file structure
3312
3313 Thu Apr 8 12:52:46 1993 Ian Lance Taylor (ian@cygnus.com)
3314
3315 * config/ho-decstatn.h: Define BROKEN_ASSERT if not __GNUC__,
3316 rather than undefining know.
3317 * configure.in: Match ultrix*, not just ultrix.
3318
3319 Wed Apr 7 20:18:10 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
3320
3321 * doc/as.texinfo: converted conditional markup to use new
3322 Texinfo facilities, avoiding m4.
3323
3324 * doc/as-all.texinfo, all.m4, pretex.m4: deleted.
3325
3326 * doc/Makefile.in: recast doc configuration to use a link to an
3327 included texinfo file.
3328
3329 * doc/all.texi: settings for generic form of documentation.
3330
3331 Tue Apr 6 11:56:21 1993 Ian Lance Taylor (ian@cygnus.com)
3332
3333 * read.c (cons): Zero out frag when creating reloc.
3334
3335 Mon Apr 5 09:41:58 1993 Ian Lance Taylor (ian@cygnus.com)
3336
3337 * config/tc-mips.c (gp_reference): Certain magic symbols can never
3338 be referenced off the GP register.
3339
3340 * app.c (do_scrub_next_char): Handle states 9 and 10 correctly
3341 when dealing with characters of type LEX_IS_TWOCHAR_COMMENT_1ST,
3342 LEX_IS_STRINGQUOTE, and LEX_IS_ONECHAR_QUOTE.
3343
3344 * config/te-irix.h: New file; irix needs a different LOCAL_LABEL
3345 definition from other MIPS targets.
3346 * configure.in (mips-*-irix): Use emulation irix.
3347
3348 Sun Apr 4 15:21:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3349
3350 * config/tc-h8500.c: Get relax size of branch instructions right,
3351 (get_operand): Parse @sp+ correctly.
3352
3353 Fri Apr 2 15:59:49 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3354
3355 * subsegs.h (segment_info_type) [BFD_ASSEMBLER]: Don't include
3356 COFF section header field.
3357
3358 * configure.in: Print error message if host or target is not
3359 supported.
3360
3361 * configure.in: If with-bfd-assembler, use obj-coff instead of
3362 obj-coffbfd.
3363
3364 * config/ho-generic.h: Include string.h.
3365
3366 Fri Apr 2 08:54:57 1993 Ian Lance Taylor (ian@cygnus.com)
3367
3368 * config/tc-mips.h (LOCAL_LABEL): Treat any label starting with
3369 '$' as local, for any object file format.
3370
3371 * config/tc-mips.c (macro): Optimizations to branching code and a
3372 couple of bug fixes from ralphc@pyrps5.eng.pyramid.com (Ralph
3373 Campbell).
3374
3375 * config/ho-irix.h: New file; if not gcc, define BROKEN_ASSERT.
3376 * configure.in (mips-sgi-irix*): Set gas_host to irix.
3377
3378 Wed Mar 31 17:53:54 1993 Ian Lance Taylor (ian@cygnus.com)
3379
3380 * subsegs.c (subseg_new): Set output_section of new section.
3381 * as.c (perform_an_assemly_pass): Don't set output_section here.
3382 * expr.c (expr_part, expr): Turn off section assertions for ECOFF,
3383 since it has additional sections.
3384 * read.c (s_lcomm): For MIPS ECOFF, put small objects in .sbss,
3385 not bss_section.
3386 * config/obj-ecoff.h (TARGET_SYMBOL_FIELDS): Added
3387 ecoff_undefined field.
3388 * config/obj-ecoff.c (obj_symbol_new_hook): Initialize
3389 ecoff_undefined field.
3390 (add_file): If using stabs, just output a stabs symbol rather than
3391 creating a new fdr.
3392 (obj_ecoff_begin, obj_ecoff_bend): Ignore line number by reading
3393 it with get_absolute_expression, rather than skipping it by hand.
3394 (obj_ecoff_loc): If using stabs, just output a stabs symbol rather
3395 than ECOFF line number information.
3396 (obj_ecoff_stab): Accept non-zero values for stabs line number.
3397 (ecoff_build_symbols): Set ifilesym correctly. Set storage class
3398 to small, undefined and/or readonly sections if appropriate.
3399 Don't output symbol names containing \001 characters.
3400 (ecoff_frob_file): Make sure at least one fdr is output.
3401 * config/tc-mips.h: Define TC_MIPS.
3402 * config/tc-mips.c (g_switch_value): New static variable.
3403 (md_assemble): Set gp size of output BFD.
3404 (gp_reference): New function; returns 1 if expression can be
3405 accesssed via gp. Always returns 0 if not using ECOFF.
3406 (macro_build): Convert BFD_RELOC_LO16 to BFD_RELOC_MIPS_GPREL if
3407 possible.
3408 (macro): Generate sequences using gp if possible.
3409 (md_parse_option): Ignore -EL and -EB. Parse -G.
3410 (md_apply_fix): Added BFD_RELOC_MIPS_GPREL to ignored case.
3411 (s_change_sec): Handle .rdata and .sdata for ECOFF.
3412 (s_extern): Mark symbol as external. Set ecoff_undefined field.
3413
3414 Tue Mar 30 10:11:41 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3415
3416 * output-file.c (output_file_create): Don't call as_perror for
3417 filename rejected by application.
3418
3419 * as.c (main) [BFD_ASSEMBLER]: If errors occur, close and unlink
3420 the output file.
3421
3422 * doc/as.texinfo: Don't use @value in node names for the moment;
3423 references don't appear to work right.
3424
3425 * as.h (const, volatile): Put these definitions back, and use
3426 them.
3427
3428 * doc/as.texinfo: First pass at using new texinfo features --
3429 variables, conditional tests. Far from complete.
3430
3431 Mon Mar 29 16:05:40 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3432
3433 * read.c: Temporary hack to handle some 64-bit constants. This
3434 should be redone later.
3435 (target_big_endian): Declare.
3436 (big_cons): If it's set, reverse order of bytes being copied.
3437 * config/tc-sparc.c (md_begin): Set target_big_endian.
3438
3439 * read.c (s_ignore): Delete declaration of is_end_of_line.
3440
3441 * config/obj-coffbfd.c (yank_symbols): Build list of file symbol
3442 forward pointers properly.
3443
3444 Mon Mar 29 13:47:33 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3445
3446 * config/obj-coffbfd.c (do_relocs_for): Fix bug where nrelocs
3447 wasn't being stored into scnhdr.
3448 * config/obj-coffbfd.h: Add prototype of s_get_segment.
3449 * read.c (TC_START_LABEL): Default definition.
3450 (read_a_source_file): Use TC_START_LABEL macro to work out
3451 if a label has been seen.
3452
3453 Mon Mar 29 12:56:56 1993 Ian Lance Taylor (ian@cygnus.com)
3454
3455 * configure.in: Set BFDDEF and BFDLIB at the top of Makefile, not
3456 the bottom (make expands variables in dependencies when the
3457 dependencies are read, not when they are used).
3458
3459 * config/obj-coffbfd.c (fill_section): Don't set NOLOAD bit for
3460 a29k .bss section; the mondfe program doesn't like it.
3461
3462 Sun Mar 28 08:12:53 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
3463
3464 * config/tc-m68k.c: Use PARAMS macro, and use CONST instead of
3465 const.
3466 (current_architecture): Don't need initializer.
3467
3468 Fri Mar 26 08:12:48 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3469
3470 * doc/none.m4: Define Z8000.
3471 * doc/Makefile.in (as-*.texinfo): Refer to $(srcdir). Remove the
3472 texinfo file before recreating it.
3473 (TEXI2DVI): Need to set TEXINPUTS if "make as.dvi" is to work in
3474 this directory.
3475 (srcdir): Delete second, bogus definition.
3476 (as.info): Look for as-*.texinfo in current directory rather than
3477 in $(srcdir).
3478 (as.dvi): Ditto.
3479 (dvi): New rule.
3480 * doc/configure.in: Create links to all as-*.texinfo files in the
3481 source directory, if that's not the current directory.
3482
3483 * configure.in (per-host): Accept MIPS host with BSD version
3484 number.
3485 (per-target): Classify i486 as i386. Use generic cpu_type instead
3486 of target_cpu in selecting format etc.
3487
3488 * app.c (do_scrub_next_char): Use .appfile, not .app-file.
3489 * read.c (potable): Change .app-file to .appfile.
3490
3491 * config/ho-decstatn.h: Renamed from ho-decstation.h.
3492 * configure.in: Adjusted.
3493
3494 * config/obj-bfd-sunos.*: Unused; deleted.
3495
3496 * Makefile.in (version.c, vers-stamp): Deleted.
3497 (config.h): Define GAS_VERSION.
3498 * as.c (version_string): Deleted declaration.
3499 (main): Look for GAS_VERSION instead.
3500
3501 * doc/as.texinfo: Updated description of -a* (listing) options,
3502 and describe how to pass them through from gcc.
3503
3504 * config/obj-coffbfd.c (do_relocs_for): Don't allocate storage or
3505 process relocs if there aren't any relocs to process. Avoids
3506 malloc/free bug on SCO too.
3507
3508 * as.h: Move local include files below system include files, to
3509 avoid some redefinition complaints on some systems.
3510 (const, volatile): Don't need these conditionally defined if we
3511 use CONST and VOLATILE from ansidecl.h.
3512 (seg_name): Use CONST, not const.
3513
3514 Fri Mar 26 10:22:04 1993 Ian Lance Taylor (ian@cygnus.com)
3515
3516 * config/tc-mips.c: Reindented to GNU standards.
3517
3518 Thu Mar 25 08:59:14 1993 Ian Lance Taylor (ian@cygnus.com)
3519
3520 * config/obj-coffbfd.c (do_relocs_for): Remove a29k special case.
3521 (fixup_segment): Add a29k special case; the linker is not prepared
3522 to see a segment offset here.
3523
3524 * app.c (do_scrub_next_char): Added new state, 10, modifying state
3525 9 to only keep a space in between identifier characters.
3526
3527 Wed Mar 24 02:16:22 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
3528
3529 * Makefile.in: add dvi target; as-$(config).texinfo might live in
3530 srcdir, might be in objdir.
3531
3532 * doc/Makefile.in: dvi depends on as.dvi
3533
3534 Mon Mar 22 23:59:13 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
3535
3536 * Makefile.in: add installcheck target
3537
3538 Mon Mar 22 10:19:00 1993 Ian Lance Taylor (ian@cygnus.com)
3539
3540 * config/tc-mips.c (macro): Use $AT for any floating point load.
3541
3542 Sat Mar 20 12:50:51 1993 Ken Raeburn (raeburn@urth.cygnus.com)
3543
3544 * config/tc-m68k.c (m68k_ip): For operand type 'M', reject
3545 bignums, but don't emit error message.
3546
3547 Fri Mar 19 21:02:19 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
3548
3549 * Makefile.in (targ-cpu.o): Depend on config.h.
3550
3551 Wed Mar 17 16:44:06 1993 Ian Lance Taylor (ian@cygnus.com)
3552
3553 * app.c (do_scrub_next_char): Added new state, 9, to avoid
3554 dropping a space immediately following an identifier.
3555 * expr.c, write.c: Rewrote assert expressions to not use multiple
3556 lines; I don't think that can be done portably.
3557 * config/tc-mips.c (macro): Use $AT if target register is zero in
3558 load instruction, which it can be for a floating point load.
3559
3560 Mon Mar 15 12:17:28 1993 Ian Lance Taylor (ian@cygnus.com)
3561
3562 * write.c (write_contents): Compute the relocs before writing out
3563 the section contents.
3564 * config/obj-ecoff.h, config/obj-ecoff.c: Numerous changes to get
3565 symbol table and values right.
3566 * config/tc-mips.h (LOCAL_LABEL): If OBJ_ECOFF, any label starting
3567 with $L is local.
3568 * config/tc-mips.c (tc_gen_reloc): If OBJ_ECOFF, adjust the addend
3569 by the section vma.
3570
3571 * config/z8k.mt (TARG_CPU_DEPENDENTS): The relevant file is
3572 z8k-opc.h, not z8k.h.
3573
3574 * config/obj-coffbfd.c (obj_coff_endef): Correct test for .bf
3575 symbol.
3576
3577 Fri Mar 12 18:33:36 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
3578
3579 * configure.in: recognize sparc-sun-solaris2* instead of -solaris2
3580
3581 Fri Mar 12 12:00:07 1993 Ian Lance Taylor (ian@cygnus.com)
3582
3583 * expr.c, write.c: Ultrix native 4.2 cc requires assert condition
3584 to be on a single line.
3585
3586 Thu Mar 11 17:56:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3587
3588 * Makefile.in (config.h): Create file, writing out definitions of
3589 target cpu, alias, and canonical name.
3590 (ALL_CFLAGS): No longer define TARGET_CPU.
3591
3592 * Makefile.in (check): Print a message, instead of quitting
3593 silently.
3594
3595 * as.c (main): Don't catch any signals, for now.
3596
3597 * version.c: Deleted.
3598 * Makefile.in: Generate it, putting in only the version number
3599 itself.
3600 (VERSION): New variable.
3601 * as.c: Include config.h.
3602 (main): Reformatted version string. Include target alias. Don't
3603 print if not requested (i.e., unknown -v argument).
3604
3605 * as.c (stralloc): Deleted.
3606 (main): Call strdup instead.
3607
3608 * configure.in: Handle all 68300 series chips.
3609 * config/tc-m68k.c: Include config.h.
3610 (md_assemble): Assume TARGET_CPU is defined. Accept some 68300
3611 series cpus as defaults.
3612 (md_parse_option): Accept some m68300 series CPUs as defaults.
3613
3614 Wed Mar 10 17:41:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3615
3616 * as.c (EXIT_SUCCESS, EXIT_FAILURE): Define to normal values if
3617 not already defined.
3618 (main, got_sig): Use them.
3619 * config/ho-vms.h (EXIT_SUCCESS, EXIT_FAILURE): Reverse default
3620 values.
3621
3622 Tue Mar 9 07:40:06 1993 Ian Lance Taylor (ian@cygnus.com)
3623
3624 * config/obj-ecoff.c, config/obj-ecoff.h: Preliminary ECOFF
3625 support.
3626
3627 * config/tc-mips.h (TARGET_FORMAT): Define based on OBJ_AOUT vs.
3628 OBJ_ECOFF as well as TARGET_BYTES_*_ENDIAN.
3629 (struct loc, struct proc, struct file): Moved to tc-mips.c within
3630 #ifndef OBJ_ECOFF block, since ECOFF uses different versions.
3631 * config/tc-mips.c: Rearranged for ECOFF support. Added
3632 prototypes for all static functions. Moved existing minimal
3633 debugging format support info #ifndef OBJ_ECOFF blocks.
3634 (macro_build_lui): Eliminated sign_extend argument, because ECOFF
3635 does not support a non sign extended high 16 bits reloc. Adjusted
3636 all callers accordingly.
3637 (tc_get_register): Renamed from get_register, and made non-static.
3638
3639 * config/mips-big.mt, config/mips-lit.mt: New files. Define
3640 TARGET_BYTES_BIG_ENDIAN and TARGET_BYTES_LITTLE_ENDIAN,
3641 respectively.
3642 * configure.in (mips-*-bsd*): Use gas_target mips-lit.
3643 (mips-*-ultrix*, mips-*-irix*, mips-*-ecoff): New targets, using
3644 obj_format ecoff and gas_target mips-lit or mips-big.
3645
3646 Tue Mar 9 07:43:01 1993 Ken Raeburn (raeburn@cygnus.com)
3647
3648 * version.c: Bump to version 2.0.1.
3649
3650 Tue Mar 9 07:40:06 1993 Ian Lance Taylor (ian@cygnus.com)
3651
3652 * write.c (chain_frchains_together): Check that seg_info (section)
3653 is not NULL.
3654 (write_object_file): Call obj_frob_file after setting the symbols,
3655 not before.
3656
3657 Tue Mar 9 00:00:00 1993 Ken Raeburn (raeburn@cygnus.com)
3658
3659 * Version 2.0 released.
3660
3661 Mon Mar 8 14:57:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3662
3663 * config/tc-i386.h (TC_COUNT_RELOC): Look for fx_addsy only.
3664
3665 Fri Mar 5 09:05:55 1993 Ian Lance Taylor (ian@cygnus.com)
3666
3667 * read.h: Define stringer here.
3668 read.c, config/obj-ieee.c, config/obj-tcm88k.c: Not any of these
3669 places.
3670
3671 Thu Mar 4 11:52:23 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3672
3673 * read.c (s_space): Multiply repeat count by mult, not fill.
3674
3675 Thu Mar 4 05:20:42 1993 Ken Raeburn (raeburn@cygnus.com)
3676
3677 * read.c: Include ctype.h.
3678
3679 Wed Mar 3 10:41:46 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3680
3681 Patches from Eric Youngdale:
3682 * make-gas.com: Find obstack.obj if it's not in the current
3683 directory.
3684 * read.c (s_ignore): Don't declare is_end_of_line. It's
3685 redundant, and triggers a VMS gcc compiler bug.
3686
3687 * write.c (write_object_file): Macro SUB_SEGMENT_ALIGN now takes
3688 current segment as an argument. (Ignored in all cases but VMS.)
3689 All callers and definitions changed.
3690
3691 Tue Mar 2 11:56:19 1993 Ian Lance Taylor (ian@cygnus.com)
3692
3693 * listing.c: Cleaned up a bit, added prototypes, made NO_LISTING
3694 case compile again.
3695
3696 Tue Mar 2 08:53:34 1993 Ken Raeburn (raeburn@cygnus.com)
3697
3698 * config/tc-m68k.c (isbyte): Accept all values from -255 to +255,
3699 so "~0x80" won't be rejected.
3700
3701 * config/obj-elf.c: No longer include elf/reloc.h.
3702 (obj_elf_section): Set SEC_READONLY and SEC_CODE for text section.
3703 (obj_elf_stab, obj_elf_desc): Deleted do-nothing and commented-out
3704 routines.
3705 (obj_elf_xstab): New routine.
3706 (obj_elf_set_size): Call as_warn, not fprintf. Pass desired
3707 argument to s_ignore. Put "#if 0" around unused code.
3708 (obj_pseudo_table): Use s_ignore instead of do-nothing routines.
3709 Call elf_xstabs for .stabs and .xstabs operators.
3710
3711 * config/tc-sparc.h (TARGET_FORMAT) [OBJ_ELF]: Now "elf32-sparc".
3712
3713 * write.c (relax_and_size_seg): Set SEC_RELOC only if fixups are
3714 present.
3715
3716 * configure.in: mips-bsd configuration was missing format spec.
3717 Should use aout.
3718
3719 * Makefile.in (Makefile): Depends on configure.in.
3720
3721 * config/tc-mips.c (append_insn): Don't check for alignment of
3722 frag in memory; alignment of instructions in section is a separate
3723 matter.
3724
3725 * config/tc-mips.c (macro_build_lui): Fix some assumptions of ANSI
3726 C availability.
3727
3728 * listing.h: Always provide function declarations, not macros, so
3729 pcc won't lose.
3730
3731 Tue Mar 2 00:50:43 1993 John Gilmore (gnu@cygnus.com)
3732
3733 * CONTRIBUTORS: Update Gilmore entry.
3734
3735 Wed Feb 24 14:58:19 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3736
3737 * frags.c (frag_init): New function.
3738 (zero_address_frag, bss_address_frag): Now initialized at run
3739 time.
3740 * as.c (main): Call frag_init.
3741
3742 Wed Feb 24 10:32:42 1993 Ian Lance Taylor (ian@cygnus.com)
3743
3744 * app.c (do_scrub_next_char): In LEX_IS_LINE_COMMENT_START case:
3745 Don't unget ch2 if we didn't get it.
3746
3747 Wed Feb 24 04:14:07 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
3748
3749 * doc/Makefile.in (TEXIDIR): Updated for new layout.
3750
3751 * config/tc-sparc.c (s_common): Add support for ELF version.
3752 (tc_gen_reloc) [BFD_ASSEMBLER]: New function.
3753 * config/tc-sparc.h (TARGET_ARCH, TARGET_FORMAT) [BFD_ASSEMBLER]:
3754 New macros.
3755 (md_convert_frag): New macro.
3756
3757 * config/tc-m68k.c (m68k_ip): For PC-relative addressing of a
3758 symbol, fix the offset so "+2" isn't required.
3759
3760 * config/tc-i960.c (line_comment_chars, line_separator_chars):
3761 Define as common/bss.
3762 (op_hash, reg_hash, areg_hash, iclasses_seen, br_cnt): Default C
3763 initializers are sufficient.
3764
3765 * config/obj-aout.h [BFD_ASSEMBLER]: Include libaout.h from bfd.
3766 (TARGET_FORMAT) [BFD_ASSEMBLER]: Default to "a.out".
3767 (S_SET_*, S_GET_*, obj_frob_symbol) [BFD_ASSEMBLER]: New macros.
3768 (S_SET_TYPE) [!BFD_ASSEMBLER]: New macro.
3769 * config/obj-aout.c: Use PARAMS macro for declarations. Remove
3770 "IGNORE_DEBUG" conditional, since both branches are identical.
3771 Use S_SET_TYPE, S_GET_TYPE, and S_GET_DESC instead of directly
3772 referencing symbol structure members.
3773 (obj_aout_frob_symbol) [BFD_ASSEMBLER]: New function.
3774
3775 * as.h (struct frag): Reordered a couple of fields for better
3776 packing.
3777
3778 * write.c (record_alignment) [BFD_ASSEMBLER]: Record it in the
3779 section info.
3780 (write_contents) [BFD_ASSEMBLER]: New function.
3781 (write_object_file) [BFD_ASSEMBLER]: Always handle -R here. Call
3782 fix_new with BFD_RELOC_NONE instead of 0 or NO_RELOC. Call
3783 obj_frob_file, obj_frob_symbol, tc_frob_symbol if defined.
3784 (fixup_segment): Make sure common-section symbols get treated the
3785 same as undefined symbols.
3786 (fix_new) [BFD_ASSEMBLER]: Argument r_type is of type
3787 bfd_reloc_code_real_type. Use seg_fix_{root,tail}P derived from
3788 section info.
3789 * write.h (fix_new): Update prototype.
3790
3791 * tc.h (md_operand, md_convert_frag, tc_headers_hook,
3792 md_section_align, md_undefined_symbol): Don't provide prototypes
3793 if these are defined as macros.
3794 (md_convert_frag) [BFD_ASSEMBLER]: BFD version needs bfd and
3795 section passed.
3796
3797 * symbols.c (symbol_new): Argument NAME is now pointer to const.
3798 Simplified STRIP_UNDERSCORE code. Remove assumptions about null
3799 pointers in freshly allocated storage. [BFD_ASSEMBLER]: Get new
3800 BFD symbol.
3801 (colon): Display other/desc fields of redefined symbol only if
3802 S_GET_OTHER and S_GET_DESC are defined.
3803 (symbol_make): Argument NAME is now pointer to const.
3804 (symbol_find, symbol_find_base): Likewise.
3805 (S_IS_*, S_GET_*, S_SET_*) [BFD_ASSEMBLER]: New functions.
3806 * symbols.h: Fix prototypes for new const arguments. Add
3807 prototypes for BFD_ASSEMBLER S_* functions.
3808
3809 * subsegs.c (subseg_change) [BFD_ASSEMBLER]: BFD version of code
3810 for changing to an existing section.
3811 (subseg_new_rest) [BFD_ASSEMBLER]: Split off from subseg_new,
3812 called by subseg_new and subseg_set.
3813 (subseg_new) [BFD_ASSEMBLER]: Rewritten to change to new section,
3814 given section name and subseg number.
3815 (subseg_set) [BFD_ASSEMBLER]: New function; change to a possibly
3816 new section/subsection.
3817
3818 * read.c: Don't include ctype.h.
3819 (cons) [BFD_ASSEMBLER]: For undefined symbols, use BFD_RELOC_32
3820 for now; should be machine-dependent.
3821
3822 * configure.in: Accept *-*-elf and *-*-solaris* as ELF format
3823 targets, forcing BFD use.
3824
3825 Wed Feb 17 18:59:03 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3826
3827 * config/tc-sparc.c: Use PARAMS macro for static function
3828 declarations. Use BFD_RELOC_ macros everywhere, with
3829 compatibility macros declared for non-BFD mode.
3830 (struct sparc_it) [BFD_ASSEMBLER]: Use bfd_reloc_code_real_type
3831 instead of enum reloc_type.
3832 (emit_sparc_reloc): Commented-out function deleted.
3833 (md_convert_frag): Deleted.
3834 (tc_aout_pre_write_hook): Don't define for BFD_ASSEMBLER.
3835 (md_apply_fix): Changed calling sequence (conditionally) for BFD
3836 version.
3837 * config/tc-sparc.h (md_convert_frag): New macro.
3838
3839 * config/obj-aout.c (obj_aout_stab): Refer to undefined_section,
3840 not SEG_UNKNOWN. Use S_SET_TYPE, S_GET_TYPE, S_GET_DESC instead
3841 of referencing fields directly.
3842
3843 * write.c (cvt_frag_to_fill): New function; extracted from
3844 write_object_file.
3845 (write_object_file) [! BFD_ASSEMBLER]: Call it.
3846 (relax_and_size_seg) [BFD_ASSEMBLER]: New function; relax section
3847 and set its size and flags.
3848
3849 * struc-symbol.h (struct symbol) [BFD_ASSEMBLER]: Replace some
3850 fields with BFD equivalents. Turn on back-pointers, and add
3851 target-specific fields at end.
3852
3853 Thu Feb 11 09:20:37 1993 Ian Lance Taylor (ian@cygnus.com)
3854
3855 * config/obj-coffbfd.c (fill_section): Don't set vaddr here.
3856 (write_object_file): Set it here instead, so that fixup_segment
3857 can see the correct value.
3858
3859 Mon Feb 8 13:56:17 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3860
3861 * write.c (write_object_file): Check for errors and warnings and
3862 bail out before processing contents.
3863 (chain_frchains_together_1): New function, does most of the work
3864 of remove_subsegs.
3865 (chain_frchains_together) [BFD_ASSEMBLER]: New function.
3866 (remove_subsegs) [! BFD]: Call it.
3867 (write_object_file) [BFD_ASSEMBLER]: Converted to use BFD
3868 structures and routines.
3869
3870 * config/obj-elf.*: New files.
3871
3872 * config/mips.mt, config/rs6000.mt: Deleted.
3873
3874 * config/h8300.mt: Don't specify compiler here.
3875
3876 * config/z8k.mt: The z8k code depends on the z8k opcode table,
3877 not the h8300 one.
3878 * config/tc-z8k.h: Comment fix.
3879
3880 * write.c: Reordered some functions for better inlining.
3881 (fixup_segment): Linkrelax code is no longer conditional on
3882 TC_I960.
3883
3884 Thu Feb 4 12:45:16 1993 Steve Chamberlain (sac@thepub.cygnus.com)
3885
3886 * config/{h8500.mt, tc-h8500.c, tc-h8500.h, obj-coffbfd.c,
3887 obj-coffbfd.h}: support for the H8/500
3888
3889 Wed Feb 3 19:28:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3890
3891 * config/obj-vms.h (SUB_SEGMENT_ALIGN): Define VMS version here.
3892 * write.c (write_object_file): Not here.
3893 (fix_new): Initialize fx_addnumber.
3894
3895 * listing.c: Don't include target-cpu.h explicitly, since as.h
3896 includes it.
3897
3898 Thu Jan 28 00:35:40 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
3899
3900 * write.h [BFD_ASSEMBLER]: Don't declare next_object_file_charP,
3901 *_fix_root, *_fix_tail, seg_fix_rootP, seg_fix_tailP.
3902 (struct fix): Reordered fields for compactness and efficiency.
3903 Converted some logical fields to 1-bit fields.
3904
3905 * config/obj-aout.h: Use PARAMS.
3906 [BFD_ASSEMBLER]: Don't define/declare AOUT_MACHTYPE, seg_N_TYPE,
3907 N_TYPE_seg, DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE.
3908
3909 * read.c: Don't include listing.h; as.h includes it. Removed
3910 DONTDEF code.
3911 [BFD_ASSEMBLER]: Include subsegs.h.
3912 (old_buffer, new_broken_words): Default initialization is
3913 sufficient.
3914
3915 * output-file.c [BFD_ASSEMBLER]: Include bfd.h, default TARGET_MACH
3916 to 0, define stdoutput.
3917 (output_file_create) [BFD_ASSEMBLER]: Call bfd_perror on failure.
3918 Call bfd_set_arch_mach.
3919 (output_file_close) [BFD_ASSEMBLER]: Call bfd_close, not
3920 bfd_close_all_done. Call bfd_perror on failure.
3921 (output_file_append) [BFD_ASSEMBLER]: Don't define.
3922
3923 * config/m68kcoff.mt (LOCAL_LOADLIBES): Delete definition.
3924
3925 * subsegs.h (segment_info_type): Always define. Omit field scnhdr
3926 if not MANY_SEGMENTS. Define new field bfd_section if
3927 BFD_ASSEMBLER.
3928 (seg_info): New macro.
3929
3930 * expr.c, input-scrub.c: Use PARAMS macro. Deleted unused
3931 variables, and some irrelevant comments.
3932
3933 * Makefile.in (ALL_CFLAGS): Include $(BFDDEF).
3934 (LIBS): Include $(BFDLIB). Don't bother with $(CLIB).
3935 * configure.in: Permit --with-bfd-assembler now, with a warning.
3936 Variable need_bfd is now a boolean, as is new variable bfd_gas.
3937 Set BFDDEF and BFDLIB in Makefile when appropriate.
3938
3939 * as.c: Removed "#ifdef DONTDEF" and "#ifdef comment" code.
3940 (main): Refer to flag_always_generate_output instead of
3941 flagseen['Z'].
3942
3943 * as.c (main) [BFD_ASSEMBLER]: Open output bfd.
3944 (*_section) [BFD_ASSEMBLER]: Define them.
3945 (perform_an_assembly_pass) [BFD_ASSEMBLER]: Initialize them, and
3946 set section flags when appropriate.
3947 * as.h (SEG_NORMAL) [BFD_ASSEMBLER]: Require that the specified
3948 section is not absolute, undefined, or an assembler internal one.
3949 (absolute_section, undefined_section): Always define.
3950 * expr.c, read.c, symbols.c: Refer to *_section, not SEG_*; break
3951 switch statements into if-else trees.
3952 * symbols.c [MANY_SEGMENTS]: Deleted redundant definitions of
3953 SEG_BSS and SEG_DATA.
3954
3955 * as.h (frag_now_fix): New macro.
3956 * symbols.c (colon): Use it.
3957
3958 Wed Jan 27 21:43:53 PST 1993 Ralph Campbell (ralphc@pyramid.com)
3959
3960 * config/tc-mips.c: Added mips support for mips-dec-bsd.
3961 * config/tc-mips.h: Added mips support for mips-dec-bsd.
3962 * config/ho-mipsbsd.h: Added mips support for mips-dec-bsd.
3963 * config/mips-opcode.h: Added mips support for mips-dec-bsd.
3964 * configure.in: Added mips support for mips-dec-bsd.
3965 * atof-generic.c: Define TRUE and FALSE if not defined.
3966
3967 Thu Jan 21 12:48:19 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3968
3969 * version.c: Bumped version number to 1.93.05.
3970
3971 Wed Jan 20 17:11:53 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3972
3973 * config/obj-coff.c (obj_emit_relocations): Don't use #elif.
3974 (obj_emit_lineno): Don't need return at end of void function.
3975 (obj_symbol_new_hook): Ditto.
3976
3977 * config/tc-m68k.c: Removed some unused code.
3978 (tc_aout_fix_to_chars): Array nbytes_r_length is now const.
3979
3980 * config/tc-m68k.h (TC_COUNT_RELOC): Don't emit reloc if only
3981 offset field is set.
3982
3983 Fri Jan 8 05:44:49 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3984
3985 * config/tc-sparc.c (architecture_requested, warn_on_bump,
3986 md_relax_table): Use default zero initialization.
3987 (s_reserve): Since SEG_E2 is equivalent to SEG_BSS, just use the
3988 latter, instead of selecting with preprocessor conditionals.
3989
3990 Thu Jan 7 08:58:21 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
3991
3992 * configure.in: recognise all sparclite variants
3993
3994 Thu Jan 7 05:25:25 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
3995
3996 * read.c (s_data) [!BFD_ASSEMBLER]: Fix typo in 4 Jan change --
3997 accidentally changed to use subseg_change where it should have
3998 been subseg_new.
3999
4000 Tue Jan 5 08:42:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
4001
4002 * expr.c (operand): If character other than comma or newline is a
4003 logical end-of-line character, use the newline case.
4004 From Eric Youngdale:
4005 (operand): Set X_add_number field for floating-point numbers.
4006 (operand): Treat zero byte as end-of-operand.
4007
4008 * configure.in (per-target): Look for with_bfd_assembler option.
4009 For now, only accept "no", until the merge is done.
4010
4011 Merged changes from Eric Youngdale (youngdale@v6550c.nrl.navy.mil):
4012 * as.c, flonum-konst.c, hex-value.c, input-file.c, version.c,
4013 config/obj-aout.h, config/obj-vms.c: VMS -> HO_VMS.
4014 * read.c: Finish conversion to S_* macros in the VMS only
4015 parts of the program. Add "const" modifier to hex_value.
4016 * as.c, read.c, symbols.c, write.c: Change "ifdef VMS" to
4017 "ifdef OBJ_VMS".
4018 * expr.c: Add "const" modifier to hex_value.
4019 * symbols.c: Finish conversion to S_* macros in the VMS only
4020 parts of the program. Add "const" modifier to
4021 md_[long,short]_jump_size. Remove declaration of const_flag
4022 (which will be declared in obj-vms.h).
4023 * write.c: Add "const" modifier to md_[long,short]_jump_size.
4024 Fix arguments to VMS_write_object_file.
4025 * config-gas.com: New file. Script for VMS systems to set up the
4026 configuration to build gas for VMS, and create config.status.
4027 * make-gas.com: Redone to work with new scheme.
4028 * obj-vms.c: Patch to fix bug where we were not correctly parsing the
4029 stabs directives.
4030 * obj-vms.c: Define macros COPY_LONG and COPY_SHORT which
4031 will swap bytes if needed on a big endian system. Use throughout
4032 as needed.
4033 * obj-vms.c (obj_aout_stab): Add code to generate listing file.
4034 * obj-vms.c (VMS_typedef_parse): Add alias to correctly handle certain
4035 types of malformed stabs. Change parsing algorithm so that we are
4036 more certain of having all of the information that we need on hand.
4037 * obj-vms.c (final_forward_reference): New function, used to help
4038 resolve the data types of as many struct elements as possible
4039 when some part of the struct is not fully defined by the compiler.
4040 * obj-vms.c (VMS_LSYM_Parse): Correctly handle case of continuation
4041 stabs directives.
4042 * obj-vms.c (VMS_write_object_file): Define all vtable psects
4043 as symbols as well in the object file. Look for external functions
4044 that start with "__vt.", and turn them into variables, since the
4045 g++ compiler is incapable of doing this.
4046 * tc-vax.c: Add '1' option for backward compatibility with older GCC
4047 versions.
4048 * bignum-copy.c (bignum_copy): Fix bug where we pad with zeroes.
4049 * input-scrub.c (as_where): Fix bug where as would crash if we did not
4050 have the name of the source file yet.
4051 * config/ho-vms.h: define HO_VMS, not HO_VAX.
4052
4053 Mon Jan 4 05:17:26 1993 Ken Raeburn (raeburn@cygnus.com)
4054
4055 * read.c (s_data): Always use "data_section", since it'll map to
4056 SEG_DATA or SEG_E1 if needed.
4057 (s_lcomm): Likewise with bss_section.
4058 (s_fill): Use memset, not bzero.
4059
4060 Thu Dec 31 04:29:27 1992 Ken Raeburn (raeburn@kr-pc.cygnus.com)
4061
4062 * read.c: Deleted some code under "#ifdef DONTDEF" that was for
4063 handling GDB symbol table data.
4064
4065 * config/obj-aout.h (segment_name): Delete definition.
4066 (seg_name): Delete declaration.
4067 * config/obj-bout.h (segment_name, seg_name): Ditto.
4068 * config/obj-vms.h (segment_name, seg_name): Ditto.
4069 * config/obj-coff.h (segment_name): Ditto.
4070 * config/obj-coffbfd.h (segment_name): Ditto.
4071
4072 * Changes for BFD_ASSEMBLER:
4073 * obj.h (obj_crawl_symbol_chain): Declare only if not
4074 BFD_ASSEMBLER.
4075 (obj_header_append, obj_pre_write_hook): Ditto.
4076 * as.h (stdoutput): New var, defined only if BFD_ASSEMBLER.
4077 (segT) [BFD_ASSEMBLER]: New typedef for "asection *".
4078 (segment_name) If BFD_ASSEMBLER, look up BFD section name;
4079 otherwise, use seg_name array.
4080 (seg_name): Declare only if not BFD_ASSEMBLER.
4081 (section_alignment): Declare only if not BFD_ASSEMBLER.
4082 (big_section, reg_section, pass1_section, diff_section,
4083 absent_section, text_section, data_section, bss_section): If
4084 BFD_ASSEMBLER, declare as variables; otherwise, declare as macros,
4085 mapping to segT enum values.
4086 (tc_aout_fix_to_chars, next_object_file_charP): Force parse errors
4087 if these are used or defined, if BFD_ASSEMBLER.
4088 (subseg_set, subseg_new) [BFD_ASSEMBLER]: Functionality of old
4089 subseg_new split into two functions.
4090 (SEG_NORMAL): For BFD_ASSEMBLER, always return true, for now.
4091
4092 * as.h (volatile): Don't define if already defined.
4093 (had_errors, had_warnings): Provide prototypes for ANSI C even if
4094 NO_STDARG.
4095 (as_bad, as_fatal, as_tsktsk, as_warn): For GNU C version 2,
4096 declare with format attribute for -Wformat checking.
4097
4098 Wed Dec 30 10:18:57 1992 Ian Lance Taylor (ian@cygnus.com)
4099
4100 * app.c, config/tc-*.c: Don't include read.h, since it is already
4101 included by as.h.
4102
4103 * These are based on patches from Minh Tran-le
4104 <mtranle@paris.intellicorp.com>.
4105 * configure.in (i[34]86-ibm-aix*): Accept i486 for host. Use
4106 obj_format coffbfd and gas_target i386coff for target.
4107 (i[34]86-*-isc*): New host (uses sysv).
4108 * config/i386aix.mt: Removed (no longer used).
4109 * config/mh-i386aix (RANLIB): Use true rather than /bin/true.
4110 (MINUS_G): Removed.
4111 (LDFLAGS): Added, defined as -shlib.
4112 * config/te-i386aix.h (REVERSE_SORT_RELOCS): Undefine.
4113 * config/te-sco386.h (LOCAL_LABEL): Don't define.
4114 (DOT_LABEL_PREFIX): Define.
4115 * expr.c (operand): If DOT_LABEL_PREFIX, use .L0\001 as a label
4116 name rather than L0\001.
4117 * read.c (s_lcomm): Make a frag in SEG_BSS rather than using
4118 local_bss_counter.
4119 * symbols.c, symbols.h (local_bss_counter): Removed.
4120 * write.c (write_object_file): bss no longer uses
4121 local_bss_counter. Pass correct data and bss size to
4122 VMS_write_object_file.
4123 * config/obj-vms.c (VMS_write_object_file): Accept bss size as
4124 argument, rather than using local_bss_counter.
4125 * config/tc-m88k.c (s_bss): Don't use local_bss_counter.
4126 * config/tc-sparc.c (s_reserve): Don't use local_bss_counter.
4127 * config/obj-coffbfd.c (had_lineno, had_reloc): Removed.
4128 (size_section): Restored sanity check.
4129 (do_relocs_for): Base section address on s_paddr rather than
4130 computing it. Adjust a29k R_IHIHALF special case to account for
4131 section paddr (used to require paddr to be zero). If there are no
4132 reclos, set s_relptr to 0. Set relocation size in object_headers.
4133 (fill_section): Always set s_vaddr here, removing
4134 ZERO_BASED_SEGMENTS case. Force s_scnptr for bss to 0. Don't set
4135 NOLOAD for i386 .bss, because it confuses the SVR3 native linker.
4136 Set STYP_INFO for .comment.
4137 (coff_header_append): Use object headers and H_{SET,GET}_* macros.
4138 Make aouthdr writing depend on OBJ_COFF_OMIT_OPTIONAL_HEADER.
4139 (crawl_symbols): Handle 8 character section name correctly. Use
4140 H_{SET,GET}_* macros.
4141 (do_linenos_for): Set lineno size in object_headers.
4142 (write_object_file): Use H_{SET,GET}_* macros. Don't bother to
4143 set s_vaddr here. If string_byte_count remains 4, set it back to
4144 0, and only write strings out if there are some. Call
4145 fill_section before do_relocs_for and do_linenos_for.
4146 (obj_coff_section): Handle optional quoted second argument giving
4147 section characteristics.
4148 (obj_coff_bss): Added to handle .bss.
4149 (obj_coff_ident): Added to handle .ident (puts string in .comment
4150 section).
4151 (obj_coff_lcomm): Put common symbols in .bss, not .data.
4152 (fixup_mdeps): Change to segment. Call frag_wane after
4153 md_convert_frag.
4154 (fixup_segment): Explicitly check S_IS_COMMON before making 386
4155 adjustment (already happened only for common symbols, but this is
4156 clearer).
4157 * config/obj-coffbfd.h (OBJ_COFF_OMIT_OPTIONAL_HEADER): Define.
4158 * config/tc-i386.c (s_bss): Don't use if I386COFF.
4159 (md_pseudo_table): Ignore .optim and .noopt.
4160 (tc_coff_sizemachdep): New function.
4161 * config/tc-i386.h (REVERSE_SORT_RELOCS): Undef, for SVR3
4162 compatibility.
4163 (LOCAL_LABEL): Removed definition.
4164 (DOT_LABEL_PREFIX): Defined.
4165
4166 Mon Dec 28 10:32:05 1992 Ken Raeburn (raeburn@cygnus.com)
4167
4168 * app.c (app_push): Use memcpy, not bcopy.
4169 (do_scrub_next_char): For \", return " not '.
4170 (symbol_chars): Now const.
4171
4172 * expr.c (operand): If not LOCAL_LABELS_FB, don't look for "0f"
4173 and "0b". If LOCAL_LABELS_DOLLAR, check for "0$".
4174
4175 * config/obj-coff.h: Don't use #elif.
4176
4177 * config/ho-sunos.h: Don't include sys/stdtypes.h; 4.0.3 doesn't
4178 have it. (Reported by Noah Friedman, friedman@gnu.ai.mit.edu.)
4179
4180 Wed Dec 16 12:12:33 1992 Ian Lance Taylor (ian@cygnus.com)
4181
4182 * write.c, obj-ieee.c: don't define SUB_SEGMENT_ALIGN if it is
4183 already defined.
4184
4185 Tue Dec 15 12:40:11 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4186
4187 * app.c (do_scrub_begin): allow single quote strings if so
4188 configured.
4189
4190 * config/*z8k*: checkpoint
4191
4192 Sun Dec 13 00:04:38 1992 Ian Lance Taylor (ian@cygnus.com)
4193
4194 * read.c (read_a_source_file): avoid calling xmalloc (0).
4195
4196 Sat Dec 12 15:26:34 1992 Ian Lance Taylor (ian@cygnus.com)
4197
4198 * listing.c: Call xmalloc, not malloc; don't declare malloc.
4199
4200 * Changes to support SCO 3.2v4:
4201 * read.c (s_align_bytes, s_align_ptwo): If not SEG_DATA or
4202 SEG_BSS, fill with NOP_OPCODE.
4203 * config/i386coff.mt: Add opcode/i386.h to TARG_CPU_DEPENDENTS.
4204 * config/obj-coffbfd.c (do_relocs_for): Increment addr even if not
4205 using ZERO_BASED_SEGMENTS.
4206 (fill_section): If ZERO_BASED_SEGMENTS, set segment addresses, but
4207 never set segment address for SEG_E2 (.bss) and don't write out
4208 SEG_E2 contents. Set .init and .fini sections to STYP_TEXT.
4209 (obj_coff_endef): Don't merge labels or symbols awaiting forward
4210 definitions, and don't merge tags with non-tags. Check for .bf
4211 rather than just checking whether the second character is b and
4212 the third character is f.
4213 (obj_coff_val): gcc can generate values which we don't handle
4214 correctly; discard information for now, since it only affects the
4215 debugging information.
4216 (tag_find_or_name): Don't insert tags in the symbol table.
4217 (yank_symbols): Don't merge labels.
4218 (write_object_file): Don't define SUB_SEGMENT_ALIGN if it is
4219 already defined. Fill subsegments with NOP_OPCODE, not 0. Don't
4220 set segment address if ZERO_BASED_SEGMENTS.
4221 (obj_coff_section): Accept and ignore a trailing quoted string, as
4222 used in AT&T i386 syntax.
4223 (fixup_segment): Take segment as argument. On the i386, adjust PC
4224 relative addends by the segment vaddr.
4225 * tc-i386.h: Define SUB_SEGMENT_ALIGN.
4226 * tc-a29k.h: Define ZERO_BASED_SEGMENTS.
4227 * tc-i386.c: (i386_operand): If I386COFF, accept any segment type.
4228
4229 Tue Dec 8 00:06:48 1992 Ken Raeburn (raeburn@rtl.cygnus.com)
4230
4231 * config/obj-coffbfd.c: Include libcoff.h.
4232
4233 * version.c: Now version 1.93.
4234
4235 Mon Dec 7 00:39:09 1992 Ken Raeburn (raeburn@cygnus.com)
4236
4237 * config/tc-i386.c (md_pseudo_table): For 386bsd and linux, do
4238 power-of-two alignment for .align.
4239
4240 * as.h: If BROKEN_ASSERT, just redefine `assert' to be trivial,
4241 and leave everything else alone.
4242
4243 Fri Dec 4 16:58:42 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4244
4245 * Makefile.in (as.new): Don't bother saving as.old.
4246
4247 * write.c: Conditionalize on OBJ_VMS, not VMS.
4248 (magic_number_for_object_file): Don't define if OBJ_VMS.
4249
4250 * config/obj-vms.c: Changes for traditional C.
4251
4252 Thu Dec 3 01:24:07 1992 Ken Raeburn (raeburn@kr-pc.cygnus.com)
4253
4254 * config/ho-generic.h (malloc, realloc): Declare.
4255
4256 * Lots of comment/whitespace changes.
4257
4258 * write.h (struct fix): Some fields reordered, narrowed.
4259
4260 * read.c (MASK_CHAR): Define using C types, not magic number.
4261
4262 * as.c, input-file.c: Deleted some unused code.
4263
4264 * app.c, as.h: Doc fix.
4265
4266 * flonum-konst.c, flonum-mult.c: Include ansidecl.h.
4267
4268 * as.h (xmalloc): Argument is long.
4269
4270 * xmalloc.c (error): Remove declaration; as.h takes care of it.
4271
4272 * doc/as.texinfo: Regrouped documentation of some command-line
4273 options. Updated options documentation for m68k. Some minor
4274 wording/punctuation changes.
4275
4276 Mon Nov 30 11:42:11 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4277
4278 * configure.in: Accept target OS "vms".
4279
4280 * symbols.c: Merged ANSI and non-ANSI function decls, using
4281 PARAMS macro.
4282
4283 * xmalloc.c: Just include as.h, don't bother trying to figure out
4284 other header files.
4285
4286 * strstr.c, strerror.c: Deleted.
4287 * Makefile.in: Deleted references.
4288
4289 * config/tc-ns32k.c: Don't include header file for string
4290 declarations; leave that to ho-*.h.
4291
4292 Fri Nov 27 04:11:36 1992 Ken Raeburn (raeburn at cambridge-laptop.cygnus.com)
4293
4294 * config/coff_gnu.h [TC_I860]: Guesses for reloc type values,
4295 imported from FSF sources.
4296
4297 * messages.c (strerror): Declare unconditionally.
4298
4299 * as.h: Delete alloca and register definitions.
4300
4301 * config/atof-ieee.c (mask): Now const.
4302
4303 * obstack.c, obstack.h: Deleted.
4304
4305 * as.h (flag_readonly_data_in_text): New flag.
4306 * as.c (main): Set it for -R.
4307
4308 * as.h (flag_suppress_warnings): New flag.
4309 * as.c (main): Set it for -W.
4310 * messages.c (as_warn): Check it instead of flagseen['W'].
4311
4312 * as.h (flag_always_generate_output): New flag.
4313 * as.c (main): Set it for -Z.
4314
4315 * config/tc-sparc.h: Define NEED_FX_R_TYPE.
4316 * config/tc-a29k.h: Ditto.
4317 * write.h (struct fix): Don't conditionalize fx_r_type field on TC
4318 macros.
4319
4320 * as.h: Merged ANSI and non-ANSI function decls, using PARAMS
4321 macro.
4322 * bignum.h, expr.h, flonum.h, frags.h, input-file.h, listing.h,
4323 obj.h, output-file.h, read.h, struc-symbol.h, symbols.h, tc.h,
4324 write.h: Likewise.
4325 * read.c: Likewise.
4326
4327 * xmalloc.c: Conditionalize on HAVE_MALLOC_H, not USG. Fold in
4328 xrealloc from xrealloc.c.
4329 * xrealloc.c: Deleted.
4330 * Makefile.in (REAL_SOURCES, OBJS): Adjusted.
4331
4332 * configure.in: For host CPU a29k, rs6000, vax, consider using bsd
4333 or vms ho- files.
4334
4335 * config/ho-sysv.h (setbuffer, HO_USG): Deleted.
4336
4337 * config/atof-ieee.c (atof_ieee): Exponent field isn't a pointer;
4338 don't initialize it with NULL.
4339
4340 * config/ho-vax.h (M_VAX): Deleted; was unused.
4341
4342 * README-vms, config/ho-vms.h, config/obj-vms.c, config/obj-vms.h:
4343 New files imported from FSF version, contributed by Eric Youngdale.
4344 * README-vms-dbg, config/vms: Deleted.
4345
4346 * ChangeLog, config/ChangeLog: Merged.
4347
4348 * config/*tahoe*, configure.in: Tahoe support brought in from FSF
4349 version.
4350
4351 * input-file.c (input_file_open): Eliminate call to setvbuf.
4352 [USG] (setbuffer): Deleted macro.
4353
4354 Mon Nov 23 11:00:16 1992 Ken Raeburn (raeburn@cygnus.com)
4355
4356 * all files: Whitespace changes for GNU indentation style, done by
4357 GNU `indent'. Some cleanup still needed, especially of comments.
4358
4359 * configure.in: No te-386bsd.h file exists; don't try to use it.
4360
4361 * obj-coff.c (obj_coff_endef): Use as_warn, not fprintf.
4362
4363 * tc-m68k.c (md_assemble): Don't complain about 68000 with 68881;
4364 could be doing emulation.
4365
4366 Thu Nov 19 11:47:19 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4367
4368 z8000 documentation
4369 * doc/Makefile.in, doc/all.m4, doc/as-all.texinfo, doc/as.texinfo:
4370 all modified.
4371
4372 Tue Nov 10 09:49:24 1992 Ian Lance Taylor (ian@cygnus.com)
4373
4374 * Makefile.in (as.o, obj-format.o): added dependency on subsegs.h.
4375
4376 * subsegs.h: add extern to segment_info declaration.
4377
4378 * read.h: added extern declarations for comment_chars,
4379 line_comment_chars, and line_separator_chars.
4380 read.c, app.c: removed definitions of comment_chars,
4381 line_comment_chars, and line_separator_chars.
4382
4383 * tc-m68k.c (m68k_reg_parse): If REGISTER_PREFIX isn't defined,
4384 still accept (but don't require) OPTIONAL_REGISTER_PREFIX before
4385 the register name.
4386 (insert_reg): put REGISTER_PREFIX before register names before
4387 putting them in the symbol table.
4388 * tc-m68k.h (OPTIONAL_REGISTER_PREFIX): Define to be "%", if not
4389 M68KCOFF.
4390
4391 * obj-coffbfd.c (fill_section): set STYP_NOLOAD bit for .bss
4392 section.
4393
4394 * atof-ieee.c, atof-ns32k.c, tc-*.c: made EXP_CHARS, FLT_CHARS,
4395 comment_chars, line_comment_chars and line_seperator_chars
4396 consistently const, and always initialized them. Included read.h.
4397
4398 Thu Nov 5 17:55:41 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
4399
4400 * tc-sparc.c (sparc_ip): Add code to flag error if an absolute
4401 constant will not fit in an immediate field.
4402 (md_apply_fix, RELOC_BASE13 case): Check for relocation overflow.
4403
4404 Wed Nov 4 07:50:46 1992 Ken Raeburn (raeburn@cygnus.com)
4405
4406 * obj-coff.c (callj_table): Delete global variable.
4407 (obj_emit_relocations): Define it locally here, and only if
4408 TC_I960 is defined.
4409
4410 * tc-m68k.c (m68k_reg_parse): Underscore is part of a symbol name.
4411 (m68k_ip): Don't warn about bignum used as float bit-pattern.
4412
4413 * obj-coff.c: Replaced ANSI and non-ANSI function declarations
4414 with a single set using PARAMS macro.
4415
4416 * tc-i960.c (tc_bout_fix_to_chars): Bit-field fixups want a length
4417 of 2.
4418
4419 * tc-i960.c: Missed a couple of 0->NO_RELOC conversions.
4420
4421 * tc-i960.h (N_BALNAME, N_CALLNAME): Define as char-type values,
4422 so widening works consistently.
4423
4424 Wed Oct 28 08:52:34 1992 Ken Raeburn (raeburn@cygnus.com)
4425
4426 * version.c: Put conditional "const" before version_string, not
4427 before dummy function for VMS. Now version 1.91.03.
4428
4429 * app.c (do_scrub_next_char): Need double-\ before `000' to show
4430 printed rep of null character.
4431
4432 Fri Oct 23 14:40:38 1992 Ian Lance Taylor (ian@cygnus.com)
4433
4434 * obj-coffbfd.c (write_object_file): check return value of
4435 bfd_close_all_done.
4436
4437 Tue Oct 20 12:18:08 1992 Ian Lance Taylor (ian@cygnus.com)
4438
4439 * Support for i386-sysv.
4440 obj-coffbfd.c (do_relocs_for, write_object_file): set segment
4441 addresses to reasonable sizes. New define ZERO_BASED_SEGMENTS can
4442 be used to set them all to zero as was done before.
4443 (fill_section): segment addresses now set in write_object_file.
4444 (fill_section): Don't set STYP_NOLOAD for .bss section.
4445 (fixup_segment): 386 uses strange common symbol format.
4446 tc-i386.c (tc_coff_fix2rtype): use R_DIR32, not R_RELLONG, for
4447 compatibility with SVR3.2 linker.
4448 * configure.in: i386-sysv and i386-sco use coffbfd.
4449
4450 * app.c (do_scrub_next_char): discard whitespace after a label.
4451
4452 Sat Oct 10 12:33:45 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
4453
4454 * configure.in: differentiate between SunOS 4 and Solaris2 for Sun4
4455 hosts, use the sysv configuration for solaris2
4456
4457 Mon Oct 5 09:28:57 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4458
4459 fix i960+non-bfd coff bit rot.
4460 * obj-coff.c (c_dot_file_symbol, obj_coff_ln, obj_coff_line):
4461 support for C source listings. (obj_coff_endef): look in the right
4462 part of the symbol for the symbol name
4463
4464 * tc-m68k.c (get_num): make it work for all segments, not just the
4465 first three.
4466
4467 Mon Oct 5 03:30:36 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
4468
4469 * configure.in: recognize i386-*-bsd emulation.
4470
4471 Thu Oct 1 23:05:12 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
4472
4473 * configure.in: use the cpu-vendor-os triple for host and target
4474
4475 Tue Sep 29 12:22:52 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4476
4477 * obj-coffbfd.c (write_object_file): don't fixup for the z8k
4478 * tc-z8k.c: lots of bug fixes
4479
4480 Tue Sep 29 10:51:55 1992 Ian Lance Taylor (ian@cygnus.com)
4481
4482 * tc-i960.h, tc-i960.c: avoid the ANSI preprocessor addition
4483 #elif, since it is not supported by old compilers.
4484 ho-rs6000.h, tc-m68k.c: the native RS/6000 compiler miscompiles a
4485 couple of expressions in tc-m68k.c.
4486
4487 Mon Sep 28 21:18:24 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4488
4489 * read.c (cons): If NO_RELOC is defined, use it.
4490
4491 * tc-i960.c (get_cdisp): Use NO_RELOC, not 0, in call to fix_new.
4492
4493 Fri Sep 25 18:18:52 1992 Ian Lance Taylor (ian@cygnus.com)
4494
4495 * tc-m68k.h: if M68KCOFF, define DOT_LABEL_PREFIX (to require
4496 local labels to start with a .) and set REGISTER_PREFIX to %.
4497 tc-m68k.c (m68k_reg_parse): accept REGISTER_PREFIX if defined.
4498
4499 Fri Sep 25 17:53:43 1992 John Gilmore (gnu@cygnus.com)
4500
4501 * messages.c: Comment changes.
4502
4503 Fri Sep 25 14:12:58 1992 Ken Raeburn (raeburn@kyriath.cygnus.com)
4504
4505 * as.h: Test if __STDC__ is defined only, don't test its value.
4506 * messages.c: If __STDC__ is not defined, define NO_STDARG.
4507
4508 Thu Sep 24 12:42:32 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
4509
4510 * listing.c (debugging_pseudo): Add stabs and stabn as things to
4511 ignore.
4512
4513 Tue Sep 22 13:02:07 1992 Sean Eric Fagan (sef@cygnus.com)
4514
4515 * obj-coffbfd.c (do_relocs_for,fill_section): now allocate all
4516 sections starting from zero, rather than making them consecutive.
4517 This makes subsequent reloc calculations easier, esp if the object
4518 format doesn't understand addends. (obj_coff_lcomm): (maybe temporarily)
4519 allocate lcomm in .data rather than in .bss. It seems that some
4520 tools can't cope with a non-zero sized bss before linkage.
4521
4522 Tue Sep 22 15:10:51 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4523
4524 * tc-m68k.c: Replace "enum m68k_architecture" with "int"
4525 throughout. That enum no longer means what we thought it meant.
4526
4527 * tc-m68k.c (md_assemble, md_parse_option): Handle new
4528 "-mno-688[58]1" options.
4529
4530 * tc-m68k.c: Added CPU32 support.
4531
4532 Fri Sep 18 08:02:18 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4533
4534 * tc-m68k.c (m68k_ip): An(disp) is not pc relative.
4535
4536 Tue Sep 15 17:25:05 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
4537
4538 * Makefile.in (as.new): Remove dependence on LOCAL_LOADLIBES.
4539 Change LIBDEPS dependence to LIBS.
4540
4541 Tue Sep 15 15:32:02 1992 Ian Lance Taylor (ian@cygnus.com)
4542
4543 * Makefile.in (install): if $(tooldir) exists, install as in
4544 $(tooldir)/bin.
4545
4546 Sun Sep 13 20:30:10 1992 Ian Lance Taylor (ian@cygnus.com)
4547
4548 * Added WARN_SIGNED_OVERFLOW_WORD define to give an error if any
4549 .word is < -32768 or > 32767. The -J flag causes the error to be
4550 ignored. This is to catch over-sized switches generated by gcc on
4551 systems which don't support the broken .word hack.
4552 as.c (main): permit -J if WARN_SIGNED_OVERFLOW_WORD.
4553 write.c (fixup_segment): check for signed .word overflow if
4554 WARN_SIGNED_OVERFLOW_WORD.
4555
4556 * write.c (fixup_segment): fixed missing parens in expression
4557 checking for byte or word overflow.
4558
4559 * obj-coffbfd.h: define WARN_SIGNED_OVERFLOW_WORD.
4560 obj-coffbfd.c (fixup_segment): check for signed .word overflow if
4561 WARN_SIGNED_OVERFLOW_WORD.
4562
4563 * obj-coffbfd.c (fixup_segment): fixed missing parens in
4564 expression checking for byte or word overflow.
4565
4566 Fri Sep 11 10:21:04 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4567
4568 Support for i386 coff
4569 * obj-coffbfd.h : added stuff
4570 * tc-i386.c (tc_coff_fix2rtype): new function
4571 * tc-i386.h : new coff defines
4572
4573 Thu Sep 10 09:23:15 1992 Ian Lance Taylor (ian@cygnus.com)
4574
4575 * input-scrub.c (input_scrub_push): call input_file_begin, not
4576 input_scrub_begin.
4577 messages.c (as_perror): print ": " between the passed in error and
4578 the strerror, like perror does.
4579
4580 Wed Sep 9 11:06:25 1992 Ian Lance Taylor (ian@cygnus.com)
4581
4582 * Makefile.in: use gas_target instead of modifying target_cpu.
4583 From Steve Chamberlain:
4584 Makefile.in: Handle m68*-*-coff*.
4585 read.c, read.h: add mult argument to s_space
4586
4587 * tc-m68k.c (m68k_ip, m68k_ip_op, get_num, try_moto_index): merge
4588 Motorola and MIT syntax; gas can now assemble either type of
4589 file.
4590 tc-m68kmote.c, tc-m68kmote.h: removed now superfluous files.
4591 From Steve Chamberlain:
4592 m68kcoff.mt: for m68k COFF.
4593 obj-coffbfd.c: (fixup_mdeps) added
4594 (size_section) removed bad sanity check
4595 (fill_section) added rs_machine_dependent case
4596 (write_object_file) call fixup_mdeps
4597 (fixup_segment) set fx_subsy to 0.
4598 obj-coffbfd.h: define WORKING_DOT_WORD (too hard to support) and
4599 handle m68k.
4600 tc-m68k.c, config/tc-m68k.h: added m68k COFF support and Motorala
4601 pseudo ops.
4602
4603 Tue Sep 8 17:10:58 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4604
4605 * Makefile.in (LIBS): Include opcode library.
4606
4607 Fri Sep 4 18:20:56 1992 Ken Raeburn (raeburn@cygnus.com)
4608
4609 * config/tc-m68k.c (get_num, case SEG_BIG): If only small integers
4610 including zero are accepted, pass +0.0.
4611
4612 Sun Aug 30 21:24:46 1992 Ian Lance Taylor (ian@cygnus.com)
4613
4614 * Makefile.in: map "as" through program_transform_name when
4615 installing.
4616
4617 * doc/Makefile.in: map "as" through program_transform_name when
4618 installing.
4619
4620 Sat Aug 29 12:11:12 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
4621
4622 * Makefile.in (as.new): Depend on LOCAL_LOADLIBES.
4623
4624 Fri Aug 28 16:25:22 1992 Ian Lance Taylor (ian@cygnus.com)
4625
4626 * obj-bout.h, obj-bout.c (obj_header_append, obj_symbol_to_chars),
4627 tc-i960.c (md_ri_to_chars): Always output bout object file in
4628 little endian byte order (used to use endianness of host).
4629
4630 Tue Aug 25 15:50:48 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4631
4632 * config/tc-m68k.c (init_table): Now const. Always include 68851
4633 data, so that "bc" is available to 68040 cache instructions.
4634 Added "tt0", "tt1", and 68ec030 variants.
4635 (md_assemble): Complain if 68000 (only) and 68881 are specified.
4636 (enum _register): Added TT0, TT1.
4637 (m68k_ip, cases '3' and 't'): Handle new operand type codes. Pass
4638 line number correctly in "internal error" messages. Don't print
4639 architecture-mismatch message for operand errors.
4640
4641 From Colin Smith (colin@wrs.com):
4642 * config/tc-m68k.c (m68k_ip, case '_'): Use addword twice rather
4643 than install_operand.
4644
4645 Tue Aug 25 15:13:48 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4646
4647 * listing.c (buffer_line): rewind to the start of include
4648 files, they might be included twice.
4649
4650 * z8k.c, z8k.h, z8k.mt: z8000 support stuff
4651
4652 Mon Aug 24 12:45:43 1992 Ian Lance Taylor (ian@cygnus.com)
4653
4654 * Makefile.in: defined TARGET_CPU for C code so that it can choose
4655 one element of a family.
4656
4657 * tc-m68k.c: use TARGET_CPU to choose default cpu type.
4658
4659 * te-generic.h: default to LOCAL_LABELS_DOLLAR and LOCAL_LABELS_FB
4660 so that we can assemble hand-written libgcc code.
4661
4662 Fri Aug 21 14:38:44 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
4663
4664 * messages.c (as_warn): Use fputs, not fprintf, with a buffer that
4665 has already been formatted (but may still contain %-characters).
4666 (as_bad): Likewise.
4667
4668 Wed Aug 19 11:20:59 1992 Ian Lance Taylor (ian@cygnus.com)
4669
4670 * tc-m68k.c, tc-m68kmote.c: the cas2 instruction is supposed to be
4671 written with indirection on the last two operands, which can be
4672 either data or address registers. Added a new operand type 'r'
4673 which accepts either register type. Added '(' to notend stuff in
4674 tc-m68kmote.c to accept (a0):(a2) in cas2 instruction.
4675
4676 Wed Aug 19 09:25:09 1992 Ken Raeburn (raeburn@cygnus.com)
4677
4678 * as.h (enum _relax_state): Start off at one, not zero, to better
4679 catch uninitialized-variable errors.
4680 (linkrelax): Declare new variable.
4681
4682 * messages.c (warning_count, error_count): Default initializer is
4683 sufficient.
4684
4685 * write.c: Merged some declarations, using PARMS macro.
4686 (text_frag_root, data_frag_root, bss_frag_root, text_last_frag,
4687 data_last_frag): No longer static.
4688 (write_object_file, case rs_align or rs_org): If HANDLE_ALIGN is
4689 defined, call it. Change segments before calling fixup_segment.
4690 (relax_align): If linkrelax, provide extra padding.
4691
4692 * obj-bout.c (obj_emit_relocations): Emit alignment relocs despite
4693 their not having symbols associated.
4694
4695 * tc-i960.c (norelax, instrument_branches): Default initializer is
4696 sufficient.
4697 (linkrelax): Delete variable definition.
4698 (mem_fmt): Call fix_new with NO_RELOC.
4699 (tc_bout_fix_to_chars): Handle alignment relocs.
4700 (i960_handle_align): New function.
4701 * tc-i960.h (linkrelax): Delete declaration.
4702 (HANDLE_ALIGN): New macro; calls i960_handle_align.
4703 (NEED_FX_R_TYPE, NO_RELOC): New macros.
4704
4705 Tue Aug 18 14:59:21 1992 Ken Raeburn (raeburn@cygnus.com)
4706
4707 * config/sparc.mt: New file. Grab sparc opcode table from bfd
4708 library.
4709
4710 Tue Aug 18 14:16:38 1992 Ian Lance Taylor (ian@cygnus.com)
4711
4712 * Makefile.in: always create installation directories. Removed
4713 MINUS_G, set CFLAGS to default to -g, added FLAGS_TO_PASS, passed
4714 FLAGS_TO_PASS to recursive makes.
4715
4716 * doc/Makefile.in: always create installation directories.
4717
4718 Mon Aug 17 15:09:56 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4719
4720 * input-scrub.c (input_scrub_pop, input_scrub_push): memcpy was
4721 being used with args swapped, causing occasional lossage when
4722 refilling buffers after an include file.
4723
4724 Mon Aug 17 13:18:51 1992 Ken Raeburn (raeburn@cygnus.com)
4725
4726 * messages.c (as_tsktsk): Use correct ANSI form for stdarg
4727 version. Discard bogus DONTDEF version.
4728 (as_warn, as_bad, as_fatal): Likewise.
4729
4730 Fri Aug 14 18:31:14 1992 Ken Raeburn (raeburn@cygnus.com)
4731
4732 * config/tc-m68k.c (m68k_ip): If instruction is invalid for the
4733 selected architecture, print a message saying so and listing what
4734 processors support it, rather than saying "operands mismatch".
4735
4736 Thu Aug 13 13:53:19 1992 Ken Raeburn (raeburn@cygnus.com)
4737
4738 * as.h [BROKEN_ASSERT]: If defined, turn off all assertion checks.
4739
4740 * config/ho-rs6000.h (M_RS6000): Don't define it.
4741 (free): Declare it.
4742 (BROKEN_ASSERT): Define it if not __STDC__.
4743
4744 Tue Aug 11 12:58:14 1992 Ken Raeburn (raeburn@cygnus.com)
4745
4746 * sparc.mt: New file.
4747
4748 Mon Aug 10 14:37:08 1992 Per Bothner (bothner@cygnus.com)
4749
4750 * tc-m68k.c: ".align N" means align to N-byte boundary *only*
4751 if TN_SUN3; otherwise align to 2**N-byte bounary.
4752
4753 Thu Aug 6 12:10:39 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4754
4755 * read.c (s_fill): make the .fill size clamped error a warn and
4756 fix bug where 0's were always placed.
4757
4758 * config/tc-h8300.c: if a :8 is seen after an operand, fill top
4759 two bytes of any constant with 0xff:
4760
4761 Wed Aug 5 12:02:40 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4762
4763 * config/tc-m68k.c (md_pseudo_table): fix the .align thing
4764 the right way; for just the 68k. Sun 3 .align is nbytes, not ptwo.
4765
4766 Wed Aug 5 01:54:34 1992 John Gilmore (gnu at cygnus.com)
4767
4768 * tc-m68k.c (try_index): Error if index scaling specified and
4769 assembling for an older CPU than a 68020.
4770
4771 Sat Aug 1 19:10:13 1992 Ken Raeburn (raeburn@cygnus.com)
4772
4773 * config/tc-sparc.c (tc_aout_fix_to_chars): If pc-relative, take
4774 fx_offset into account.
4775
4776 Fri Jul 31 21:53:28 1992 Ken Raeburn (raeburn@cygnus.com)
4777
4778 * configure.in (mips host): Accept "ultrix" with version number.
4779
4780 * expr.c (floating_constant): Separate "=-" to avoid confusing
4781 ancient or broken compilers.
4782
4783 * config/tc-m68k.c (m68k_ip): Mismatch error could also indicate
4784 processor/opcode mismatch, so reword the error message.
4785 (md_assemble): If no CPU has been set (even if FPU/PMMU
4786 characteristics have been), default to 68020. Don't need extra
4787 quotes around error string.
4788
4789 Fri Jul 31 12:26:34 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
4790
4791 * read.c (potable): Revert sac's incorrect change made Jul 13.
4792 Align really is supposed to be ptwo not nbytes.
4793
4794 Mon Jul 20 02:51:59 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
4795
4796 * Makefile.in: _Do_ include libiberty. (from sef)
4797
4798 Fri Jul 17 15:15:28 1992 Ken Raeburn (raeburn@cygnus.com)
4799
4800 * expr.c (integer_constant): Handle "0f" and "0b" label references
4801 properly.
4802
4803 Thu Jul 16 08:20:17 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4804
4805 * write.c (fixup_segment): if relaxing, don't do anything.
4806 * config/obj-bout.[ch] : maintain the a_relaxable file header info
4807 * config/tc-i960.c: new option -linkrelax
4808
4809 Mon Jul 13 14:11:36 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4810
4811 * expr.c (expr): allow SEG_BSS in expressions
4812 * read.c (potable): align should be nbytes, not ptwo!
4813 * write.c (write_object_file): extra glue for new bss attributes
4814 (relax_segment): SEG_BSS is ok now
4815 * config/tc-m68k.c (m68k_ip_op): can now parse more @( modes
4816
4817 Mon Jul 6 17:09:32 1992 Steve Chamberlain (sac@cygnus.com)
4818
4819 * obj-coffbfd.c (fill_section): mark .lit sections as STYP_LIT
4820
4821 Mon Jun 1 16:20:22 1992 Michael Tiemann (tiemann@cygnus.com)
4822
4823 * configure.in: recognize m680x0 as having sun3 emulation mode for
4824 vxworks environment.
4825
4826
4827 Tue Jun 30 20:25:54 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
4828
4829 * Makefile.in: Add program_suffix (parallel to program_prefix)
4830
4831 Wed Jun 24 10:57:54 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4832
4833 * app.c (process_escape): new function to handle escapes the right
4834 way, (do_scrub_next_char): use new function
4835 * cond.c (s_ifdef): do ifdef/ifndef right
4836 * read.c (s_fill): make the , expressions optional like the doc
4837 says
4838 * config/tc-h8300.[ch]: better warnings
4839
4840 Tue Jun 9 07:54:54 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4841
4842 * subsegs.c (subsegs_begin): create bss0_frchainP in the same was
4843 as data0_frchainP
4844
4845 * write.c (write_object_file): various changes to handle data in
4846 the BSS segment in much the same was as stuff in the DATA segment.
4847
4848 * tc-m68k.c (m68kip): Fix typo so that only arch's >=68020 do
4849 pcrel data stuff. (md_estimate_size_before_relax): when relaxing a
4850 68010 bxx into a bra+6 jmpxx, put the bytes of the jmp opcode into
4851 the right place. (s_bss): Don't put .bss stuff into SEG_DATA, put
4852 it into SEG_BSS
4853
4854 Thu Jun 4 11:59:13 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4855
4856 * expr.c(expr): allow SEG_REGISTER in expressions.
4857 * read.c(pseudo_set): register expressions can be the source of a
4858 set.
4859 * subsegs.c (subseg_new): Now -R forces all changes to SEG_DATA to
4860 goto SEG_TEXT (if a.out)
4861 * write.c (write_object_file): If a.out don't use the old way for
4862 -R.
4863 * config/obj-a.out (s_sect): complain if the user tries to use a
4864 subsegment with a value which might interfere with out -R hackery.
4865 * config/tc-m68k.c (m68k_reg_parse): lookup names in symbol table
4866 rather than use ugly if tree. (init_regtable): insert register
4867 names into symbol table.
4868
4869 Tue Jun 2 16:47:09 1992 Steve Chamberlain (sac@cygnus.com)
4870
4871 * write.c (write_object_file): keep the fix_tail clean, which
4872 fixes a bug in -R where relocations were being lost.
4873
4874 Mon Jun 1 16:20:22 1992 Michael Tiemann (tiemann@cygnus.com)
4875
4876 * configure.in: recognize m680x0 as having sun3 emulation mode for
4877 vxworks environment.
4878
4879 Sun May 31 05:33:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
4880
4881 * configure.in: recognize m680x0 as an m68k
4882
4883 Thu May 28 11:22:02 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
4884
4885 * configure.in: Recognize sparclite as a sparc variant.
4886
4887 * tc-sparc.c: Use new ARCHITECTURES_CONFLICT_P macro. Mention new
4888 -Asparclite flag.
4889
4890 Tue May 26 16:47:56 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4891
4892 * config/tc-a29k.c: lint
4893 * listing.c, expr.c: patches from Andrew Smith
4894
4895 Thu May 14 17:22:48 1992 K. Richard Pixley (rich@rtl.cygnus.com)
4896
4897 * doc/Makefile.in: use m4 rather than gm4.
4898
4899 Mon May 4 18:56:19 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4900
4901 * obj-coffbfd.c: use is a synonym for section, (do_relocs_for):
4902 calc the base of relocs correctly.
4903 * tc-a29k.c (parse_operand): allow expressions to be in any section.
4904
4905 Mon Apr 27 13:13:31 1992 K. Richard Pixley (rich@cygnus.com)
4906
4907 * as.c, write.c: use -K rather than -k for the broken word warning
4908 option.
4909
4910 Tue Apr 21 13:35:30 1992 K. Richard Pixley (rich@cygnus.com)
4911
4912 * Makefile.in: do not print recursion lines.
4913
4914 Wed Apr 15 21:19:31 1992 K. Richard Pixley (rich@rtl.cygnus.com)
4915
4916 * Makefile.in: the tooldir copy of gas goes directly in tooldir.
4917
4918 Tue Apr 14 14:50:22 1992 Ken Raeburn (Raeburn@Cygnus.COM)
4919
4920 * write.c (write_object_file): For b.out format, round up section
4921 start addresses to match required alignment.
4922
4923 Thu Apr 9 05:45:29 1992 Ken Raeburn (Raeburn@Cygnus.COM)
4924
4925 * Makefile.in (install): Install into $(tooldir)/bin, since that's
4926 where gcc looks for it.
4927
4928 Tue Apr 7 15:12:15 1992 Sean Eric Fagan (sef@cygnus.com)
4929
4930 * Makefile.in: Changed some lines to be less confusing for some
4931 makes.
4932
4933 * input-file.c: Conditionalize on _IOFBF, not VMS.
4934
4935 * read.c, write.c: Change a series of ifdef/elif to
4936 ifdef/else/ifdef etc.
4937
4938 Fri Mar 27 12:21:16 1992 K. Richard Pixley (rich@cygnus.com)
4939
4940 * symbols.c (fb_label_init): fix sizeof to memset.
4941
4942 Fri Mar 13 15:45:44 1992 K. Richard Pixley (rich@cygnus.com)
4943
4944 * Makefile.in: install the man page.
4945
4946 * Makefile.in: pass down MAKEINFO explicitly on info.
4947
4948 * doc/Makefile.in: use $(MAKEINFO) not makeinfo.
4949
4950 Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4951
4952 * flonum-const.c: renamed flonum-konst.c to stop dos name
4953 conflict.
4954
4955 Thu Mar 12 04:42:38 1992 K. Richard Pixley (rich@cygnus.com)
4956
4957 * tc-m68k.h, te-sun3.h: moved LOCAL_LABELS_FB definition from
4958 tc-m68k.h to te-sun3.h.
4959
4960 Wed Mar 11 23:32:42 1992 K. Richard Pixley (rich@cygnus.com)
4961
4962 * configure.in: vxworks68 gets te-sun3.h.
4963
4964 * expr.c: remove limitation that local_labels_dollar or
4965 local_labels_fb must be < 10.
4966
4967 * symbols.c: remove local_labels_dollar, replace with a function
4968 interface for a sparse array. All users adjusted.
4969
4970 * te-sun3.h: add LOCAL_LABELS_DOLLAR.
4971
4972 Sat Mar 7 00:06:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
4973
4974 * doc/Makefile.in: commented out line for building as-all.texinfo.
4975 This is temporary.
4976
4977 * doc/as.texinfo, doc/as-all.texinfo: added menu item hooks.
4978
4979 Fri Mar 6 21:57:18 1992 K. Richard Pixley (rich@cygnus.com)
4980
4981 * Makefile.in: added check target.
4982
4983 Tue Mar 3 15:45:56 1992 K. Richard Pixley (rich@rtl.cygnus.com)
4984
4985 * Makefile.in: added tooldir and program_prefix.
4986
4987 Sun Mar 1 04:43:19 1992 Michael Tiemann (tiemann@cygnus.com)
4988
4989 * write.{c,h} (fix_new): Make these declarations consistent.
4990
4991 Sat Feb 29 13:59:10 1992 Michael Tiemann (tiemann@cygnus.com)
4992
4993 * Makefile.in (strerror.o): Add rule so that broken Sun make can
4994 work in subdirs.
4995
4996 Wed Feb 26 19:26:28 1992 Steve Chamberlain (sac at thepub.cygnus.com)
4997
4998 * read.c, obj-coffbfd.c : fix h8300 specific bit rot
4999
5000 * expr.c (operand): if can't work out what sort of operand it is,
5001 then look through FLT_CHARS for a hint.
5002
5003 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
5004
5005 * Makefile.in, configure.in: removed traces of namesubdir,
5006 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
5007 copyrights to '92, changed some from Cygnus to FSF.
5008
5009 * doc/Makefile.in, doc/configure.in: removed traces of namesubdir,
5010 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
5011 copyrights to '92, changed some from Cygnus to FSF.
5012
5013 Tue Feb 25 14:17:15 1992 Steve Chamberlain (sac at rtl.cygnus.com)
5014
5015 * expr.c: If an expression is single comma, then return with
5016 SEG_ABSENT rather than an error - since the sparc front end does
5017 really strange things with things like fbge,a
5018
5019 * as.h: include bfd.h if using many sections
5020 * expr.c: LOCAL_LABELS_FB had been changed to lower case - so
5021 local labels didn't work.
5022 * listing.c (list_symbol_table): don't core dump when there's no
5023 symbol there.
5024 * write.c, write.h: call fix_new with the right number of args on
5025 the H8.
5026 * config/tc-h8300.[ch] : fix bugs reported by HMSI, and make
5027 errors nices
5028
5029 Sat Feb 22 12:26:28 1992 Steve Chamberlain (sac at rtl.cygnus.com)
5030
5031 * app.c: MRI compatibility - allow single quote to start a string.
5032 * as.c: fix typo recently introduced.
5033 * as.h : Don't include aout/reloc.h - it's not right for COFF!
5034 * expr.c: Much rewriting, to accomodate MRI syntax for
5035 expressions. Also easier to read now.
5036 * listing.c: Put back defuns
5037 * read.c: modified to accept MRI syntax, put back listing pseudo
5038 ops so that an assembler built with NO_LISTING ignores list ops
5039 rather than pukes.
5040 * write.c, write.h: fixs - only keep a reloc type in a fix if the target
5041 machine is a SPARC or a 29K.
5042 * config/obj-aout.c: added s_sect pseudo op
5043 * config/obj-coffbfd.c: lints, set the filehdr flags right and
5044 fill in the timestamp.
5045 * config/obj-coffbfd.h: Since we don't include aout/reloc.h
5046 anymore, define all the relocs which the tc-<x> bit will use so we
5047 can translate from them to the coff types.
5048 * config/tc-a29k.c: reloc_type isn't ane enum any more
5049 * config/tc-m68k.c: Added NO_RELOC definition.
5050
5051 Fri Feb 21 06:21:07 1992 K. Richard Pixley (rich@rtl.cygnus.com)
5052
5053 * Makefile.in: put header files before C source for TAGS; remove
5054 references to non-existent syscalls.h.
5055
5056 * read.c, write.c subsegs.c: back out the .bss changes.
5057
5058 * obj-aout.c: do not include stab.gnu.h if NO_LISTING.
5059
5060 * tc-i860.c, a.out.gnu.h: move i860 relocs to a proper place.
5061
5062 * a.out.h: removed.
5063
5064 Fri Feb 21 01:08:48 1992 Minh Tran-Le (TRANLE@INTELLICORP.COM)
5065
5066 * symbols.c (local_label_name): symbols now start with ^A.
5067
5068 * read.c, subsegs.c, write.c obj-coff.c: added handling of
5069 `.bss` pseudo op for unitialized data. The new gcc (1.37.9x)
5070 generate these sections. .align: will use NOP_OPCODE or 0
5071 for padding. This is just for being nice to the
5072 disassembler.
5073
5074 * expr.c (operand): changed to generate local label "\001L0"
5075 starting with a ^A so that it is recognized as a local label.
5076
5077 * as.c (perform_an_assembly_pass): zero bss_fix_root, too.
5078
5079 * tc-i386.c: tc-i386.c: added handling of the following opcodes:
5080 i/o opcodes - inb, inw, outb and outw. string manipulation with
5081 att syntax - scmp, slod, smov, ssca, ssto.
5082
5083 * obj-coff.c: (for aix386) Moved the symbols .text, .data and .bss
5084 to just after .file .
5085
5086 In obj_crawl_symbol_chain() where it tries to put the external
5087 symbols apart, with the condition:
5088 (!S_IS_DEFINED(symbolP) &&
5089 !S_IS_DEBUG(symbolP) &&
5090 !SF_GET_STATICS(symbolP))
5091 it was moving too many symbols out. So I switch it back to the
5092 condition:
5093 (S_GET_STORAGE_CLASS(symbolP) == C_EXT && !SF_GET_FUNCTION(symbolP))
5094
5095 In obj_emit_relocations() added the conditional on KEEP_RELOC_INFO
5096 so that we don't use the F_RELFLG which make the linker complain
5097 that somebody has stripped the relocation info.
5098
5099 Also, the AIX ld program require that the relocation table
5100 is sorted by r_vaddr like the standard ATT assembler does.
5101
5102 [he also changed the sizeof(struct ...)'s into the coff
5103 style FOOSZ macros. I'm not sure this is right, but I can't
5104 remember why. xoxorich.]
5105
5106 Fri Feb 21 01:08:48 1992 K. Richard Pixley (rich@cygnus.com)
5107
5108 * Makefile.in, configure.in, doc: use the doc. Build it, install
5109 it, clean it, etc.
5110
5111 Tue Feb 18 02:21:25 1992 K. Richard Pixley (rich at cygnus.com)
5112
5113 * read.c: white space and comments only.
5114
5115 * configure.in: use the new atof-ns32.c for ns32k.
5116
5117 * write.c: comment change only.
5118
5119 * tc-m88k.[hc]: pulled in from hack's unfinished work. These
5120 aren't yet integrated.
5121
5122 * tc-i860.[hc]: blew off the dust. Something must still be done
5123 about conflicting relocation types.
5124
5125 * tc-ns32k.c: Replaced previous tc_aout_fix_to_chars stub with the
5126 real thing.
5127
5128 * tc-i960.c, tc-sparc.c: white space and comments only.
5129
5130 * tc-a29k.h: delete duplicate macro definition.
5131
5132 * new file atof-ns32k.c copied from hack's last unreleased gas.
5133
5134 Mon Feb 17 07:51:06 1992 K. Richard Pixley (rich at cygnus.com)
5135
5136 * config/tc-ns32k.c: actually make tc_aout_fix_to_chars work
5137 rather than abort.
5138
5139 * nearly everything. flush ChangeLog, package as gas-1.92.1.
5140 ChangeLog's prior to this are sketchy at best. I have logs.
5141 They just aren't ChangeLogs.
This page took 0.236564 seconds and 5 git commands to generate.