OSDN Git Service

6065375970c2e0e14b62fbf3ecb9071277f541d3
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 Mon Nov  2 07:52:28 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
2
3         * configure.in (DEFAULT_LINKER): renamed from LD
4         (DEFAULT_ASSEMBLER): renamed from AS; reverted Schwab's patch
5         (gcc_cv_as): try $DEFAULT_ASSEMBLER before $AS
6         * configure: rebuilt
7
8 Mon Nov  2 01:48:10 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
9
10         * BUGS: fix the regexp for `more' to find the appropriate node.
11         Reported by Joerg Pietschmann  <joerg_pietschmann@zkb.ch>
12
13         * BUGS: added link to the WWW FAQ
14
15 Sun Nov 1 18:27:15 PST 1998 Jeff Law  (law@cygnus.com)
16
17         * version.c: Bump for snapshot.
18
19 Sun Nov  1 11:04:32 1998  Jeffrey A Law  (law@cygnus.com)
20
21         * From Christian Gafton:
22         * i386/linux.h (CPP_PREDEFINES): Add -D__i386__.
23         * sparc/linux.h (CPP_PREDEFINES): Add -D__sparc__.
24         * sparc/linux64.h (CPP_PREDEFINES): Add -D__sparc__.
25
26 Sat Oct 31 21:42:39 1998  Mark Mitchell  <mark@markmitchell.com>
27
28         * c-common.c (c_get_alias_set): Allow all type-punning through
29         unions.  Don't get confused about the type of a bit-field, despite
30         the antics of build_modify_expr.
31
32 Sat Oct 31 22:35:29 1998  Jean-Pierre Radley <jpr@jpr.com>
33
34         * fixinc.sco: Paramaterize #include_next values.
35         * fixinc/fixinc.sco: Likewise.
36
37 Sat Oct 31 20:39:35 1998  Jeffrey A Law  (law@cygnus.com)
38
39         * toplev.c (rest_of_compilation): No longer set reload_completed.
40         * reload1.c (reload): Set it here.  Perform instruction splitting
41         after reload has completed if we will be running the scheduler
42         again.
43
44 Sat Oct 31 12:30:02 1998  Jeffrey A Law  (law@cygnus.com)
45
46         * jump.c (jump_optimize): Initialize mappings from INSN_UID to
47         EH region if exceptions are enabled and we're performing cross
48         jump optimizations.
49         (find_cross_jump): Exit loop if the insns are in different EH regions.
50
51 Sat Oct 31 10:02:48 1998  Mark Mitchell  <mark@markmitchell.com>
52
53         * dwarf2out.c (output_call_frame_info): Use
54         ASM_OUTPUT_DWARF_DELTA4 for the CIE offset to match frame.c.
55
56 Sat Oct 31 10:23:14 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
57
58         Reinstall Apr 24th fix, lost during May 6th gcc2 merge:
59         * c-common.c (check_format_info): Don't check for the 'x'
60         format character twice, instead check for 'x' and 'X'
61
62 Fri Oct 30 14:50:25 1998  Jeffrey A Law  (law@cygnus.com)
63
64         * configure.in (assembler features): Also make gas is configured if
65         we find it in the souce tree.
66
67 Fri Oct 30 13:23:20 1998  Richard Henderson  <rth@cygnus.com>
68
69         * i386.c (i386_comp_type_attributes): Compare whether the 
70         attributes are defined, not their tree nodes.
71
72 Fri Oct 30 11:39:47 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
73
74         * configure.in (gxx_include_dir): bitten by autoconf quoting
75         characters :-(
76         * configure: rebuilt
77
78 Fri Oct 30 10:43:29 1998  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
79
80         * configure.in: Ignore non-absolute value in $AS.
81
82 Fri Oct 30 00:54:25 1998  Peter Jakubek <pjak@snafu.de>
83
84         * m68k.h (INDIRECTABLE_1_ADDRESS_P): Fix thinko.
85
86 Fri Oct 30 00:42:34 1998  Mark Elbrecht <snowball3@usa.net>
87
88         * configure.in (msdosdjgpp): Set exeext and target_alias.
89
90 Thu Oct 29 23:55:43 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
91
92         * flow.c (XNMALLOC): New macro.
93         (flow_int_list_blocks, basic_block_succ, basic_block_pred): New
94         static variables.
95         (add_edge, add_edge_to_label): New static functions.
96         (free_bb_memory): New function.
97         (flow_delete_insn): Delete function.
98         (basic_block_drops_in): Delete variable.
99         (find_basic_blocks): Allocate and initialize basic_block_head,
100         basic_block_succ.  Don't allocate basic_block_drops_in.
101         Call free_bb_memory at the beginning.
102         (find_basic_blocks_1): Don't do multiple passes.
103         Delete code to compute basic_block_drops_in.
104         After calling make_edges, mark blocks reached by current block live.
105         Update test for unreachable live blocks.
106         (mark_label_ref): Delete args X, CHECKDUP.  Add PRED arg.  All callers
107         changed.
108         Simplify to call add_edge_to_label when a LABEL_REF is found.
109         (make_edges): Simplify to call add_edge_to_label instead of
110         mark_label_ref most of the time.
111         Compute here whether control drops into the next block.
112         (delete_unreachable_blocks): Return void.  All callers changed.
113         Delete unreachable blocks in reverse order.
114         After deleting all unreachable blocks, renumber the remaining ones
115         and update n_basic_blocks.
116         (delete_block): Speed up deletion a bit.
117         Don't set basic_block_drops_in for deleted blocks.
118         (free_basic_block_vars): Don't free basic_block_drops_in.
119         (life_analysis_1): Update to use new edge representation.
120         (dump_flow_info): Delete code to print basic block info; call
121         dump_bb_data instead.
122         (compute_preds_succs): Delete code to recompute basic_block_drops_in
123         and uid_block_number.
124         Simply copy the previously computed cfg.
125         (dump_bb_data): New arg LIVE_INFO.  All callers changed.
126         Print register lifetime information if LIVE_INFO is nonzero.
127         * basic-block.h (dump_bb_data): Adjust prototype.
128         * gcse.c (gcse_main): Update call to dump_bb_data.
129         * rtl.h (free_bb_memory): Declare.
130         * toplev.c (rest_of_compilation): Call free_bb_memory.
131
132         * reload1.c (struct elim_table): Delete MAX_OFFSET member.
133         (update_eliminable_offsets): Don't compute it.
134         (set_initial_elim_offsets): Don't initialize it.
135         Break out some code into set_initial_label_offsets so the rest of
136         this function can be called from reload_as_needed.
137         Assume that INITIAL_FRAME_POINTER_OFFSET is defeined when
138         ELIMINABLE_REGS isn't.
139         (set_initial_label_offsets): New function, broken out of
140         set_initial_elim_offsets.
141         (set_offsets_for_label): New function, broken out of set_label_offsets
142         and reload_as_needed.
143         (reload): Call the two new functions.
144         (reload_as_needed): Call set_initial_elim_offsets instead of
145         duplicating the code.  Likewise for set_offsets_for_label.
146
147         * reload1.c (choose_reload_regs): Fix typo in Oct 17 change.
148         (emit_reload_insns): Ensure that when we set reg_reloaded_valid for
149         any hard reg, reg_reloaded_dead contains valid data.
150
151 Thu Oct 29 22:30:54 1998  Marcus Meissner <Marcus.Meissner@informatik.uni-erlangen.de>
152
153         * i386.c (i386_comp_type_attributes): Return nonzero for mismatched
154         "stdcall" and "cdecl" attributes.
155
156 Thu Oct 29 19:05:17 1998  Jim Wilson  <wilson@cygnus.com>
157
158         * sched.c (update_flow_info): Add code to ! found_orig_dest case to
159         handle deleted no-op moves of hard registers.
160         * haifa-sched.c (update_flow_info): Likewise.
161
162 Thu Oct 29 18:07:47 1998  Jeffrey A Law  (law@cygnus.com)
163
164         * mips.md (reload_{in,out}{si,di}): Emit a USE of HILO at the end
165         of the sequences to reload the HILO register which do not actually
166         reference HILO.
167
168 Thu Oct 29 12:39:35 1998  Jim Wilson  <wilson@cygnus.com>
169
170         * c-common.c (c_get_alias_set): Handle ARRAY_REF of union field.
171
172 Thu Oct 29 14:10:22 EST 1998  Andrew MacLeod  <amacleod@cygnus.com>
173
174         * except.c (emit_eh_context): Make the EH context register stay alive
175         at -O0 so stupid.c doesn't get confused.
176
177 1998-10-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
178
179         * emit-rtl.c (try_split): Do not try to split a BARRIER.
180
181 Thu Oct 29 01:33:54 1998  Jan Hubicka <hubicka@freesoft.cz>
182                           Jeffrey A Law  (law@cygnus.com)
183
184         * i386.md: Change ix86_cpu == PROCESSOR_PENTIUM to TARGET_PENTIUM
185         (zero_extendsidi2): Use # in output template and handle completely by
186         splits.
187         (zero_extend splitters): New define_splits.
188         (ashiftrt_32): New pattern.
189
190 Wed Oct 28 22:58:35 1998  Jason Merrill  <jason@yorick.cygnus.com>
191
192         * tree.c (append_random_chars): New fn.
193         (get_file_function_name_long): Use it.
194
195 Wed Oct 28 22:27:05 1998  Richard Henderson  <rth@cygnus.com>
196
197         * Makefile.in (cc1): Put C_OBJS, and thence @extra_c_objs@ last.
198         (LIBCPP_OBJS): New.  Add cppulp.o.
199         (cppmain, fix-header): Depend on and use libcpp.a.
200         * configure.in (extra_c_objs, extra_cxx_objs): Use libcpp.a instead
201         of the individual object files.
202         * objc/Make-lang.in (cc1obj): Put OBJC_OBJS, and thence @extra_c_objs@,
203         last.
204
205         * cccp.c (user_label_prefix): New.
206         (main): Set it off -f*leading-underscore.
207         (special_symbol): Use it.
208         * cpplib.c (special_symbol): Likewise.
209         (cpp_handle_option): Handle -f*leading-underscore.
210         * cppulp.c: New file.
211
212         * output.h (user_label_prefix): Declare it.
213         * dwarf2out.c (ASM_NAME_TO_STRING): Prepend user_label_prefix.
214         * toplev.c (f_options, main): Handle -f*leading-underscore.
215
216         * defaults.h (ASM_OUTPUT_LABELREF): Use asm_fprintf instead of
217         referencing USER_LABEL_PREFIX directly.
218         * config/nextstep.h (ASM_OUTPUT_LABELREF): Likewise.
219         * m32r/m32r.h (ASM_OUTPUT_LABELREF): Likewise.
220         * final.c (asm_fprintf): Use user_label_prefix instead.
221         * arm/thumb.c (thumb_print_operand): Likewise.
222
223         * gcc.c (default_compilers): Pass -f*leading-underscore on to
224         cpp wherever appropriate.
225
226 Wed Oct 28 23:09:25 1998  Robert Lipe  <robertl@dgii.com>
227
228         * sco5.h (SUBTARGET_SWITCHES): Add documentation for OpenServer-
229         specific compiler switches.
230
231 Wed Oct 28 21:05:53 1998  Jeffrey A Law  (law@cygnus.com)
232
233         * Makefile.in (c-common.o): Depend on c-pragma.h.  Use $(RTL_H) instead
234         of rtl.h.
235
236 Wed Oct 28 20:52:47 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
237
238         * gcc.c (EXTRA_SPECS, extra_specs): Introduce an intermediate
239         structure which has exactly the members provided by EXTRA_SPECS.
240         Xmalloc() the real `extra_specs', and initialize it from this
241         intermediate structure.
242
243         * alpha.h (EXTRA_SPECS): Revert change for missing initializers.
244
245         * mips.h  (EXTRA_SPECS): Likewise.
246
247         * sparc.h (EXTRA_SPECS): Likewise.
248
249 Wed Oct 28 16:46:07 1998  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
250     
251         * function.c (purge_addressof_1): Instead of aborting when a
252         bitfield insertion as a replacement for (MEM (ADDRESSOF)) does not
253         work just put the ADDRESSOF on stack.  Otherwise remember all such
254         successfull replacements, so that exactly the same replacements
255         can be made on the REG_NOTEs.  Remove the special case for CALL
256         insns again.
257         (purge_addressof_replacements): New variable.
258         (purge_addressof): Clear it at end.
259
260 1998-10-28 16:10 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
261
262          * c-lang.c: Declare extern char *yy_cur if USE_CPPLIB.
263            (lang_init): Call check_newline always.
264          * c-lex.c (init_parse) [USE_CPPLIB=1]: After calling
265            cpp_start_read, set yy_cur and yy_lim to read from
266            parse_in.token_buffer, so that we'll see the first #line
267            directive.
268          * cpplib.c (cpp_start_read): finclude the main input file
269            before processing -include/-imacros.  Process -imacros and
270            -include separately, and handle -include by stacking a
271            buffer for the file in question as if it'd been #included.
272          * toplev.c (documented_lang_options) Recognize -H when
273            USE_CPPLIB is on.
274
275 1998-10-28 16:09 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
276
277          * cpplib.c: Merge do_once into do_pragma.  Break file handling
278            code out of do_include.
279            Move append_include_chain, deps_output,
280            file_cleanup, redundant_include_p, import_hash,
281            lookup_import, add_import, read_filename_string, read_name_map,
282            open_include_file, finclude, safe_read to cppfiles.c.
283            Move prototypes for deps_output, append_include_chain,
284            finclude to cpplib.h.  Move definition of struct
285            file_name_list there also.
286
287          * cppfiles.c: New file.  Contains all the above functions
288            broken out of cpplib.c; also hack_vms_include_specification
289            from cccp.c and find_include_file, a new function broken out of
290            do_include.
291
292          * Makefile.in (cppmain): Depend on cppfiles.o.
293            (fix-header): Likewise.
294            (cppfiles.o): New target.
295          * configure.in (--enable-c-cpplib): Add cppfiles.o to
296            extra_c_objs.  Add ../cppfiles.o to extra_cxx_objs.
297
298 Wed Oct 28 14:06:49 1998  Jim Wilson  <wilson@cygnus.com>
299
300         * dwarfout.c (dwarfout_file_scope_decl): If DECL_CONTEXT, don't abort
301         if pending_types is non-zero.
302         (dwarfout_finish): Verify pending_types is zero before finishing.
303
304 Wed Oct 28 10:29:09 1998  Nick Clifton  <nickc@cygnus.com>
305
306         * expr.c (convert_move): Use shifts to perform the move if a
307         suitable extend pattern cannot be found.  Code written by
308         Richard Henderson <rth@cygnus.com>.
309
310 Wed Oct 28 03:59:29 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
311
312         * regclass.c (renumber, regno_allocated): New static variables, moved
313         out of allocate_reg_info.
314         (allocate_reg_info): Move these two variables outside the function.
315         Move code to free memory into new function free_reg_info.
316         (free_reg_info): New function, broken out of allocate_reg_info.
317         * toplev.c (compile_file): Call free_reg_info, not allocate_reg_info.
318         * rtl.h (allocate_reg_info): Don't declare.
319         (free_reg_info): Declare.
320
321         * final.c (cleanup_subreg_operands):  ASM_INPUTs need no treatment.
322
323 Wed Oct 28 02:38:12 1998  Jason Merrill  <jason@yorick.cygnus.com>
324
325         * toplev.c (compile_file): Temporarily revert last change.
326
327 Wed Oct 28 00:00:35 1998  Jason Merrill  <jason@yorick.cygnus.com>
328
329         * c-typeck.c (convert_for_assignment): Parenthesize.
330
331 1998-10-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
332
333         * reload1.c (delete_output_reload): Avoid ambigous else.
334
335 Wed Oct 28 00:10:35 1998  Jeffrey A Law  (law@cygnus.com)
336
337         * toplev.c (compile_file): Call allocate_reg_info to free register
338         table memory.
339         * rtl.h (allocate_reg_info): Declare.
340
341         * PROJECTS: Remove entry for local spilling.
342
343         * final.c (cleanup_subreg_operands): New function.
344         (final_scan_insn): Use it.
345         (alter_subreg): Clear the "used" field when we turn a SUBREG into
346         a REG.
347         * reload1.c (reload): Delete CLOBBER insns and also cleanup SUBREG
348         operands when reload has finished.
349         * reload.h (cleanup_subreg_operands): Declare..
350         * flow.c (life_analysis_1): No longer delete CLOBBER insns after
351         reload.  Handled in reload itself.
352
353 Tue Oct 27 23:32:34 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
354
355         * reload1.c (verify_initial_offsets): New function.
356         (reload): Call it after reload_as_needed.  Also verify that the frame
357         size stays constant during reload_as_needed.
358         * i386.h (CONST_DOUBLE_OK_FOR_LETTER_P): Undo Jul 26 change.
359
360         * reload.h (struct insn_chain): Add need_operand_change element.
361         * reload1.c (new_insn_chain): Clear it.
362         (calculate_needs_all_insns): Set it; don't overload need_reload.
363         (reload_as_needed): Use it.
364
365         * reload.c (find_reloads_address): Use BASE_REG_CLASS instead of
366         reload_address_base_reg_class throughout.  Similar for INDEX_REG_CLASS
367         and reload_address_index_reg_class.
368         (find_reloads_address_1): Likewise.
369         * reload.h (reload_address_base_reg_class,
370         reload_address_index_reg_class): Don't declare.
371         * reload1.c (reg_old_renumber, pseudo_previous_regs,
372         pseudo_forbidden_regs, bad_spill_regs_global): New static variables.
373         (used_spill_regs): Now static.
374         (reload_address_base_reg_class, reload_address_index_reg_class,
375         regs_explicitly_used, counted_for_groups, counted_for_nongroups,
376         basic_block_needs, max_needs, group_size, group_mode, max_groups,
377         max_nongroups, max_needs_insn, max_groups_insn, max_nongroups_insn,
378         forbidden_regs):
379         Deleted variables.
380         (init_reload): Delete code to compute base/index reg classes.
381         (reload): Delete variable J.
382         Delete code to manage basic_block_needs.
383         Don't compute regs_explicitly_used.
384         Allocate, initialize and free reg_old_renumber, pseudo_forbidden_regs,
385         pseudo_previous_regs.
386         Initialize bad_spill_regs_global.
387         Don't call order_regs_for_reload here.
388         Don't initialize spill_reg_order and n_spills.
389         Don't forbid explicitly used regs to be used for spill regs.
390         Change main loop to infinite loop, with explicit break statements.
391         Make SOMETHING_CHANGED variable local to that loop.
392         Don't initialize max_needs, max_groups, max_nongroups, max_needs_insn,
393         max_groups_insn, max_nongroups_insn, group_size, group_mode.
394         Make sure spilled_speudos is cleared before calling spill_hard_reg or
395         new_spill_reg.
396         Don't call dump_needs.
397         Delete code to reset potential_reload_regs.
398         Delete code to terminate loop conditional on the global needs variables
399         showing no further needs.
400         (calculate_needs_all_insns): Return void.  All callers changed.
401         Initialize somehing_needs_elimination here, not in reload.
402         Delete avoid_return_reg kludge.
403         (calculate_needs): Lose AVOID_RETURN_REG and GLOBAL args, return void.
404         All callers changed.
405         Initialize the group_mode and group_size elements of the arg CHAIN.
406         Delete code to manage basic_block_needs.
407         Operate on elements of CHAIN instead of global variables.
408         Delete avoid_return_reg kludge.
409         (find_tworeg_group): Lose GLOBAL arg, take CHAIN arg, return void.
410         All callers changed.
411         Operate on elements of CHAIN instead of global variables.
412         Delete special SMALL_REGISTER_CLASSES code.
413         Delete spill_failure code; now in new_spill_reg.
414         (find_group): Lose GLOBAL arg, take CHAIN arg, return void.
415         All callers changed.
416         Operate on elements of CHAIN instead of global variables.
417         (maybe_mark_pseudo_spilled): New static function.
418         (find_reload_regs): Lose GLOBAL arg, take CHAIN arg, return void.
419         All callers changed.
420         Operate on elements of CHAIN instead of global variables.
421         Call order_regs_for_reload here, not in reload.
422         Initialize spill_reg_order and n_spills.
423         Simplify test whether an asm insn is involved.
424         Delete spill_failure code; now in new_spill_reg.
425         Call maybe_mark_pseudo_spilled for everything marked as live in
426         CHAIN.  Merge CHAIN's used_spill_regs into the global variable
427         used_spill_regs.
428         (dump_needs): Take CHAIN arg.  No longer static, to prevent the
429         compiler from optimizing this function (now unused) away.
430         Operate on elements of CHAIN instead of global variables.
431         (possible_group_p): Lose MAX_GROUPS arg, take CHAIN arg.  All callers
432         changed.
433         Operate on elements of CHAIN instead of global variables.
434         (count_possible_groups): Lose GROUP_SIZE, GROUP_MODE, MAX_GROUPS args,
435         take CHAIN arg.  All callers changed.
436         Operate on elements of CHAIN instead of global variables.
437         (new_spill_reg): Lose MAX_NEEDS, MAX_NONGROUPS, GLOBAL args, take
438         CHAIN, NONGROUP args.  Return void.  All callers changed.
439         Verify caller isn't trying to spill a pseudo.
440         Simplify test for illegal reg, just use bad_spill_regs.
441         Generate better error messages.
442         Operate on elements of CHAIN instead of global variables.
443         Mark spilled register in CHAIN's used_spill_regs element.
444         Don't call spill_hard_reg.
445         (spill_hard_reg): Lose GLOBAL arg, return void.  All callers changed.
446         Mark spilled hard regs in bad_spill_regs_global.
447         Mark affected pseudos in spilled_pseudos, but don't spill them.
448         (ior_hard_reg_set): New static function.
449         (finish_spills): Return int.  All callers changed.
450         Compute spill_reg_order, n_spills and spill_regs here.  Also update
451         regs_ever_live for regs used as spills.
452         For every pseudo in spilled_pseudos, spill it and mark the previous
453         hard reg it had in pseudo_previous_regs.  Compute which hard regs
454         arseudo): New static function.
455         (order_regs_for_reload): Take CHAIN arg.  All callers changed.
456         Initialize bad_spill_regs from bad_spill_regs_global, then merge any
457         hard registers explicitly used across the current insn into the set.
458         Compute hard_reg_n_uses taking only pseudos live across this insn
459         into account.
460         Tweak sorting of potential_reload_regs.
461         (compare_spill_regs): Delete function.
462         (reload_as_needed): Don't sort the spill_regs array, it's computed
463         in proper order in finish_spills.
464         Delete avoid_return_reg kludge.
465         Delete code to manage basic_block_needs.
466         (allocate_reload_reg): Minor speed/readability tweaks.
467         Operate on elements of CHAIN instead of global variables.
468         (choose_reload_regs): Lose AVOID_RETURN_REG arg.  All callers changed.
469         Delete avoid_return_reg kludge.
470         Initialize reload_reg_used from CHAIN's used_spill_regs element.
471         Delete unused label FAIL.
472         (reload_combine): Replce reload_address_index_reg_class with
473         INDEX_REGS.
474         Don't use used_spill_regs to determine information about lifetime of
475         hard regs.
476
477 Tue Oct 27 13:15:02 1998  Nick Clifton  <nickc@cygnus.com>
478         
479         * toplev.c (display_help): Ignore empty target specific
480         options, and if -W is also specified on the command line then
481         display undocumented options.
482
483         * config/arm/arm.c: Updated with changes in devo sources.
484         * config/arm/arm.h: Updated with changes in devo sources.
485         * config/arm/lib1funcs.asm: Updated with changes in devo sources.
486         * config/arm/lib1thumb.asm: Add ELF support.
487
488 Tue Oct 27 16:11:43 1998  David Edelsohn  <edelsohn@mhpcc.edu>
489         
490         * collect2.c (aix64_flag): New variable.
491         (main, case 'b'): Parse it.
492         (GCC_CHECK_HDR): object magic number must match mode.
493         (scan_prog_file): Only check for shared object if valid header.
494         Print debugging if header/mode mismatch.
495
496 Tue Oct 27 10:15:02 1998  Nick Clifton  <nickc@cygnus.com>
497
498         Added support for arm-elf-linux configuration, submitted by Philip
499         Blundell <pb@nexus.co.uk>, and integrated this with the arm-elf
500         code developed by Catherine Moore <clm@cygnus.com>.  The following
501         files are affected: 
502
503         * configure.in: Add arm-*-linux-gnu, armv2-*-linux and arm-*-elf
504         targets. 
505
506         * configure: Regenerated.
507         
508         * config/arm/aout.h: Add default definitions of REGISTER_PREFIX,
509         USER_LABEL_PREFIX and LOCAL_LABEL_PREFIX.  Make other macro
510         definitions conditional on their not having been already defined.
511
512         * config/arm/lin1funcs.asm: Add ELF only macros to generate .size
513         and .type directives, and add "(PLT)" qualification to function
514         calls.
515
516         * config/arm/linux.h: Deleted.  This file is now superceeded by
517         either linux-elf.h or linux-aout.h.
518
519         * config/arm/linux-gas.h: Define `inhibit_libc' if cross-compiling.
520         (CLEAR_INSN_CACHE): New macro, currently disabled (awaiting kernel
521         support).
522         Move definitions from old linux.h file here.
523         
524         * config/arm/elf.h: New file.  Generic ARM/ELF support.
525         
526         * config/arm/linux-aout.h: New file.  Support for Linux with a.out.
527         
528         * config/arm/linux-elf.h: New file.  Support for Linux with ELF.
529         
530         * config/arm/linux-elf26.h: New file.  Support for Linux with ELF
531         using the 26bit APCS.
532         
533         * config/arm/unknown-elf.h: New file.  Support for OS'es other
534         than Linux with ELF.
535
536         * config/arm/t-arm-elf: New file.  makefile fragment for arm-elf
537         builds.
538         
539         * config/arm/coff.h: Include aout.h for basic assembler macros.
540         Add support for -mstructure_size_boundary=<n> command line option.
541         
542         * config/arm/arm.h: Add support for -mstructure_size_boundary=<n>
543         command line option.  Make macro definitions conditional on their
544         not having been already defined. 
545
546         * config/arm/arm.c: Add support for -mstructure_size_boundary=<n>
547         command line option.
548
549         
550 Tue Oct 27 08:56:46 1998  Andrew MacLeod  <amacleod@cygnus.com>
551
552         * dwarfout.c (ASM_OUTPUT_DWARF_STRING_NEWLINE): ASM_OUTPUT_DWARF_STRING
553         has been changed to not include a newline. Use this macro instead.
554         (output_enumeral_list, const_value_attribute, name_attribute,
555         comp_dir_attribute, prototyped_attribute, producer_attribute,
556         inline_attribute, pure_or_virtual_attribute, output_inheritance_die,
557         dwarfout_file_scope_decl, generate_new_sfname_entry,
558         generate_macinfo_entry, dwarfout_init, dwarfout_finish): Use
559         ASM_OUTPUT_DWARF_STRING_NEWLINE macro.
560
561 Mon Oct 26 13:35:02 1998  Richard Henderson  <rth@cygnus.com>
562
563         * combine.c (subst): Process the inputs to a parallel asm_operands
564         only once.
565
566 Mon Oct 26 13:32:31 1998  Richard Henderson  <rth@cygnus.com>
567
568         * stmt.c (expand_asm_operands): Accept `=' or `+' at any position.
569
570 Mon Oct 26 12:53:14 1998  Jeffrey A Law  (law@cygnus.com)
571
572         * tm.texi (ASM_OUTPUT_MAX_SKIP_ALIGN): Document.
573
574 Mon Oct 26 00:36:58 PST 1998 Jeff Law  (law@cygnus.com)
575
576         * version.c: Bump for snapshot.
577
578 Sun Oct 25 23:36:52 1998  Jason Merrill  <jason@yorick.cygnus.com>
579
580         * stmt.c (expand_fixup): Set fixup->before_jump to a
581         NOTE_INSN_DELETED instead of a NOTE_INSN_BLOCK_BEG.
582
583 Sun Oct 25 15:49:57 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
584
585         * Makefile.in (recog.o): Depend on toplev.h.
586         (insn-emit.o): Depend on recog.h.
587         (insn-peep.o): Depend on recog.h and insn-config.h.
588
589         * combine.c (simplify_set): Remove unused variable `scratches'.
590
591         * final.c (final_scan_insn): Wrap declaration of variables `vlen'
592         and `idx' in macro conditional controlling their use.
593
594         * genemit.c (main): Make the generated output file include
595         recog.h.  Don't have it declare `insn_operand_constraint', since
596         we get it from recog.h.
597
598         * genpeep.c (main): Make the generated output file include
599         insn-config.h and recog.h.
600
601         * recog.c: Include toplev.h.
602         (extract_insn): Remove unused variable `p'.
603
604         * regclass.c (fix_register): Add missing braces around initializer
605         for `what_option'.
606         (allocate_reg_info): Move variable `i' into the scope where it is
607         used.  Change its type to `size_t'.
608
609 Sun Oct 25 13:10:15 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
610
611         * reload.c (push_reload): When merging reloads, make sure
612         that reload_in_reg and reload_in are from the same reload in
613         all cases.
614
615 Sun Oct 25 12:07:00 1998  Mumit Khan  <khan@xraylith.wisc.edu>
616
617         * i386/crtdll.h (CPP_PREDEFINES): Fix typo.
618         * i386/mingw32.h (CPP_PREDEFINES): Likewise.
619
620 Fri Oct 23 23:42:03 1998  David Edelsohn  <edelsohn@mhpcc.edu>
621
622         * loop.c (loop_has_tablejump): New variable.
623         (prescan_loop): Scan for it.
624         (insert_bct): Replace explicit scan with use of it.
625         * regclass.c (regclass): Restore loop variable j.
626         (record_reg_classes): Deterine op_types modifiers and initialize
627         classes[i] before matching constraints.  Handle matching
628         constraints 5-9.
629         
630 Fri Oct 23 13:55:48 1998  Jim Wilson  <wilson@cygnus.com>
631
632         * m32r/m32r.c (gen_split_move_double): Call alter_subreg.  Delete
633         subreg support.
634
635 Fri Oct 23 16:19:24 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
636
637         * mips.h (EXTRA_SPECS): Add missing initializers.
638
639 Fri Oct 23 16:08:39 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
640
641         * sparc.h (EXTRA_SPECS): Add missing initializers.
642         (sparc_defer_case_vector): Provide a prototype.
643
644         * svr4.h (ASM_OUTPUT_ASCII): Cast STRING_LIMIT to (long) when
645         comparing it to the result of a pointer subtraction.
646
647 Fri Oct 23 15:34:14 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
648
649         * alpha.c (override_options): Use ISDIGIT(), not isdigit().  Cast
650         the argument to (unsigned char).
651
652         * alpha.h (EXTRA_SPECS): Add missing initializers.
653         (ASM_GENERATE_INTERNAL_LABEL): Ensure the argument matches the
654         format specifier.
655
656 Fri Oct 23 13:12:35 1998  Jeffrey A Law  (law@cygnus.com)
657
658         * flow.c (life_analysis_1): Enable "rescan" code after reload.
659         (propagate_block): Delete dead code after reload.
660
661         * sched.c (update_flow_info): Revert Oct 19, 1998 change.  Brings
662         back Oct 15, 1998 change.  
663         * haifa-sched.c (update_flow_info): Likewise.
664         * flow.c (life_analysis_1): Delete CLOBBER insns after reload.
665
666         * mn10200.md (truncated shift): Accept constant inputs too.
667
668 Fri Oct 23 04:06:57 1998  Richard Earnshaw (rearnsha@arm.com)
669
670         * machmode.h (mode_mask_array): No longer const.
671         * rtl.c (init_rtl): Fully initialize it if EXTRA_CC_MODES defined.
672
673 Fri Oct 23 11:19:06 1998  Martin v. Löwis <loewis@informatik.hu-berlin.de>
674
675         * frame.c: Somewhat explain `FDE'.
676         Suggested by Brendan Kehoe
677
678 Fri Oct 23 00:56:11 1998  Jason Merrill  <jason@yorick.cygnus.com>
679
680         * expr.c (pending_chain): Move up.
681         (save_expr_status): Do save pending_chain.
682         (restore_expr_status): And restore it.
683         * function.h (struct function): Add pending_chain.
684
685 1998-10-23 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
686
687         * reorg.c (relax_delay_slots): Fixed test for mostly_true_jump. The
688         did not match the code.
689
690 Fri Oct 23 00:07:01 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
691
692         * regclass.c (regclass): Break out some code into new function
693         scan_one_insn, and into regclass_init.
694         (init_cost): New static variable, moved out of regclass.
695         (regclass_init): Initialize it here, not in .
696         (scan_one_insn): New static function, broken out of regclass.
697         * recog.c (apply_change_group): Break out some code into new
698         function insn_invalid_p.
699         (insn_invalid_p): New static fn, broken out of apply_change_group.
700
701 Thu Oct 22 22:34:42 1998  Jim Wilson  <wilson@cygnus.com>
702
703         * reload1.c (reload_as_needed): When rewrite POST_INC, verify
704         reg_reloaded_contents matches incremented pseudo.
705
706         * v850/v850.c (v850_reorg): Call alter_subreg.  Delete subreg support.
707
708 Fri Oct 23 11:11:56 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
709
710         * rtl.def (POST_MODIFY, PRE_MODIFY): New generalized operators for
711         addressing modes with side effects.  These are currently
712         placeholders for the C4x target.
713
714 Thu Oct 22 16:46:35 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
715
716         * loop.c (express_from): Make sure that when generating a PLUS of
717         a PLUS, any constant expression appears on the outermost PLUS.
718
719 Thu Oct 22 15:46:23 1998  Per Bothner (bothner@cygnus.com)
720
721         * Makefile.in (distdir-cvs, distdir-start):  Clean up so it
722         works if "$(srcdir)" != ".".
723
724 Wed Oct 21 19:23:59 1998  Jim Wilson  <wilson@cygnus.com>
725
726         * expmed.c (store_bit_field): If need to add a SUBREG, then remove
727         existing SUBREG if we can, otherwise abort.
728
729 Wed Oct 21 09:58:51 1998  Mark Mitchell  <mark@markmitchell.com>
730
731         * c-common.c (c_apply_type_quals_to_decl): Don't crash when
732         `restrict' is applied to a non-pointer variable.
733
734 Wed Oct 21 09:18:58 1998  Mark Mitchell  <mark@markmitchell.com>
735
736         * invoke.texi: Document -flang-isoc9x.
737
738         * Makefile.in (OBJS): Add splay-tree.o.
739         (c-common.o): Depend on rtl.h.
740         (splay-tree.o): List dependencies and provide build rule.
741         
742         * rtl.h (record_alias_subset): New function.
743         * alias.c: Include splay-tree.h.
744         (alias_set_entry): New type.
745         (CHECK_ALIAS_SETS_FOR_CONSISTENCY): Remove.
746         (DIFFERENT_ALIAS_SETS_P): Use mem_in_disjoint_alias_sets_p.
747         (mems_in_disjoin_alias_sets_p): New function.
748         (alias_set_compare): Likewise.
749         (insert_subset_children): Likewise.
750         (get_alias_set_entry): Likewise.
751
752         * tree.h (TYPE_RESTRICT): New macro.
753         (TYPE_UNQUALIFIED): New manifest constant.
754         (TYPE_QUAL_CONST): Likewise
755         (TYPE_QUAL_VOLATILE): Likewise.
756         (TYPE_QUAL_RESTRICT): Likewise.
757         (tree_type): Add restrict_flag.  Reduce count of free bits.
758         (DECL_POINTER_ALIAS_SET): New macro.
759         (DECL_POINTER_ALIAS_SET_KNOWN_P): Likewise.
760         (tree_decl): Add pointer_alias_set.
761         (build_qualified_type): New function.
762         (build_type_variant): Define in terms of build_qualified_type.
763         * tree.c (set_type_quals): New function.
764         (make_node): Initializae DECL_POINTER_ALIAS_SET.
765         (build_type_attribute_variant): Use build_qualified_type and
766         set_type_quals.
767         (build_type_variant): Rename, and modify, to become...
768         (build_qualified_type): New function.
769         (build_complex_type): Use set_type_quals.
770
771         * c-tree.h (C_TYPE_OBJECT_P): New macro.
772         (C_TYPE_FUNCTION_P): Likewise.
773         (C_TYPE_INCOMPLETE_P): Likewise.
774         (C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
775         (c_apply_type_quals_to_decl): New function.
776         (c_build_qualified_type): New function.
777         (c_build_type_variant): Define in terms of c_build_qualified_type.
778         (flag_isoc9x): Declare.
779         * c-typeck.c (qualify_type): Use c_build_qualified_type.
780         (common_type): Change to use TYPE_QUALS.
781         (comptypes): Likewise.
782         (convert_for_assignment): Likewise.
783         * c-aux-info.c (gen_type): Likewise.  Deal with `restrict'.
784         * c-decl.c (flag_isoc9x): Define.
785         (c_decode_option): Handle -flang-isoc9x.
786         (grokdeclarator): Update to handle restrict.  Use TYPE_QUALS,
787         c_build_qualified_type, etc.  Use c_apply_type_quals_to_decl.
788         * c-lex.c (init_lex): Deal with restrict.
789         (init_lex): Don't treat restrict as a reserved word in
790         -traditional mode, or without -flang-isoc9x.
791         * c-lex.h (rid): Add RID_RESTRICT.
792         * c-parse.gperf (restrict, __restrict, __restrict__): Make
793         equivalent to RID_RESTRICT.
794         * c-parse.in (TYPE_QUAL): Update comment.
795         * c-common.c: Include rtl.h.
796         (c_find_base_decl): New function.
797         (c_build_type_variant): Rename, and modify, to become ...
798         (c_build_qualified_type): New function.
799         (c_apply_type_quals_to_decl): Likewise.
800         (c_get_alias_set): For INDIRECT_REFs, check to see if we can find
801         a particular alias set for the reference.
802         * toplev.c (documented_lang_options): Add -flang-isoc9x.
803
804 Wed Oct 21 09:15:06 1998  Nick Clifton  <nickc@cygnus.com>
805
806         * config/arm/arm.h (TARGET_SWITCHES): Document arm specific
807         command line switches.
808
809 Tue Oct 20 10:04:51 1998  Graham  <grahams@rcp.co.uk>
810
811         * reload.c (loc_mentioned_in_p): Add missing braces to bind
812         else to correct if.
813
814 Mon Oct 19 16:34:05 1998  Tom Tromey  <tromey@cygnus.com>
815
816         * gcc.c (option_map): Added --classpath and --CLASSPATH.
817
818 Tue Oct 20 10:59:02 1998  Gavin Romig-Koch  <gavin@cygnus.com>
819
820         * regclass.c (fix_register): Add error message.
821         * invoke.texi (-fcall-used-REG,-fcall-saved-REG): Note the
822           new error message.
823
824 Tue Oct 20 10:12:17 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
825
826         * c-decl.c (warn_missing_noreturn): New global variable.
827         (c_decode_option): Check for new flags -W{no-}missing-noreturn.
828         (finish_function): Implement missing noreturn warning.
829
830         * c-tree.h (warn_missing_noreturn): Declare extern.
831
832         * invoke.texi: Document new flags.
833
834         * toplev.c (documented_lang_options): Add description.
835
836 Tue Oct 20 22:16:11 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
837
838         * config/c4x/c4x.c (c4x_parallel_process): Disable until BCT
839         loop optimization stable for the C4x.
840         (c4x_rptb_info_t, c4x_dump, c4x_rptb_in_range, c4x_rptb_unjumped_loop,
841         c4x_rptb_find_comp_and_jump, c4x_rptb_loop_info_get,
842         c4x_rptb_emit_init, c4x_rptb_process): Deleted (superceded by BCT
843         loop optimization).
844         (c4x_address_conflict): Be more paranoid when packing a volatile
845         memref in a parallel load/store.
846
847 Tue Oct 20 21:56:05 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
848
849         * config/c4x/c4x.md (repeat_block_top, repeat_block_end,
850         repeat_block_filler): Deleted.
851         (*ashlqi3_set, *ashrqi3_const_set, *ashrqi3_nonconst_clobber):
852         Condition code not set if destination register from 'c' class.
853         (*subbqi3_carry_clobber): Fix typo.
854
855 1998-10-18 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
856
857         * reorg.c (steal_delay_list_from_target) Check for insns that
858         modify the condition codes and effect the direction of the jump
859         in the sequence.
860
861 Sat Oct 17 13:09:09 1998  Graham  <grahams@rcp.co.uk>
862
863         * function.c (purge_addressof_1): Replace call to
864         emit_insns_before() with emit_insn_before().
865
866 Mon Oct 19 19:34:03 1998  Mike Stump <mrs@wrs.com>
867
868         * libgcc2.c (__pure_virtual): Call __terminate instead of _exit.
869
870 Mon Oct 19 13:26:24 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> 
871
872         * jump.c (sets_cc0_p): Compile only if HAVE_cc0.
873
874 Mon Oct 19 11:40:56 1998  Jeffrey A Law  (law@cygnus.com)
875
876         * gcse.c (compute_hash_table): Correctly identify hard regs which are
877         clobbered across calls.
878
879         * loop.c (scan_loop): Be more selective about what invariants are
880         moved out of a loop.
881
882 Mon Oct 19 10:46:58 PDT 1998 Jeff Law  (law@cygnus.com)
883
884         * version.c: Bump for snapshot.
885
886 Mon Oct 19 11:40:56 1998  Jeffrey A Law  (law@cygnus.com)
887
888         * libgcc2.c (eh_context_static): Do not call malloc to allocate the
889         static eh_context structure.
890
891 Mon Oct 19 10:45:40 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> 
892
893         * combine.c (recog_for_combine): Lose PADDED_SCRATCHES arg.  All
894         callers changed.
895         (try_combine): Don't update max_scratch.
896         * flow.c (max_scratch, num_scratch): Delete variables.
897         (life_analysis_1): Don't initialize max_scratch.
898         (propagate_block): Don't update max_scratch.
899         (mark_set_1): Don't increment num_scratch.
900         * regs.h (max_scratch): Delete declaration.
901
902 Mon Oct 19 10:28:15 1998  Jeffrey A Law  (law@cygnus.com)
903
904         * reload1.c (reload_reg_free_before_p): Hack.  Return 0 if EQUIV
905         is nonzero.  This is temporary!
906
907         * sched.c (update_flow_info): Handle death notes made invalid by
908         instruction splitting.  Partially reverts Oct 15, 1998 patch.
909         * haifa-sched.c (update_flow_info): Likewise.
910
911 Sun Oct 18 17:31:26 1998  Jeffrey A Law  (law@cygnus.com)
912
913         * function.c (uninitialized_vars_warning): Do not warn for a VAR_DECL
914         if it has a nonzero DECL_INITIAL.
915
916 Sat Oct 17 23:18:08 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
917
918         * Makefile.in (flow.o): Depend on recog.h.
919
920         * cpplib.h (directive_table): Add missing initializiers.
921         (finclude): Change type of variable `bsize' to size_t.
922         
923         * cse.c (rtx_cost): Mark parameter `outer_code' with ATTRIBUTE_UNUSED.
924
925         * dwarfout.h (dwarfout_label): Wrap prototype in macro RTX_CODE.
926
927         * fix-header.c (lookup_std_proto): Cast the result of `strlen' to
928         `int' when comparing against one.
929         (cpp_file_line_for_message): Mark parameter `pfile' with
930         ATTRIBUTE_UNUSED.
931         (cpp_fatal): Mark parameter `pfile' with ATTRIBUTE_UNUSED.
932
933         * flow.c: Include recog.h.
934         (sbitmap_copy): Cast arguments 1 & 2 of `bcopy' to (PTR).
935
936         * function.c (thread_prologue_and_epilogue_insns): Mark parameter
937         `f' with ATTRIBUTE_UNUSED.
938         (reposition_prologue_and_epilogue_notes): Likewise.
939
940         * genopinit.c (gen_insn): Cast argument of ctype functions to
941         `unsigned char'.
942
943         * haifa-sched.c: Include recog.h.
944         (blockage_range): Cast result of UNIT_BLOCKED macro to (int) when
945         comparing against one.
946
947         * libgcc2.a (__throw): Revert ATTRIBUTE_UNUSED change for now.
948
949         * mips-tfile.c (parse_end): Cast the argument of ctype function to
950         `unsigned char'.
951         (parse_ent): Likewise.
952         (parse_input): Likewise.
953
954         * optabs.c (init_libfuncs): Likewise.
955
956         * protoize.c (find_rightmost_formals_list): Likewise.
957
958         * recog.h (const_double_operand): Fix typo in prototype.
959
960         * tlink.c (scan_linker_output): Cast the argument of ctype
961         function to `unsigned char'.
962
963         * toplev.c (check_lang_option): Cast the result of `strlen' to
964         `int' when comparing against one.
965
966 Sat Oct 17 13:09:09 1998  Graham  <grahams@rcp.co.uk>
967
968         * gcse.c (dump_cuid_table): Correct typo.
969
970 Sat Oct 17 11:02:47 1998  Nick Clifton  <nickc@cygnus.com>
971
972         * toplev.c (display_help): Prepend '-m' to target specific
973         options. 
974         (check_lang_option): Ignore text after end of first word of a
975         language specific option.
976
977 Sat Oct 17 02:26:03 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> 
978
979         * reload1.c (reg_used_by_pseudo): New static variable.
980         (choose_reload_regs): Initialize it.
981         Use it instead of testing spill_reg_order to determine whether a
982         pseudo is live in a hard register across the current insn.
983         Fix a typo in a reference to reload_reg_rtx.
984
985         * flow.c (propagate_block): Replace code that computes and uses
986         regs_sometimes_live with simpler code that just walks the set of
987         currently live registers.
988
989         * Makefile.in (insn-extract.o): Fix dependencies.
990         * genextract.c (main): Generate includes for insn-config.h and
991         recog.h.
992         Delete generation of declarations which are now in recog.h.
993         * genrecog.c (main): Delete generation of definitions which are
994         now in recog.c.
995         * local-alloc.c (block_alloc): Use extract_insn and the variables
996         it sets up instead of looking up values by insn_code.
997         * recog.c (recog_operand, recog_operand_loc, recog_dup_loc,
998         recog_dup_num): Define here instead of generating the definition in
999         genrecog.c.
1000         (recog_n_operands, recog_n_dups, recog_n_alternatives,
1001         recog_operand_mode, recog_constraints, recog_operand_address_p):
1002         New variables.
1003         (extract_insn): New function.
1004         * recog.h (extract_insn): Declare function.
1005         (which_alternative, recog_n_operands, recog_n_dups,
1006         recog_n_alternatives, recog_operand_mode, recog_constraints,
1007         recog_operand_address_p): Declare variables.
1008         * regclass.c (n_occurrences): New static function.
1009         * reload.c (n_occurrences): Delete function.
1010         (find_reloads): Use extract_insn.
1011         * reload.h (n_occurrences): Delete declaration.
1012
1013 Sat Oct 17 01:17:51 1998  Jeffrey A Law  (law@cygnus.com)
1014
1015         * reload1.c (reload_as_needed): Fix test for when to call
1016         update_eliminable_offsets.
1017
1018 Fri Oct 16 20:40:50 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
1019
1020         Fix consistency problems with reg_equiv_{mem,address};
1021         Improve reload inheritance;
1022
1023         * reload.c (reload_out_reg): New variable.
1024         (loc_mentioned_in_p, remove_address_replacements): New functions.
1025         (remove_replacements): Deleted.
1026         (push_reload): Set reload_out_reg[i].
1027         When merging, also set reload_{in,out}_reg[i], and remove
1028         duplicate address reloads.
1029         (combine_reloads): Copy reload_out_reg[i].
1030         (find_reloads): Do make_memloc substitution also when
1031         reg_equiv_memory_loc[regno] and num_not_at_initial_offset
1032         are both nonzero.
1033         Include *recog_operand_loc in commutativity operand changes.
1034         Generate optional output reloads.
1035         Delete reference to n_memlocs.  Don't set *recog_operand_loc before
1036         processing operands.  Call make_memloc in reg_equiv_address code.
1037         Set *recog_operand_loc only after processing operands, and only
1038         if replace is true.  Return a value.
1039         When changing address reload types for operands that didn't get
1040         reloaded, use RELOAD_FOR_OPADDR_ADDRESS for
1041         RELOAD_FOR_INPADDR_ADDRESS / RELOAD_FOR_OUTADDR_ADDRESS reloads.
1042         Don't emit USEs for pseudo SUBREGs when not replacing.
1043         (find_reloads_address): Do make_memloc substitution also when
1044         reg_equiv_memory_loc[regno] and num_not_at_initial_offset
1045         are both nonzero.
1046         (find_reloads_toplev): Likewise.
1047         Call make_memloc in reg_equiv_address code.
1048         (debug_reload_to_stream): Add code to output reload_out_reg.
1049         (make_memloc): Delete local variable i, ifdefed out code, and
1050         references to memlocs and n_memlocs.
1051         (memlocs, n_memlocs): Delete.
1052         (push_secondary_reload): Clear reload_out_reg.
1053         (find_reloads_address_1): Provide memrefloc argument to all calls
1054         to find_reloads_address.
1055         In AUTO_INC code, handle non-directly addressable equivalences properly.
1056         * reload.h (reload_out_reg, num_not_at_initial_offset): Declare.
1057         (find_reloads): Add return type.
1058         (remove_address_replacements, deallocate_reload_reg): Declare.
1059         * reload1.c (num_not_at_initial_offset): No longer static.
1060         (delete_address_reloads, delete_address_reloads_1): Likewise.
1061         (deallocate_reload_reg): New function.
1062         (spill_reg_stored_to): New array.
1063         (eliminate_regs): Don't substitute from reg_equiv_memory_loc.
1064         (eliminate_regs_in_insn): Move assignments of previous_offset and
1065         max_offset fields, and recalculation of num_not_at_initial_offset
1066         into new static function:
1067         (update_eliminable_offsets) .
1068         (reload_as_needed): Call update_eliminable_offsetss after calling
1069         find_reloads.
1070         Call forget_old_reloads_1 with contents of reloaded auto_inc
1071         expressions if the actual addressing can't be changed to match the
1072         auto_inc.
1073         (choose_reload_regs): For inheritance, replace
1074         reload_reg_free_before_p test with reload_reg_used_at_all test, and
1075         remove stand-alone reload_reg_used_at_all test.
1076         Use reload_out_reg to determine which reload regs have output reloads.
1077         Treat reload_override_in more similar to inherited reloads.
1078         Handle (subreg (reg... for inheritance.
1079         For flag_expensive_optimizations, add an extra pass to remove
1080         unnecessary reloads from known working inheritance.
1081         Delete obsolete code for pseudos replaced with MEMs.
1082         Handle inheritance from auto_inc expressions.
1083         (emit_reload_insns): If reload_in is a MEM, set OLD to 
1084         reload_in_reg[j].
1085         Don't reload directly from oldequiv; if it's a pseudo with a
1086         stack slot, use reload_in[j].
1087         Check that reload_in_reg[j] is a MEM before replacing reload_in
1088         from reg_reloaded_contents.
1089         Include non-spill registers in reload inheritance processing.
1090         Also try to use reload_out_reg to set spill_reg_store /
1091         reg_last_reload_reg.
1092         In code to set new_spill_reg_store, use single_set to find out if
1093         there is a single set.
1094         Add code that allows to delete optional output reloads.
1095         Add code to allow deletion of output reloads that use no spill reg.
1096         At the end, set reload_override_in to oldequiv.
1097         Also call delete_output_reload if reload_out_reg is equal to old
1098         in oldequiv code.
1099         Add code to call delete_output_reload for stores with no matching load.
1100         Set / use spill_reg_stored_to.
1101         Handle case where secondary output reload uses a temporary, but
1102         actual store isn't found.
1103         When looking for a store of a value not loaded in order to call
1104         delete_output_reload, count_occurences should return 0 for no
1105         loads; but discount inherited input reloadill_reg_stored_to.
1106         Do checks for extra uses of REG.  Changed all
1107         callers.
1108         Use delete_address_reloads.
1109         (reload): Take return value of find_reloads into account.
1110         If a no-op set needs more than one reload, delete it.
1111         (reload_reg_free_before_p): RELOAD_FOR_INPUT
1112         can ignore RELOAD_FOR_INPUT_ADDRESS / RELOAD_FOR_INPADDR_ADDRESS
1113         for the same operand.
1114         (clear_reload_reg_in_use): Check for other reloads that keep a
1115         register in use.
1116         (reload_reg_free_for_value_p): handle RELOAD_FOR_OPERAND_ADDRESS /
1117         RELOAD_FOR_OPADDR_ADDR.
1118         Take into account when an address address reload is only needed
1119         for the address reload we are considering.
1120         (count_occurrences): Use rtx_equal_p for MEMs.
1121         (inc_for_reload): Return instruction that stores into RELOADREG.
1122         New argument two, IN, and rtx.  Changed all callers.
1123         (calculate_needs_all_insns, reload_as_needed):
1124         Don't clear after_call for a CLOBBER.
1125         Keep track of how many hard registers need to be copied from
1126         after_call, and don't clear after_call before we have seen
1127         that much copies, or we see a different instruction.
1128
1129 Fri Oct 16 10:58:23 1998  Jeffrey A Law  (law@cygnus.com)
1130
1131         * flow.c (find_basic_blocks_1): Do not delete unreachable blocks
1132         after reload has completed.
1133
1134 Fri Oct 16 17:26:10 1998  Dave Brolley  <brolley@cygnus.com>
1135
1136         * cpplib.c (cpp_get_token): Replace whitespace that occurs between
1137         a macro name and the next token with a single blank if that whitespace
1138         is in a macro buffer and the next token is not '('.
1139
1140 Fri Oct 16 15:44:02 1998  Dave Brolley  <brolley@cygnus.com>
1141
1142         * cccp.c (rescan): Handle multibyte chartacters ending in backslash.
1143         (rescan): Ditto.
1144         (skip_if_group): Ditto.
1145         (skip_to_end_of_comment): Ditto.
1146         (macarg1): Ditto.
1147         (discard_comments): Ditto.
1148         (change_newlines): Ditto.
1149
1150 Fri Oct 16 15:26:24 1998  Dave Brolley  <brolley@cygnus.com>
1151
1152         * c-lex.c (yylex): Fix unaligned access of wchar_t.
1153
1154 Fri Oct 16 10:47:53 1998  Nick Clifton  <nickc@cygnus.com>
1155
1156         * config/arm/arm.h (TARGET_SWITCHES): Add --help documentation.
1157         (TARGET_OPTIONS): Add --help documentation.
1158
1159 Fri Oct 16 11:49:01 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1160
1161         * rtl.h (sets_cc0_p): Revert Oct 14 ATTRIBUTE_NORETURN change.
1162
1163 Fri Oct 16 07:08:46 1998  Bruce Korb <korb@datadesign.com>
1164         
1165         * fixinc/* Moved in from ../contrib directory in preparation
1166         for integrating it into the normal build process.  In particular,
1167         fixinc/Makefile.in must be config-ed into the build directory
1168         as fixinc/Makefile.  Proposed patches to ./Makefile.in and
1169         ./configure.in will be "in the mail" momentarily.
1170
1171 Fri Oct 16 08:13:46 1998  David S. Miller  <davem@pierdol.cobaltnet.com>
1172
1173         * cse.c (cse_basic_block): Fixup hash flushing loop so we do not
1174         accidently walk into the free list.  Comment how that can happen.
1175         (invalidate): Fix indentation.
1176
1177 Thu Oct 15 23:53:29 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1178                          Jeffrey A Law  (law@cygnus.com)
1179
1180         * flow.c (life_analysis_1): Do not clobber regs_ever_live after
1181         reload.  Never perform rescans of the insn chain after reload.
1182         (propagate_block): Do not delete insn or create new autoinc addressing
1183         modes after reload.
1184
1185         * jump.c (jump_optimize): Unconditionally use the code that was
1186         previously conditional on PRESERVE_DEATH_INFO_REGNO_P.
1187         * reload1.c (reload): When reloading is finished, delete all
1188         REG_DEAD and REG_UNUSED notes.
1189         (emit_reload_insns): Delete all code that was conditional on
1190         PRESERVE_DEATH_INFO_REGNO_P.
1191         (no_longer_dead_regs): Delete variable.
1192         (reload_cse_delete_death_notes): Delete function.
1193         (reload_cse_no_longer_dead): Delete function.
1194         (reload_cse_regs_1): Delete all code to handle deletion of death
1195         notes.
1196         (reload_cse_noop_set_p): Likewise.
1197         (reload_cse_simplify_set): Likewise.
1198         (reload_cse_simplify_operands): Likewise.
1199         (reload_cse_move2add): Likewise.
1200         * reorg.c (used_spill_regs): Delete declaration.
1201         (max_label_num_after_reload): Delete declaration.
1202         (find_dead_or_set_registers): Don't assume that spill regs are
1203         dead at a CODE_LABEL.
1204         * rtlanal.c (dead_or_set_regno_p): Death notes are always accurate,
1205         even after reload.
1206         * sched.c (sched_analyze_insn): Likewise.
1207         (update_flow_info): Likewise.
1208         * haifa-sched.c (sched_analyze_insn): Likewise.
1209         (update_flow_info): Likewise.
1210         * tm.texi (PRESERVE_DEATH_INFO_REGNO_P): Delete documentation.
1211         * toplev.c (max_label_num_after_reload): Delete variable.
1212         (rest_of_compilation): Don't set max_label_num_after_reload.
1213         Call life_analysis after reload_cse_regs if optimizing.
1214         * config/gmicro/gmicro.h: Delete comment referring to
1215         PRESERVE_DEATH_INFO_REGNO_P.
1216         * config/i386/i386.h: Likewise.
1217         * config/m88k/m88k.h: Likewise.
1218         * config/m32r/m32r.h (PRESERVE_DEATH_INFO_REGNO_P): Delete definition.
1219         * config/sh/sh.h: Likewise.
1220
1221 Thu Oct 15 19:48:41 1998  David Edelsohn  <edelsohn@mhpcc.edu>
1222
1223         * loop.c (strength_reduce): Restore marking bct_p as
1224         ATTRIBUTE_UNUSED.
1225         * rs6000.c (optimization_options): Change #ifdef HAIFA to
1226         HAVE_decrement_and_branch_on_count.
1227         (small_data_operand): Remove TARGET_ELF condition for marking
1228         parameters ATTRIBUTE_UNUSED.
1229         
1230 Thu Oct 15 11:45:51 1998  Robert Lipe  <robertl@dgii.com>
1231
1232         * config/i386/sco5.h (MAX_OFILE_ALIGNMENT):  Define.
1233         (SELECT_SECTION): Resync with svr4.h.
1234
1235 Thu Oct 15 12:42:13 1998  David Edelsohn  <edelsohn@mhpcc.edu>
1236
1237         * loop.c (strength_reduce): Undo Oct 14 change marking bct_p
1238         ATTRIBUTE_UNUSED.
1239
1240 Thu Oct 15 00:57:55 1998  Robert Lipe  <robertl@dgii.com>
1241
1242         * c-pragma.c (handle_pragma_token): Test for null tree before
1243         dereferencing TREE_CODE.
1244
1245 Thu Oct 15 17:36:48 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1246
1247         * config/c4x/c4x.c: Convert to use GEN_INT.
1248         (c4x_parallel_process): Rework to handle new repeat loop structure.
1249
1250         * config/c4x/c4x.md: Convert to use GEN_INT. 
1251         (rptb_end): Convert to use GE test.  Replace uses with clobbers.
1252         (decrement_and_branch_on_count): Likewise.
1253
1254         * config/c4x/c4x.h (REPEAT_BLOCK_PROCESS): Deleted hook now that
1255         loop.c has the desired functionality.
1256         (rc_reg_operand): New prototype.
1257
1258         * config/c4x/t-c4x: Can now build all front ends.
1259
1260 Wed Oct 14 23:27:08 1998  Didier FORT (didier.fort@fedex.com)
1261
1262         * fixincludes: Fix up rpc/{clnt,svr,xdr}.h for SunOS.
1263
1264 Wed Oct 14 22:13:28 1998  Joel Sherrill (joel@OARcorp.com)
1265
1266         * Makefile.in (stmp-fixinc): Do not install assert.h if not desired.
1267         * config/t-rtems: Do not install assert.h -- use newlib's.
1268
1269 Wed Oct 14 21:57:08 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
1270
1271         * combine.c (combine_instructions): When finished, call init_recog.
1272         * regmove.c (optimize_reg_copy_3): Reject volatile MEMs.
1273
1274 Wed Oct 14 16:10:22 1998  Per Bothner  <bothner@cygnus.com>
1275
1276         * toplev.c:  If flag_syntax_only, don't open or write assembler file.
1277
1278 Wed Oct 14 13:26:05 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1279
1280         * cppalloc.c (memory_full): Mark function prototype with
1281         ATTRIBUTE_NORETURN.
1282
1283         * demangle.h (collect_exit): Likewise.
1284
1285         * fix-header.c (v_fatal, fatal): Likewise.
1286
1287         * gcc.c (pfatal_with_name, pfatal_pexecute, fatal, fancy_abort):
1288         Likewise.
1289
1290         * gcov.c (print_usage): Likewise.
1291
1292         * genattr.c (fatal, fancy_abort): Likewise.
1293
1294         * genattrtab.c (fatal, fancy_abort): Likewise.
1295
1296         * gencodes.c (fatal, fancy_abort): Likewise.
1297
1298         * genconfig.c (fatal, fancy_abort): Likewise.
1299
1300         * genemit.c (fatal, fancy_abort): Likewise.
1301
1302         * genextract.c (fatal, fancy_abort): Likewise.
1303
1304         * genflags.c (fatal, fancy_abort): Likewise.
1305
1306         * genopinit.c (fatal, fancy_abort): Likewise.
1307
1308         * genoutput.c (fatal, fancy_abort): Likewise.
1309
1310         * genpeep.c (fatal, fancy_abort): Likewise.
1311
1312         * genrecog.c (fatal, fancy_abort): Likewise.
1313
1314         * libgcc2.c (__eprintf, __default_terminate, __sjthrow,
1315         __sjpopnthrow, __throw): Likewise.
1316
1317         * objc/objc-act.c (objc_fatal): Likewise.
1318
1319         * protoize.c (usage, aux_info_corrupted,
1320         declare_source_confusing): Likewise.
1321
1322         * rtl.c (dump_and_abort): Likewise.
1323
1324         * rtl.h (sets_cc0_p): Likewise.
1325
1326         * toplev.c (float_signal, pipe_closed): Likewise.
1327         
1328 1998-10-14  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1329
1330         * dwarf2out.c (expand_builtin_dwarf_reg_size): Look at all ranges
1331         when generating the decision tree for the general case.
1332
1333         * config/m68k/m68k.h (HARD_REGNO_MODE_OK): Don't accept modes
1334         wider that 12 bytes in fpu regs or wider than 8 byte in fpa regs.
1335
1336 Wed Oct 14 11:14:02 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1337
1338         * Makefile.in (sched.o): Depend on recog.h.
1339
1340         * alias.c (REG_BASE_VALUE): Cast the result of REGNO() macro to
1341         (unsigned) when comparing against one.
1342         (find_base_value): Likewise.
1343         (record_base_value): Cast variable `regno' to (unsigned) when
1344         comparing against one.  Cast the result of REGNO() macro to
1345         (unsigned) when comparing against one.
1346         (memrefs_conflict_p): Change type of variables `r_x' and `r_y'  to
1347         unsigned.
1348         (init_alias_analysis): Add unsigned variable `ui'.  Use it as loop
1349         variable where an unsigned index is needed.
1350
1351         * caller-save.c (init_caller_save): Cast `-1' to (enum insn_code)
1352         before comparing against one.
1353
1354         * collect2.c: Add prototypes for functions `error', `fatal' and
1355         `fatal_perror'.  Make these functions take variable arguments
1356         instead of faking it with a fixed number of args.
1357         (write_c_file_stat): Cast the argument of ctype macro to (unsigned
1358         char).
1359
1360         * combine.c (can_combine_p): Mark parameter `pred' with
1361         ATTRIBUTE_UNUSED.
1362         (find_split_point): Cast variable `src' to (unsigned
1363         HOST_WIDE_INT) when comparing against one.
1364         (simplify_rtx): Cast 1 to (unsigned HOST_WIDE_INT) in shift.
1365         (simplify_logical): Likewise.
1366         (force_to_mode): Cast result of INTVAL() macro to (unsigned
1367         HOST_WIDE_INT) when comparing against one.  Cast 1 to (unsigned
1368         HOST_WIDE_INT) in shift.
1369         (simplify_and_const_int): Cast result of INTVAL() macro to
1370         `unsigned HOST_WIDE_INT' when comparing against one.
1371         (merge_outer_ops): Cast variable const0 to `unsigned
1372         HOST_WIDE_INT' when comparing against the result of
1373         GET_MODE_MASK() macro.
1374         (simplify_comparison): Likewise for variable `c0'.  Cast variable
1375         `const_op' to `unsigned HOST_WIDE_INT' when comparing against
1376         one.  Cast `1' to `unsigned HOST_WIDE_INT' in shift.  Cast the
1377         result of `GET_MODE_MASK()/2' to `HOST_WIDE_INT' when comparing
1378         against one.  Cast `1' to `unsigned HOST_WIDE_INT' in shift.  Cast
1379         result of INTVAL() macro to `unsigned HOST_WIDE_INT' when
1380         comparing against one.
1381         (distribute_notes): Wrap variable `cc0_setter' in macro `HAVE_cc0'.
1382
1383         config/mips/mips.c (gen_int_relational): Cast result of INTVAL()
1384         macro to `unsigned HOST_WIDE_INT' when comparing against one.
1385         (output_block_move): Cast `sizeof' expression to (int) when
1386         comparing against one.
1387         (function_arg): Cast BITS_PER_WORD to `unsigned' when comparing
1388         against one.
1389         (save_restore_insns): Cast `base_offset' to `long' to match format
1390         specifier in fprintf.
1391
1392         * config/mips/mips.h (Pmode): Cast the result of `Pmode' macro
1393         to `enum machine_mode'.
1394
1395         * flow.c (life_analysis_1): Remove unused variable `insn'.
1396
1397         * gcc.c (translate_options): Move variables `j' and `k' into the
1398         scope in which they are used.  Change their types to `size_t'.
1399         (set_spec): Cast the argument of ctype macro to `unsigned char'.
1400         (read_specs): Likewise.
1401         (process_command): Cast `sizeof' to (int) when comparing against one.
1402         (do_spec_1): Cast the argument of ctype macro to `unsigned char'.
1403         (handle_braces): Cast both sides of `==' expression to `long' to
1404         ensure sign matching.
1405         (main): Cast variable `i' to `int' when comparing against one.
1406
1407         * gcov-io.h (__fetch_long): Change type of parameter `bytes' from
1408         int to size_t.  Cast variable `i' to size_t when comparing against
1409         one.
1410
1411         * genattrtab.c (convert_set_attr_alternative): Remove unused
1412         parameter `insn_code'.  All callers changed.
1413         (convert_set_attr): Likewise.
1414
1415         * genrecog.c (add_to_sequence): Cast result of XVECLEN() macro to
1416         size_t when comparing against one.  Likewise for variable `len'.
1417
1418         * global.c (global_alloc): Cast variable `max_regno' to size_t
1419         when comparing against one.  Likewise for variable `max_allocno'.
1420
1421         * jump.c (sets_cc0_p): Mark parameter `x' with ATTRIBUTE_UNUSED.
1422
1423         * local-alloc.c (validate_equiv_mem_from_store): Mark parameter
1424         `set' with ATTRIBUTE_UNUSED.
1425         (find_free_reg): Cast `sizeof' expression to (int) when comparing
1426         against one.
1427
1428         * loop.c (count_loop_regs_set): Remove unused variable `dest'.
1429         (strength_reduce): Mark parameter `bct_p' with ATTRIBUTE_UNUSED.
1430         (get_condition): Cast variable `const_val' to `unsigned
1431         HOST_WIDE_INT' when comparing against one.  Cast unsigned
1432         expression to HOST_WIDE_INT when comparing against one.
1433         (insert_loop_mem): Mark parameter `data' with ATTRIBUTE_UNUSED.
1434         (load_mems_and_recount_loop_regs_set): Cast variable `nregs' to
1435         `unsigned' when comparing against one.
1436
1437         * protoize.c (is_id_char): Change type of parameter `ch' to
1438         unsigned char.
1439         (munge_compile_params): Cast argument of ctype macro to (const
1440         unsigned char).
1441         (process_aux_info_file): Cast variable `aux_info_size' to int when
1442         comparing against one.
1443         (forward_to_next_token_char): Cast argument of ctype macro to
1444         `const unsigned char'.
1445         (edit_formals_lists): Likewise.
1446         (find_rightmost_formals_list): Likewise.
1447         (add_local_decl): Likewise.
1448         (add_global_decls): Likewise.
1449         (edit_fn_definition): Likewise.
1450         (do_cleaning): Likewise.
1451         (scan_for_missed_items): Likewise.
1452         (edit_file): Cast variable `orig_size' to (int) when comparing
1453         against one.
1454         (main): Cast argument of ctype macro to `const unsigned char'.
1455
1456         * recog.c (const_int_operand): Mark parameter `mode' with
1457         ATTRIBUTE_UNUSED.
1458
1459         * regclass.c (record_reg_classes): Change type of variable `c' to
1460         `unsigned char'.  Cast `char' array index to `unsigned char'.
1461
1462         * reload.c (push_secondary_reload): Cast argument to
1463         REG_CLASS_FROM_LETTER() macro to `unsigned char'.
1464
1465         * reload1.c (calculate_needs): Cast `char' array index to
1466         `unsigned char'.
1467         (set_label_offsets): Change type of variable `i' to unsigned int.
1468         Cast result of XVECLEN() macro to unsigned when comparing against
1469         one.
1470         (mark_not_eliminable): Change type of variable `i' to unsigned.
1471         (order_regs_for_reload): Likewise.  Cast `max_regno' to unsigned
1472         when comparing against one.
1473         (reload_as_needed): Cast macro NUM_ELIMINABLE_REGS to (int) when
1474         comparing against one.
1475         (choose_reload_regs): Hide unused label `fail'.
1476         (reload_cse_simplify_operands): Cast `char' array index to
1477         `unsigned char'.
1478         (reload_combine_note_store): Mark parameter `set' with
1479         ATTRIBUTE_UNUSED.  Cast UNITS_PER_WORD to unsigned when comparing
1480         against one.
1481         (reload_cse_move2add): Remove unused variable `src2'.
1482
1483         * sched.c: Include recog.h.
1484         (sched_note_set): Remove unused parameter `b'.  All callers
1485         changed.
1486         (split_hard_reg_notes): Likewise for parameter `orig_insn'.
1487         (blockage_range): Cast result of UNIT_BLOCKED() macro to (int)
1488         when comparing against one.
1489
1490         * stupid.c (stupid_find_reg): Mark parameter `changes_size' with
1491         ATTRIBUTE_UNUSED.  Cast `sizeof' expression to (int) when
1492         comparing against one.
1493
1494         * unroll.c (precondition_loop_p): Remove unused parameter
1495         `loop_end'.  All callers changed.
1496
1497 Tue Oct 13 22:12:11 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1498
1499         * reload1.c (maybe_fix_stack_asms): New static function.
1500         (reload): Call it.
1501
1502         * reload.h (compute_use_by_pseudos): Declare.
1503
1504         * reload1.c (spilled_pseudos, insns_need_reload): New variables.
1505         (something_needs_reloads): Delete variable.
1506         (finish_spills): New function.
1507         (compute_use_by_pseudos): New function.
1508
1509         (delete_caller_save_insns): Lose argument FIRST.  All callers changed.
1510         Use the reload_insn_chain instead of walking the rtl directly.
1511
1512         (reload): Allocate and free spilled_pseudos.
1513         Ensure that all calls of spill_hard_reg are followed by a call to
1514         finish_spills.
1515         Use the insns_need_reload list instead of something_needs_reloads
1516         to find out if reload_as_needed must be called.
1517         Clear unused_insn_chains at the end.
1518
1519         (calculate_needs_all_insns): Lose FIRST parameter.  All callers
1520         changed.
1521         Delete code to keep track of current basic block.
1522         Walk reload_insn_chain instead of the rtl structure.  Build the
1523         insns_need_reload chain.
1524         Remember which insns need reloading/elimination by setting the
1525         appropriate fields in struct insn_chain, not by putting modes on the
1526         insn.
1527
1528         (calculate_needs): Lose THIS_BLOCK arg.  Accept arg CHAIN instead of
1529         arg INSN.  All callers changed.
1530         Delete declaration of struct needs.
1531         Don't set something_needs_reloads.
1532         Record insn needs in the CHAIN argument.
1533
1534         (spill_hard_reg): Record the affected pseudos in spilled_pseudos.
1535
1536         (reload_as_needed): Lose FIRST arg.  All callers changed.
1537         Walk the reload_insn_chain instead of the rtx structure.
1538         Delete code to keep track of current basic block.
1539         Rename one of the NEXT variables to OLD_NEXT.
1540
1541         (allocate_reload_reg): Accept arg CHAIN instead of arg INSN.  All
1542         callers changed.
1543         (choose_reload_regs): Likewise.
1544
1545         (emit_reload_insns): Replace INSN and BB args with arg CHAIN.  All
1546         callers changed.
1547         
1548         * caller-save.c (MOVE_MAX_WORDS): New macro.  Use it throughout
1549         instead of (MOVE_MAX / UNITS_PER_WORD) computation.
1550         (hard_regs_live, hard_regs_need_restore): Delete variables.
1551         (n_regs_saved): Now static.
1552         (referenced_regs, this_insn_sets): New variables.
1553
1554         (setup_save_areas): Restructure the code a bit.
1555
1556         (restore_referenced_regs): Delete function.
1557         (mark_referenced_regs): New function, similar to the old
1558         restore_referenced_regs, but mark registers in referenced_regs.
1559
1560         (clear_reg_live): Delete function.
1561         (mark_set_regs): Renamed from set_reg_live.  All callers changed.
1562         Only mark registers in this_insn_sets.
1563
1564         (save_call_clobbered_regs): Rework this function to walk the
1565         reload_insn_chain instead of using the list of instructions directly.
1566         Delete code to keep track of register lives, compute live regs on the
1567         fly from information in the chain.
1568         Instead of calling restore_referenced_regs, use mark_referenced_regs,
1569         then walk the set it computes and call insert_restore as appropriate.
1570
1571         (insert_restore): Lose INSN and BLOCK args.  Add CHAIN arg.  All
1572         callers changed.
1573         Restructure the code a bit.  Test hard_regs_saved instead of
1574         hard_regs_need_restore.
1575         (insert_save): Lose INSN and BLOCK args.  Add CHAIN and TO_SAVE
1576         args.  All callers changed.
1577         Restructure the code a bit.  Use TO_SAVE to determine which regs to
1578         save instead of more complicated test.
1579         (insert_one_arg): Lose INSN and BLOCK args.  Add CHAIN arg.  All
1580         callers changed.
1581         Create a new insn_chain structure for the new insn and place it
1582         into the chain.
1583
1584         * rtl.texi: Update documentation to reflect that reload no longer
1585         puts modes on the insns.
1586
1587 1998-10-14  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1588
1589         * function.c (purge_addressof_1): Force the first argument of a
1590         CALL insn to memory.
1591
1592 Wed Oct 14 00:38:40 1998  Jeffrey A Law  (law@cygnus.com)
1593
1594         * rtl.h: Delete duplicate prototypes.  Add some missing
1595         prototypes.
1596         * rtlanal.c: (for_each_rtx): Formatting tweak.
1597
1598 1998-10-13 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
1599
1600         * real.c (emdnorm and etoasc): Disable round to even for c4x target
1601         to be compatible with TI compiler.
1602
1603         * Makefile.in (USER_H): Add va-c4x.h to definition.
1604
1605 Tue Oct 13 23:03:37 1998  Richard Henderson  <rth@cygnus.com>
1606
1607         * function.c (purge_addressof_1): Fix typo in inequality: do
1608         bitfield optimization for equal mode sizes.
1609         * expmed.c (store_bit_field): Don't take subregs of subregs in
1610         the movstrict case.  Tidy a potential problem in the multi-word case.
1611         (extract_bit_field): Likewise.
1612
1613 Tue Oct 13 22:12:11 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1614
1615         * flow.c (find_basic_blocks): Emit NOPs after normal calls in this
1616         function.
1617         Compute max_uid_for_flow by calling get_max_uid after the scan.
1618         (find_basic_blocks_1): Don't emit NOPs here.
1619
1620 Tue Oct 13 22:05:49 1998  Richard Henderson  <rth@cygnus.com>
1621
1622         * alias.c (base_alias_check): Accept new args for the modes of the
1623         two references.  Use them to determine if an AND can overlap.  Update
1624         all callers.
1625         (memrefs_conflict_p): Assume sizes are aligned, and uses them
1626         to determine if an AND can overlap.
1627
1628 Tue Oct 13 17:51:04 1998  Jim Wilson  <wilson@cygnus.com>
1629
1630         * config/m68k/m68k.h (HARD_REGNO_MODE_OK): For FP regs, add REGNO >= 16
1631         check.  Add comment to document problems with TARGET_SUN_FPA version
1632         of this macro.
1633         * config/m68k/m68k.md (movxf+1): Support 'r'/'r' moves.
1634
1635 Tue Oct 13 17:46:18 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1636
1637         * Makefile.in (gencheck.o): Depend on gansidecl.h.
1638
1639         * c-common.c (print_char_table): Add missing initializers.
1640         (scan_char_table): Likewise.
1641         (time_char_table): Likewise.
1642
1643         * c-decl.c (c_decode_option): Mark parameter `argc' with
1644         ATTRIBUTE_UNUSED.
1645         (declare_parm_level): Mark parameter `definition_flag' with
1646         ATTRIBUTE_UNUSED.
1647
1648         * c-lex.c (readescape): Use `(unsigned)1' in shift.
1649         (yylex): Likewise.  Cast `sizeof' to an (int) when comparing
1650         against one.
1651
1652         * calls.c (store_one_arg): Remove unused parameter `fndecl'.  All
1653         callers changed.
1654         (emit_call_1): Mark parameters `fndecl' and `funtype' with
1655         ATTRIBUTE_UNUSED.
1656         (expand_call): Cast result of MIN() to (unsigned int) when
1657         comparing against an unsigned value.
1658
1659         * cccp.c (pcfinclude): Remove unused parameter `limit'.  All
1660         callers changed.
1661         (make_definition): Remove unused parameter `op'.  All callers
1662         changed.
1663         (create_definition): Cast REST_EXTENSION_LENGTH to (long) when
1664         comparing against the result of pointer arithmetic.
1665
1666         * config/mips/mips.h (FUNCTION_ARG_BOUNDARY): Cast to (unsigned)
1667         when comparing against one.
1668
1669         * dwarf2out.c (dwarf2out_frame_debug): Cast REGNO() and
1670         HARD_FRAME_POINTER_REGNUM to (unsigned) when comparing against
1671         one.
1672         (output_die): Move variable `i' into the scope in which it is
1673         used.  Change its type to `unsigned'.
1674         (output_die): Cast the result of `strlen' to (int) when passing it
1675         to ASM_OUTPUT_ASCII().
1676         (output_pubnames): Likewise.
1677         (output_line_info): Likewise.
1678
1679         * emit-rtl.c (global_rtl): Add missing initializers.
1680
1681         * explow.c (promote_mode): Mark parameter `for_call' with
1682         ATTRIBUTE_UNUSED.
1683
1684         * expmed.c (expand_shift): Cast the result of GET_MODE_BITSIZE to
1685         `unsigned HOST_WIDE_INT' when comparing against one.
1686         (synth_mult): Change type of variable `cost' to int.
1687         (emit_store_flag): Use `(unsigned HOST_WIDE_INT) 1' in shift.
1688
1689         * expr.c (copy_blkmode_from_reg): Cast BITS_PER_WORD to (unsigned)
1690         when comparing against one.
1691         (get_inner_reference): Change variable `alignment' to unsigned.
1692         (expand_expr): Cast the result of GET_MODE_ALIGNMENT to (unsigned
1693         int) when comparing against one.
1694         (expand_builtin_setjmp): Change type of variable `i' to size_t.
1695
1696         * fold-const.c (div_and_round_double): Cast BASE to
1697         (HOST_WIDE_INT) when comparing against one.
1698
1699         * gencheck.c: Include gansidecl.h.
1700         (main): Mark parameter `argv' with ATTRIBUTE_UNUSED.
1701
1702         * optabs.c (gen_cond_trap): Mark parameters `code', `op2' and
1703         `tcode' with ATTRIBUTE_UNUSED.
1704
1705         * real.c (edivm): Cast constant value to (unsigned long) in
1706         expression compared against an unsigned value.
1707
1708         * stmt.c (expand_return): Cast BITS_PER_WORD to (unsigned) when
1709         comparing against one.
1710         (expand_end_case): Cast CASE_VALUES_THRESHOLD to (unsigned int)
1711         when comparing against one.
1712
1713         * stor-layout.c (mode_for_size): Cast MAX_FIXED_MODE_SIZE to
1714         (unsigned int) when comparing against one.  Likewise for
1715         GET_MODE_BITSIZE.
1716         (smallest_mode_for_size): Likewise.
1717         (save_storage_status): Mark parameter `p' with ATTRIBUTE_UNUSED.
1718         (restore_storage_status): Likewise.
1719         
1720         * toplev.c (debug_args): Add missing initializer.
1721         (f_options): Spelling correction.  Add missing initializers.
1722         (documented_lang_options): Likewise.
1723         (debug_end_source_file): Mark parameter `lineno' with
1724         ATTRIBUTE_UNUSED.
1725
1726         * tree.c (valid_machine_attribute): Mark parameters `attr_args',
1727         `decl' and `type' with ATTRIBUTE_UNUSED.
1728
1729         * varasm.c (decode_reg_name): Cast `sizeof' expression to (int)
1730         when comparing against one.
1731         (assemble_variable): Mark parameter `top_level' with
1732         ATTRIBUTE_UNUSED.
1733         (assemble_external_libcall): Mark parameter `fun' with
1734         ATTRIBUTE_UNUSED.
1735         (output_constant_pool): Mark parameters `fnname' and `fndecl' with
1736         ATTRIBUTE_UNUSED.
1737
1738 Tue Oct 13 12:51:04 1998  Nick Clifton  <nickc@cygnus.com>
1739
1740         * config/v850/lib1funcs.asm (_udivsi3): Add .type declaration.
1741         Replace use of r5 with use of r19.
1742
1743         * config/v850/v850.h (LINK_POINTER_REGNUM): Define.
1744
1745         * config/v850/v850.c (compute_register_save_size): Allow for the
1746         fact that helper functions save all registers, not just those used
1747         by the function.
1748         
1749         Replace constant 31 with macro LINK_POINTER_REGNUM.
1750
1751         * config/v850/v850.md: Use 'indirect_operand' rather than
1752         'memory_operand' for bit test/set/clear patterns.
1753
1754 Tue Oct 13 11:49:14 1998  Jason Merrill  <jason@yorick.cygnus.com>
1755
1756         * mips/iris6.h (ASM_OUTPUT_WEAK_ALIAS): Call ASM_GLOBALIZE_LABEL.
1757         * varasm.c (assemble_start_function et al): Don't call
1758         ASM_GLOBALIZE_LABEL for weak symbols.
1759
1760 Tue Oct 13 11:37:45 1998  Nick Clifton  <nickc@cygnus.com>
1761
1762         * cse.c (equiv_constant): Check for NULL return from
1763         gen_lowpart_if_possible().
1764
1765 Tue Oct 13 11:24:51 1998  Jeffrey A Law  (law@cygnus.com)
1766
1767         * mn10200.md (addsi3, subsi3, negsi2): Only allow register operands.
1768
1769         * collect2.c (main): Pass -EL/-EB through to the compiler.
1770
1771 1998-10-12 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
1772         
1773         * expr.c (push_block): Handle targets where the stack grows
1774         to higher addresses, but args grow to lower addresses and
1775         ACCUMULATE_OUTGOING_ARGS is not defined.
1776
1777 Tue Oct 13 08:00:52 1998  Catherine Moore  <clm@cygnus.com>
1778
1779         * config/v850/v850.c (print_operand):  Extend meaning
1780         of 'c' operands to support .vtinherit.
1781
1782 Tue Oct 13 21:38:35 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1783
1784         * config/c4x/c4x.c:  Convert to gen_rtx_FOO.
1785         Added ATTRIBUTE_UNUSED to unused function arguments.
1786         (rc_reg_operand): New predicate.
1787         (c4x_rptb_insert): New function.
1788         (c4x_rptb_nop_p): Recognize modified rptb_top pattern.
1789         (c4x_optimization_options): New function.
1790
1791         * config/c4x/c4x.md: Convert to gen_rtx_FOO.
1792          (decrement_and_branch_on_count): New pattern.
1793          (rptb_top): Modified pattern to work with BCT optimization.
1794         
1795         * config/c4x/c4x.h (RC_REG): New register class.
1796         (rc_reg_operand): Define prototype.
1797         (IS_RC_REG): New macro.
1798         (IS_RC_OR_PSEUDO_REG): New macro.
1799         (IS_RC_OR_PSEUDO_REGNO): New macro.
1800         (OPTIMIZATION_OPTIONS): Define.
1801
1802 Mon Oct 12 19:57:34 1998  Jason Merrill  <jason@yorick.cygnus.com>
1803
1804         * collect2.c (extract_init_priority): No priority is 65535.
1805
1806 Mon Oct 12 12:10:37 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
1807         
1808         * Makefile.in (build_tooldir): new variable, same as old
1809         $(tooldir), but without depending on $(libdir)/$(unlibsubdir)
1810         (GCC_FOR_TARGET): add -B$(build_tooldir)/bin/
1811         (bootstrap, bootstrap2, bootstrap3, bootstrap4): ditto
1812         
1813         * configure.in (gxx_include_dir): set default based on unlibsubdir
1814         * Makefile.in (tooldir): ditto
1815         (cccp.o, cpplib.o): use unlibsubdir implicitly through
1816         gxx_include_dir, includedir and tooldir
1817         (protoize.o, unprotoize.o): ditto
1818         
1819 Mon Oct 12 10:50:44 1998  Nick Clifton  <nickc@cygnus.com>
1820
1821         * config/arm/arm.md: Replace (reg 24) with (reg:CC 24).
1822
1823         * config/arm/thumb.c (thumb_override_options): Add warning about
1824         PIC code not being supported just yet.
1825
1826 Sun Oct 11 16:49:15 EDT 1998  John Wehle  (john@feith.com)
1827
1828         * flow.c: Update comment.
1829         (notice_stack_pointer_modification): New static function.
1830         (record_volatile_insns): Use it.
1831         (mark_regs_live_at_end): Mark the stack pointer as alive
1832         at the end of the function if current_function_sp_is_unchanging
1833         is set.
1834         (life_analysis_1): Set current_function_sp_is_unchanging.
1835         * function.c: Define it.
1836         (init_function_start): Initialize it.
1837         * output.h: Declare it.
1838         * reorg.c (fill_simple_delay_slots, dbr_schedule): Mark
1839         the stack pointer as alive at the end of the function if
1840         current_function_sp_is_unchanging is set.
1841         * i386.c (ix86_epilogue): Optimize the restoring
1842         of the stack pointer.
1843
1844 Mon Oct 12 01:22:53 PDT 1998 Jeff Law  (law@cygnus.com)
1845
1846         * version.c: Bump for snapshot.
1847
1848 Sun Oct 11 23:04:30 1998  Robert Lipe  <robertl@dgii.com>
1849
1850         * c-pragma.c (handle_pragma_token): If passed a token instead
1851         of a tree, use that as the pack value.
1852
1853 Sun Oct 11 14:21:14 1998  Mark Mitchell  <mark@markmitchell.com>
1854
1855         * flow.c (find_basic_blocks_1): Fix prototype.
1856
1857 Sun Oct 11 05:03:41 1998  Ken Raeburn  <raeburn@cygnus.com>
1858
1859         * tree.h (DECL_NO_CHECK_MEMORY_USAGE): New macros.
1860         (struct tree_decl): New fields no_check_memory_usage.
1861         * c-common.c (enum attrs): Add A_NO_CHECK_MEMORY_USAGE.
1862         (init_attributes): Register it as a new attribute.
1863         (decl_attributes): Set flags on functions given that attribute.
1864         * c-decl.c (duplicate_decls): Merge new attribute.
1865         * expr.h (current_function_check_memory_usage): Declare new var.
1866         * calls.c, expr.c, function.c, stmt.c, alpha.c, clipper.c, m88k.c,
1867         pa.c, sparc.c: Replace uses of flag_check_memory_usage with
1868         current_function_check_memory_usage.
1869         * function.h: Add field to struct function.
1870         * function.c (current_function_check_memory_usage): Define it.
1871         (push_function_context_to, pop_function_context_from): Save and
1872         restore it.
1873         (expand_function_start): Set it, based on global flag and function
1874         attribute.
1875
1876         * expr.c (expand_expr, case VAR_DECL): In memory-checking code, do
1877         check non-automatic variables, to permit detection of writes to
1878         read-only locations in embedded systems without memory management.
1879         * calls.c (store_one_arg): Use ARGS_SIZE_RTX to get size of argument
1880         when emitting chkr_set_right_libfunc call, even if the argument is
1881         BLKmode or variable-sized; don't abort.
1882
1883         * optabs.c (init_optabs): Create Checker and __cyg_profile_*
1884         symbols in Pmode, not VOIDmode.
1885
1886 Sun Oct 11 01:03:05 1998  Zack Weinberg  <zack@rabi.phys.columbia.edu>
1887
1888         * cppexp.c: When forcing unsigned comparisons, cast both sides
1889         of the operation.
1890
1891         * cpphash.h: Move static declaration of hashtab[]...
1892         * cpphash.c: ...here.
1893
1894         * cpplib.c: Cast difference of two pointers to size_t before
1895         comparing it to size_t.  Cast signed to unsigned
1896         before comparing to size_t. (FIXME: struct argdata should use
1897         unsigned buffer sizes.)
1898         * cpplib.h (struct cpp_reader): Declare token_buffer_size as
1899         unsigned int. (CPP_WRITTEN): Cast return value to size_t.
1900         (CPP_RESERVE): Parenthesize N for evaluation order, cast to
1901         size_t before comparison.
1902
1903 Sun Oct 11 00:15:29 1998  Jeffrey A Law  (law@cygnus.com)
1904
1905         * flow.c (find_basic_blocks): Delete "live_reachable_p" argument.
1906         (find_basic_blocks_1): Similarly.
1907         * output.h (find_basic_blocks): Fix prototype.
1908         * gcse.c, toplev.c: Don't pass "live_reachable_p" argument to
1909         find_basic_blocks anymore.
1910
1911 Sat Oct 10 22:00:34 1998  Richard Henderson  <rth@cygnus.com>
1912
1913         * basic-block.h (EXECUTE_IF_SET_IN_SBITMAP): New macro.
1914         (sbitmap_free, sbitmap_vector_free): New macros.
1915         * output.h (rtl_dump_file): Declare.
1916
1917 Sat Oct 10 17:01:42 1998  Jeffrey A Law  (law@cygnus.com)
1918
1919         * regmove.c (optimize_reg_copy_3): Honor TRULY_NOOP_TRUNCATION.
1920
1921 Fri Oct  9 22:08:05 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1922
1923         * fp-bit.c (SFtype): Don't implicitly use int in declaration.
1924         (DFtype): Likewise.
1925         (_fpdiv_parts): Remove unused parameter `tmp', all callers changed.
1926         (divide): Remove unused variable `tmp'.
1927         (si_to_float): Cast numeric constant to (SItype) before comparing
1928         it against one.
1929
1930 Fri Oct  9 16:03:19 1998  Graham  <grahams@rcp.co.uk>
1931
1932         * flow.c (print_rtl_with_bb): Changed type of in_bb_p to match use.
1933         * gcc.c (add_preprocessor_option): Correct typo when allocating
1934         memory, sizeof() argument had one too many `*'.
1935         (add_assembler_option): Likewise.
1936         (add_linker_option): Likewise.
1937         * gcov.c (output_data): Likewise.
1938         * local-alloc.c (memref_used_between_p): Likewise.
1939         (update_equiv_regs): Likewise.
1940         * loop.c (strength_reduce): Likewise.
1941         * reg-stack.c (record_asm_reg_life): Likewise.
1942         (subst_asm_stack_reg): Likewise.
1943         * reorg.c (dbr_schedule): Likewise.
1944
1945 Fri Oct  9 15:57:51 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
1946
1947         * flow.c (life_analysis_1): Break out some functions.
1948         (find_basic_blocks_1): Likewise.  Also move some variables out and
1949         make them static.
1950         Rename NONLOCAL_LABEL_LIST arg to NONLOCAL_LABELS and initialize
1951         new static var nonlocal_label_list with it.
1952         (active_eh_region, nested_eh_region, label_value_list,
1953         nonlocal_label_list): New static variables.
1954         (make_edges, delete_unreachable_blocks, delete_block): New static
1955         functions, broken out of find_basic_blocks_1.
1956         (record_volatile_insns, mark_regs_live_at_end, set_noop_p,
1957         noop_move_p): New static functions, broken out of life_analysis_1.
1958
1959 Fri Oct  9 15:49:29 1998  Richard Henderson  <rth@cygnus.com>
1960
1961         * expmed.c (store_bit_field): Pun non-integral str_rtx modes.
1962         Take extra care for op0 now possibly being a subreg.
1963         (extract_bit_field): Likewise.
1964         * function.c (purge_addressof_1): Revert Oct 4 change.  Drop
1965         the reg to memory if there is no equal sized integral mode.
1966         * stor-layout.c (int_mode_for_mode): New function.
1967         * machmode.h: Prototype it.
1968
1969 Fri Oct  9 14:26:44 1998  Jeffrey A Law  (law@cygnus.com)
1970
1971         * global.c (build_insn_chain): Verify no real insns exist past the
1972         end of the last basic block, then exit the loop.
1973
1974 Fri Oct  9 11:44:47 1998  David Edelsohn  <edelsohn@mhpcc.edu>
1975
1976         * loop.c (insert_bct): Ensure loop_iteration_var non-zero before use.
1977
1978 Thu Oct  8 21:59:47 1998  Dave Brolley  <brolley@cygnus.com>
1979
1980         * emit-rtl.c (init_emit_once): Call INIT_EXPANDERS.
1981
1982 Thu Oct  8 22:03:45 1998  David Edelsohn  <edelsohn@mhpcc.edu>
1983
1984         * rs6000.h (RTX_COSTS): Add PROCESSOR_PPC604e cases.
1985
1986 Thu Oct  8 17:00:18 1998  Richard Henderson  <rth@cygnus.com>
1987
1988         * flow.c (find_basic_blocks): Correctly determine when a call
1989         is within an exception region.
1990
1991 Thu Oct  8 17:15:04 1998  Jeffrey A Law  (law@cygnus.com)
1992
1993         * toplev.c (output_file_directive): Use DIR_SEPARATOR, not '/'.
1994
1995         * cpplib.h: Protect from multiple inclusions.
1996         * cpplib.c: Fix minor formatting problems.
1997
1998         * i386/xm-cygwin32.h: Only define POSIX if it is not already defined.
1999
2000         * jump.c (jump_optimize): Revert accidental patch.
2001
2002         * Makefile.in (cpplib.o): Use unlibsubdir.
2003
2004 Thu Oct  8 12:50:47 1998  Jim Wilson  <wilson@cygnus.com>
2005
2006         * loop.c (get_condition): Allow combine when either compare is
2007         VOIDmode.
2008
2009 Thu Oct 8 11:31:01 PDT 1998 Jeff Law  (law@cygnus.com)
2010
2011         * version.c: Bump for snapshot.
2012
2013 Thu Oct  8 12:21:14 1998  Richard Frith-Macdonald <richard@brainstorm.co.uk>
2014
2015         * c-lex.c (remember_protocol_qualifiers): Handle RID_BYREF.
2016         (init_lex): Initialize ridpointers[RID_BYREF].
2017         * c-lex.h (enum rid): Add RID_BYREF.
2018         * c-parse.gperf: Add RID_BYREF as a type qualifier.
2019         * objc/objc-act.c (is_objc_type_qualifiers): Handle RID_BYREF.
2020         (encode_type_qualifiers): Similarly
2021         * c-gperf.h: Rebuilt.
2022
2023 Thu Oct  8 05:56:00 1998  Jeffrey A Law  (law@cygnus.com)
2024
2025         * c-common.c (type_for_mode): Only return TItype nodes when
2026         HOST_BITS_PER_WIDE_INT is >= 64 bits.
2027         * c-decl.c (intTI_type_node, unsigned_intTI_type_node): Only declare
2028         when HOST_BITS_PER_WIDE_INT is >= 64 bits.
2029         (init_decl_processing): Only create TItype nodes when
2030         HOST_BITS_PER_WIDE_INT is >= 64 bits.
2031         * c-tree.h (intTI_type_node, unsigned_intTI_type_node): Only declare
2032         when HOST_BITS_PER_WIDE_INT is >= 64 bits.
2033
2034 Thu Oct  8 05:05:34 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2035
2036         * stmt.c (n_occurrences): New static function.
2037         (expand_asm_operands): Verify that all constrains match in the
2038         number of alternatives.
2039         Verify that '+' or '=' are at the beginning of an output constraint.
2040         Don't allow '&' for input operands.
2041         Verify that '%' isn't written for the last operand.
2042         * reload.c (find_reloads): Abort if an asm is found with invalid
2043         constraints; all possible problems ought to be checked for earlier.
2044
2045 Thu Oct  8 04:26:20 1998  Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2046
2047         * flags.h (flag_branch_on_count_reg): Always declare 
2048         * toplev.c (flag_branch_on_count_reg): Likewise.
2049         * toplev.c: Fix typos.
2050
2051         * real.c (c4xtoe): Remove unused variables.  Add some missing parens.
2052         (toc4x): Similarly.
2053
2054 Thu Oct  8 01:25:22 1998  Richard Henderson  <rth@cygnus.com>
2055
2056         * flow.c (find_basic_blocks): Calc upper bound for extra nops in
2057         max_uids_for_flow.
2058         (find_basic_blocks_1): Add a nop to the end of a basic block when
2059         a trailing call insn does not have abnormal control flow.
2060         * gcse.c (pre_transpout): New variable.
2061         (alloc_pre_mem, free_pre_mem, dump_pre_data): Bookkeeping for it.
2062         (compute_pre_transpout): Calculate it.
2063         (compute_pre_ppinout): Use it to eliminate impossible placements
2064         due to abnormal control flow through calls.
2065         (compute_pre_data): Call compute_pre_transpout.
2066
2067 Wed Oct  7 21:40:24 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2068
2069         * config/sparc/sol2-sld-64.h (ASM_CPU_SPEC): Fix typo.
2070
2071 Wed Oct  7 21:19:46 1998  Ken Raeburn  <raeburn@cygnus.com>
2072
2073         * config/mips/mips.md (tablejump_internal3, tablejump_internal4
2074         and matching define_insns): Tack on a `use' of the table label, so
2075         flow analysis will recognize a tablejump.
2076
2077 Wed Oct  7 17:33:39 1998  Richard Henderson  <rth@cygnus.com>
2078
2079         * gcse.c (pre_insert_insn): Tweek to notice that calls do not
2080         always end basic blocks for abnormal edge reasons.
2081
2082 Wed Oct  7 14:40:43 1998  Nick Clifton  <nickc@cygnus.com>
2083
2084         * config/i386/i386.h: Remove definition of
2085         HANDLE_PRAGMA_PACK_PUSH_POP.
2086         
2087         * config/i386/go32.h: Add definition of
2088         HANDLE_PRAGMA_PACK_PUSH_POP.
2089         
2090         * config/i386/win32.h: Add definition of
2091         HANDLE_PRAGMA_PACK_PUSH_POP.
2092         
2093         * config/i386/cygwin32.h: Add definition of
2094         HANDLE_PRAGMA_PACK_PUSH_POP.
2095
2096         * c-pragma.c (insert_pack_attributes): Do not insert
2097         attributes unless #pragma pack(push,<n>) is in effect.
2098
2099 Wed Oct  7 12:10:46 1998  Jim Wilson  <wilson@cygnus.com>
2100
2101         * expr.c (emit_group_store): Handle a PARALLEL destination.
2102
2103 Wed Oct  7 10:07:29 1998  Richard Henderson  <rth@cygnus.com>
2104
2105         * gcse.c (pre_insert_insn): When a call ends a bb, insert
2106         the new insns before the argument regs are loaded.
2107
2108 Wed Oct  7 12:55:26 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2109
2110         * Makefile.in (c-gperf.h): Add -L KR-C -F ', 0, 0' flags to gperf.
2111         (c-parse.gperf): Update comments describing invocation flags.
2112         (c-gperf.h): Regenerate using gperf 2.7.1 (19981006 egcs).
2113
2114 1998-10-07  Manfred Hollstein  <manfred@s-direktnet.de>
2115
2116         * reload1.c (reload): Call free before clobbering the memory
2117         locations or constants pointers.
2118
2119 Wed Oct  7 02:05:20 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2120
2121         * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Rework
2122         for efficiency by checking whether we need to modify the current
2123         stack permission at all.
2124         (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Define.
2125         * config/sparc/sparc.c (sparc_initialize_trampoline): Emit
2126         __enable_execute_stack libcall here too if
2127         TRANSFER_FROM_TRAMPOLINE is defined.
2128         * config/sparc/sparc.h: Set TARGET_ARCH32 to a constant if
2129         IN_LIBGCC2.
2130
2131 Wed Oct  7 02:27:52 1998  Jeffrey A Law  (law@cygnus.com)
2132
2133         * Makefile.in (DRIVER_DEFINES): Remove last change.
2134         
2135 Wed Oct  7 01:08:43 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2136
2137         * jump.c (duplicate_loop_exit_test): Strip REG_WAS_0 notes off all
2138         insns we're going to copy.
2139         * regclass.c (reg_scan_mark_refs): Don't test X for NULL_RTX.
2140
2141         * loop.c (count_one_set): Add prototype.
2142
2143         * caller-save.c (restore_referenced_regs): Lose mode argument.
2144         (insert_save): Lose mode argument.
2145         (insert_restore): Lose mode argument.
2146         (insert_one_insn): Lose mode argument.
2147         (save_call_clobbered_regs): Lose mode argument.
2148         (setup_save_areas): Take no argument and return void.  All callers
2149         changed.
2150         Don't verify validity of memory addresses.
2151         * reload.h (setup_save_ares): Adjust prototype.
2152         (save_call_clobbered_regs): Likewise.
2153         * reload1.c (delete_caller_save_insns): New function.
2154         (caller_save_spill_class): Delete variable.
2155         (caller_save_group_size): Delete variable.
2156         (reload): Call setup_save_areas and save_call_clobbered_regs
2157         in the main loop, before calling calculate_needs_all_insns.
2158         Don't call save_call_clobbered_regs after the loop.
2159         Call delete_caller_save_insns at the end of an iteration if
2160         something changed.
2161         Delete code to manage caller_save_spill_class.
2162         Emit the final note before setting reload_first_uid.
2163         Simplify test that determines whether reload_as_needed gets run.
2164         (calculate_needs): Delete code to manage caller_save_spill_class.
2165
2166 Tue Oct  6 15:42:27 1998  Richard Henderson  <rth@cygnus.com>
2167
2168         * collect2.c (main): Initialize ld_file_name.
2169
2170 Tue Oct  6 15:45:15 1998  Catherine Moore  <clm@cygnus.com>
2171  
2172         * config/sparc/sysv4.h (ASM_OUTPUT_SECTION_NAME):  Don't
2173         check for flag_function_sections.
2174
2175 Tue Oct  6 20:02:31 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2176
2177         * cse.c (insert_regs): Fix bug in Sep 24 change.
2178
2179 Tue Oct  6 17:00:42 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2180
2181         * flags.h (flag_dump_unnumbered): Declare.
2182         * toplev.c (flag_dump_unnumbered): Don't declare.
2183         * print-rtl.c (flags.h): Include.
2184         (print_rtl_single): Add return value.
2185         * rtl.h (print_rtl_single): Update declaration.
2186         * flow.c (flag_dump_unnumbered): Don't declare.
2187         (print_rtl_with_bb): Use return value of print_rtl_single.
2188
2189 Tue Oct  6 01:36:00 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2190
2191         * loop.c (count_one_set): New static function, broken out of
2192         count_loop_regs_set
2193         (count_loop_regs_set): Call it.
2194         * global.c (mark_reg_store): Handle clobbers here by not calling
2195         set_preference.
2196         (mark_reg_clobber): Just call mark_reg_store after ensuring SETTER
2197         is in fact a clobber.
2198         * integrate.c (process_reg_param): New function, broken out of
2199         expand_inline_function.
2200         (expand_inline_function): Call it.
2201
2202
2203         * i386.md (addsidi3_1): Delete unused variable temp.
2204         (addsidi3_2): Likewise.
2205         (clstrstrsi): Delete unused variable addr1.
2206
2207         * rtl.h: Don't declare any functions also declared in recog.h.
2208
2209         * Makefile.in (stupid.o): Update dependencies.
2210         (global.o): Likewise.
2211
2212         * global.c: Include reload.h
2213         (reg_becomes_live): New function.
2214         (reg_dies): New function.
2215         (build_insn_chain): New function.
2216         (global_alloc): Call build_insn_chain before calling reload.
2217
2218         * reload.h (struct needs): New structure definition.
2219         (struct insn_chain): Likewise.
2220         (reload_insn_chain): Declare variable.
2221         (new_insn_chain): Declare function.
2222
2223
2224         * reload1.c (reload_startobj): New variable.
2225         (reload_insn_chain): New variable.
2226         (unused_insn_chains): New variable.
2227         (new_insn_chain): New function.
2228         (init_reload): Initialize reload_startobj, not reload_firstobj.
2229         (reload): Initialize reload_firstobj.
2230         Before returning, free everything on the reload_obstack.
2231
2232         * stupid.c: Include insn-config.h, reload.h and basic-block.h.
2233         (reg_where_dead_chain, reg_where_born_exact, reg_where_born_clobber,
2234         current_chain): New variables.
2235         (reg_where_born): Delete variable.
2236         (REG_WHERE_BORN): New macro.
2237         (find_clobbered_regs): New function.
2238         (stupid_life_analysis): Don't allocate/free reg_where_born.
2239         Allocate and free reg_where_born_exact, reg_where_born_clobber,
2240         reg_where_dead_chain.
2241         Use REG_WHERE_BORN instead of reg_where_born.
2242         While processing the insns, build the reload_insn_chain with
2243         information about register lifetimes.
2244         (stupid_reg_compare): Use REG_WHERE_BORN instead of reg_where_born.
2245         (stupid_mark_refs): Replace arg INSN with arg CHAIN.  All callers
2246         changed.
2247         Compute and information about birth and death of pseudo registers in
2248         reg_where_dead_chain, reg_where_born_exact and reg_where_born_clobber.
2249         Delete code to set elements of reg_where_born.  
2250
2251 Mon Oct  5 22:34:30 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2252
2253         * tree.def (GOTO_EXPR): Modified documentation.
2254         * expr.c (expand_expr): Expand GOTO_EXPR into a goto or a computed
2255         goto.
2256
2257 Mon Oct  5 22:43:36 1998  David Edelsohn  <edelsohn@mhpcc.edu>
2258
2259         * unroll.c (loop_iteration_var, loop_initial_value, loop_increment
2260         loop_final_value, loop_comparison_code): No longer static.
2261         (unroll_loop): Delete loop_start_value update.
2262         * loop.h (loop_iteration_var, loop_initial_value, loop_increment,
2263         loop_final_value, loop_comparison_code): Extern.
2264         (loop_start_value): Delete extern.
2265         * loop.c (loop_can_insert_bct, loop_increment, loop_start_value,
2266         loop_comparison_value, loop_comparison_code): Delete.
2267         (loop_optimize): Remove initialization for deleted variables.
2268         (strength_reduce): Delete analyze_loop_iterations call.  Only call
2269         insert_bct if flag_branch_count_on_reg set.
2270         (analyze_loop_iterations): Delete.
2271         (insert_bct): Remove iteration count calculation.  Move checks for
2272         viable BCT optimization to here.  Obtain iteration count from
2273         loop_iterations and correct for unrolling.  Check for enough
2274         iteration to be beneficial.  Comment out runtime iteration count
2275         case.
2276         (insert_bct): Print iteration count in dump file.  Remove
2277         loop_var_mode and use word_mode directly.
2278
2279         * rs6000.h (processor_type): Add PROCESSOR_PPC604e.
2280         * rs6000.c (rs6000_override_options): Use it.
2281         (optimization_options): Enable use of flag_branch_on_count_reg.
2282         * rs6000.md (define_function_unit): Describe 604e.
2283
2284 1998-10-05 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
2285
2286         * loop.c (move_movables): Corrected threshold calculation for
2287         moved_once registers.
2288
2289 Mon Oct  5 21:18:45 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2290
2291         * loop.c (combine_givs_p): Fix test for identical givs.
2292
2293 Mon Oct  5 10:11:28 1998  Nick Clifton  <nickc@cygnus.com>
2294
2295         * dwarf2out.c (gen_subprogram_die): If errorcount nonzero, don't
2296         call abort if the function is already defined.
2297
2298 Mon Oct  5 10:02:36 1998  Jeffrey A Law  (law@cygnus.com)
2299
2300         * combine.c (simplify_rtx): Do not replace TRUNCATE with a SUBREG if
2301         truncation is not a no-op.
2302
2303 Mon Oct 5 09:02:04 PDT 1998 Jeff Law  (law@cygnus.com)
2304
2305         * version.c: Bump for snapshot.
2306
2307 Mon Oct 5 08:19:55 PDT 1998 Jeff Law  (law@cygnus.com)
2308
2309         * version.c: Bump for snapshot.
2310
2311 Mon Oct  5 01:07:23 1998  Torbjorn Granlund  <tege@matematik.su.se>
2312
2313         * expmed.c (expand_divmod): Don't widen for computing remainder
2314         if we seem to have a divmod pattern for needed mode.
2315
2316 Mon Oct  5 01:01:42 1998  Zack Weinberg  <zack@rabi.phys.columbia.edu>  
2317
2318         * cpplib.c (macroexpand): Correct off-by-one error in handling
2319         of escapes.
2320
2321 Sun Oct  4 23:58:30 1998  Richard Henderson  <rth@cygnus.com>
2322
2323         * combine.c (expand_field_assignment): Don't do bitwise operations
2324         on MODE_FLOAT; pun to MODE_INT if possible.
2325
2326 Sun Oct  4 18:33:24 1998  Jason Merrill  <jason@yorick.cygnus.com>
2327                           scott snyder  <snyder@d0sgif.fnal.gov>
2328
2329         * tlink.c (scan_linker_output): Recognize errors from irix 6.2
2330         linker.  Recognize mangled names in quotes.
2331
2332 Sun Oct  4 02:58:20 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
2333
2334         * config/sparc/sparc.md (ashldi3+1): Name it ashldi3_sp64.
2335         (ashlsi3_const1, ashldi3_const1): New combiner patterns.
2336         (ashrsi3_extend, ashrsi3_extend2): New combiner patterns.
2337         (lshrsi3_extend, lshrsi3_extend2): Ditto.
2338
2339 Sun Oct  4 00:23:00 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2340
2341         * function.c (purge_addressof_1): If trying to take a sub-word
2342         integral piece of a floating point mode, put it on the stack.
2343
2344 Sat Oct  3 19:01:03 1998  Richard Henderson  <rth@cygnus.com>
2345
2346         * alpha/linux.h (CPP_PREDEFINES): Define __alpha__ for imake.
2347
2348 Sat Oct  3 14:42:19 1998  Jason Merrill  <jason@yorick.cygnus.com>
2349
2350         * PROJECTS: Remove template friends.
2351
2352         * collect2.c (sort_ids): Remove unused variable.
2353
2354         * tm.texi (MATH_LIBRARY): Document.
2355         (NEED_MATH_LIBRARY): Remove.
2356
2357         * varasm.c (assemble_start_function, assemble_variable, weak_finish,
2358         assemble_alias): Do ASM_GLOBALIZE_LABEL for weak symbols, too.
2359
2360 Sat Oct  3 16:14:44 1998  John Carr  <jfc@mit.edu>
2361
2362         * dwarf2out.c (expand_builtin_dwarf_reg_size):  Initialize
2363         last_end to 0x7fffffff.
2364
2365 Fri Oct  2 19:14:20 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2366
2367         * function.c (purge_addressof_1): Do not perform endianness
2368         corrections on bitpos, who we call will do it for us.
2369
2370 Fri Oct  2 11:52:35 1998  Jeffrey A Law  (law@cygnus.com)
2371
2372         * h8300.c (WORD_REG_USED): Fix typo.
2373         (initial_offset): Use WORD_REG_USED.
2374
2375         * h8300.c (handle_pragma): Fix typo.
2376
2377 Fri Oct  2 10:51:35 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2378
2379         * caller-save.c (insert_save_restore): Break this function up
2380         into new functions insert_restore, insert_save and insert_one_insn.
2381         All callers changed.
2382         (insert_restore): New function, mostly broken out of
2383         insert_save_restore.
2384         (insert_save): Likewise.
2385         (insert_one_insn): Likewise.
2386         (restore_referenced_regs): New argument BLOCK.  All callers changed.
2387         (save_call_clobbered_regs): Don't keep track of basic block boundaries
2388         in this function, do it in insert_one_insn instead.
2389
2390         * reload1.c (reload): Break out some more pieces into separate
2391         functions.
2392         (dump_needs): New function, broken out of reload.
2393         (set_initial_elim_offsets): Likewise.
2394         (init_elim_table): Likewise.
2395         (update_eliminables): Likewise.
2396
2397         * global.c (global_alloc): Delete code to manage the scratch_list.
2398         * local-alloc.c (qty_scratch_rtx): Delete.
2399         (scratch_block): Delete.
2400         (scratch_list): Delete.
2401         (scratch_list_length): Delete.
2402         (scratch_index): Delete.
2403         (alloc_qty_for_scratch): Delete.
2404         (local-alloc): Update initialization of max_qty.
2405         Delete code to manage the scratch list.
2406         Delete code to allocate/initialize qty_scratch_rtx.
2407         (block_alloc): Don't allocate quantities for scratches.
2408         Delete code to manage the scratch list.
2409         * regs.h (scratch_list): Delete declaration.
2410         (scratch_block): Delete declaration.
2411         (scratch_list_length): Delete declaration.
2412         * reload1.c (reload): Delete code to manage the scratch list.
2413         (spill_hard_reg): Likewise.
2414         (mark_scratch_live): Delete.
2415
2416         * recog.c (alter_subreg): Delete declaration.
2417
2418 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2419
2420         * Makefile.in (cccp.o): Fix typo in last patch.
2421
2422 Fri Oct  2 16:13:12 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2423
2424         * t-sh (LIB1ASMFUNCS): Add _set_fpscr .
2425         * config/sh/lib1funcs.asm (___set_fpscr): Add.
2426
2427 Fri Oct  2 02:01:59 1998  Jeffrey A Law  (law@cygnus.com)
2428
2429         * regclass.c (reg_scan_mark_refs): Return immediately if passed a
2430         NULL_RTX as an argument.
2431
2432         * Makefile.in (unlibsubdir): Define.
2433         (DRIVER_DEFINES): Use unlibsubdir.
2434         (cccp.o, cpplib.o, protoize.o, unprotoize.o): Similarly.
2435         (stmp-fixinc): Similarly.
2436
2437 Thu Oct  1 19:58:30 1998  Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>
2438
2439         * regmove.c (regmove_optimize): Add variable old_max_uid.
2440         At the end of the function, update basic_block_end.
2441
2442 Thu Oct  1 17:58:25 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2443
2444         * dwarf2out.c (expand_builtin_dwarf_reg_size): Use
2445         FIRST_PSEUDO_REGISTER as upper bound for last_end, not an
2446         arbitrary constant.
2447
2448 Thu Oct  1 17:57:14 1998  Nick Clifton  <nickc@cygnus.com>
2449
2450         * config/arm/arm.c: Improve interworking support.
2451
2452 Thu Oct  1 18:43:35 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2453
2454         * reload1.c (choose_reload_regs): Fix test if reload_reg_rtx[r] was
2455         copied from reload_out[r] .
2456
2457 Thu Oct  1 19:20:09 1998  John Carr  <jfc@mit.edu>
2458
2459         * dwarf2out.c (expand_builtin_dwarf_reg_size): Fix to work
2460         with more than three size ranges.
2461
2462         * flow.c (sbitmap_copy): Use bcopy to copy bitmap.
2463
2464         * rtl.c (mode_name): Add a null string at the end of the array.
2465         (mode_wider_mode): Change type to unsigned char.
2466         (mode_mask_array): New variable.
2467         (init_rtl): Update for mode_wider_mode type change.
2468
2469         * rtl.h (mode_wider_mode): Change type to unsigned char.
2470         (mode_mask_array): Declare.
2471         (GET_MODE_MASK): Use mode_mask_array.
2472
2473 Thu Oct  1 15:56:01 1998  Gavin Romig-Koch  <gavin@cygnus.com>
2474
2475         * calls.c (expand_call) : Encapsulate code into 
2476         copy_blkmode_from_reg.
2477         * expr.c (copy_blkmode_from_reg): New function.
2478         * expr.h (copy_blkmode_from_reg): New function.
2479         * integrate.c (function_cannot_inline_p): We can inline
2480         these now.
2481         (expand_inline_function): Use copy_blkmode_from_reg
2482         if needed.  Avoid creating BLKmode REGs.
2483         (copy_rtx_and_substitute): Don't try to SUBREG a BLKmode
2484         object.
2485
2486 Thu Oct  1 10:42:27 1998  Nick Clifton  <nickc@cygnus.com>
2487
2488         * config/v850/v850.c: Add function prototypes.
2489         Add support for v850 special data areas.
2490
2491         * config/v850/v850.h: Add support for v850 special data areas.
2492         
2493         * c-pragma.c: Add support for HANDLE_PRAGMA_PACK and
2494         HANDLE_PRAGMA_PACK_PUSH_POP.
2495         (push_alignment): New function: Cache an alignment requested
2496         by a #pragma pack(push,<n>).
2497         (pop_alignment): New function: Pop an alignment from the
2498         alignment stack.
2499         (insert_pack_attributes): New function: Generate __packed__
2500         and __aligned__ attributes for new decls whilst a #pragma pack
2501         is in effect. 
2502         (add_weak): New function: Cache a #pragma weak directive.
2503         (handle_pragma_token): Document calling conventions.  Add
2504         support for #pragma pack(push,<n>) and #pragma pack (pop).
2505
2506         * c-pragma.h: If HANDLE_SYSV_PRAGMA or HANDLE_PRAGMA_PACK_PUSH_POP
2507         are defined enable HANDLE_PRAGMA_PACK.
2508         Move 'struct weak_syms' here (from varasm.c).
2509         Add pragma states for push and pop pragmas.
2510
2511         * c-common.c (decl_attributes): Call PRAGMA_INSERT_ATTRIBUTES
2512         if it is defined.
2513
2514         * c-lex.c: Replace occurances of HANDLE_SYSV_PRAGMA with
2515         HANDLE_GENERIC_PRAGMAS.
2516         
2517         * varasm.c: Move definition of 'struct weak_syms' into
2518         c-pragma.h. 
2519         (handle_pragma_weak): Deleted.
2520
2521         * config/i386/i386.h: Define HANDLE_PRAGMA_PACK_PUSH_POP.
2522
2523         * config/winnt/win-nt.h: Define HANDLE_PRAGMA_PACK_PUSH_POP.
2524
2525         * c-decl.c (start_function): Add invocation of
2526         SET_DEFAULT_DECL_ATTRIBUTES, if defined.
2527
2528         * tm.texi: Remove description of non-existant macro
2529         SET_DEFAULT_SECTION_NAME.
2530         
2531         (HANDLE_SYSV_PRAGMA): Document.
2532         (HANDLE_PRAGMA_PACK_PUSH_POP): Document.
2533
2534 Wed Sep 30 22:27:53 1998  Robert Lipe  <robertl@dgii.com>
2535
2536         * config.sub: Recognize i[34567]86-pc-udk as new target.
2537         * configure.in: Likewise.
2538         * config/i386/t-udk: New file.
2539         * config/i386/udk.h: New file.
2540
2541 Wed Sep 30 19:33:07 1998  Jeffrey A Law  (law@cygnus.com)
2542
2543         * reorg.c (check_annul_list_true_false): Remove unused variables.
2544         (steal_delay_list_from_target): Add missing "used_annul" variable.
2545         (try_merge_delay_insns): Close out half formed comment.
2546
2547 Wed Sep 30 19:13:20 1998 Zack Weinberg  <zack@rabi.phys.columbia.edu>  
2548
2549         * cpplib.c (macroexpand): If arg->raw_before or
2550         arg->raw_after, remove any no-reexpansion escape at the
2551         beginning of the pasted token.  Correct handling of whitespace
2552         markers and no-reexpand markers at the end if arg->raw_after.
2553
2554         * toplev.c (documented_lang_options): Recognize -include,
2555         -imacros, -iwithprefix, -iwithprefixbefore.
2556         * cpplib.c (cpp_start_read): Process -imacros and -include
2557         switches at the same time and in command-line order, after
2558         initializing the dependency-output code.  Emit properly nested
2559         #line directives for them.  Emit a #line for the main file
2560         before processing these switches, and don't do it again
2561         afterward.
2562
2563 Wed Sep 30 18:03:22 1998  Richard Henderson  <rth@cygnus.com>
2564
2565         * function.c (purge_addressof_1): Use bitfield manipulation
2566         routines to handle mem mode < reg mode.
2567
2568 Wed Sep 30 18:43:32 1998  Herman ten Brugge <Haj.Ten.Brugge@net.HCC.nl> 
2569
2570         * reorg.c (try_merge_delay_insns): Account for resources referenced
2571         in each instruction in INSN's delay list before trying to eliminate
2572         useless instructions.  Similarly when looking at a trial insn's delay
2573         slots.
2574
2575         * reorg.c (check_annul_list_true_false): New function.
2576         (steal_delay_list_from_{target,fallthrough}): Call it and also
2577         refine tests for when we may annul if already filled a slot.
2578         (fill_slots_from_thread): Likewise.
2579         (delete_from_delay_slot): Return newly-created thread.
2580         (try_merge_delay_isns): Use its new return value.
2581
2582 Wed Sep 30 18:29:26 1998  Jeffrey A Law  (law@cygnus.com)
2583
2584         * loop.c (check_dbra_loop): Use a vanilla loop reversal if the biv is
2585         used to compute a giv or as some other non-counting use.
2586
2587 Wed Sep 30 18:19:27 1998  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
2588
2589         * regs.h (HARD_REGNO_CALL_PART_CLOBBERED):  New macro.
2590         * local-alloc.c (find_free_reg): Use it.
2591         * global.c (find_reg): Likewise.
2592         * tm.texi: Document HARD_REGNO_CALL_PART_CLOBBERED.
2593
2594         * regs.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
2595         * caller-save.c (init_caller_save): Use it.
2596         * tm.texi: Document HARD_REGNO_CALLER_SAVE_MODE.
2597
2598 Wed Sep 30 12:57:30 1998 Zack Weinberg  <zack@rabi.phys.columbia.edu>  
2599
2600         * configure.in: Add --enable-cpplib option which uses cpplib
2601         for cpp, but doesn't link cpplib into cc1.  Make help text
2602         capitalization consistent.
2603         * configure: Rebuilt.
2604
2605 Wed Sep 30 10:09:39 1998  Mark Mitchell  <mark@markmitchell.com>
2606
2607         * function.c (gen_mem_addressof): If the address REG is
2608         REG_USERVAR_P make the new REG be so also.
2609         * loop.c (scan_loop): Apply DeMorgan's laws and add documentation
2610         in an attempt to clarify slightly.
2611
2612 Wed Sep 30 09:57:40 1998  Jeffrey A Law  (law@cygnus.com)
2613
2614         * expr.c (expand_expr): Handle COMPONENT_REF, BIT_FIELD_REF ARRAY_REF
2615         and INDIRECT_REF in code to check MAX_INTEGER_COMPUTATION_MODE.
2616
2617 Wed Sep 30 10:13:39 1998  Catherine Moore  <clm@cygnus.com>
2618
2619         * toplev.c:  Fix last patch.
2620
2621 Tue Sep 29 20:03:18 1998  Jim Wilson  <wilson@cygnus.com>
2622
2623         * loop.c (get_condition): Fix typo in May 9 change.
2624
2625 Tue Sep 29 11:11:38 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
2626
2627         * invoke.texi (-fexceptions): Merge 2 different descriptions.
2628
2629 Mon Sep 28 22:08:52 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2630
2631         * toplev.c (documented_lang_options): Spelling corrections.
2632
2633 Mon Sep 28 19:41:24 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
2634
2635         * configure.in: new flags --with-ld and --with-as, equivalent
2636         to setting LD and AS environment variables.  Test whether
2637         specified arguments are GNU commands, and report them with
2638         checking messages.  Use the specified AS for configure
2639         tests too.
2640         * configure: ditto
2641         * acconfig.h: add DEFAULT_ASSEMBLER and DEFAULT_LINKER
2642         * config.in: ditto
2643         * gcc.c (find_a_file): when looking for `as' and `ld', return
2644         the DEFAULT program if it exists
2645         * collect2.c (main): use DEFAULT_LINKER if it exists
2646
2647         * gcc.c (find_a_file): the test for existence of a full
2648         pathname was reversed
2649
2650 Mon Sep 28 17:34:35 1998  Michael Meissner  <meissner@cygnus.com>
2651
2652         * rs6000.h (ASM_OUTPUT_MI_THUNK): Only define on ELF systems.
2653         * rs6000.c (output_mi_thunk): Always use a raw jump for now.
2654
2655 Mon Sep 28 14:24:03 1998  Mark Mitchell  <mark@markmitchell.com>
2656
2657         * tree.h (TYPE_BINFO): Document.
2658
2659 Mon Sep 28 12:55:49 1998   Stan Cox  <scox@cygnus.com>
2660
2661         * i386-coff.h (dbxcoff.h): Added.
2662
2663 Mon Sep 28 12:51:00 1998  Catherine Moore  <clm@cygnus.com>
2664
2665         * toplev.c:  fix bad patch around flag_data_sections.
2666
2667 Mon Sep 28 10:32:28 1998  Nick Clifton  <nickc@cygnus.com>
2668
2669         * reload1.c (reload): Use reload_address_index_reg_class and 
2670         reload_address_base_reg_class when setting
2671         caller_save_spill_class.  (Patch generated by Jim Wilson:
2672         wilson@cygnus.com).
2673
2674 Mon Sep 28 07:43:34 1998  Mark Mitchell  <mark@markmitchell.com>
2675
2676         * c-common.c (c_get_alias_set): Tighten slightly for FUNCTION_TYPEs
2677         and ARRAY_TYPEs.  Tidy up.  Improve support for type-punning. 
2678         * expr.c (store_field): Add alias_set parameter.  Set the
2679         MEM_ALIAS_SET accordingly, if the target is a MEM.
2680         (expand_assignment): Use it.
2681         (store_constructor_field): Pass 0.
2682         (expand_expr): Likewise.
2683
2684 Mon Sep 28 07:54:03 1998  Catherine Moore  <clm@cygnus.com>
2685  
2686         * flags.h:  Add flag_data_sections.
2687         * toplev.c:  Add option -fdata-sections.  Add flag_data_sections.
2688         (compile_file):  Error if flag_data_sections not supported.
2689         * varasm.c (assemble_variable):  Handle flag_data_sections.
2690         * config/svr4.h:  Modify prefixes for UNIQUE_SECTION_NAME.
2691         * config/mips/elf.h:  Likewise.
2692         * config/mips/elf64.h:  Likewise.
2693         * invoke.texi:  Describe -fdata-sections.
2694  
2695 Mon Sep 28 04:15:44 1998  Craig Burley  <burley@melange.gnu.org>
2696
2697         * invoke.texi (-ffloat-store): Clarify that this option
2698         does not affect intermediate results -- only variables.
2699
2700 Mon Sep 28 04:11:35 1998  Jeffrey A Law  (law@cygnus.com)
2701
2702         * cpp.texi: Update for Fortran usage from Craig.
2703
2704 Fri Sep 25 22:09:47 1998  David Edelsohn  <edelsohn@mhpcc.edu>
2705
2706         * rs6000.c (function_arg_boundary): Revert accidental change on
2707         September 18.
2708
2709 Fri Sep 25 20:30:00 1998  Michael Meissner  <meissner@cygnus.com>
2710
2711         * rs6000.h (ASM_OUTPUT_MI_THUNK): Declare, call output_mi_thunk.
2712         (output_mi_thunk): Declare.
2713
2714         * rs6000.c (output_mi_thunk): Function to create thunks for MI.
2715         (output_function_profiler): Use r12 for temp, instead of r11 so
2716         that we preserve the static chain register.
2717         
2718 Fri Sep 25 14:18:33 1998  Jim Wilson  <wilson@cygnus.com>
2719
2720         * sdbout.c (sdbout_one_type): Don't look at TYPE_BINFO field of enums.
2721
2722 Fri Sep 25 19:30:19 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2723
2724         * sh.c (gen_shl_sext): Fix case 5.
2725
2726 Fri Sep 25 17:35:23 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2727
2728         * reload1.c (reload_combine): Re-add line that got accidentally lost.
2729
2730 Fri Sep 25 10:43:47 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2731
2732         * cccp.c (pedwarn_with_file_and_line): For !__STDC__ case, avoid
2733         accessing variables until they are initialized via va_arg().
2734
2735 Thu Sep 24 22:12:16 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2736
2737         * reload1.c (reload_combine): Initialize set before using.
2738
2739 Thu Sep 24 18:53:20 1998  Jason Merrill  <jason@yorick.cygnus.com>
2740
2741         * sdbout.c (sdbout_field_types): Don't emit the types of fields we
2742         won't be emitting.
2743
2744 Thu Sep 24 17:05:30 1998  Nick Clifton  <nickc@cygnus.com>
2745
2746         * config/arm/arm.md (insv): Add comment.  In CONST_INT case, and
2747         operand3 with mask before using it.  Patch provided by Jim Wilson.
2748
2749 Thu Sep 24 15:08:08 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
2750
2751         * config/sparc/sparc.c (function_value): Perform the equivalent of
2752         PROMOTE_MODE for ARCH64.
2753         (eligible_for_epilogue_delay): Allow DImode operations in delay
2754         slot of a return for ARCH64.
2755
2756 Thu Sep 24 22:17:54 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2757
2758         * sh.md (sqrtsf2): Fix mode of sqrt.
2759
2760 Thu Sep 24 21:48:51 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2761
2762         * reload1.c (choose_reload_regs): Also try inheritance when
2763         reload_in is a stack slot of a pseudo, even if we already got a
2764         reload reg.
2765
2766 Thu Sep 24 21:22:39 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2767
2768         * reload1.c (reload_cse_regs_1): Renamed from reload_cse_regs.
2769         (reload_cse_regs): New function body: call reload_cse_regs_1,
2770         reload_combine, reload_cse_move2add.
2771         When doing expensive_optimizations, call reload_cse_regs_1 a
2772         second time after reload_cse_move2add.
2773         (reload_combine, reload_combine_note_store): New functions.
2774         (reload_combine_note_use): New function.
2775         (reload_cse_move2add, move2add_note_store): New functions.
2776
2777 Thu Sep 24 18:48:43 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2778
2779         * reload.c (find_reloads): In code to promote RELOAD_FOR_X_ADDR_ADDR
2780         reloads to RELOAD_FOR_X_ADDRESS reloads, test for reload sharing.
2781
2782         Properly keep track of first RELOAD_FOR_X_ADDRESS also for
2783         more than 3 such reloads.
2784
2785         If there is not more than one RELOAD_FOR_X_ADDRESS, don't change
2786         RELOAD_FOR_X_ADDR_ADDR reload.
2787
2788 Thu Sep 24 17:45:55 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
2789
2790         * expr.c (store_constructor): When initializing a field that is smaller
2791         than a word, at the start of a word, try to widen it to a full word.
2792
2793         * cse.c (cse_insn): When we are about to change a register,
2794         remove any invalid references to it.
2795
2796         (remove_invalid_subreg_refs): New function.
2797         (mention_regs): Special treatment for SUBREGs.
2798         (insert_regs): Don't strip SUBREG for call to mention_regs.
2799         Check if reg_tick needs to be bumped up before that call.
2800         (lookup_as_function): Try to match known word_mode constants when
2801         looking for a norrower constant.
2802         (canon_hash): Special treatment for SUBREGs.
2803
2804 Thu Sep 24 01:35:34 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
2805
2806         * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Define.
2807         * config/sparc/sparc.c (sparc64_initialize_trampoline): If that is
2808         defined, emit libcall to __enable_execute_stack.  Also fix opcodes
2809         and offsets in actual stack trampoline code so they match the
2810         commentary and actually work.
2811
2812 Thu Sep 24 01:19:02 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
2813
2814         * configure.in (sparcv9-*-solaris): Use t-sol2 and t-sol2-64 for
2815         tmake_file.
2816         (sparc64-*-linux): Use t-linux and sparc/t-linux64 for
2817         tmake_file.  Set extra_parts to needed crt objects.
2818         * configure: Rebuilt.
2819         * config/sparc/linux64.h (SPARC_BI_ARCH): Define.
2820         (TARGET_DEFAULT): Set if default is v9 or ultra.
2821         (STARTFILE_SPEC32, STARTFILE_SPEC64): New macros.
2822         (STARTFILE_SPEC): Set to those upon SPARC_BI_ARCH.
2823         (ENDFILE_SPEC32, ENDFILE_SPEC64, ENDFILE_SPEC): Likewise.
2824         (SUBTARGET_EXTRA_SPECS, LINK_ARCH32_SPEC, LINK_ARCH64_SPEC,
2825         LINK_SPEC, LINK_ARCH_SPEC): Likewise.
2826         (TARGET_VERSION): Define.
2827         (MULTILIB_DEFAULT): Define.
2828         * config/sparc/sparc.h (CPP_CPU_DEFAULT_SPEC): Rearrange so that
2829         mixed 32/64 bit compilers based upon SPARC_BI_ARCH work.
2830         (CPP_CPU64_DEFAULT_SPEC, CPP_CPU32_DEFAULT_SEC): Define
2831         appropriately.
2832         (TARGET_SWITCHES): Allow ptr32/ptr64 options once more.
2833         * config/sparc/sparc.c (sparc_override_options): If arch and
2834         pointer size disagree, emit diagnostic and fix it up.  If
2835         SPARC_BI_ARCH and TARGET_ARCH32, set cmodel to CM_32.  Turn off
2836         V8PLUS in 64-bit mode.
2837         * config/sparc/t-linux64: New file.
2838         * config/sparc/t-sol2-64: New file.
2839         * config/sparc/t-sol2: Adjust build rules to use MULTILIB_CFLAGS.
2840         * config/sparc/sol2-sld-64.h (SPARC_BI_ARCH): Define.
2841         (ASM_CPU32_DEFAULT_SPEC, ASM_CPU64_DEFAULT_SPEC,
2842         CPP_CPU32_DEFAULT_SPEC, CPP_CPU64_DEFAULT_SPEC): Define.
2843         (ASM_SPEC, CPP_CPU_SPEC): Set appropriately based upon those.
2844         (STARTFILE_SPEC32, STARTFILE_SPEC32, STARTFILE_ARCH_SPEC):
2845         Define.
2846         (STARTFILE_SPEC): Set approriately based upon those.
2847         (CPP_CPU_DEFAULT_SPEC, ASM_CPU_DEFAULT_SPEC): Set based upon
2848         disposition of DEFAULT_ARCH32_P.
2849         (LINK_ARCH32_SPEC, LINK_ARCH64_SPEC): Define.
2850         (LINK_ARCH_SPEC, LINK_ARCH_DEFAULT_SPEC): Set based upon those.
2851         (CC1_SPEC, MULTILIB_DEFAULTS): Set based upon DEFAULT_ARCH32_P.
2852         (MD_STARTFILE_PREFIX): Set correctly based upon SPARC_BI_ARCH.
2853         * config/sparc/xm-sysv4-64.h (HOST_BITS_PER_LONG): Only set on
2854         arch64/v9.
2855         * config/sparc/xm-sp64.h (HOST_BITS_PER_LONG): Likewise.
2856         
2857 Wed Sep 23 22:32:31 1998  Mark Mitchell  <mark@markmitchell.com>
2858
2859         * rtl.h (init_virtual_regs): New function.
2860         * emit-rtl.c (init_virtual_regs): Define.
2861         (insn_emit): Use it.
2862         * integrate.c (save_for_inline_copying): Likewise.
2863
2864 Wed Sep 23 16:22:01 1998  Nick Clifton  <nickc@cygnus.com>
2865
2866         * config/arm/thumb.h: The following patches were made by Jim Wilson:
2867         (enum reg_class): Add NONARG_LO_REGS support.
2868         (REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS,
2869         PREFERRED_RELOAD_CLASS, SECONDARY_RELOAD_CLASS): Likewise.
2870         (GO_IF_LEGITIMATE_ADDRESS): Disable REG+REG addresses before reload
2871         completes.  Re-enable HImode REG+OFFSET addresses.
2872         (LEGITIMIZE_RELOAD_ADDRESS): Define.
2873
2874         * expmed.c (extract_bit_field): Add comment from Jim Wilson. 
2875
2876 Wed Sep 23 13:26:02 1998  Richard Henderson  <rth@cygnus.com>
2877
2878         * alpha.c (get_aligned_mem): Revert Sep 20 change.
2879         (alpha_set_memflags, alpha_set_memflags_1): Likewise.
2880         (alpha_align_insns): Properly calculate initial offset wrt max_align.
2881
2882 Wed Sep 23 10:45:44 1998  Richard Earnshaw (rearnsha@arm.com)
2883
2884         * arm.c (find_barrier): Revert change of Apr 23.  Handle table
2885         jumps as a single entity, taking into account the size of the
2886         table.
2887
2888 Tue Sep 22 15:13:34 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2889
2890         * tree.def (SWITCH_EXPR): New tree node definition.
2891
2892 Mon Sep 21 23:40:38 PDT 1998 Jeff Law  (law@cygnus.com)
2893
2894         * version.c: Bump for snapshot.
2895
2896 Mon Sep 21 22:31:14 PDT 1998 Jeff Law  (law@cygnus.com)
2897
2898         * version.c: Bump for snapshot.
2899
2900 Mon Sep 21 22:48:09 1998  Jeffrey A Law  (law@cygnus.com)
2901
2902         * configure.in: Recognize i[34567]86-*-openbsd* and handle it like
2903         NetBSD.
2904
2905 Mon Sep 21 22:05:28 1998  Jeffrey A Law  (law@cygnus.com)
2906
2907         * Revert this patch.
2908         * reload.c (find_reloads): Do not replace a pseudo with
2909         (MEM (reg_equiv_addr)) in the initializing insn for the
2910         pseudo.
2911
2912 Mon Sep 21 20:19:41 1998  John Carr  <jfc@mit.edu>
2913
2914         * final.c (final_scan_insn): Disable tracking CC across branches.
2915
2916 Mon Sep 21 17:15:26 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
2917
2918         * expr.h (eh_rtime_match_libfunc): New extern declaration.
2919         * optabs.c (init_optabs): Set eh_rtime_match_libfunc.
2920         * except.c (start_catch_handler): Use eh_rtime_match_libfunc.
2921         * libgcc2.c (__eh_rtime_match): Always return 0 if the matcher is
2922         NULL. Only include <stdio.h> if inhibit_libc is not defined.
2923
2924 Mon Sep 21 14:10:51 1998  Jason Merrill  <jason@yorick.cygnus.com>
2925
2926         * toplev.c (rest_of_compilation): Skip compiling anything with
2927         DECL_EXTERNAL set, not just if it has DECL_INLINE as well.
2928
2929 Mon Sep 21 13:51:05 1998  Jim Wilson  <wilson@cygnus.com>
2930
2931         * flow.c (find_basic_blocks): Delete check for in_libcall_block when
2932         prev_code is a CALL_INSN.  Change check for REG_RETVAL note to
2933         use in_libcall_block.
2934         (find_basic_blocks_1): Delete check for in_libcall_block when prev_code
2935         is a CALL_INSN.  If CALL_INSN and in_libcall_block, then change code
2936         to INSN.
2937
2938 Mon Sep 21 14:02:23 1998
2939
2940         * i386.h: (TARGET_SWITCHES) Improve doc for align-double.  Fix
2941         typo in no-fancy-math-387 description.
2942
2943 Mon Sep 21 09:27:18 PDT 1998 Jeff Law  (law@cygnus.com)
2944
2945         * version.c: Bump for snapshot.
2946
2947 Mon Sep 21 09:24:49 1998   Stan Cox  <scox@cygnus.com>
2948
2949         * i386-coff.h (DBX_DEBUGGING_INFO): Added.
2950
2951 Mon Sep 21 09:14:49 1998   Robert Lipe  <robertl@dgii.com>
2952
2953         * i386.h: (TARGET_SWITCHES) Add description fields for flags 
2954         documented in install.texi.
2955         (TARGET_OPTIONS) Likewise.
2956
2957 Mon Sep 21 01:39:03 PDT 1998 Jeff Law  (law@cygnus.com)
2958
2959         * version.c: Bump for snapshot.
2960
2961 Mon Sep 21 01:53:05 1998  Felix Lee  <flee@cygnus.com>
2962
2963         * c-lex.c (init_lex): Use getenv ("LANG"), not GET_ENVIRONMENT ().
2964         * cccp.c (main): Likewise.
2965
2966         * cccp.c, collect2.c, cpplib.c, gcc.c, config/i386/xm-cygwin32.h:
2967         Rename GET_ENVIRONMENT to GET_ENV_PATH_LIST, and fix some
2968         macro-use bugs.
2969
2970 Mon Sep 21 00:52:12 1998  Per Bothner  <bothner@cygnus.com>
2971
2972         * Makefile.in (LIBS):  Link in libiberty.a.
2973         * c-common.c, gcc.c, toplev.c:  Replace (some) bcopy calls by memcpy.
2974
2975 Sun Sep 20 23:28:11 1998  Richard Henderson  <rth@cygnus.com>
2976
2977         * reload1.c (emit_reload_insns): Accept a new arg for the bb.  Use
2978         it to update bb boundaries.  Update caller.
2979         * function.c (reposition_prologue_and_epilogue_notes): Update
2980         bb boundaries wrt the moved note.
2981
2982 Sun Sep 20 20:57:02 1998  Robert Lipe  <robertl@dgii.com>
2983         
2984         * configure.in (i*86-*-sysv5*): Use fixinc.svr4 to patch byteorder
2985         problems.
2986         * configure: Regenerate.
2987
2988 Sun Sep 20 19:01:51 1998  Richard Henderson  <rth@cygnus.com>
2989
2990         * alpha.c (alpha_sr_alias_set): New variable.
2991         (override_options): Set it.
2992         (alpha_expand_prologue, alpha_expand_epilogue): Use it.
2993         (mode_mask_operand): Fix signed-unsigned comparision warning.
2994         (alpha_expand_block_move): Likewise.
2995         (print_operand): Likewise.
2996         (get_aligned_mem): Use change_address.
2997         (alpha_set_memflags, alpha_set_memflags_1): Set the alias set.
2998         (alphaev4_insn_pipe, alphaev4_next_group): New functions.
2999         (alphaev4_next_nop, alphaev5_next_nop): New functions.
3000         (alpha_align_insns): Remade from old alphaev5_align_insns
3001         to handle multiple processors.
3002         (alpha_reorg): Call alpha_align_insns for both ev4 and ev5.
3003         * output.h (label_to_alignment): Prototype.
3004
3005         * tree.c (new_alias_set): New function.
3006         * tree.h (new_alias_set): Declare it.
3007         * c-common.c (c_get_alias_set): Use it.
3008
3009 Sun Sep 20 12:35:55 1998  Richard Henderson  <rth@cygnus.com>
3010
3011         * fold-const.c (fold): Yet another COND_EXPR bug: when folding 
3012         to an ABS expr, convert an unsigned input to signed.
3013         
3014 Sun Sep 20 12:14:45 1998  Jeffrey A Law  (law@cygnus.com)
3015
3016         * fold-const.c (fold): Fix another type in COND_EXPR handling code.
3017
3018 1998-09-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
3019
3020         * configure.in: Add support for c4x targets.
3021         * configure: Rebuilt.
3022
3023 Sun Sep 20 00:00:51 1998  Richard Henderson  <rth@cygnus.com>
3024
3025         * combine.c (distribute_notes): If an insn is a cc0 user, only
3026         delete it if we can also delete the cc0 setter.
3027
3028 Sun Sep 20 00:22:23 1998  Michael Tiemann  <michael@impact.tiemann.org>
3029
3030         * fold-const.c (fold): Fix typo in COND_EXPR handling code.
3031         (invert_truthvalue): Enable truthvalue inversion for
3032         floating-point operands if -ffast-math.
3033
3034 Sat Sep 19 23:58:07 1998  Melissa O'Neill <oneill@cs.sfu.ca>
3035                          
3036         * configure.in: Disable collect2 for nextstep.  Instead use
3037         crtbegin/crtend.
3038         * configure: Rebuilt.
3039         * config/nextstep.h (STARTFILE_SPEC): Add crtbegin.
3040         (ENDFILE_SPEC): Define.
3041         (OBJECT_FORMAT_MACHO): Define.
3042         (EH_FRAME_SECTION_ASM_OP): Define.
3043         * crtstuff.c: Handle MACHO.
3044
3045 Sun Sep 20 00:24:24 1998  Robert Lipe  <robertl@dgii.com>
3046
3047         * config/i386/sco5.h (TARGET_MEM_FUNCTIONS):  Define.
3048
3049 1998-09-19  Torbjorn Granlund  <tege@matematik.su.se>
3050
3051         * fp-bit.c (pack_d): Do not clear SIGN when fraction is 0.
3052         (_fpadd_parts): Get sign right for 0.
3053
3054 1998-09-19  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
3055
3056         * ginclude/varargs.h: Add support for C4x target.
3057         * ginclude/stdargs.h: Likewise.
3058
3059 Sat Sep 19 12:05:09 1998  Richard Henderson  <rth@cygnus.com>
3060
3061         * alpha.c (alpha_return_addr): SET should be VOIDmode.
3062         (alpha_emit_set_long_const): Rewrite to be callable from reload
3063         and 32-bit hosts.
3064         (alpha_expand_epilogue): Update for alpha_emit_set_long_const.
3065         * alpha.md (movdi): Likewise.
3066
3067 Sat Sep 19 07:33:36 1998  Richard Earnshaw (rearnsha@arm.com)
3068
3069         * arm.c (add_constant): New parameter address_only, change caller.
3070         Set it non-zero if taking the address of an item in the pool.
3071         (arm_reorg): Handle cases where we need the address of an item in
3072         the pool.
3073
3074         * arm.c (bad_signed_byte_operand): Check both arms of a sum in
3075         a memory address.
3076         * arm.md (splits for *extendqihi_insn and *extendqisi_insn): Handle
3077         memory addresses that are not in standard canonical form.
3078
3079 Sat Sep 19 01:00:32 1998  Michael Hayes  (mph@elec.canterbury.ac.nz)
3080
3081         * README.C4X: New file with information about the c4x ports.
3082         * ginclude/va-c4x.h: New file for c4x varargs support.
3083         * config/c4x: New directory with c4x port files.
3084
3085 Fri Sep 18 22:52:05 1998  Jeffrey A Law  (law@cygnus.com)
3086
3087         * reload.c (find_reloads): Do not replace a pseudo with 
3088         (MEM (reg_equiv_addr)) in the initializing insn for the
3089         pseudo.
3090
3091 Fri Sep 18 23:50:56 1998  David Edelsohn  <edelsohn@mhpcc.edu>
3092
3093         * toplev.c (rest_of_compilation): Set bct_p on second call to
3094         loop_optimize.
3095         * loop.c (loop_optimize, scan_loop, strength_reduce): New argument
3096         bct_p.
3097         (strength_reduce): Only call analyze_loop_iterations and
3098         insert_bct if bct_p set.
3099         (check_dbra_loop): Fix typo.
3100         (insert_bct): Use word_mode instead of SImode.
3101         (instrument_loop_bct): Likewise.  Do not delete iteration count
3102         condition code generation insn.  Initialize iteration count before
3103         loop start.
3104         * rtl.h (loop_optimize): Update prototype.
3105
3106         * ginclude/va-ppc.h (va_arg): longlong types in overflow area are
3107         not doubleword aligned.
3108
3109         * rs6000.c (optimization_options): New function.
3110         (secondary_reload_class): Only call true_regnum for PSEUDO_REGs.
3111         * rs6000.h (OPTIMIZATION_OPTIONS): Define.
3112         (REG_ALLOC_ORDER): Allocate highest numbered condition regsiters
3113         first; cr1 can be used for FP record condition insns.
3114
3115 Fri Sep 18 09:44:55 1998  Nick Clifton  <nickc@cygnus.com>
3116
3117         * config/m32r/m32r.h (m32r_block_immediate_operand): Add to
3118         PREDICATE_CODES.
3119
3120         * config/m32r/m32r.md: Add "movstrsi" and "movstrsi_internal"
3121         patterns.
3122
3123         * config/m32r/m32r.c (m32r_print_operand): Add 's' and 'p'
3124         operators.
3125         (block_move_call): New function: Call a library routine to copy a
3126         block of memory.
3127         (m32r_expand_block_move): New function: Expand a "movstrsi"
3128         pattern into a sequence of insns.
3129         (m32r_output_block_move): New function: Expand a
3130         "movstrsi_internal" pattern into a sequence of assembler opcodes.
3131         (m32r_block_immediate_operand): New function: Return true if the
3132         RTL is an integer constant, less than or equal to MAX_MOVE_BYTES.
3133         
3134 Thu Sep 17 16:42:16 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
3135
3136         * except.c (start_catch_handler): Issue 'fatal' instead of 'error' and
3137         re-align some code.
3138         * libgcc2.c (__eh_rtime_match): fprintf a runtime error. Use <stdio.h>.
3139
3140 Thu Sep 17 12:24:33 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
3141
3142         * regmove.c (copy_src_to_dest): Check that modes match.
3143
3144 Wed Sep 16 22:10:42 1998  Robert Lipe  <robertl@dgii.com>
3145
3146         * config/i386/sco5.h (SUPPORTS_WEAK): True only if targeting ELF.
3147
3148 Wed Sep 16 15:24:54 1998  Richard Henderson  <rth@cygnus.com>
3149
3150         * i386.h (PREFERRED_RELOAD_CLASS): Respect an existing class
3151         narrower than FLOAT_REGS.
3152
3153 Wed Sep 16 17:51:00 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
3154
3155         * cpplib.c: removed OLD_GPLUSPLUS_INCLUDE_DIR
3156         * cccp.c: ditto
3157         * Makefile.in (old_gxx_include_dir): removed
3158
3159 Wed Sep 16 12:29:22 1998  Nick Clifton  <nickc@cygnus.com>
3160
3161         * config/sh/sh.h: Update definition of HANDLE_PRAGMA to match
3162         new specification.
3163
3164         * config/sh/sh.c (handle_pragma): Rename to sh_handle_pragma().
3165         (sh_handle_pragma): Change function arguments to match new
3166         specification for HANDLE_PRAGMA. 
3167
3168 Wed Sep 16 12:43:19 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3169
3170         * gen-protos.c (parse_fn_proto): Cast argument of ISALNUM to
3171         `unsigned char'.
3172         (main): Mark parameter `argc' with ATTRIBUTE_UNUSED.
3173         When generating output, initialize missing struct member to zero.
3174
3175 Wed Sep 16 14:47:43 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
3176
3177         * regmove.c (copy_src_to_dest): Don't copy if that requires
3178         (a) new register(s).
3179
3180 Wed Sep 16 01:29:12 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3181
3182         * global.c (reg_allocno): Now static.
3183         * reload1.c (reg_allocno): Delete declaration.
3184         (order_regs_for_reload): Take no arguments.  Don't treat regs
3185         allocated by global differently than those allocated by local-alloc.
3186
3187 Wed Sep 16 01:09:01 1998  Kamil Iskra  <iskra@student.uci.agh.edu.pl>
3188
3189         * m68k/m68k.c (output_function_prologue): Reverse NO_ADDSUB_Q
3190         condition, fix format strings.
3191         (output_function_epilogue): Likewise.
3192
3193         * m68k/m68k.c: Don't include <stdlib.h> directly.
3194
3195 Wed Sep 16 00:30:56 1998  Geoff Keating  <geoffk@ozemail.com.au>
3196
3197         * gcse.c: New definition NEVER_SET for reg_first_set, reg_last_set,
3198         mem_first_set, mem_last_set; because 0 can be a CUID.
3199         (oprs_unchanged_p): Use new definition.
3200         (record_last_reg_set_info): Likewise.
3201         (record_last_mem_set_info): Likewise.
3202         (compute_hash_table): Likewise.
3203
3204 Tue Sep 15 22:59:52 1998  Jeffrey A Law  (law@cygnus.com)
3205
3206         * rs6000.c (output_epilogue): Handle Chill.
3207
3208         * mn10200.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
3209         * mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
3210
3211         * combine.c (make_extraction): If no mode is specified for
3212         an operand of insv, extv, or extzv, default it to word_mode.
3213         (simplify_comparison): Similarly.
3214         * expmed.c (store_bit_field): Similarly.
3215         (extract_bit_field): Similarly.
3216         * function.c (fixup_var_regs_1): Similarly.
3217         * recog.c (validate_replace_rtx_1): Similarly.
3218         * mips.md (extv, extzv, insv expanders): Default modes for most
3219         operands.  Handle TARGET_64BIT.
3220         (movdi_uld, movdi_usd): New patterns.
3221
3222         * pa.c (emit_move_sequence): Do not replace a pseudo with its
3223         equivalent memory location unless we have been provided a scratch
3224         register.  Similarly do not call find_replacement unless a
3225         scratch register has been provided.
3226
3227 Tue Sep 15 19:23:01 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3228
3229         * i386.h (PREFERRED_RELOAD_CLASS): For standard 387 constants,
3230         return FLOAT_REGS.
3231
3232 Tue Sep 15 19:09:06 1998  Richard Henderson  <rth@cygnus.com>
3233
3234         * tree.h (BUILT_IN_CALLER_RETURN_ADDRESS): Unused.  Kill.
3235         (BUILT_IN_FP, BUILT_IN_SP, BUILT_IN_SET_RETURN_ADDR_REG): Kill.
3236         (BUILT_IN_EH_STUB_OLD, BUILT_IN_EH_STUB, BUILT_IN_SET_EH_REGS): Kill.
3237         (BUILT_IN_EH_RETURN, BUILT_IN_DWARF_CFA): New.
3238         * c-decl.c (init_decl_processing): Update accordingly.
3239         * expr.c (expand_builtin): Likewise.
3240
3241         * rtl.h (global_rtl): Add cfa entry.
3242         (virtual_cfa_rtx, VIRTUAL_CFA_REGNUM): New.
3243         (LAST_VIRTUAL_REGISTER): Update.
3244         * emit-rtl.c (global_rtl): Add cfa entry.
3245         (init_emit): Initialize it.
3246         * function.c (cfa_offset): New.
3247         (instantiate_virtual_regs): Initialize it.
3248         (instantiate_virtual_regs_1): Instantiate virtual_cfa_rtx.
3249         (expand_function_end): Call expand_eh_return.
3250         * tm.texi (ARG_POINTER_CFA_OFFSET): New.
3251
3252         * except.c (current_function_eh_stub_label): Kill.
3253         (current_function_eh_old_stub_label): Likwise; update all references.
3254         (expand_builtin_set_return_addr_reg): Kill.
3255         (expand_builtin_eh_stub_old, expand_builtin_eh_stub): Kill.
3256         (expand_builtin_set_eh_regs): Kill.
3257         (eh_regs): Produce a third reg for the actual handler address.
3258         (eh_return_context, eh_return_stack_adjust): New.
3259         (eh_return_handler, eh_return_stub_label): New.
3260         (init_eh_for_function): Initialize them.
3261         (expand_builtin_eh_return, expand_eh_return): New.
3262         * except.h: Update prototypes.
3263         * flow.c (find_basic_blocks_1): Update references to the stub label.
3264         * function.h (struct function): Kill stub label elements.
3265
3266         * libgcc2.c (in_reg_window): For REG_SAVED_REG, check that the
3267         register number is one that would be in the previous window.
3268         Provide a dummy definition for non-windowed targets.
3269         (get_reg_addr): New function.
3270         (get_reg, put_reg, copy_reg): Use it.
3271         (__throw): Rely on in_reg_window, not INCOMING_REGNO.  Kill stub
3272         generating code and use __builtin_eh_return.  Use __builtin_dwarf_cfa.
3273
3274         * alpha.c (alpha_eh_epilogue_sp_ofs): New.
3275         (alpha_init_expanders): Initialize it.
3276         (alpha_expand_epilogue): Use it.
3277         * alpha.h: Declare it.
3278         * alpha.md (eh_epilogue): New.
3279
3280         * m68h.h (ARG_POINTER_CFA_OFFSET): New.
3281         * sparc.h (ARG_POINTER_CFA_OFFSET): New.
3282
3283 Tue Sep 15 19:31:58 1998  Michael Meissner  <meissner@cygnus.com>
3284
3285         * i960.h (CONST_COSTS): Fix thinko.  Test flag, not the constant
3286         flag bit mask.
3287
3288 Tue Sep 15 14:10:54 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
3289
3290         * except.h (struct eh_entry): Add false_label field.
3291         (end_catch_handler): Add prototype.
3292         * except.c (push_eh_entry): Set false_label field to NULL_RTX.
3293         (start_catch_handler): When using old style exceptions, issue
3294         runtime typematch code before continuing with the handler.
3295         (end_catch_handler): New function, generates label after handler
3296         if needed by older style exceptions.
3297         (expand_start_all_catch): No need to check for new style exceptions.
3298         (output_exception_table_entry): Only output the first handler label
3299         for old style exceptions.
3300         * libgcc2.c (__eh_rtime_match): New routine to lump runtime matching
3301         mechanism into one function, if a runtime matcher is provided.
3302
3303 Tue Sep 15 13:53:59 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
3304
3305         * config/i960/i960.h (SLOW_BYTE_ACCESS): Change definition to 1.
3306
3307 Tue Sep 15 09:59:01 1998  Mark Mitchell  <mark@markmitchell.com>
3308
3309         * integrate.c (copy_decl_list): Fix typo.
3310
3311 Tue Sep 15 04:18:52 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3312
3313         * config/sparc/sparc.md (movdf_const_intreg_sp32): Fix length
3314         attribute.
3315
3316 Mon Sep 14 14:02:53 PDT 1998 Jeff Law  (law@cygnus.com)
3317
3318         * version.c: Bump for snapshot.
3319
3320 Mon Sep 14 10:33:56 PDT 1998 Jeff Law  (law@cygnus.com)
3321
3322         * version.c: Bump for snapshot.
3323
3324 Mon Sep 14 09:51:05 PDT 1998 Jeff Law  (law@cygnus.com)
3325
3326         * version.c: Bump for snapshot.
3327
3328 Sun Sep 13 22:10:18 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3329
3330         * invoke.texi (C Dialect Options): Put back missing @end itemize.
3331
3332 Mon Sep 14 02:33:46 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
3333
3334         * configure.in: remove usage of `!' to negate the result of a
3335         command; some common shells do not support it
3336
3337 Sun Sep 13 19:17:35 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3338
3339         * configure.in: in sparc9-sol2 config, use 'if test' not
3340         brackets.
3341         * configure: Rebuilt.
3342
3343         * config/sparc/sol2-sld-64.h (SPARC_DEFAULT_CMODEL): Change to
3344         CM_MEDANY.
3345         (CPP_CPU_SPEC): Do not define _LP64, header files do this.
3346         (CPP_CPU_DEFAULT_SPEC): Likewise.
3347         * config/sparc/sol2.h (INIT_SUBTARGET_OPTABS): Get the names right
3348         for arch64 libfuncs.
3349         
3350         * config/sparc/sparc.md (goto_handler_and_restore): Allow any mode
3351         for operand zero.
3352
3353 Sun Sep 13 09:11:59 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3354
3355         * acconfig.h (NEED_DECLARATION_STRSIGNAL): Provide a stub.
3356
3357         * collect2.c: Don't declare `sys_siglist' here.
3358         (my_strsignal): Prototype and define new function.  Use it in
3359         place of `sys_siglist' hacks.
3360
3361         * mips_tfile.c:  Likewise.
3362
3363         * configure.in (AC_CHECK_FUNCS): Check for strsignal.
3364         (GCC_NEED_DECLARATIONS): Likewise.
3365
3366         * system.h (strsignal): Prototype it, if necessary.
3367         (sys_siglist): Declare it, if necessary.
3368
3369 Sun Sep 13 04:37:28 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3370
3371         * loop.c (move_movables): While removing insn sequences, preserve
3372         the next pointer of the most recently deleted insn when we skip
3373         over a NOTE.
3374
3375 Sun Sep 13 08:13:39 1998  Ben Elliston  <bje@cygnus.com>
3376
3377         * objc/config-lang.in: Do not output the name of the selected
3378         thread file when building the front-end.  The Makefile for the
3379         runtime library will do this.
3380
3381         * objc/Make-lang.in: Do not build the runtime library or install
3382         the Objective C header files.  The Makefile for the runtime
3383         library will do this.
3384
3385         * objc/Makefile.in (all.indirect): Only build the front-end.
3386         (compiler): Rename to `frontend'.
3387         (obj-runtime): Remove target.
3388         (copy-headers): Likewise.
3389         (clean): No need to remove `libobjc.a' any longer.
3390
3391 Sat Sep 12 11:37:19 1998  Michael Meissner  <meissner@cygnus.com>
3392
3393         * rs6000.h ({ASM,CPP}_CPU_SPEC): Add support for all machines
3394         supported with -mcpu=xxx.
3395
3396 Fri Sep 11 23:55:54 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3397
3398         * flow.c (mark_set_1): Recognize multi-register structure return
3399         values in CALL insns.
3400         (mark_used_regs): Likewise.
3401         (count_reg_sets_1): Likewise.
3402         (count_reg_references): Likewise.
3403         * rtlanal.c (note_stores): Likewise.
3404         (reg_overlap_mentioned_p): Likewise.
3405         * haifa-sched.c (check_live_1): Likewise.
3406         (update_live_1): Likewise.
3407         (sched_analyze_1): Likewise.
3408         (sched_note_set): Likewise.
3409         (birthing_insn_p): Likewise.
3410         (attach_deaths): Likewise.
3411
3412         * config/sparc/sparc.md (movdf_const_intreg_sp64): Disable.
3413
3414
3415 Fri Sep 11 22:57:55 1998  Eric Dumazet  <dumazet@cosmosbay.com>
3416
3417         * config/i386/sco5.h (ASM_WEAKEN_LABEL): Defined as in svr4.h.
3418
3419 Thu Sep 10 22:02:04 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3420
3421         * glimits.h (__LONG_MAX__): Recognize __sparcv9 too.
3422
3423 Thu Sep 10 21:19:10 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
3424
3425         * configure.in: Add check for GAS subsection -1 support.
3426         * acconfig.h (HAVE_GAS_SUBSECTION_ORDERING): Add.
3427         * configure config.in: Rebuilt.
3428         * config/sparc/sparc.h (CASE_VECTOR_MODE): For V9 flag_pic, use
3429         SImode is subsection -1 works, else use DImode.
3430         (ASM_OUTPUT_ADDR_VEC_START, ASM_OUTPUT_ADDR_VEC_END): Define if
3431         subsection -1 works.
3432         * config/sparc/sparc.c (sparc_output_addr_vec,
3433         sparc_output_addr_diff_vec): Use them if defined.
3434
3435 Thu Sep 10 10:46:01 1998  Mark Mitchell  <mark@markmitchell.com>
3436
3437         * tree.h (DECL_ORIGIN): New macro.
3438         * integrate.c (copy_and_set_decl_abstract_origin): New function.
3439         (copy_decl_list): Use it.
3440         (integrate_parm_decls): Likewise.
3441         (integrate_decl_tree): Likewise.
3442         * dwarf2out.c (decl_ultimate_origin): Simplify.
3443         * dwarfout.c (decl_ultimate_origin): Likewise.
3444         * c-decl.c (duplicate_decls): Use DECL_ORIGIN.
3445         (pushdecl): Likewise.
3446
3447 Thu Sep 10 08:01:31 1998  Anthony Green  <green@cygnus.com>
3448
3449         * config/rs6000/rs6000.c (output_epilog): Add Java support.
3450
3451 Thu Sep 10 14:48:59 1998  Martin von Löwis  <loewis@informatik.hu-berlin.de>
3452
3453         * invoke.texi (C++ Dialect Options): Document -fhonor-std.
3454
3455 Thu Sep 10 01:38:05 1998  Jeffrey A Law  (law@cygnus.com)
3456
3457         * reg-stack.c (straighten_stack): Do nothing if the virtual stack is
3458         empty or has a single entry.
3459
3460         * toplev.c (rest_of_compilation): Open up the dump file for reg-stack
3461         before calling reg_to_stack.
3462
3463 Thu Sep 10 00:03:34 1998  Richard Henderson  <rth@cygnus.com>
3464
3465         * alpha.c (alphaev5_insn_pipe): Abort on default case.
3466         (alphaev5_next_group): Swallow CLOBBERs and USEs.
3467
3468         * c-tree.h (warn_long_long): Declare it.
3469
3470 Wed Sep  9 23:31:36 1998  (Stephen L Moshier) <moshier@world.std.com>
3471
3472         * emit-rtl.c (gen_lowpart_common): Disable optimization of
3473         initialized float-int union if the value is a NaN.
3474
3475 Wed Sep  9 23:00:48 1998  Nathan Sidwell  <nathan@acm.org>
3476
3477         * c-lex.c (real_yylex): Don't warn about long long constants if 
3478         we're allowing long long
3479
3480 Wed Sep  9 21:58:41 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3481
3482         * except.h (current_function_eh_stub_label): Declare.
3483         (current_function_eh_old_stub_label): Declare.
3484         * function.h (struct function): New members eh_stub_label and
3485         eh_old_stub_label.
3486         * except.c (current_function_eh_stub_label): New variable.
3487         (current_function_eh_old_stub_label): New variable.
3488         (init_eh_for_function): Clear them.
3489         (save_eh_status): Save them.
3490         (restore_eh_status): Restore them.
3491         (expand_builtin_eh_stub): Set current_function_eh_stub_label.
3492         (expand_builtin_eh_stub_old): Set current_function_eh_old_stub_label.
3493         * flow.c (find_basic_blocks_1): When handling a REG_LABEL note, don't
3494         make an edge from the block that contains it to the block starting
3495         with the label if this label is one of the eh stub labels.
3496         If eh stub labels exist, show they are reachable from the last block
3497         in the function.
3498
3499         * reload1.c (reload): Break out several subroutines and make some
3500         variables global.
3501         (calculate_needs_all_insns): New function, broken out of reload.
3502         (calculate_needs): Likewise.
3503         (find_reload_regs): Likewise.
3504         (find_group): Likewise.
3505         (find_tworeg_group): Likewise.
3506         (something_needs_reloads): New global variable, formerly in reload.
3507         (something_needs_elimination): Likewise.
3508         (caller_save_spill_class): Likewise.
3509         (caller_save_group_size): Likewise.
3510         (max_needs): Likewise.
3511         (group_size): Likewise.
3512         (max_groups): Likewise.
3513         (max_nongroups): Likewise.
3514         (group_mode): Likewise.
3515         (max_needs_insn): Likewise.
3516         (max_groups_insn): Likewise.
3517         (max_nongroups_insn): Likewise.
3518         (failure): Likewise.
3519
3520         * print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
3521
3522 Wed Sep  9 13:14:41 1998  Richard Henderson  <rth@cygnus.com>
3523
3524         * loop.c (load_mems): Copy rtx for output mem.
3525
3526 Wed Sep  9 15:16:58 1998  Gavin Romig-Koch  <gavin@cygnus.com>
3527
3528         * mips/abi64.h (LONG_MAX_SPEC): Don't set LONG_MAX for
3529         mips1 or mips2 either.
3530
3531 Wed Sep  9 12:31:35 1998  Jeffrey A Law  (law@cygnus.com)
3532
3533         * pa.c (pa_reorg): New marking scheme for jumps inside switch
3534         tables.
3535         (pa_adjust_insn_length): Update to work with new marking scheme
3536         for jumps inside switch tables. 
3537         * pa.md (switch_jump): Remove pattern.
3538         (jump): Handle jumps inside jump tables.
3539
3540         * Makefile.in (profile.o): Depend on insn-config.h
3541
3542 Wed Sep  9 09:36:51 1998  Jim Wilson  <wilson@cygnus.com>
3543
3544         * iris6.h (DWARF2_UNWIND_INFO): Undef.
3545
3546 Wed Sep  9 01:32:01 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3547
3548         Add preliminary native sparcv9 Solaris support.
3549         * configure.in: Recognize sparv9-*-solaris2*
3550         * configure: rebuilt
3551         * config.sub: Recognize sparcv9 just like sparc64.
3552         * config/sparc/sol2-c1.asm config/sparc/sol2-ci.asm
3553         config/sparc/sol2-cn.asm: Macroize so it can be shared between
3554         32-bit and 64-bit Solaris systems.
3555         * config/sparc/t-sol2: Assemble those with cpp.
3556         * config/sparc/sparc.h (TARGET_CPU_sparcv9): New alias for v9.
3557         (*TF*_LIBCALL): If ARCH64 use V9 names.
3558         * config/sparc/{xm-sysv4-64,sol2-sld-64}.h: New files.
3559
3560 Wed Sep  9 01:07:30 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
3561
3562         * config/sparc/sparc.h (TARGET_CM_MEDMID): Fix documentation.
3563         (CASE_VECTOR_MODE): Set to SImode even if PTR64, when MEDLOW and
3564         not doing pic.
3565         (ASM_OUTPUT_ADDR_{VEC,DIFF}_ELT): Check CASE_VECTOR_MODE not
3566         Pmode.
3567         * config/sparc/sparc.md (tablejump): Likewise, and sign extend op0
3568         to Pmode if CASE_VECTOR_MODE is something else.
3569
3570 Wed Sep  9 00:10:31 1998  Jeffrey A Law  (law@cygnus.com)
3571
3572         * prefix.c (update_path): Correctly handle cases where PATH is
3573         a substring of the builtin prefix, but specifies a different
3574         directory location.
3575
3576 Tue Sep  8 23:46:04 1998  Hans-Peter Nilsson  <hp@axis.se>
3577
3578         * expr.c: Corrected comment about what MOVE_RATIO does.
3579         * config/alpha/alpha.h: Ditto.
3580         * config/1750a/1750a.h: Ditto.
3581         * config/clipper/clipper.h: Ditto.
3582         * config/i386/i386.h: Ditto.
3583
3584 Tue Sep  8 22:56:12 1998  Jeffrey A Law  (law@cygnus.com)
3585
3586         * configure.in (m68k-next-nextstep3*): Use collect2.
3587         Similarly for x86 NeXT configurations.
3588         * configure: Rebuilt.
3589
3590 Tue Sep  8 01:38:57 1998  Nathan Sidwell  <nathan@acm.org>
3591
3592         * configure.in: Don't assume srcdir is .../gcc
3593         * configure: Rebuilt.
3594
3595 Sat Sep  5 16:34:34 EDT 1998  John Wehle  (john@feith.com)
3596
3597         * global.c: Update comments.
3598         (global_alloc): Assign allocation-numbers
3599         even for registers allocated by local_alloc in case
3600         they are later spilled and retry_global_alloc is called.
3601         (mark_reg_store, mark_reg_clobber,
3602         mark_reg_conflicts, mark_reg_death): Always record a
3603         conflict with a pseudo register even if it has been
3604         assigned to a hard register.
3605         (dump_conflicts): Don't list pseudo registers already assigned to
3606         a hard register as needing to be allocated, but do list their
3607         conflicts.
3608         * local-alloc.c: Update comment.
3609
3610 Mon Sep  7 23:38:01 1998  Jeffrey A Law  (law@cygnus.com)
3611
3612         * configure.in: Check for bogus GCC_EXEC_PREFIX and LIBRARY_PATH.
3613         * configure: Rebuilt.
3614
3615 Mon Sep  7 22:41:46 1998  Michael Meissner  <meissner@cygnus.com>
3616
3617         * rs6000.c (rs6000_override_options): Fix name for ec603e, to add
3618         missing 'c'.
3619         * t-ppccomm (MULTILIB_MATCHES_FLOAT): Add support for -mcpu=xxx
3620         for all targets that set -msoft-float.
3621
3622 Mon Sep  7 23:30:07 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3623
3624         * toplev.c (print_switch_values): Make static to match prototype.
3625
3626 Mon Sep  7 19:13:59 1998  Jeffrey A Law  (law@cygnus.com)
3627
3628         * configure.in: If we are unable to find the "gnatbind" program,
3629         then do not configure the ada subdir.
3630         * configure: Rebuilt.
3631
3632 Sun Sep 6 14:03:58 PDT 1998 Jeff Law  (law@cygnus.com)
3633
3634         * version.c: Bump for snapshot.
3635
3636 Sun Sep 6 13:28:07 PDT 1998 Jeff Law  (law@cygnus.com)
3637
3638         * version.c: Bump for snapshot.
3639
3640 Sun Sep  6 08:54:14 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3641
3642         * Makefile.in (toplev.o): Depend on $(EXPR_H).
3643         (insn-extract.o, insn-attrtab.o): Depend on toplev.h.
3644
3645         * gansidecl.h: Define ATTRIBUTE_NORETURN.
3646
3647         * genattrtab.c: Have insn-attrtab.c include toplev.h.
3648
3649         * genextract.c: Have insn-extract.c include toplev.h.
3650
3651         * rtl.h: Don't prototype `fatal_insn_not_found' and `fatal_insn'.
3652
3653         * toplev.c: Include expr.h.
3654         (really_sorry, fancy_abort): Remove prototypes.
3655         (set_target_switch): Add argument in prototype.
3656         (vfatal): Mark prototype with ATTRIBUTE_NORETURN.
3657         (v_really_sorry): Likewise.
3658         (print_version, print_single_switch, print_switch_values): Make
3659         static and add prototype arguments.
3660         (decl_printable_name): Add prototype arguments.
3661         (lang_expand_expr_t): New typedef.
3662         (lang_expand_expr): Declare as a lang_expand_expr_t.
3663         (incomplete_decl_finalize_hook): Add prototype argument.
3664         (decl_name): Mark variable `verbosity' with ATTRIBUTE_UNUSED.
3665         (botch): Likewise for variable `s'.
3666         (rest_of_type_compilation): Mark variables `type' and `toplev'
3667         with ATTRIBUTE_UNUSED if none of DBX_DEBUGGING_INFO,
3668         XCOFF_DEBUGGING_INFO or SDB_DEBUGGING_INFO are defined.
3669         (display_help): Make variable `i' an `unsigned long'.
3670         (main): Remove unused parameter `envp'.
3671         Cast assignment to `lang_expand_expr' to a `lang_expand_expr_t'.
3672         Cast -1 when comparing it with a `size_t'.
3673
3674         * toplev.h (fatal, fatal_io_error, pfatal_with_name): Mark
3675         prototype with ATTRIBUTE_NORETURN.
3676         (fatal_insn_not_found, fatal_insn, really_sorry,
3677         push_float_handler, pop_float_handler): Add prototypes.
3678         (fancy_abort): Mark prototype with ATTRIBUTE_NORETURN.
3679         (do_abort, botch): Add prototypes.
3680         
3681 Sat Sep  6 12:05:18 1998  John Carr  <jfc@mit.edu>
3682
3683         * final.c (final): If a label is reached only from a single jump,
3684         call NOTICE_UPDATE_CC on the jump and its predecessor before
3685         emitting the insn after the label.
3686         
3687         * i386.h: Add AMD K6 support.
3688         Change TARGET_* macros to use table lookup.
3689         (INITIALIZE_TRAMPOLINE): Improve trampoline code.
3690         (ADJUST_COST): Change definition to call function in i386.c.
3691         (ISSUE_RATE): Define as 2 for anything newer than an 80486.
3692         * i386.c: Add AMD K6 support.
3693         Add constants for feature tests used by TARGET_* macros.
3694         (split_di): If before reload, call gen_lowpart and gen_highpart.
3695         (x86_adjust_cost): New function.
3696         (put_jump_code): New function.
3697         (print_operand): New codes 'D' and 'd'.
3698         * i386.md: New insn types.  New insn attribute "memory".
3699         Redefine scheduling parameters to use new types and add AMD K6
3700         support.  Explicitly set type of most insns.
3701         (move insns): K6 prefers movl $0,reg to xorl reg,reg.  Pentium
3702         Pro and K6 prefer movl $1,reg to incl reg.
3703         (adddi3, subdi3): Set cc_status.
3704         (DImode shift patterns): Change label counters from HOST_WIDE_INT
3705         to int; x86 can't have more than 2^31 DImode shifts per file.
3706         (setcc): Combine all setcc patterns.  Allow writing memory.
3707         Combine all jump patterns using match_operator.
3708         (*bzero): Name pattern.  Emit mutliple stos instructions when that
3709         is faster than rep stos.
3710         (xordi3, anddi3, iordi3): Simplify DImode logical patterns and
3711         add define_split.
3712
3713 Sun Sep  6 11:17:20 1998  Dave Love  <d.love@dl.ac.uk>
3714
3715         * config/m68k/x-next (BOOT_LDFLAGS): Define suitably for f771
3716         linking.
3717
3718 Sat Sep  5 22:05:25 1998  Richard Henderson  <rth@cygnus.com>
3719
3720         * alpha.c (alpha_ra_ever_killed): Inspect the topmost sequence,
3721         not whatever we're generating now.
3722
3723         * alpha.c (set_frame_related_p, FRP): New.
3724         (alpha_expand_prologue): Mark frame related insns.
3725         (alpha_expand_epilogue): Likewise, but with a null FRP.
3726         * alpha.h (INCOMING_RETURN_ADDR_RTX): New.
3727         * alpha.md (exception_receiver): New.
3728         * alpha/crtbegin.asm (.eh_frame): New beginning.
3729         (__do_frame_setup, __do_frame_takedown): New.
3730         * alpha/crtend.asm (.eh_frame): New ending.
3731         * alpha/elf.h (DWARF2_DEBUGGING_INFO): Define.
3732         (ASM_SPEC): Don't emit both dwarf2 and mdebug.
3733         (ASM_FILE_START): Don't emit .file for dwarf2.
3734
3735         * rtl.h (enum reg_note): Add REG_FRAME_RELATED_EXPR.
3736         * rtl.c (reg_note_name): Likewise.
3737         * rtl.texi (REG_NOTES): Likewise.
3738         * dwarf2out.c (dwarf2out_frame_debug): Use it.  Recognize a store
3739         without an offset.
3740
3741 Sat Sep  5 14:47:17 1998  Richard Henderson  <rth@cygnus.com>
3742
3743         * i386.h (PREFERRED_RELOAD_CLASS): Standard fp constants load to TOS.
3744         * i386.md (movsf, movdf, movxf): Validate memory address returned
3745         from force_const_mem.  Kill useless REG_EQUAL setting code.
3746
3747 Sat Sep  5 14:23:31 1998  Torbjorn Granlund <tege@matematik.su.se>
3748
3749         * m68k.md (zero_extendsidi2): Fix typo.
3750
3751 Sat Sep  5 13:40:24 1998  Krister Walfridsson  <cato@df.lth.se>
3752
3753         * configure.in: Removed references to the removed file
3754         * config/xm-netbsd.h. Use ${cpu_type}/xm-netbsd.h for
3755         * arm*-*-netbsd* and ns32k-*-netbsd*.
3756         * config/i386/xm-netbsd.h: Removed unnecessary file.
3757         * config/m68k/xm-netbsd.h: Likewise.
3758         * config/sparc/xm-netbsd.h: Likewise.
3759         * config/mips/xm-netbsd.h: Likewise.
3760
3761 Sat Aug 29 13:32:58 1998  Mumit Khan  <khan@xraylith.wisc.edu>
3762
3763         * i386/cygwin32.h (BIGGEST_ALIGNMENT): Define.
3764         (PCC_BITFIELD_TYPE_MATTERS): Define to be 0.
3765
3766         * i386/cygwin32.h (ASM_OUTPUT_SECTION_NAME): Don't check for
3767         for exact section attributions.
3768
3769         * i386/mingw32.h (CPP_PREDEFINES): Add __MSVCRT__ for msvc
3770         runtime.
3771         * i386/crtdll.h (CPP_PREDEFINES): Define.
3772
3773 Sat Sep  5 03:23:05 1998  Jeffrey A Law  (law@cygnus.com)
3774
3775         * m68k.md (5200 movqi): Do not allow byte sized memory references
3776         using address regs.
3777         * m68k.c (output_move_qimode): Do not use byte sized operations on
3778         address registers.
3779
3780         * Makefile.in (pexecute.o): Use pexecute.c from libiberty.  Provide
3781         explicit rules for building.  Similarly for alloca, vfprintf,
3782         choose-temp and mkstemp, getopt, getopt1, and obstack.
3783         (INCLUDES): Add $(srcdir)/../include.
3784         * pexecute.c, alloca.c, vfprintf.c, choose-temp.c, mkstemp.c: Delete.
3785         * getopt.h, getopt.c getopt1.c, obstack.c, obstack.h: Likewise.
3786
3787 Fri Sep  4 11:57:50 1998  Tom Tromey  <tromey@cygnus.com>
3788
3789         * gcc.c (do_spec_1): [case 'o'] Account for
3790         lang_specific_extra_outfiles.
3791         (main): Correctly clear all slots in outfiles for
3792         lang_specific_extra_outfiles.  Set input_file_number before
3793         calling lang_specific_pre_link.
3794
3795 Fri Sep  4 10:37:07 1998  Jim Wilson  <wilson@cygnus.com>
3796
3797         * loop.c (load_mems): Fix JUMP_LABEL field after for_each_rtx call.
3798
3799 Fri Sep  4 02:01:05 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3800
3801         * config/sparc/sparc.c (output_double_int): In all V9 symbolic
3802         cases, use xword.
3803         (sparc_output_deferred_case_vectors): If no work to do, return.
3804         Fix thinko in Sept 1 change.
3805
3806 1998-09-03  SL Baur  <steve@altair.xemacs.org>
3807
3808         * Makefile.in: add semicolon in BISON definition for portability.
3809
3810 Thu Sep  3 13:34:41 1998  Toon Moene  <toon@moene.indiv.nluug.nl>
3811
3812         * config/nextstep.c (handle_pragma): Correct name of third
3813         argument.
3814
3815 Tue Sep  1 11:30:33 1998  Nick Clifton  <nickc@cygnus.com>
3816
3817         * config/m32r/m32r.md: Change (reg:CC 17) to (reg:SI 17).
3818         * config/m32r/m32r.h: Make register 17 be fixed.
3819         * config/m32r/m32r.c: Use SImode for cc operations.
3820
3821 Thu Sep  3 18:17:34 1998 Benjamin Kosnik  <bkoz@cygnus.com>
3822
3823         * invoke.texi (Warning Options): Add -Wnon-template-friend
3824         documentation.
3825
3826 Thu Sep  3 18:16:16 1998  Michael Meissner  <meissner@cygnus.com>
3827
3828         * rs6000.c (rs6000_override_options): Add -mcpu={401,e603e}.
3829
3830 Thu Sep  3 18:05:16 1998  David Edelsohn  <edelsohn@mhpcc.edu>
3831
3832         * rs6000.md (movsf): Disable explicit secondary-reload-like
3833         functionality if TARGET_POWERPC64.
3834         (movdf): Remove TARGET_POWERPC64 explicit secondary-reload-like
3835         functionality.
3836
3837 Thu Sep  3 11:41:40 1998  Robert Lipe   <robertl@dgii.com>
3838
3839         * fixinc.sco: Borrow code to wrap 'bool' typedefs from tinfo.h
3840         and term.h from fixinc.wrap.
3841
3842 Thu Sep  3 09:47:31 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3843
3844         * aclocal.m4 (GCC_HEADER_STRING): New macro to detect if it is
3845         safe to include both string.h and strings.h together.
3846         (GCC_NEED_DECLARATION): Test STRING_WITH_STRINGS when deciding
3847         which headers to search for function declarations.  Continue to
3848         prefer string.h over strings.h when both are not acceptable.
3849
3850         * acconfig.h (STRING_WITH_STRINGS): Add stub.
3851
3852         * configure.in: Call GCC_HEADER_STRING.
3853
3854         * system.h: Test STRING_WITH_STRINGS when deciding which headers
3855         to include.  Continue to prefer string.h over strings.h when both
3856         are not acceptable.
3857
3858 Wed Sep  2 23:56:29 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3859
3860         * config/sparc/sparc.c (output_double_int): If V9 and MEDLOW, do
3861         not assume top 32-bits of symbolic addresses are zero if
3862         flag_pic.
3863
3864 Thu Sep  3 00:23:21 1998  Richard Henderson  <rth@cygnus.com>
3865
3866         * ginclude/va-alpha.h: Protect entire second portion of the
3867         file against double inclusion.
3868
3869 Thu Sep  3 00:37:55 1998  Ovidiu Predescu  <ovidiu@aracnet.com>
3870
3871         Added support for the Boehm's garbage collector.
3872         * configure.in: Handle --enable-objc-gc.
3873         * configure: Rebuilt.
3874         * Makefile.in (CHECK_TARGETS): Add check-objc.
3875         (check-objc): New rule.
3876         * objc/Make-lang.in: Build a different Objective-C library that
3877         runs with the Boehm's collector.
3878         * objc/encoding.c (objc_round_acc_size_for_types): New function.
3879         * objc/encoding.c: Correctly compute the size of compound types in
3880         the presence of bitfields. Skip the variable name of the type if
3881         any. Added support for long long.
3882         * objc/encoding.h (_C_GCINVISIBLE): New specifier.
3883         (_F_GCINVISIBLE): New mask.
3884         * objc/gc.c: New file. Compute the type memory mask associated with
3885         a class based on the runtime information.
3886         * objc/misc.c: Added the hooks that use the Boehm's collector
3887         allocation functions.
3888         * objc/objc-act.c (build_class_template): Generate a new class
3889         member (gc_object_type) to hold the class' type memory mask.
3890         (build_shared_structure_initializer): Initialize the new member to
3891         NULL.
3892         (encode_complete_bitfield): New function. Generate the new
3893         encoding.
3894         (encode_field_decl): Generate the new encoding only for the GNU
3895         runtime.
3896         * objc/objc-api.h (_C_LNG_LNG, _C_ULNG_LNG): New specifiers for the
3897         long long types.
3898         (class_get_gc_object_type): New function to mark a pointer instance
3899         variable as a weak pointer.
3900         * objc/objc-features.texi: New file.
3901         * objc/objc.h (gc_object_type): New class member.
3902         * objc/objects.c (class_create_instance): Create a typed memory
3903         object when compiled with Boehm's collector support.
3904         * objc/sendmsg.c (__objc_init_install_dtable): Call
3905         __objc_send_initialize instead of setting the initialize flag.
3906         (__objc_send_initialize): Call __objc_generate_gc_type_description
3907         to generate the class type memory mask. Rewrite the code that
3908         sends the +initialize so that it is called only once (bug report
3909         and fix from Ronald Pijnacker <Ronald.Pijnacker@best.ms.philips.com>).
3910         * testsuite/objc: New testsuite for Objective-C type encoding.
3911         * testsuite/lib/objc-torture.exp: New file.
3912         * testsuite/lib/objc.exp: New file.
3913
3914 Wed Sep  2 14:47:36 1998  Jim Wilson  <wilson@cygnus.com>
3915
3916         * jump.c (jump_optimize): In if/then/else transformations, add
3917         another call to modified_between_p for the jump insn.
3918
3919 Wed Sep  2 14:16:49 1998  Jeffrey A Law  (law@cygnus.com)
3920
3921         * fix-header.c (symlink): Treat like readlink.
3922
3923 Wed Sep  2 19:30:06 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
3924
3925         * dwarfout.c (fundamental_type_code): Encode 32 bit floats/doubles
3926         as FT_float.
3927
3928 Wed Sep  2 10:06:07 1998  Nick Clifton  <nickc@cygnus.com>
3929
3930         * config/nextstep.h:    Update HANDLE_PRAGMA macro.
3931         * config/h8300/h8300.h: Update HANDLE_PRAGMA macro.
3932         * config/i960/i960.h:   Update HANDLE_PRAGMA macro.
3933         
3934         * config/nextstep.c (handle_pragma): Take three arguments, as per
3935         the new HANDLE_PRAGMA macro specification.
3936         * config/h8300/h8300.c (handle_pragma): Take three arguments, as
3937         per the new HANDLE_PRAGMA macro specification.
3938         * config/i960/i960.c (process_pragma): Take three arguments, as
3939         per the new HANDLE_PRAGMA macro specification.
3940
3941 Wed Sep  2 09:25:29 1998  Nick Clifton  <nickc@cygnus.com>
3942
3943         * c-lex.c (check_newline):  Call HANDLE_PRAGMA before
3944         HANDLE_SYSV_PRAGMA if both are defined.  Generate warning messages
3945         if unknown pragmas are encountered.
3946         (handle_sysv_pragma): Interpret return code from
3947         handle_pragma_token ().  Return success/failure indication rather
3948         than next unprocessed character. 
3949         (pragma_getc): New function: retrieves characters from the
3950         input stream.  Defined when HANDLE_PRAGMA is enabled.
3951         (pragma_ungetc): New function: replaces characters back into the
3952         input stream.  Defined when HANDLE_PRAGMA is enabled.
3953         
3954         * c-pragma.c (handle_pragma_token): Return success/failure status
3955         of the parse.
3956         
3957         * c-pragma.h: Change prototype of handle_pragma_token().
3958
3959         * varasm.c: (handle_pragma_weak): Only create this function if
3960         HANDLE_PRAGMA_WEAK is defined.
3961
3962         * c-common,c (decl_attributes): If defined call the expression
3963         contained within the INSERT_ATTRIBUTES macro before adding
3964         attributes to a decl.
3965
3966         * tm.texi (HANDLE_PRAGMA): Document the new verion of
3967         HANDLE_PRAGMA, which takes three arguments.
3968         (INSERT_ATTRIBUTES): Document this new macro.  
3969
3970         * LANGUAGES: Document the new version of HANDLE_PRAGMA and the
3971         new INSERT_ATTRIBUTES macro.
3972
3973 Wed Sep  2 02:03:23 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3974
3975         * config/sparc/sparc.md (movdf): Only generate special RTL for
3976         LABEL_REFs when PIC.
3977         (move_label_di): Remove
3978         (movdi_pic_label_ref, movdi_high_pic_label_ref,
3979         movdi_lo_sum_pic_label_ref): New patterns for 64-bit label
3980         references when PIC.
3981         * config/sparc/sparc.h (ASM_OUTPUT_ADDR_VEC_ELT,
3982         ASM_OUTPUT_ADDR_DIFF_ELT): Don't do anything special for MEDLOW,
3983         output an .xword for all 64-bit cases.
3984         
3985 Tue Sep  1 15:55:17 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3986
3987         * config/sparc/sparc.c (finalize_pic): Don't output arbitrary
3988         alignment, use FUNCTION_BOUNDARY instead.
3989         (sparc_output_deferred_case_vectors): Likewise.
3990
3991 Mon Aug 31 17:25:41 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
3992
3993         * config/sparc/sparc.md (movsf_const_intreg): Kill warning.
3994         (movtf_insn_sp64, movtf_no_e_insn_sp64): Reorder alternatives.
3995
3996 Mon Aug 31 13:57:55 1998  Richard Henderson  <rth@cygnus.com>
3997
3998         * alpha/va_list.h: New file.
3999         * alpha/x-alpha (EXTRA_HEADERS): New.  Add va_list.h.
4000
4001 Mon Aug 31 14:55:02 1998  Jeffrey A Law  (law@cygnus.com)
4002
4003         * NEWS: Add SCO Openserver and Unixware 7 notes.
4004
4005         * NEWS: Fix typos.
4006
4007 Mon Aug 31 15:42:18 1998  Dave Brolley  <brolley@cygnus.com>
4008
4009         * varasm.c (compare_constant_1): Handle RANGE_EXPR.
4010         (record_constant_1): Handle RANGE_EXPR.
4011
4012 Mon Aug 31 10:54:03 1998  Richard Henderson  <rth@cygnus.com>
4013
4014         * print-rtl.c (print_rtx): NOTE_INSN_LIVE has an rtx not a bitmap.
4015         * haifa-sched.c (sched_analyze): Handle NOTE_INSN_RANGE_START
4016         and NOTE_INSN_RANGE_END specially.
4017         (reemit_notes): Likewise.
4018
4019 Mon Aug 31 10:18:52 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4020
4021         * sparc.c (TMASK, UMASK): Use `(unsigned)1' not `1U'.
4022         (ultrasparc_sched_init): Remove unneeded &.
4023
4024 Mon Aug 31 10:47:16 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4025
4026         * config/m68k/m68k.h (TARGET_SWITCHES): Don't remove MASK_68040
4027         for m68020-60, to prevent the use of fintrz.
4028
4029 Sun Aug 30 22:17:20 1998  Mark Mitchell  <mark@markmitchell.com>
4030
4031         * configure.in: If the native compiler is GCC use $(WARN_CFLAGS) 
4032         even in stage1. 
4033         * Makefile.in: Likewise.
4034         * configure: Regenerated.
4035
4036 Sun Aug 30 22:15:41 1998  H.J. Lu  (hjl@gnu.org)
4037
4038         * configure.in (gxx_include_dir): Changed to
4039         '${prefix}/include/g++'-${libstdcxx_interface}.
4040         * configure: Rebuilt.
4041
4042 Sun Aug 30 20:19:43 1998  Hans-Peter Nilsson  <hp@axis.se>
4043
4044         * expr.c (expand_expr): Change ">" to ">=" making MOVE_RATIO use
4045         consistent.
4046         * tm.texi (Costs): Say MOVE_RATIO is number of mem-mem move
4047         *sequences* *below* which scalar moves will be used.
4048
4049 Sun Aug 30 17:18:43 1998  Jeffrey A Law  (law@cygnus.com)
4050
4051         * collect2.c (mktemp): Delete unused declaration.
4052
4053         * config/xm-netbsd.h: Remove unnecessary file.
4054         * config/*/xm-netbsd.h: Do not include the generic xm-netbsd.h
4055         file anymore, it is not needed.
4056
4057 Sun Aug 30 16:05:45 1998  Mark Mitchell  <mark@markmitchell.com>
4058
4059         * convert.c (convert_to_integer): Issue an error on conversions to
4060         incomplete types.
4061
4062 Sun Aug 30 16:47:20 1998  Martin von Lvwis  <loewis@informatik.hu-berlin.de>
4063
4064         * Makefile.in: Add lang_tree_files and gencheck.h.
4065         * configure.in: Generate them.
4066         * gencheck.c: Include gencheck.h.
4067
4068 Sat Aug 29 21:38:24 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4069
4070         * config/sparc/sparc.md (pic_lo_sum_di, pic_sethi_di): Rename to
4071         movdi_lo_sum_pic and movdi_high_pic and make visible.
4072         * config/sparc/sparc.c (legitimize_pic_address): For -fPIC,
4073         emit these when Pmode is not SImode.
4074         * config/sparc/linux64.h (SPARC_DEFAULT_CMODEL): Make CM_MEDLOW.
4075
4076 Sat Aug 29 14:59:32 1998  Mumit Khan  <khan@xraylith.wisc.edu>
4077
4078         * i386/cygwin32.h (ASM_OUTPUT_SECTION_NAME): Don't emit
4079         .linkonce directive after the first time.
4080
4081 Sat Aug 29 12:39:56 1998  Jeffrey A Law  (law@cygnus.com)
4082
4083         * m68k.md (beq0_di): Generate correct (and more efficient) code when
4084         the clobbered operand overlaps with an input.
4085         (bne0_di): Similarly.
4086
4087         * Makefile.in (INSTALL): Remove "--no-header" argument.
4088
4089         * NEWS: Various updates.
4090
4091 Fri Aug 28 19:00:44 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4092
4093         * config/sparc/sparc.c (arith_operand, const64_operand,
4094         const64_high_operand, arith_double_4096_operand): Mark mode as
4095         unused.
4096         (create_simple_focus_bits): Remove unused arg highest_bit_set, all
4097         callers changed.
4098         (sparc_emit_set_const64): Remove unused variable i.
4099         (sparc_splitdi_legitimate): Likewise for addr_part.
4100         (ultra_code_from_mask): Likewise for mask.
4101         (ultra_cmove_results_ready_p): Fixup entry modulo calc. and
4102         reverse return values so it matches usage and comments.
4103         (ultra_flush_pipeline): Likewise.
4104         (ultra_fpmode_conflict_exists): Likewise, remove unused variable
4105         this_type, and allow loads and stores of differing FP modes as
4106         they do not create a conflict.
4107         (ultra_find_type): Initialize fpmode to SFmode, fix
4108         parenthesization thinkos in large conditional.
4109         (ultrasparc_sched_init): Mark dump and sched_verbose as unused.
4110         Init free_slot_mask after ultra_cur_hist is reset, not before.
4111         (ultrasparc_rescan_pipeline_state): Remove unused variable ucode.
4112         (ultrasparc_sched_reorder): Don't bzero current pipeline state,
4113         use ultra_flush_pipeline instead, then re-init group pointer.
4114         Fix statement with no effect.  If no progress made in, and no
4115         instructions scheduled at all, advance to new pipeline cycle else
4116         we get into an endless loop.
4117         (ultrasparc_adjust_cost): Remove previous arg.
4118         * config/sparc/sparc.h (ADJUST_COST): Update to reflect that.
4119         
4120 Fri Aug 28 13:52:35 1998  Jim Wilson  <wilson@cygnus.com>
4121
4122         * sparc.md (DImode, DFmode, TFmode splits): Delete self_reference
4123         code.  Use reg_overlap_mentioned_p to detect when source and
4124         destination overlap.
4125         (negtf2_notv9+1): Use DFmode instead of SFmode in last two operands.
4126
4127 1998-08-28  Brendan Kehoe  <brendan@cygnus.com>
4128
4129         * loop.c (check_dbra_loop): Pass COMPARISON_VALUE, not
4130         COMPARISON_VAL, into invariant_p.
4131
4132 Fri Aug 28 15:13:25 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4133
4134         * regmove.c (regclass_compatible_p): New function.
4135         (regmove_optimize): Use it.
4136
4137         Use NREGS parameter insted of calling max_reg_num.
4138
4139         (fixup_match_1): Don't use code = MINUS when later tieing with
4140         a hard register is likely.
4141
4142 Fri Aug 28 14:54:07 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4143
4144         * loop.c (check_dbra_loop): Fix calculation of FINAL_VALUE when
4145         COMPARISON_VAL was normalized.
4146
4147 Thu Aug 27 20:10:46 1998  Jeffrey A Law  (law@cygnus.com)
4148
4149         * loop.c (check_dbra_loop): The loop ending comparison value
4150         must be an invariant or we can not reverse the loop.
4151
4152         * loop.c (scan_loop): Count down from max_reg_num - 1 to
4153         FIRST_PSEUDO_REGISTER to avoid calling max_reg_num each iteration
4154         of the loop.
4155         (load_mems_and_recount_loop_regs_set): Likewise.
4156
4157         * i386.c (print_operand): Remove obsolete 'c' docs.
4158
4159 Wed Aug 26 17:13:37 1998  Tom Tromey  <tromey@cygnus.com>
4160
4161         * gthr.h: Document __GTHREAD_MUTEX_INIT_FUNCTION.
4162         * frame.c (init_object_mutex): New function.
4163         (init_object_mutex_once): Likewise.
4164         (find_fde): Call it.
4165         (__register_frame_info): Likewise.
4166         (__register_frame_info_table): Likewise.
4167         (__deregister_frame_info): Likewise.
4168
4169 Thu Aug 27 15:14:18 1998  Jeffrey A Law  (law@cygnus.com)
4170
4171         * haifa-sched.c (sched_analyze_insn): Fix thinko in last change.
4172
4173 Thu Aug 27 16:34:51 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4174
4175         * loop.c (check_dbra_loop): Enable code for reversal
4176         of some loops without a known constant loop end.
4177
4178 Wed Aug 26 18:38:15 1998  Richard Henderson  <rth@cygnus.com>
4179
4180         * haifa-sched.c (last_clock_var): New.
4181         (schedule_block): Initialize it.
4182         (schedule_insn): Use it to fill insn modes with issue information.
4183
4184         * alpha.c (alpha_handle_trap_shadows): Remove do-nothing exit.
4185         Tag trapb and next insn with TImode.
4186         (alphaev5_insn_pipe, alphaev5_next_group, alphaev5_align_insns): New.
4187         (alpha_reorg): Add conditional for alpha_handle_trap_shadows.
4188         Invoke alphaev5_align_insns as appropriate.
4189         * alpha.h (LABEL_ALIGN_AFTER_BARRIER): Was ALIGN_LABEL_AFTER_BARRIER.
4190         (MD_SCHED_VARIABLE_ISSUE): New.
4191         * alpha.md (attr type): Add multi.
4192         (define_asm_attributes): New.
4193         (prologue_stack_probe_loop, builtin_setjmp_receiver): Set type multi.
4194         (arg_home): Likewise.
4195         (fnop, unop, realign): New.
4196
4197 Wed Aug 26 15:55:41 1998  Jim Wilson  <wilson@cygnus.com>
4198
4199         * iris5.h (PREFERRED_DEBUGGING_TYPE): Undef.
4200         * iris5gas.h (PREFERRED_DEBUGGING_TYPE): Define.
4201
4202         * configure.in (powerpc-ibm-aix4.[12]*): Change from 4.[12].*.
4203         (rs6000-ibm-aix4.[12]*): Likewise.
4204         * configure: Regnerate.
4205
4206 Wed Aug 26 09:30:59 1998  Nick Clifton  <nickc@cygnus.com>
4207
4208         * config/arm/thumb.c (thumb_exit): Do not move a4 into lr if it
4209         already contains the return address.
4210
4211 Wed Aug 26 12:57:09 1998  Jeffrey A Law  (law@cygnus.com)
4212
4213         * calls.c (expand_call): Use bitfield instructions to extract/deposit
4214         word sized hunks when loading unaligned args into registers.
4215
4216         * haifa-sched.c (sched_analyze_insn): Only create scheduling
4217         barriers for LOOP, EH and SETJMP notes on the loop_notes list.
4218
4219         * mn10300.h (RTX_COSTS): Handle UDIV and UMOD too.
4220
4221 Wed Aug 26 16:35:37 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4222
4223         * loop.c (check_dbra_loop): Add some code that would allow reversal
4224         of some loops without a known constant loop end if it were enabled.
4225
4226 Wed Aug 26 11:08:44 1998  Gavin Romig-Koch  <gavin@cygnus.com>
4227
4228         * mips.md (lshrsi3_internal2+2): Fix type-o.
4229
4230 Wed Aug 26 10:53:03 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4231
4232         * system.h: Include stdarg.h/varargs.h, make sure they are ordered
4233         correctly with regards to stdio.h.
4234         
4235         * calls.c: Remove stdarg.h/varargs.h.
4236         * cccp.c: Likewise.
4237         * cexp.y: Likewise.
4238         * combine.c: Likewise.
4239         * cpperror.c: Likewise.
4240         * cpplib.c: Likewise.
4241         * cpplib.h: Likewise.
4242         * doprint.c: Likewise.
4243         * emit-rtl.c: Likewise.
4244         * final.c: Likewise.
4245         * fix-header.c: Likewise.
4246         * gcc.c: Likewise.
4247         * genattr.c: Likewise.
4248         * genattrtab.c: Likewise.
4249         * gencodes.c: Likewise.
4250         * genconfig.c: Likewise.
4251         * genemit.c: Likewise.
4252         * genextract.c: Likewise.
4253         * genflags.c: Likewise.
4254         * genopinit.c: Likewise.
4255         * genoutput.c: Likewise.
4256         * genpeep.c: Likewise.
4257         * genrecog.c: Likewise.
4258         * mips-tfile.c: Likewise.
4259         * prefix.c: Likewise.
4260         * protoize.c: Likewise.
4261         * regmove.c: Likewise.
4262         * toplev.c: Likewise.
4263         * tree.c: Likewise.
4264
4265 Wed Aug 26 05:09:27 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
4266
4267         * config/sparc/sparc.c (sparc_override_options): If not
4268         TARGET_FPU, turn off TARGET_VIS.
4269         * config/sparc/sparc.h (TARGET_SWITCHES): Add no-vis.
4270         (LEGITIMATE_CONSTANT_P): Allow SF/DF mode zero when TARGET_VIS.
4271         * config/sparc/sparc.md (movsi_insn): Use fzeros not fzero.
4272         (movdi_insn_sp64): Add VIS fzero alternative.
4273         (clear_sf, clear_df): New VIS patterns.
4274         (movsf, movdf expanders): Allow fp_zero_operand flat out when
4275         TARGET_VIS.
4276         (one_cmpldi2_sp64): Provide new fnot1 VIS alternative.
4277         
4278 Tue Aug 25 10:57:41 1998  Mark Mitchell  <mark@markmitchell.com>
4279
4280         * loop.c (n_times_set, n_times_used, may_not_optimize,
4281         reg_single_usage): Convert to varrays.  All uses changed.
4282         (insert_loop_mem): Return a value.
4283         (scan_loop): Tweak AVOID_CC_MODE_COPIES code.
4284         (load_mems_and_recount_loop_regs_set): Likewise.  Grow the arrays, if
4285         necessary.
4286
4287 Tue Aug 25 23:57:12 1998  Jeffrey A Law  (law@cygnus.com)
4288
4289         * From Alexandre:
4290         * configure.in: Do not set thread_file to "irix" since no such
4291         support exists yet.
4292
4293         * sparc.md (float abs/neg splits): Check reload_completed before
4294         calling alter_subreg.
4295
4296 Tue Aug 25 19:17:59 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4297
4298         * config/sparc/sparc.c (sparc_absnegfloat_split_legitimate): New
4299         function.
4300         * config/sparc/sparc.h: Declare it.
4301         * config/sparc/sparc.md (float abs/neg splits): Use it.
4302         (all other splits): Handle SUBREGs properly where necessary.
4303         (unnamed (1<<x)-1 V8PLUS pattern): Disable for now.
4304
4305 Tue Aug 25 19:48:46 1998  Jeffrey A Law  (law@cygnus.com)
4306
4307         * reorg.c (fill_simple_delay_slots): Do not abort if we encounter
4308         an insn on the unfilled_slots_list that has no delay slots.
4309         (fill_eager_delay_slots): Similarly.
4310
4311 Tue Aug 25 13:35:20 1998  Nick Clifton  <nickc@cygnus.com>
4312
4313         * config/v850/v850.c (movsi_source_operand): Treat CONSTANT_P_RTX
4314         as an ordinary operand.
4315
4316 Tue Aug 25 12:54:57 1998  Jason Merrill  <jason@yorick.cygnus.com>
4317
4318         * tree.c (valid_machine_attribute): Don't apply attributes to both
4319         decl and type.
4320
4321 Tue Aug 25 12:23:20 PDT 1998  Richard Henderson  <rth@cygnus.com>
4322
4323         * reload.c (operands_match_p): Handle rtvecs.
4324
4325         * i386.c (legitimate_pic_address_disp_p): New.
4326         (legitimate_address_p): Use it.
4327         (legitimize_pic_address): Use unspecs to represent @GOT and @GOTOFF.
4328         Handle constant pool symbols just like statics.
4329         (emit_pic_move): Use Pmode not SImode for clarity.
4330         (output_pic_addr_const) [SYMBOL_REF]: Remove @GOT and @GOTOFF hacks.
4331         [UNSPEC]: New, handling what we killed above.
4332         [PLUS]: Detect and abort on invalid symbol arithmetic.
4333         * i386.h (CONSTANT_ADDRESS_P): Remove HIGH.
4334
4335 Tue Aug 25 12:02:23 1998  Mark Mitchell  <mark@markmitchell.com>
4336
4337         * alias.c: Include output.h.
4338         (DIFFERENT_ALIAS_SETS_P): Don't treat alias sets as
4339         different if we're in a varargs function.
4340         * Makefile.in (alias.o): Depend on output.h
4341         
4342 Tue Aug 25 19:20:12 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4343
4344         * sh.h (GIV_SORT_CRITERION): Delete.
4345
4346 Tue Aug 25 13:19:46 1998  Dave Brolley  <brolley@cygnus.com>
4347
4348         * regclass.c (regclass): Use xmalloc/free instead of alloca.
4349         * stupid.c (stupid_life_analysis): Ditto.
4350         * reload1.c (reload): Ditto.
4351
4352 Tue Aug 25 05:48:18 1998  Jakub Jelinek  <jj@sunsite.ms.mff.cuni.cz>
4353
4354         * config/sparc/sparc.c (arith_4096_operand, arith_add_operand,
4355         arith_double_4096_operand, arith_double_add_operand): New
4356         predicates.
4357         * config/sparc/sparc.h (PREDICATE_CODES): Add them, declare them.
4358         * config/sparc/sparc.md (adddi3, addsi3, subdi3, subsi3): Use
4359         them to transform add/sub 4096 into add/sub -4096.
4360
4361 Mon Aug 24 23:31:03 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4362
4363         * loop.c (scan_loop): Allocate some slop to handle pseudos
4364         generated by move_movables.
4365         (load_mems_and_recount_loop_regs_set): Honor AVOID_CC_MODE_COPIES
4366         here too.
4367
4368 Mon Aug 24 19:45:40 1998  Jim Wilson  <wilson@cygnus.com>
4369
4370         * tree.def (DECL_RESULT): Correct documentation.
4371
4372 Tue Aug 25 01:15:27 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4373
4374         * reload1.c (reload_reg_free_before_p): New argument EQUIV;  Changed
4375         all callers.  Abort for RELOAD_FOR_INSN.  RELOAD_FOR_OUTADDR_ADDR:
4376         conflicts will all RELOAD_FOR_OUTPUT reloads.
4377
4378         * reload1.c (reload_cse_regs_1): When deleting a no-op move that
4379         loads the function result, substitute with a USE.
4380
4381 Mon Aug 24 15:20:19 1998  David Edelsohn  <edelsohn@mhpcc.edu>
4382
4383         * rs6000.h (GO_IF_LEGITIMATE_ADDRESS): Use TARGET_POWERPC64
4384         when testing LEGITIMATE_INDEXED_ADDRESS_P DFmode and DImode.
4385         (LEGITIMIZE_ADDRESS): Use TARGET_POWERPC64 for INDEXED fixup.
4386         * rs6000.c (print_operand, case 'L'): Add UNITS_PER_WORD, not 4.
4387         (print_operand, cases 'O' and 'T'): Fix typos in lossage strings.
4388         * rs6000.md (fix_truncdfsi2_store): Remove %w from non-CONST_INT
4389         operand. 
4390         (movdf_softfloat32, movdf_hardfloat64, movdf_softfloat64): Change
4391         'o' to 'm' for GPR variant constraints.
4392
4393 Mon Aug 24 10:25:46 1998  Jeffrey A Law  (law@cygnus.com)
4394
4395         * loop.c (scan_loop): Honor AVOID_CC_MODE_COPIES.
4396
4397         * h8300.h (STRIP_NAME_ENCODING): Fix typo.
4398
4399         * sparc.md (TFmode splits): Use reg_overlap_mentioned_p to detect
4400         when the source and destination overlap.
4401
4402         * stmt.c (emit_case_nodes): Change rtx_function to rtx_fn to avoid
4403         clash with global type.
4404
4405 Mon Aug 24 00:53:53 1998  Jason Merrill  <jason@yorick.cygnus.com>
4406
4407         * fixinc.irix: Add curses.h handling from fixinc.wrap.
4408
4409         * c-common.c (combine_strings): Also set TREE_READONLY.
4410         Change warn_write_strings to flag_const_strings.
4411         * c-decl.c, c-tree.h: Likewise.
4412
4413 Sun Aug 23 18:39:11 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4414
4415         * config/sparc/sparc.c (sparc_emit_set_const32): If outputting a
4416         CONST_INT, not a symbolic reference, don't use a HIGH/LO_SUM
4417         sequence, use SET/IOR instead so CSE can see it.
4418         * config/sparc/sparc.md (movhi_const64_special,
4419         movsi_const64_special): New patterns necessitated by that change.
4420         (movhi_high): Remove.
4421         (movhi_lo_sum): Change to match an IOR.
4422         (movdf_insn_sp32): Test TARGET_V9 not TARGET_ARCH64.
4423         (movdf_insn_v9only): New pattern for when V9 but not ARCH64.
4424         (movdf_insn_sp64): Test both TARGET_V9 and TARGET_ARCH64.
4425         (movdf splits): Allow when not V9 or when not ARCH64 and integer
4426         registers are involved.
4427         (snesi_zero_extend split): Remove reload_completed test.
4428         (unnamed plus and minus zero_extend sidi splits): Add it.
4429
4430 Sun Aug 23 11:56:08 1998  Mark Mitchell  <mark@markmitchell.com>
4431
4432         * extend.texi: Remove description of extension to explicit
4433         instantiation that is now endorsed by standard C++.
4434
4435 Sun Aug 23 09:39:09 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4436
4437         * config/arc/arc.c (arc_initialize_pic): Remove.
4438         * config/arc/arc.h (INITIALIZE_PIC): Similarly, this routine does
4439         nothing on any platform and is invoked by no-one, it does not even
4440         appear in the documentation.
4441         * config/sparc/sparc.h (INITIALIZE_PIC): Likewise.
4442         * config/sparc/sparc.c (initialize_pic): Likewise.
4443         (find_addr_reg): Remove this as well, no longer referenced after
4444         my rewrite.
4445
4446 Sun Aug 23 00:17:14 1998  Jeffrey A Law  (law@cygnus.com)
4447
4448         * recog.c (validate_replace_rtx_group): New function.
4449         * recog.h (validate_replace_rtx_group): Declare it.
4450         * regmove.c (optimize_reg_copy_3): If any substitution fails, then undo
4451         the entire group of substitutions.
4452
4453 Sat Aug 22 23:31:00 1998  Klaus-Georg Adams  (Klaus-Georg.Adams@chemie.uni-karlsruhe.de)
4454
4455         * loop.c (load_mems): Fix initializers.
4456
4457 Fri Aug 21 23:07:46 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4458
4459         * config/sparc/sparc.md (TFmode splits): Handle destination
4460         registers being referenced in the address correctly.
4461
4462         * expmed.c (make_tree) [CONST_INT]: Sign extend even if
4463         TREE_UNSIGNED, when bitsize of type's mode is larger than
4464         HOST_BITS_PER_WIDE_INT.
4465
4466 Fri Aug 21 19:31:31 1998  Alexandre Petit-Bianco <apbianco@cygnus.com>
4467
4468         * tree.def (LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR): New tree nodes.
4469         * tree.h (LABELED_BLOCK_LABEL, LABELED_BLOCK_BODY,
4470         EXIT_BLOCK_LABELED_BLOCK, EXIT_BLOCK_RETURN, LOOP_EXPR_BODY): New
4471         macros.
4472         * expr.c (expand_expr): Handle LABELED_BLOCK_EXPR and
4473         EXIT_BLOCK_EXPR.
4474
4475 Thu Aug 20 19:43:44 1998  Jeffrey A Law  (law@cygnus.com)
4476
4477         * h8300.c (h8300_encode_label): Use '&' for tiny data items.
4478         * h8300.h (TINY_DATA_NAME_P): Likewise.
4479         (STRIP_NAME_ENCODING): Handle '&'.
4480
4481         * mn10200.h (REG_OK_FOR_INDEX_P): Do not check the mode of the
4482         register (it could be accessed via an outer SUBREG).
4483         (REG_OK_FOR_BASE_P): Likewwise.
4484         (GO_IF_LEGITIMATE_ADDRESS): Consistently use REGNO_OK_FOR_BASE_P.
4485
4486         * remove.c (optimize_reg_copy_3): Abort instead of silently generating
4487         bogus rtl.
4488
4489         * jump.c (rtx_renumbered_equal_p): Do not consider PLUS commutative.
4490
4491 Thu Aug 20 17:35:20 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4492
4493         * config/sparc/sparc.md (movtf_insn_sp32): All memory operands
4494         must be offsettable so the splits can be made.
4495
4496 Thu Aug 20 13:56:53 1998  Michael Meissner  <meissner@cygnus.com>
4497
4498         * config/i386/winnt.c: Include system.h, not stdio.h to get
4499         sys/param.h pulled in before rtl.h in case the system defines MIN
4500         and MAX.
4501
4502 Thu Aug 20 13:44:20 1998  David Edelsohn  <edelsohn@mhpcc.edu>
4503
4504         * rs6000.md (movqi, movhi): Add CONSTANT_P_RTX.
4505
4506 Thu Aug 20 13:15:11 1998  Dave Brolley  <brolley@cygnus.com>
4507
4508         * stor-layout.c (layout_type): Compute TYPE_SIZE_UNIT correctly for
4509         arrays of bits.
4510         * cpplib.c (cpp_define): Handle macros with parameters.
4511
4512 Wed Aug 19 21:33:19 1998  David Edelsohn  <edelsohn@mhpcc.edu>
4513
4514         * rs6000.c (rs6000_output_load_toc_table): Use ld for 64-bit.
4515         (output_toc): Use single TOC slot or llong minimal-toc for DFmode
4516         and DImode 64-bit.  Use llong for minimal-toc SFmode and
4517         SYMBOL_REF / LABEL_REF 64-bit.
4518         (output_function_profiler): Use llong for profiler label and ld to
4519         load 64-bit label address.
4520
4521 Wed Aug 19 17:52:27 1998  Nick Clifton  (nickc@cygnus.com)
4522
4523         * config/arm/thumb.md (extendqisi2_insn): Cope with REG +
4524         OFFSET addressing.
4525
4526 Wed Aug 19 14:13:31 PDT 1998 Jeff Law  (law@cygnus.com)
4527
4528         * version.c: Bump for snapshot.
4529
4530 Wed Aug 19 13:10:30 PDT 1998 Jeff Law  (law@cygnus.com)
4531
4532         * version.c: Bump for snapshot.
4533
4534 Wed Aug 19 13:06:47 1998  Jason Merrill  <jason@yorick.cygnus.com>
4535
4536         * collect2.c (extract_init_priority): Use atoi instead of strtoul.
4537
4538 Wed Aug 19 13:51:35 1998  Hans-Peter Nilsson  <hp@axis.se>
4539
4540         * tm.texi (Misc): Fix typo "teh".
4541
4542         * tm.texi (PIC): Fix typo "PPIC".
4543
4544         * tm.texi (Caller Saves): Say that DEFAULT_CALLER_SAVES has no
4545         effect when -O2 and higher.
4546         * invoke.texi (Optimize Options): Likewise for -fcaller-saves.
4547
4548 1998-08-19  Michael Hayes  <michaelh@ongaonga.chch.cri.nz>
4549
4550         * regclass.c: Changed register set documentation to be consistent
4551         with GCC behaviour.
4552
4553         * final.c (final_start_function) Removed redundant test for
4554         call_fixed_regs.
4555
4556 Wed Aug 19 13:28:41 1998  Mark Mitchell  <mark@markmitchell.com>
4557
4558         * rtl.h (rtx_function): New type.
4559         (for_each_rtx): New function.
4560         * rtlanal.c (for_each_rtx): Define it.
4561         
4562         * recog.c (change_t): New type.
4563         (change_objects, change_old_codes, change_locs, change_olds):
4564         Replace with ...
4565         (changes): New variable.
4566         (validate_change): Dynamically allocate room for more changes, if
4567         necessary.  Uses changes array instead of change_objects, etc.
4568         (apply_change_group):  Use changes array instead of
4569         change_objects, etc.
4570         
4571         * loop.c (loop_mem_info): New type.
4572         (loop_mems): New variable.
4573         (loop_mems_idx): Likewise.
4574         (looop_mems_allocated): Likewise.
4575         (scan_loop): Remove nregs parameter.
4576         (next_insn_in_loop): New function.
4577         (load_mems_and_recount_loop_regs_set): Likewise.
4578         (load_mems): Likewise.
4579         (insert_loop_mem): Likewise.
4580         (replace_loop_mem): Likewise.
4581         (replace_label): Likewise.
4582         (INSN_IN_RANGE_P): New macro.
4583         (loop_optimize): Don't pass max_reg_num() to scan_loop.
4584         (scan_loop): Remove nregs parameter, compute it after any new
4585         registers are created by load_mems.  Use INSN_IN_RANGE_P and
4586         next_insn_in_loop rather than expanding them inline.  Call
4587         load_mems to load memory into pseudos, if appropriate.
4588         (prescan_loop): Figure out whether or not there are jumps from the
4589         loop to targets other than the label immediately following the
4590         loop.  Call insert_loop_mem to notice all the MEMs used in the
4591         loop, if it could be safe to pull MEMs into REGs for the duration
4592         of the loop.
4593         (strength_reduce): Use next_insn_in_loop.  Tweak comments.
4594
4595 Wed Aug 19 08:29:44 1998  Richard Earnshaw (rearnsha@arm.com)
4596
4597         * arm.c (arm_override_options): Remove lie about ignoring PIC flag.
4598
4599 Wed Aug 19 07:08:15 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4600
4601         * config/sparc/sparc.c (finalize_pic): Check for the correct
4602         nonlocal_goto_receiver UNSPEC number.
4603         * config/sparc/sparc.md (nonlocal_goto_receiver): Add comment
4604         making note of this dependency existing in sparc.c
4605         (negtf2_notv9 split): Give NEG SFmode.
4606         (negsf2): Fix insn output string.
4607         
4608 Tue Aug 18 12:40:27 1998  Richard Henderson  <rth@cygnus.com>
4609
4610         * c-common.c (decl_attributes): Issue an error if the argument
4611         to alias is not a string.
4612
4613 Tue Aug 18 10:33:30 1998  Jeffrey A Law  (law@cygnus.com)
4614
4615         * haifa-sched.c (sched_analyze): Put all JUMP_INSNs on the last
4616         pending memory flush list.
4617
4618         * combine.c (can_combine_p): Allow combining insns with REG_RETVAL
4619         notes.
4620         (try_combine): Allow combining insns with REG_LIBCALL notes.
4621
4622         * expr.c (emit_block_move): Do not call memcpy as a libcall
4623         instead build up a CALL_EXPR and call it like any other
4624         function.
4625         (clear_storage): Similarly for memset.
4626
4627         * regmove.c (fixup_match_2): Do not call reg_overlap_mentioned_p
4628         on notes.
4629
4630         * Makefile.in (cplus-dem.o): Provide explicit rules for building
4631         cplus-dem.o
4632
4633         * regmove.c (optimize_reg_copy_1): Update REG_N_CALLS_CROSSED
4634         and REG_LIVE_LENGTH as successful substitutions are made.
4635
4636 Tue Aug 18 07:15:27 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4637
4638         * config/sparc/sparc.c (ultra_find_type): Add empty semicolon
4639         statement after end of loop label.
4640
4641 Tue Aug 18 07:13:27 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4642
4643         * config/sparc/sparc.c (ultra_types_avail): New variable.
4644         (ultra_build_types_avail): New function to record mask of insn
4645         types in ready list at this cycle.
4646         (ultrasparc_sched_reorder): Call it.
4647         (ultra_find_type): Use it to quicken the search.  Also simplif
4648         dependency check, don't use rtx_equal_p because we know exactly
4649         what we are looking for.
4650
4651 Tue Aug 18 03:20:53 1998  Richard Earnshaw  (rearnsha@arm.com)
4652
4653         * arm.h (SECONDARY_INPUT_RELOAD_CLASS): Return NO_REGS if compiling
4654         for architecture v4.
4655
4656 Mon Aug 17 21:26:38 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4657
4658         * config/sparc/sparc.md (sltu, sgeu): Don't FAIL, call
4659         gen_compare_reg.
4660         (movsf_const_intreg, movsf_const_high, movsf_const_lo,
4661         movdf_const_intreg and helper splits): New patterns to move float
4662         constants into integer registers.
4663         (negtf2, negdf2, abstf2, absdf2): Rework using new patterns and
4664         splits.
4665
4666 Mon Aug 17 11:46:19 1998  Jeffrey A Law  (law@cygnus.com)
4667
4668         * From Graham
4669         * tree.c (build_index_type): Copy TYPE_SIZE_UNIT from sizetype
4670         to itype.
4671         * c-decl.c (finish_enum): Copy TYPE_SIZ_UNIT from enumtype to tem.
4672
4673         * rs6000.c (secondary_reload_class): For TARGET_ELF, indicate that
4674         a BASE_REGS register is needed as an intermediate when copying
4675         a symbolic value into any register class other than BASE_REGS.
4676
4677         * expr.c (move_by_pieces): No longer static.  Remove prototype.
4678         * rtl.h (move_by_pieces): Add extern prototype.
4679         * mips.c (expand_block_move): Handle aligned straight line copy by
4680         calling move_by_pieces.
4681
4682         * expr.c (expand_expr): Allow assignments from TImode PARM_DECLs
4683         and VAR_DECLs.
4684
4685 Mon Aug 17 10:28:52 1998  Mark Mitchell  <mark@markmitchell.com>
4686
4687         * stmt.c (expand_end_loop): Tidy.  Allow unconditional
4688         jumps out of the loop to be treated as part of the exit test.
4689
4690 Mon Aug 17 10:06:11 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4691                           Jeff Law <law@cygnus.com>
4692
4693         * Makefile.in (cplus-dep.o): Use cplus-dem.c from libiberty.
4694         * cplus-dem.c: Delete.
4695
4696         * Makefile.in (fold-const.o): depend on $(RTL_H).
4697
4698         * fold-const.c: Include rtl.h to get the prototype for
4699         `set_identifier_local_value'.
4700
4701         * loop.c (express_from_1): Remove unused variable `tmp'.
4702         (combine_givs): cast the first argument of bzero to char *.
4703
4704         * toplev.c (display_help): Remove unused variable `looking_for_start'.
4705
4706         * c-decl.c (init_decl_processing): Remove unneeded &.
4707
4708         * alpha.h (alpha_initialize_trampoline): Provide prototype.
4709         
4710         * except.c (set_exception_lang_code, set_exception_version_code):
4711         Change parameter from `short' to `int' to avoid using a gcc
4712         extension.
4713
4714         * except.h (set_exception_lang_code, set_exception_version_code):
4715         Likewise for prototypes.
4716
4717         * flow.c (count_reg_references): Remove unused variables `regno'
4718         and `i'.
4719
4720         * gcse.c (hash_scan_insn): Declare parameter `in_libcall_block'.
4721
4722         * prefix.c (translate_name): Cast the result of `alloca'.
4723
4724         * varray.h (VARRAY_FREE): Reimplement as a `do-while(0)' statement.
4725
4726 Mon Aug 17 09:23:42 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4727
4728         * config/m68k/m68k.c: Include "system.h" instead of <stdio.h>.
4729         Include "toplev.h".
4730         (valid_dbcc_comparison_p): Mark mode argument as unused.
4731         (symbolic_operand): Likewise.
4732         (legitimize_pic_address): Likewise.
4733         (const_uint32_operand): Likewise.
4734         (const_sint32_operand): Likewise.
4735         * sched.c [!INSN_SCHEDULING]: Define only dummy function
4736         schedule_insns and comment out rest of file.
4737
4738         * m68k.c (output_move_simode_const): Use subl to move a zero into an
4739         address register.
4740         (output_move_[hq]imode): Likewise.
4741
4742 Mon Aug 17 09:15:47 1998  Jeffrey A Law  (law@cygnus.com)
4743
4744         * toplev.c (main): Enable -fstrict-aliasing for -O2 and above.
4745         * invoke.texi: Corresponding changes.
4746
4747 Mon Aug 17 02:03:55 1998  Richard Henderson  <rth@cygnus.com>
4748
4749         * regclass.c (allocate_reg_info): Respect MIN when clearing data.
4750
4751 Sun Aug 16 17:37:06 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4752
4753         * config/sparc/sparc.c (ultra_code_from_mask,
4754         ultra_cmove_results_ready_p, ultra_fpmode_conflict_exists,
4755         ultra_find_type, ultra_schedule_insn, ultra_flush_pipeline,
4756         ultrasparc_sched_init, ultrasparc_variable_issue,
4757         ultra_rescan_pipeline_state, ultrasparc_sched_reorder): New
4758         functions to describe UltraSPARC pipeline exactly to Haifa.
4759         (ultrasparc_adjust_cost): Indicate IMUL type insns have zero cost,
4760         as there is nothing the scheduler can do about it.  Indicate that
4761         REG_DEP_OUTPUT's collide.  Fixup formatting.
4762         * config/sparc/sparc.h (RTX_COSTS): Fixup integer multiply and
4763         divide costs on Ultra for DImode.
4764         (MD_SCHED_INIT, MD_SCHED_REORDER, MD_SCHED_VARIABLE_ISSUE):
4765         Define.
4766         * config/sparc/sparc.md (ieu_unnamed function unit): Rename to
4767         ieuN and add call_no_delay_slot to type list.
4768         (cti function unit): New unit for branches on UltraSPARC.
4769         (subx/addx insns): Set type to misc.
4770         (sidi zero/sign extension insns on arch64): Set type to shift.
4771         (sign_extendhidi2_insn): Set type to sload.
4772
4773 Sun Aug 16 13:52:00 1998  David Edelsohn  <edelsohn@mhpcc.edu>
4774
4775         * rs6000.c (rs6000_stack_info): Use if == 0 for sizes.
4776         (output_epilog): Use if != 0 for offset.
4777         (rs6000_fatal_bad_address): Prepare for Intl.
4778         * rs6000.h (rs6000_fatal_bad_address): Declare.
4779         * rs6000.md (movsfcc, movdfcc): Use else if.
4780         (elf_high): Use {liu|lis}.
4781         (elf_low): Use {cal|la}.  Remove %a template from old mnemonics.
4782         (movsi): Use rs6000_fatal_bad_address.
4783         
4784 Sun Aug 16 01:53:21 1998  Richard Henderson  <rth@cygnus.com>
4785
4786         * reload.c (find_equiv_reg): Reject equivalences separated
4787         by a volatile instruction.
4788
4789 Sun Aug 16 00:21:44 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> 
4790
4791         * rs6000/linux.h (CPP_OS_DEFAULT_SPEC): Define.
4792
4793 Sat Aug 15 20:51:35 1998  Richard Henderson  <rth@cygnus.com>
4794
4795         * alpha.md (movsicc): Fix mode mismatch.
4796
4797 Sat Aug 15 20:22:33 1998  H.J. Lu  (hjl@gnu.org)
4798
4799         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Handle aggregated
4800         return type.
4801         * config/alpha/win-nt.h (ASM_OUTPUT_MI_THUNK): Likewise.
4802
4803 Sat Aug 15 08:39:49 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4804
4805         * config/sparc/sparc.md (movsi_lo_sum_pic_label_reg): Remove
4806         write-only modifier from operand 1 constraint.
4807
4808 Sat Aug 15 06:28:19 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4809
4810         * config/sparc/sparc.c (sparc_emit_set_const64_quick1): If
4811         emitting a XOR of -1 at the end, emit a NOT instead for combine's
4812         sake.
4813         (sparc_emit_set_const64): Likewise, also when computing trailing
4814         bits do not negate low_bits and make fast_int an int.
4815
4816 Fri Aug 14 21:07:03 1998  Jeffrey A Law  (law@cygnus.com)
4817
4818         * loop.c (add_label_notes): Do not ignore references to labels
4819         before dispatch tables.  Mirrors Apr 8 change to mark_jump_label.
4820         * gcse.c (add_label_notes): Similarly.
4821
4822         * pa.h (ASM_OUTPUT_MI_THUNK): Strip name encoding.
4823
4824         * m68k.md (adddi_dilshr32): One of the operands must be a register.
4825         (adddi_dishl32): Similarly.
4826
4827 Fri Aug 14 14:12:59 1998  Jason Merrill  <jason@yorick.cygnus.com>
4828
4829         * i386.h (MODES_TIEABLE_P): Reorganize to shut up warnings.
4830         * alias.c (memrefs_conflict_p): Add braces to shut up warnings.
4831         * cse.c (cse_basic_block): Add parens to shut up warnings.
4832
4833 Fri Aug 14 12:58:21 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4834
4835         * config/sparc/sparc.c (sparc_emit_set_const64_quick2,
4836         sparc_emit_set_const64_longway, const64_is_2insns,
4837         create_simple_focus_bits, sparc_emit_set_const64): Fix more bugs
4838         in 64-bit constant formation.
4839         * config/sparc/sparc.md (snesi_zero_extend split): Generate
4840         rtl for addx not subx.
4841         (define_insn movdi_const64_special): Make available even when
4842         HOST_BITS_PER_WIDE_INT is not 64.
4843         (movdi_lo_sum_sp64_cint, movdi_high_sp64_cint): Remove.
4844         (losum_di_medlow, sethm, setlo): Make op2 symbolic_operand.
4845         (cmp_siqi_trunc_set, cmp_diqi_trunc_set): Encapsulate both
4846         instances of operand 1 inside a QI subreg.
4847         (xordi3_sp64_dbl): Remove '%' constraint for op1.
4848         (one_cmpldi2_sp64): Fix output string.
4849         (one_cmplsi2_not_liveg0): Rewrite to remove unneeded extra
4850         alternative case.
4851         (unnamed arch64 ashift DI): Truncate shift count if greater than
4852         63, not 31.
4853
4854 Fri Aug 14 21:52:53 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
4855
4856         * expr.c (store_expr): Don't optimize away load-store pair
4857         when either source or destination have a side effect.
4858
4859 Fri Aug 14 16:50:10 1998  John Carr  <jfc@mit.edu>
4860
4861         * genrecog.c (add_to_sequence): Fatal error if the modes of the
4862         operands of SET are incompatible.
4863
4864         * alpha.md: Fix max and min patterns so modes of SET operands match.
4865
4866 Fri Aug 14 12:22:55 1998  Ian Lance Taylor  <ian@cygnus.com>
4867
4868         * configure.in: Avoid [[ by using test and changequote.
4869         * configure: Rebuild.
4870
4871 Fri Aug 14 01:22:31 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4872
4873         * rtl.def (CONSTANT_P_RTX): Fix typo in string name.
4874
4875         * config/sparc/sparc.md (seqdi_special_trunc, snedi_special_trunc,
4876         seqsi_special_extend, snesi_special_extend, snesi_zero_extend and
4877         split, snedi_zero_trunc and split, seqsi_zero_extend and split,
4878         seqdi_zero_trunc and split, pic_lo_sum_di, pic_sethi_di,
4879         movdi_cc_sp64_trunc, movdi_cc_reg_sp64_trunc, addx_extend_sp32 and
4880         split, addx_extend_sp64, subx_extend_sp64, subx_extend and split):
4881         Fix mismatching modes in SET operands.
4882         (conditional move patterns): Fix formatting.
4883         (unnamed subx arch64 pattern): Remove duplicate insn.
4884         
4885 Fri Aug 14 00:34:34 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
4886
4887         * config/sparc/sparc.c (const64_operand, const64_high_operand):
4888         Get it right when HOST_BITS_PER_WIDE_INT is not 64.
4889         (input_operand): Fixup test for what we accept for constant
4890         integers.
4891         (sparc_emit_set_const32, sparc_emit_set_symbolic_const64): Give
4892         set VOIDmode.
4893         (safe_constDI): Remove.
4894         (sparc_emit_set_safe_HIGH64, gen_safe_SET64, gen_safe_OR64,
4895         gen_safe_XOR64): New functions.
4896         (sparc_emit_set_const64_quick1, sparc_emit_set_const64_quick2,
4897         sparc_emit_set_const64_longway, sparc_emit_set_const64): Use
4898         them.
4899         * config/sparc/sparc.md (define_insn xordi3_sp64_dbl): Only make
4900         available when HOST_BITS_PER_WIDE_INT is not 64.
4901         (define_insn movdi_sp64_dbl, movdi_const64_special): Likewise and
4902         move before movdi_insn_sp64 pattern.
4903         (define_insn movdi_lo_sum_sp64_dbl, movdi_high_sp64_dbl): Remove.
4904         (define_insn sethi_di_medlow, seth44, setm44, sethh): Use
4905         symbolic_operand as predicate for second operand.
4906         (DImode minus split on arch32, negsi2 expander, one_cmplsi2
4907         expander): Give set VOIDmode.
4908         
4909 Fri Aug 14 01:45:06 1998  Mumit Khan  <khan@xraylith.wisc.edu>
4910
4911         * i386/cygwin32 (DEFAULT_PCC_STRUCT_RETURN): Define.
4912
4913 Fri Aug 14 01:40:21 1998  Geoffrey Keating  <geoffk@ozemail.com.au>
4914
4915         * rs6000/linux.h (LINK_SPEC): Pass -G args to the linker.
4916
4917 Fri Aug 14 01:23:23 1998  Richard Earnshaw (rearnsha@arm.com)
4918
4919         * arm/netbsd.h (TARGET_DEFAULT): Default includes software floating 
4920         point.
4921         (CPP_FLOAT_DEFAULT_SPEC): Re-define accordingly.
4922
4923 Fri Aug 14 01:19:08 1998  Robert Lipe  <robertl@dgii.com>
4924
4925         * install.texi: Various SCO OpenServer tweaks.
4926
4927 Thu Aug 13 20:14:40 1998  Jim Wilson  <wilson@cygnus.com>
4928
4929         * reload1.c (eliminate_regs_in_insn): Handle another case when
4930         eliminating the frame pointer to the hard frame pointer.  Add
4931         missing ep->to_rtx check to one existing case.
4932
4933         * mips/mips.md (movhi_internal2+2): Fix typo mem:SI -> mem:HI.
4934
4935 Thu Aug 13 17:08:11 1998  Jason Merrill  <jason@yorick.cygnus.com>
4936
4937         * tree.h: De-conditionalize init_priority code.
4938
4939         * mips.h (NM_FLAGS): Change from -Bp to -Bn.
4940         * collect2.c (NM_FLAGS): Change from -p to -n.
4941
4942         * configure.in: Turn on collect2 for mipstx39-elf.
4943         Handle use_collect2=no properly.
4944
4945         * c-common.c: De-conditionalize init_priority code.
4946         * collect2.c (extract_init_priority, sort_ids): New fns.
4947         (main): Call sort_ids.
4948         Move sequence_number to file scope.
4949
4950         * configure.in: Handle --enable-init-priority.
4951         * c-common.c (attrs): Add A_INIT_PRIORITY.
4952         (init_attributes, decl_attributes): Likewise.
4953         * tree.h (DEFAULT_INIT_PRIORITY, MAX_INIT_PRIORITY): New macros.
4954         * tree.c (get_file_function_name_long): Split out...
4955         (get_file_function_name): ...from here.
4956
4957 Thu Aug 13 16:09:53 1998  Martin von Loewis  <loewis@informatik.hu-berlin.de>
4958
4959         * expr.c (safe_from_p): Change code to ERROR_MARK only when not
4960         accessing nodes.
4961
4962 Thu Aug 13 15:24:48 1998  Jason Merrill  <jason@yorick.cygnus.com>
4963
4964         * toplev.c (display_help): Add braces to shut up warnings.
4965         * tree.c (simple_cst_equal): Likewise.
4966
4967         * fold-const.c (non_lvalue): Don't deal with null pointer 
4968         constants here.
4969         (fold, case COMPOUND_EXPR): Wrap a constant 0 in a NOP_EXPR.
4970
4971         * c-typeck.c (initializer_constant_valid_p): Allow conversion of 0
4972         of any size to a pointer.
4973
4974 Thu Aug 13 12:53:13 1998  Jim Wilson  <wilson@cygnus.com>
4975
4976         * i386/winnt.c (i386_pe_asm_file_end): Check TREE_SYMBOL_REFERENCED.
4977
4978 Wed Aug 12 17:25:18 1998  Jeffrey A Law  (law@cygnus.com)
4979
4980         * mn10300.c (REG_SAVE_BYTES): Only reserve space for registers
4981         which will be saved.
4982         * mn10300.md (prologue insn): Only save registers which need saving.
4983         (epilogue insn): Similarly.
4984
4985         * mn10300.c, mn10300.h, mn10300.md: Remove "global zero register"
4986         optimizations.
4987
4988 Wed Aug 12 12:39:16 1998  Gavin Romig-Koch  <gavin@cygnus.com>
4989
4990         * mips/mips.h (ENCODE_SECTION_INFO): Set SYMBOL_REF_FLAG for
4991         VAR_DECL's in gp addressable sections.
4992
4993 Tue Aug 11 23:02:31 1998  John Carr  <jfc@mit.edu>
4994
4995         * sparc.c: Change return <exp> to <exp>; return; in functions
4996         returning void.
4997         * sparc.md: Add empty semicolon statement after final label in
4998         move expanders.
4999
5000 Tue Aug 11 22:42:01 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5001
5002         * config/sparc/sparc.md (define_insn addx_extend): Rename to
5003         addx_extend_sp64, only allow when TARGET_ARCH64.
5004         (define_insn addx_extend_sp32 and split): Version that works when
5005         not TARGET_ARCH64.
5006         (define_insn subx_extend): Likewise.
5007         (define_split adddi3 and subdi3 with zero extension): Fixup and
5008         correct bugs when not TARGET_ARCH64.
5009
5010 Tue Aug 11 16:04:34 1998  John Carr  <jfc@mit.edu>
5011
5012         * except.c (set_exception_lang_code, set_exception_version_code):
5013         Use prototype-style definition if __STDC__, to match declaration
5014         in except.h.
5015
5016         * genemit.c: Change FAIL and DONE macros not to use loops.
5017
5018 Tue Aug 11 12:27:03 1998  Jim Wilson  <wilson@cygnus.com>
5019
5020         * dwarf2out.c (ASM_OUTPUT_DWARF_ADDR_CONST): Use
5021         ASM_OUTPUT_DWARF2_ADDR_CONST if defined.
5022
5023         * mips/mips.md (reload_outsi): Use M16_REG_P when TARGET_MIPS16.
5024
5025 Tue Aug 11 18:12:53 1998  Dave Love  <d.love@dl.ac.uk>
5026
5027         * README.g77: Update from Craig.
5028
5029 Tue Aug 11 04:46:01 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5030
5031         * config/sparc/sparc.c (sparc_emit_set_const32): INTVAL is of
5032         type HOST_WIDE_INT.
5033         (safe_constDI sparc_emit_set_const64_quick1,
5034         sparc_emit_set_const64_quick2, sparc_emit_set_const64_longway,
5035         analyze_64bit_constant, const64_is_2insns,
5036         create_simple_focus_bits): Fix some bugs when compiled on real
5037         64-bit hosts.
5038         (function_arg_record_value_3, function_arg_record_value_2,
5039         function_arg_record_value): Add fully prototyped forward decls.
5040         * config/sparc/sparc.md (define_insn cmpsi_insn_sp32): Rename back
5041         to cmpsi_insn and use on both 64 and 32 bit targets.
5042         (define_insn cmpsi_insn_sp64): Remove.
5043         (define_expand zero_extendsidi2): Allow for 32-bit target too.
5044         (define_insn zero_extendsidi2_insn): Rename to
5045         zero_extendsidi2_insn_sp64.
5046         (define_insn zero_extendsidi2_insn_sp32): New pattern and
5047         assosciated forced split for it.
5048
5049         * config/sparc/sparc.c (const64_operand, const64_high_operand):
5050         New predicates.
5051         * config/sparc/sparc.h: Declare them.
5052         (PREDICATE_CODES): Add them.
5053         * config/sparc/sparc.md (movdi_lo_sum_sp64_dbl,
5054         movdi_high_sp64_dbl, xordi3_sp64_dbl): Use them.
5055
5056 Mon Aug 10 22:57:24 1998  John Carr  <jfc@mit.edu>
5057
5058         * config/sparc/sparc.md (define_insn jump): Output ba,pt not b,pt
5059         in v9 case as the latter makes the Solaris assembler crash.
5060
5061 Mon Aug 10 22:39:09 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5062
5063         * config/sparc/sparc.c (input_operand): Do not accept a LO_SUM MEM
5064         for TFmode when !v9.  We require offsettable memory addresses.
5065         * config/sparc/sparc.h (ALTER_HARD_SUBREG): Handle TFmode to
5066         DFmode register number conversions.
5067         * config/sparc/sparc.md (define_split DFmode moves): If register
5068         is a SUBREG do alter_subreg on it before using.
5069         (define_expand movtf): Fixup comment about alignment on v9.
5070         (define_split TFmode moves): Don't use gen_{high,low}part, create
5071         explicit SUBREGs instead.
5072
5073 Mon Aug 10 19:02:55 1998  John Carr  <jfc@mit.edu>
5074
5075         * Makefile.in (mbchar.o): Depend on mbchar.c.
5076
5077 Mon Aug 10 04:28:13 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5078                           Richard Henderson  <rth@cygnus.com>
5079         
5080         Rewrite Sparc backend for better code generation and
5081         improved sparc64 support.
5082         * config/sparc/sp64-elf.h: Set JUMP_TABLES_IN_TEXT_SECTION to
5083         zero.
5084         * config/sparc/sysv4.h: Likewise.
5085         * config/sparc/sparc.c (v8plus_regcmp_p, sparc_operand,
5086         move_operand, v8plus_regcmp_op, emit_move_sequence,
5087         singlemove_string, doublemove_string, mem_aligned_8,
5088         output_move_double, output_move_quad, output_fp_move_double,
5089         move_quad_direction, output_fp_move_quad, output_scc_insn):
5090         Remove.
5091         (small_int_or_double): New predicate.
5092         (gen_compare_reg): Remove TARGET_V8PLUS cmpdi_v8plus emission.
5093         (legitimize_pic_address): Emit movsi_{high,lo_sum}_pic instead of
5094         old pic_{sethi,lo_sum}_si patterns.
5095         (mem_min_alignment): New generic function to replace
5096         mem_aligned_8, which uses REGNO_POINTER_ALIGN information when
5097         available and can test for arbitrary alignments.  All callers
5098         changed.
5099         (save_regs, restore_regs, build_big_number,
5100         output_function_prologue, output_cbranch, output_return,
5101         sparc_flat_save_restore, sparc_flat_output_function_prologue,
5102         sparc_flat_output_function_epilogue): Prettify
5103         insn output.
5104         (output_function_epilogue): Likewise and add code to output
5105         deferred case vectors.
5106         (output_v9branch): Likewise, add new arg INSN and use it to tack
5107         on branch prediction settings.  All callers changed.
5108         (print_operand): Likewise and output %l44 for LO_SUMs when
5109         TARGET_CM_MEDMID.
5110         (sparc_splitdi_legitimate): New function to make sure DImode
5111         splits can be run properly when !arch64.
5112         (sparc_initialize_trampoline, sparc64_initialize_trampoline):
5113         Reformat example code in comments.
5114         (set_extends): Remove UNSPEC/v8plus_clear_high case.
5115         (sparc_addr_diff_list, sparc_addr_list): New statics to keep track
5116         of deferred case vectors we need to output.
5117         (sparc_defer_case_vector): Record a case vector.
5118         (sparc_output_addr_vec, sparc_output_addr_diff_vec,
5119         sparc_output_deferred_case_vectors): New functions to output them.
5120         (sparc_emit_set_const32): New function to form 32-bit constants in
5121         registers when that requires more than one instruction.
5122         (safe_constDI, sparc_emit_set_const64_quick1,
5123         sparc_emit_set_const64_quick2, sparc_emit_set_const64_longway,
5124         analyze_64bit_constant, const64_is_2insns,
5125         create_simple_focus_bits, sparc_emit_set_const64): New functions
5126         which do the same for 64-bit constants when arch64.
5127         (sparc_emit_set_symbolic_const64): New function to emit address
5128         loading for all code models on v9.
5129         * config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Do not make
5130         %g1 fixed when arch64, unfix %g0 when TARGET_LIVE_G0.
5131         (ALTER_HARD_SUBREG): Fix thinko, return REGNO + 1 not 1.
5132         (SECONDARY_INPUT_RELOAD_CLASS, SECONDARY_OUTPUT_RELOAD_CLASS): Fix
5133         inaccuracies in comments, add symbolic and text_segment operands
5134         when TARGET_CM_MEDANY and TARGET_CM_EMBMEDANY respectively.  Use
5135         GENERAL_REGS in these cases as a temp REG is needed to load these
5136         addresses into a register properly.
5137         (EXTRA_CONSTRAINT): Document more accurately, remove Q case as it
5138         is no longer used.
5139         (GO_IF_LEGITIMATE_ADDRESS): Allow TFmode for LO_SUM on v9 since fp
5140         quads are guarenteed to have 16-byte alignment.
5141         (LEGITIMIZE_ADDRESS): For SYMBOL_REF, CONST, and LABEL_REF use
5142         copy_to_suggested_reg instead of explicit LO_SUM and HIGH.
5143         (ASM_OUTPUT_ADDR_VEC, ASM_OUTPUT_ADDR_DIFF_VEC): New macros for
5144         deferred case vector implementation.
5145         (ASM_OUTPUT_ADDR_VEC_ELT): Use fputc to output newline.
5146         (ASM_OUTPUT_ADDR_DIFF_ELT): Parenthesize LABEL in macro calls.
5147         Generate "internal label - label" instead of "label - 1b".
5148         (PRINT_OPERAND_ADDRESS): For LO_SUM use %l44 on TARGET_CM_MEDMID.
5149         (PREDICATE_CODES): Remove sparc_operand, move_operand,
5150         v8plus_regcmp_op.  Add small_int_or_double, input_operand, and
5151         zero_operand.
5152         (doublemove_string, output_block_move, output_fp_move_double,
5153         output_fp_move_quad, output_move_double, output_move_quad,
5154         output_scc_insn, singlemove_string, mem_aligned_8, move_operand,
5155         sparc_operand, v8plus_regcmp_op, v8plus_regcmp_p): Remove externs.
5156         (sparc_emit_set_const32, sparc_emit_set_const64,
5157         sparc_emit_set_symbolic_const64, input_operand, zero_operand,
5158         mem_min_alignment, small_int_or_double): Add externs.
5159         * config/sparc/sparc.md: Document the many uses of UNSPEC and
5160         UNSPEC_VOLATILE in this backend.
5161         (define_function_unit ieu): Rename to ieu_unnamed.  Add move and
5162         unary to types which execute in it.
5163         (define_function_unit ieu_shift): Rename to ieu0.
5164         (define_function_unit ieu1): New, executes compare, call, and
5165         uncond_branch type insns.
5166         (define_function_units for type fdivs, fdivd, fsqrt): These
5167         execute in the fpu multiply unit not the adder on UltraSparc.
5168         (define_expand cmpdi): Disallow TARGET_V8PLUS.
5169         (define_insn cmpsi_insn): Rename to cmpsi_insn_sp32.
5170         (define_insn cmpsi_insn_sp64): New, same as sp32 variant except it
5171         allows the arith_double_operand predicate and rHI constraint when
5172         TARGET_ARCH64.
5173         (define_insn cmpdi_sp64, cmpsf_fpe, cmpdf_fpe, cmptf_fpe,
5174         cmpsf_fp, cmpdf_fp, cmptf_fp, sltu_insn, neg_sltu_insn,
5175         neg_sltu_minux_x, neg_sltu_plus_x, sgeu_insn, neg_sgeu_insn,
5176         sltu_plus_x, sltu_plus_x, sltu_plus_x_plus_y, x_minus_sltu,
5177         sgeu_plus_x, x_minus_sgeu, movqi_cc_sp64, movhi_cc_sp64,
5178         movsi_cc_sp64, movdi_cc_sp64, movsf_cc_sp64, movdf_cc_sp64,
5179         movtf_cc_sp64, movqi_cc_reg_sp64, movhi_cc_reg_sp64,
5180         movsi_cc_reg_sp64, movdi_cc_reg_sp64, movsf_cc_reg_sp64,
5181         movdf_cc_reg_sp64, movtf_cc_reg_sp64, zero_extendhisi2_insn,
5182         cmp_siqi_trunc, cmp_siqi_trunc_set, sign_extendhisi2_insn,
5183         sign_extendqihi2_insn, sign_extendqisi2_insn,
5184         sign_extendqidi2_insn, sign_extendhidi2_insn,
5185         extendsfdf2, extendsftf2, extenddftf2, truncdfsf2, trunctfsf2,
5186         trunctfdf2, floatsisf2, floatsidf2, floatsitf2, floatdisf2,
5187         floatdidf2, floatditf2, fix_truncsfsi2, fix_truncdfsi2,
5188         fix_trunctfsi2, fix_truncsfdi2, fix_truncdfdi2, fix_trunctfdi2,
5189         adddi3_sp64, addsi3, cmp_ccx_plus, cmp_cc_plus_set, subdi_sp64,
5190         subsi3, cmp_minus_ccx, cmp_minus_ccx_set, mulsi3, muldi3,
5191         muldi3_v8plus, cmp_mul_set, mulsidi3, mulsidi3_v8plus,
5192         const_mulsidi3_v8plus, mulsidi3_sp32, const_mulsidi3,
5193         smulsi3_highpart_v8plus, unnamed subreg mult,
5194         const_smulsi3_highpart_v8plus, smulsi3_highpart_sp32,
5195         const_smulsi3_highpart, umulsidi3_v8plus, umulsidi3_sp32,
5196         const_umulsidi3, const_umulsidi3_v8plus, umulsi3_highpart_v8plus,
5197         const_umulsi3_highpart_v8plus, umulsi3_highpart_sp32,
5198         const_umulsi3_highpart, divsi3, divdi3, cmp_sdiv_cc_set, udivsi3,
5199         udivdi3, cmp_udiv_cc_set, smacsi, smacdi, umacdi, anddi3_sp64,
5200         andsi3, and_not_di_sp64, and_not_si, iordi3_sp64, iorsi3,
5201         or_not_di_sp64, or_not_si, xordi3_sp64, xorsi3, xor_not_di_sp64,
5202         xor_not_si, cmp_cc_arith_op, cmp_ccx_arith_op,
5203         cmp_cc_arith_op_set, cmp_ccx_arith_op_set, cmp_ccx_xor_not,
5204         cmp_cc_xor_not_set, cmp_ccx_xor_not_set, cmp_cc_arith_op_not,
5205         cmp_ccx_arith_op_not, cmp_cc_arith_op_not_set,
5206         cmp_ccx_arith_op_not_set, negdi2_sp64, cmp_cc_neg, cmp_ccx_neg,
5207         cmp_cc_set_neg, cmp_ccx_set_neg, one_cmpldi2_sp64, cmp_cc_not,
5208         cmp_ccx_not, cmp_cc_set_not, cmp_ccx_set_not, addtf3, adddf3,
5209         addsf3, subtf3, subdf3, subsf3, multf3, muldf3, mulsf3,
5210         muldf3_extend, multf3_extend, divtf3, divdf3, divsf3, negtf2,
5211         negdf2, negsf2, abstf2, absdf2, abssf2, sqrttf2, sqrtdf2, sqrtsf2,
5212         ashlsi3, ashldi3, unnamed DI ashift, cmp_cc_ashift_1,
5213         cmp_cc_set_ashift_1, ashrsi3, ashrdi3, unnamed DI ashiftrt,
5214         ashrdi3_v8plus, lshrsi3, lshrdi3, unnamed DI lshiftrt,
5215         lshrdi3_v8plus, tablejump_sp32, tablejump_sp64, call_address_sp32,
5216         call_symbolic_sp32, call_address_sp64, call_symbolic_sp64,
5217         call_address_struct_value_sp32, call_symbolic_struct_value_sp32,
5218         call_address_untyped_struct_value_sp32,
5219         call_symbolic_untyped_struct_value_sp32, call_value_address_sp32,
5220         call_value_symbolic_sp32, call_value_address_sp64,
5221         call_value_symbolic_sp64, branch_sp32, branch_sp64,
5222         flush_register_windows, goto_handler_and_restore,
5223         goto_handler_and_restore_v9, goto_handler_and_restore_v9_sp64,
5224         flush, all ldd/std peepholes, return_qi, return_hi, return_si,
5225         return_addsi, return_di, return_adddi, return_sf, all call+jump
5226         peepholes, trap, unnamed trap insns): Prettify output strings.
5227         (define_insn anddi3_sp32, and_not_di_sp32, iordi3_sp32,
5228         or_not_di_sp32, xordi3_sp32, xor_not_di_sp32, one_cmpldi2):
5229         Likewise and force + implement splits for integer cases.
5230         (define_insn return_sf_no_fpu): Likewise and allow to match when
5231         no-fpu because of our subreg SFmode splits.
5232         (define_insn zero_extendqihi2, zero_extendqisi2_insn,
5233         zero_extendqidi2_insn, zero_extendhidi2_insn,
5234         zero_extendsidi2_insn, sign_extendsidi2_insn): Likewise and use
5235         input_operand for second operand.
5236         (cmp_minus_cc, cmp_minus_cc_set): Likewise and use
5237         reg_or_0_operand for operand 2 so new splits can use it.
5238         (cmp_zero_extendqisi2, cmp_zero_extendqisi2_set, cmp_cc_plus,
5239         cmp_cc_xor_not): Likewise and don't forget to check TARGET_LIVE_G0
5240         too.
5241         (cmp_zero_extract, cmp_zero_extract_sp64): Likewise and allow
5242         CONST_DOUBLEs for operand 2.
5243         (define_insn move_label_di): Likewise and label distance
5244         optimization because it no longer works with new deferred case
5245         vector scheme.  To be revisited.
5246         (define_insn x_minus_y_minus_sltu, x_minus_sltu_plus_y): Likewise
5247         and allow reg_or_0_operand and J constraint for second operand.
5248         (define_insn jump): Set branch predict taken on V9.
5249         (define_insn tablejump): Emit LABEL_REF + PLUS memory address for
5250         new deferred case vector scheme.
5251         (define_insn pic_tablejump_32, pic_tablejump_64): Remove.
5252         (define_insn negdi2_sp32): Force + implement splits.
5253         (define_insn negsi2, one_cmplsi2): Rename to negsi2_not_liveg0 and
5254         one_cmplsi2_not_liveg0 respectively, and create expander of original
5255         names which emit special rtl for TARGET_LIVE_G0.
5256         (define_insn cmpdi_v8plus, scc_si, scc_di): Remove.
5257         (define_insn seq, sne, slt, sge, sle, sltu, sgeu): Don't do
5258         gen_compare_reg, FAIL instead.
5259         (define_insn sgtu, sleu): Likewise and check gen_s*() return
5260         values when trying to reverse condition codes, if they FAIL then
5261         do likewise.
5262         (define_insn snesi_zero, neg_snesi_zero, snesi_zero_extend,
5263         snedi_zero, neg_snedi_zero, snedi_zero_trunc, seqsi_zero,
5264         neg_seqsi_zero, seqsi_zero_extend, seqdi_zero, neg_seqdi_zero,
5265         seqdi_zero_trunc, x_plus_i_ne_0, x_minus_i_ne_0, x_plus_i_eq_0,
5266         x_minus_i_eq_0): Add new splits to perform these multi-insn cases,
5267         set output string to # to indicate they are mandatory splits.
5268         (define_insn pic_lo_sum_si, pic_sethi_si, pic_lo_sum_di,
5269         pic_sethi_di, move_pic_label_si): Remove.
5270         (define_insn movsi_low_sum, movsi_high, movsi_lo_sum_pic,
5271         movsi_high_pic, movsi_pic_label_reg): New patterns to take their
5272         place.
5273         (define_expand movsi_pic_label_ref, define_insn
5274         movsi_high_pic_label_ref, movsi_lo_sum_pic_label_ref): New
5275         expander and insns to handle PIC label references and deferred
5276         case vectors.
5277         (define_insn get_pc_via_rdpc): Comment out as it is no longer
5278         used.
5279         (define_expand movqi, movhi, movsi, movdi, movsf, movdf, movtf):
5280         Rewrite to not use emit_move_sequence, make use of new constant
5281         formation code, and new splits for all multi-insn cases.
5282         (define_insn movqi_insn): Remove sethi case, it can never happen.
5283         Use reg_or_zero_operand instead of const0_rtx explicit test,
5284         use input_operand instead of move_operand for source, and use
5285         general_operand now for dest.
5286         (define_insn movhi_insn): Similar but leave sethi case.
5287         (define_insn lo_sum_qi, store_qi, store_hi): Remove.
5288         (define_insn sethi_hi lo_sum_hi): Rename to movhi_high and
5289         movhi_lo_sum respectively, prettify output string.
5290         (define_insn movsi_zero_liveg0): New pattern to put zero into a
5291         register when needed on TARGET_LIVE_G0.
5292         (define_insn movsi_insn): Use general_operand and input_operand
5293         for dest and src respectively.  Simplify applicability test.
5294         Prettify output strings, and add clr alternative for J
5295         constraint.
5296         (define_insn movdi_sp32_v9, movdi_sp32, define_splits for
5297         deprecated std and reg-reg DI moves): Remove and...
5298         (define_insn movdi_insn_sp32, movdi_insn_sp64): Replace with new
5299         implementation which uses forced splits for all non-single insn
5300         cases.
5301         (define_split DI move cases on !arch64): New splits to handle all
5302         situations of 64-bit double register DImode on 32bit, and
5303         unaligned registers and memory addresses for all subtargets.
5304         (define_insn movsf_const_insn, movdf_const_insn, store_sf):
5305         Remove.
5306         (define_insn movsf_insn, movsf_no_f_insn): Use general_operand and
5307         input_operand for dest and src respectively, prettify output
5308         strings.
5309         (define_insn movdf_insn, movdf_no_e_insn, store_df,
5310         movtf_const_insn, movtf_insn, movtf_no_e_insn, store_tf): Remove
5311         and...
5312         (define_insn movdf_insn_sp32, movdf_no_e_insn_sp32,
5313         movdf_insn_sp64, movdf_no_e_insn_sp64, movtf_insn,
5314         movtf_no_e_insn_sp32, movtf_insn_hq_sp64, movtf_insn_sp64,
5315         movtf_no_e_insn_sp64) Replace with new
5316         implementation which uses forced splits for all non-single insn
5317         cases.
5318         (define_split DF move cases): New splits in similar vein to DI
5319         move counterparts.
5320         (define_insn sethi_di_medlow, sethi_di_medium_pic,
5321         sethi_di_embmedany_data, sethi_di_embmedany_text, sethi_di_sp64,
5322         movdi_sp64_insn): Remove old v9 code model and constant loading
5323         support insns and..
5324         (define_insn pic_lo_sum_di, pic_sethi_di,
5325         sethi_di_medlow_embmedany_pic, sethi_di_medlow, losum_di_medlow,
5326         seth44, setm44, setl44, sethh, setlm, sethm, setlo,
5327         embmedany_sethi, embmedany_losum, embmedany_brsum,
5328         embmedany_textuhi, embmedany_texthi, embmedany_textulo,
5329         embmedany_textlo, movdi_lo_sum_sp64_cint, movdi_lo_sum_sp64_dbl,
5330         movdi_high_sp64_cint, movdi_high_sp64_dbl): Replace with new
5331         scheme, using unspecs, secondary reloads, and one to one sparc
5332         insn to rtl insn mapping for better scheduling and code gen.
5333         (define_expand reload_indi, reload_outdi): Reload helpers for
5334         MEDANY and EMBMEDANY symbol address loading cases which require a
5335         temporary register.
5336         (define_expand movsicc): Remove v8plus_regcmp cases.
5337         (define_insn movdi_cc_sp64_trunc, movdi_cc_reg_sp64_trunc,
5338         cmp_zero_extendqidi2, cmp_zero_extendqidi2_set, cmp_qidi_trunc,
5339         cmp_diqi_trunc_set): New patterns used by some of the new scc
5340         splits on arch64.
5341         (define_insn xordi3_sp64_dbl): New pattern used for constant
5342         formation when crossing from 32-bit targets.
5343         (define_insn movsi_cc_reg_v8plus, v8plus_clear_high, and helper
5344         split): Remove.
5345         (define_insn addx, subx): Make visible and prettify.
5346         (define_insn adddi3_insn_sp32): Likewise and force split.
5347         (define_insn addx_extend, subx_extend, unnamed): New patterns for
5348         64bit scc split usage.
5349         (define_insn unnamed plusDI zero_extend, unnamed minusDI
5350         zero_extend, subdi3): Force and implement splits.
5351         
5352         * final.c (final_scan_insn): Don't output labels if target
5353         specifies ASM_OUTPUT_ADDR_{DIFF}_VEC.  Do these macro operations
5354         instead.
5355         
5356         * reorg.c (dbr_schedule): When taking on BR_PRED notes at the end,
5357         don't forget to walk inside SEQUENCESs too as these are what the
5358         delay slot scheduler will create.
5359         
5360 Mon Aug 10 01:21:01 1998  Richard Henderson  <rth@cygnus.com>
5361
5362         * alpha.md (extxl+1,+2): New patterns to work around
5363         combine lossage.
5364
5365 Sat Aug  8 19:20:22 1998 Gary Thomas (gdt@linuxppc.org)
5366
5367         * rs6000.c (rs6000_allocate_stack_space) Fix typo which
5368         caused bad assembly code to be generated.
5369
5370 Sat Aug  8 18:53:28 1998  Jeffrey A Law  (law@cygnus.com)
5371
5372         * netbsd.h: Fix typo.
5373
5374 Mon Aug  3 00:06:42 1998  Robert Lipe  <robertl@dgii.com> 
5375
5376         * config.sub: Fix typo.
5377
5378 Sun Aug  2 22:39:08 1998  Hans-Peter Nilsson  <hp@axis.se>
5379
5380         * invoke.texi (Environment Variables): Typo: Change "ascpects"
5381         into "aspects".
5382         (Running Protoize): Typo: Change "ther" into "other".
5383
5384 Sun Aug  2 00:42:50 1998  Jeffrey A Law  (law@cygnus.com)
5385
5386         * i386/netbsd.h: Undo previous change to DWARF2_UNWIND_INFO.
5387         * m68k/netbsd.h: Likewise.
5388         * ns32k/netbsd.h: Likewise.
5389         * sparc/netbsd.h: Likewise.
5390
5391 Sat Aug  1 17:59:30 1998  Richard Henderson  <rth@cygnus.com>
5392
5393         * ginclude/va-alpha.h (va_list): Use a typedef, not a define.
5394         * ginclude/va-clipper.h (va_list): Likewise.
5395
5396 Fri Jul 31 20:22:02 1998  Michael Meissner  <meissner@cygnus.com>
5397
5398         * rs6000.c (rs6000_override_options): If big endian and -Os, use
5399         load/store multiple instructions unless user overrides.
5400
5401 Fri Jul 31 17:08:59 1998  Jeffrey A Law  (law@cygnus.com)
5402
5403         * ns32k/netbsd.h: Fix typo.
5404
5405 Fri Jul 31 10:23:55 1998  Doug Evans  <devans@canuck.cygnus.com>
5406
5407         * m32r/m32r.h (ASM_OUTPUT_SOURCE_LINE): Always output line number
5408         labels with .debugsym if no parallel insns.
5409
5410 Thu Jul 30 19:15:53 1998  Richard Henderson  <rth@cygnus.com>
5411
5412         * alpha.md (fp cmp): Replicate patterns for ALPHA_TP_INSN.
5413         (fcmov): Remove ALPHA_TP_INSN patterns -- fcmov doesn't trap.
5414
5415 Thu Jul 30 19:50:15 1998  David Edelsohn  <edelsohn@mhpcc.edu>
5416
5417         * rs6000/x-aix43 (AR_FOR_TARGET_FLAGS): Delete.
5418         (AR_FOR_TARGET): Define.
5419
5420 Thu Jul 30 12:29:12 1998  Mark Mitchell  <mark@markmitchell.com>
5421
5422         * dyn-string.h: New file.
5423         * dyn-string.c: Likewise.
5424         * Makefile.in (OBJS): Add dyn-string.o.
5425         (dwarf2out.o): Add dyn-string.h dependency.
5426         (dyn-string.o): List dependencies.
5427         * dwarf2out.c: Include dyn-string.h.
5428         (ASM_NAME_TO_STRING): Use dyn_string_append, rather than strcpy.
5429         (addr_const_to_string): Take a dyn_string_t, not a char* as a
5430         prototype.  Use dyn_string_append rather than strcat, throughout.
5431         (addr_to_string): Use dyn_string_t.
5432
5433 Thu Jul 30 13:08:07 1998  Ken Raeburn  <raeburn@cygnus.com>
5434
5435         Function entry/exit profiling instrumentation:
5436         * expr.h (profile_function_entry_libfunc,
5437         profile_function_exit_libfunc): Declare new variables.
5438         * optabs.c: Define them here.
5439         (init_optabs): Initialize them.
5440         * tree.h (struct tree_decl): New flag
5441         no_instrument_function_entry_exit.
5442         (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT): New accessor macro.
5443         * c-decl.c (duplicate_decls): Merge it.
5444         * c-common.c (enum attrs): New value A_NO_INSTRUMENT_FUNCTION.
5445         (init_attributes): Use it for "no_instrument_function".
5446         (decl_attributes): Handle it, for functions that have not yet been
5447         compiled.  Set decl flag.
5448         * flags.h (flag_instrument_function_entry_exit): Declare new
5449         variable.
5450         * toplev.c (flag_instrument_function_entry_exit): Define it here.
5451         (f_options): New option "instrument-functions".
5452         * function.h (struct function): New field instrument_entry_exit.
5453         * function.c (current_function_instrument_entry_exit): New
5454         variable.
5455         (push_function_context_to, pop_function_context_from): Save and
5456         restore.
5457         (expand_function_start): Set current_ variable, maybe emit return
5458         label and entry profile call.
5459         (expand_function_end): Maybe emit exit profile call.
5460
5461 Thu Jul 30 00:58:34 1998  Jeffrey A Law  (law@cygnus.com)
5462
5463         * i386.md (movqi): When optimizing a load of (const_int 1) into a
5464         NON_QI_REG_P, pretend the register is SImode.
5465
5466 Wed Jul 29 23:49:23 1998  Todd Vierling <tv@netbsd.org>
5467
5468         * configure.in: Use xm-netbsd.h as the NetBSD xm file (not xm-siglist).
5469         Accept arm32 as arm, m68k4k as m68k, mipsle as mips-dec, and any
5470         manufacturer id for ns32k.
5471         * configure: Regenerated.
5472         * config/netbsd.h: When using ASM_WEAKEN_LABEL, make it global too.
5473         * config/t-netbsd: Don't compile libgcc1-test as the fns are in libc.
5474         * config/i386/netbsd.h: Undefine DWARF2_UNWIND_INFO, not define as 0.
5475         * config/m68k/netbsd.h: Same.
5476         * config/ns32k/netbsd.h: Same.
5477         * config/sparc/netbsd.h: Same.
5478
5479 Wed Jul 29 22:39:21 1998  Jeffrey A Law  (law@cygnus.com)
5480
5481         * unroll.c (unroll_loop): Do not abort for an UNROLL_MODULO
5482         or UNROLL_COMPLETELY loop that starts with a jump to its
5483         exit code.
5484
5485 Wed Jul 29 22:18:14 1998  David Edelsohn  <edelsohn@mhpcc.edu>
5486
5487         * rs6000/rs6000.md (absdi2 define_split): Swap operands of MINUS.
5488         * rs6000/rs6000.c (mask64_operand): Use HOST_BITS_PER_WIDE_INT.
5489         (print_operand, case 'B'): Don't fall through.
5490         (print_operand, case 'S'): Correct mask begin/end computation.
5491         Use HOST_BITS_PER_WIDE_INT.
5492         * rs6000/rs6000.h (CPP_PREDEFINES): Define _LONG_LONG.
5493         (CONDITIONAL_REGISTER_USAGE): GPR13 fixed if TARGET_64BIT.
5494         * rs6000/aix41.h (CPP_PREDEFINES): Same.
5495         * rs6000/aix43.h (CPP_PREDEFINES): Same.
5496
5497 Wed Jul 29 11:47:10 1998  Nick Clifton  <nickc@cygnus.com>
5498
5499         * config/arm/thumb.md (extendqisi2_insn): Remove earlyclobber
5500         constraint from second alternative.
5501
5502 Tue Jul 28 23:29:04 1998  Jason Merrill  <jason@yorick.cygnus.com>
5503
5504         * configure.in: Fix --without/--disable cases for local-prefix, 
5505         gxx-include-dir and checking.
5506
5507 Tue Jul 28 22:01:23 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5508
5509         * configure.in (enable_haifa): Set by default for sparc64 too.
5510         configure: Rebuilt.
5511
5512 Tue Jul 28 23:29:04 1998  Jason Merrill  <jason@yorick.cygnus.com>
5513
5514         * i386/cygwin32.h (VALID_MACHINE_TYPE_ATTRIBUTE): New macro.
5515         * i386/winnt.c (associated_type): New fn.
5516         (i386_pe_valid_type_attribute_p): New fn.
5517         (i386_pe_check_vtable_importexport): Remove.
5518         (i386_pe_dllexport_p): Use associated_type.
5519         (i386_pe_dllimport_p): Likewise.
5520
5521         From Antonio M. O. Neto <anmendes@cruzeironet.com.br>:
5522         * i386.c (i386_valid_type_attribute_p): Also accept
5523         attributes for METHOD_TYPEs.
5524
5525 Tue Jul 28 23:17:39 1998  Peter Gerwinski <peter@gerwinski.de>
5526
5527         * tree.c (build_range_type): Copy TYPE_SIZE_UNIT.
5528
5529 Tue Jul 28 22:31:12 1998  Craig Burley  <burley@gnu.org>
5530
5531         * gcc.c: Fix commentary describing %g, %u, %U, and %O.
5532
5533         * gcc.c (do_spec_1): Fix handling of %g%O and %U%O to prevent
5534         them from generating a new base name for each occurence of
5535         a specific suffix.
5536
5537 1998-07-28  Vladimir N. Makarov  <vmakarov@cygnus.com>
5538
5539         * cse.c (cse_insn): Enable subsitution inside libcall only for REG,
5540         SUBREG, MEM.
5541         * rtlanal.c (replace_rtx): Prohibit replaces in CONST_DOUBLE. 
5542
5543
5544
5545         * cplus-dem.c (type_kind_t): New type.
5546         (demangle_template_value_parm): Add type_kind_t parameter.  Rely
5547         on this paramter, rather than demangling the type again.
5548         (demangle_integral_value): Pass tk_integral.
5549         (demangle_template_: Pass the value returned from do_type.
5550         (do_type): Return a type_kind_t.  Pass tk_integral to
5551         demangle_template_value_parm for array bounds.
5552         (demangle_fund_type): Likewise.
5553         
5554 Mon Jul 27 00:54:41 1998  Jason Merrill  <jason@yorick.cygnus.com>
5555
5556         * tree.c (simple_cst_equal, case CONSTRUCTOR): OK if the elts are
5557         identical.
5558
5559 Mon Jul 27 22:18:36 1998  Jeffrey A Law  (law@cygnus.com)
5560
5561         * pa.c (move_operand): Accept CONSTANT_P_RTX.
5562
5563 Mon Jul 27 17:18:52 1998  Dave Brolley  <brolley@cygnus.com>
5564
5565         * stor-layout.c (layout_type): Handle arrays of bits, for Chill.
5566
5567         * expr.c (get_inner_reference): Handle zero-based, unsigned, array
5568         index conversion.
5569
5570 Mon Jul 27 14:51:33 1998  Jeffrey A Law  (law@cygnus.com)
5571
5572         * mn10300.h (DEBUGGER_AUTO_OFFSET): Define.
5573         (DEBUGGER_ARG_OFFSET): Likewise.
5574
5575         * mn10300.md (movsf): Remove last change.  Not needed.
5576
5577 Mon Jul 27 14:22:36 1998  Dave Brolley  <brolley@cygnus.com>
5578
5579         * c-lex.c (yylex): Fix boundary conditions in character literal and
5580         string literal loops.
5581
5582 Mon Jul 27 11:43:54 1998  Stan Cox  <scox@cygnus.com>
5583
5584         * longlong.h (count_leading_zeros): Sparclite scan instruction was
5585         being invoked incorrectly.
5586
5587         * i386.c (ix86_prologue): Added SUBTARGET_PROLOGUE invocation.
5588         * i386/cygwin32.h (STARTFILE_SPEC, LIB_SPEC, SUBTARGET_PROLOGUE): 
5589         Add -pg support. 
5590         * i386/win32.h: New file.  Hybrid mingw32.h/cygwin32.h configuration.
5591         * configure.in: Added i[34567]86-*-win32
5592         * config.sub: Ditto.
5593         * configure: Rebuilt.
5594         
5595 Sun Jul 26 01:11:12 1998  H.J. Lu  (hjl@gnu.org)
5596
5597         * i386.h (CONST_DOUBLE_OK_FOR_LETTER_P): Return 0 when eliminating
5598         the frame pointer and compiling PIC code and reload has not completed.
5599
5600         * i386.c (output_to_reg): Add code to emulate non-popping DImode
5601         case.
5602
5603 Sun Jul 26 01:01:32 1998  Jeffrey A Law  (law@cygnus.com)
5604
5605         * regmove.c (regmove_optimize): Fix typo initializing regmove_bb_head.
5606
5607 Sat Jul 25 23:29:23 1998  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5608
5609         * Makefile.in (install-info): Only try to update the info
5610         directory file if it exists in the first place.
5611
5612 Fri Jul 24 18:58:37 1998  Klaus Espenlaub  <kespenla@student.informatik.uni-ulm.de>
5613
5614         * rs6000.h (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Delete.
5615
5616 Fri Jul 24 14:20:26 1998  Jeffrey A Law  (law@cygnus.com)
5617
5618         * mn10300.md (movqi, movhi, movsi, movsf): Correctly handle
5619         CONST_DOUBLE source.
5620
5621 Fri Jul 24 11:17:04 1998  Nick Clifton  <nickc@cygnus.com>
5622
5623         * config/arm/thumb.c (thumb_print_operand): Decode %_ in asm
5624         strings as the insertion of USER_LABEL_PREFIX.
5625         * config/arm/thumb.h (PRINT_OPERAND_PUNCT_VALID_P): Accept _ as a
5626         valid code.
5627         * config/arm/thumb.md: Use %_ as a prefix to gcc library function
5628         calls. 
5629
5630 Thu Jul 23 18:53:20 1998  Jim Wilson  <wilson@cygnus.com>
5631
5632         * dbxout.c (dbxout_range_type): Only call dbxout_type_index for
5633         already defined type.
5634
5635 Thu Jul 23 13:49:41 1998  Jeffrey A Law  (law@cygnus.com)
5636
5637         * expr.c (check_max_integer_computation_mode): Allow conversions
5638         of constant integers to MAX_INTEGER_COMPUTATION_MODE.
5639         (expand_expr): Likewise.
5640
5641 Thu Jul 23 11:12:06 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5642
5643         * expr.c (expand_expr): Expand RETURN_EXPR.
5644
5645 Thu Jul 23 11:00:29 1998  Jim Wilson  <wilson@cygnus.com>
5646
5647         * dwarf2out.c (dwarf2out_finish): Call stripattributes on TEXT_SECTION.
5648
5649 Wed Jul 22 19:10:00 1998  Catherine Moore  <clm@cygnus.com>
5650
5651         * dwarf2out.c (output_aranges):  Call stripattributes
5652         for TEXT_SECTION references.
5653         (output_line_info): Likewise.
5654
5655 Wed Jul 22 14:08:54 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5656
5657         * profile.c (branch_prob): Call allocate_reg_info after outputting
5658         profile rtl in instrument_arcs.
5659
5660 Wed Jul 22 12:47:49 1998  Jim Wilson  <wilson@cygnus.com>
5661
5662         * fixinc.irix (math.h): Install wrapper instead of copying.
5663
5664 Wed Jul 22 12:37:14 1998  Alexandre Petit-Bianco <apbianco@cygnus.com>
5665
5666         * tree.def (EXPR_WITH_FILE_LOCATION): Defined as an 'e' expression
5667         so WFL are expanded correctly when contained in a COMPOUND_EXPR.
5668         * tree.h (EXPR_WFL_EMIT_LINE_NOTE): Change macro not to use
5669         lang_flag_0. Added documentation in the flag table.
5670
5671 Tue Jul 21 23:28:35 1998  Klaus Kaempf <kkaempf@rmi.de>
5672
5673         * cccp.c (do_include): Fix vax c style include handling.
5674
5675 Tue Jul 21 13:28:19 1998  Jason Merrill  <jason@yorick.cygnus.com>
5676
5677         * cplus-dem.c (do_type): Use demangle_template_value_parm for arrays.
5678
5679 Sun Jul 12 01:27:05 1998  Jason Merrill  <jason@yorick.cygnus.com>
5680
5681         * fold-const.c (non_lvalue): Don't deal with null pointer 
5682         constants here.
5683         (fold, case COMPOUND_EXPR): Wrap a constant 0 in a NOP_EXPR.
5684
5685 Tue Jul 21 15:49:31 1998  David Edelsohn  <edelsohn@mhpcc.edu>
5686
5687         * rs6000.h (PREDICATE_CODES): Add CONSTANT_P_RTX.
5688         * rs6000.md (movsi, movdi): Add CONSTANT_P_RTX.
5689         * rs6000.c (short_cint_operand): Add CONSTANT_P_RTX.
5690         (u_short_cint_operand): Same.
5691         (reg_or_cint_operand): Same.
5692         (logical_operand): Same.
5693         (input_operand): Same.
5694         (reg_or_short_operand): Use u_short_cint_operand.
5695
5696 Tue Jul 21 08:56:42 1998  Richard Henderson  <rth@cygnus.com>
5697
5698         * alpha.md (fix_truncdfsi2, fix_truncsfsi2): Remove the define_expands,
5699         but keep the insns and splits.  Adjust so when the ultimate destination
5700         is memory, use cvtql.
5701
5702 Tue Jul 21 08:55:09 1998  Richard Henderson  <rth@cygnus.com>
5703
5704         * flow.c (regno_uninitialized): Fixed regs are never uninitialized.
5705
5706 Tue Jul 21 00:31:01 1998  Jeffrey A Law  (law@cygnus.com)
5707
5708         * gcc.c (do_spec): Call "error" not "warning".
5709
5710         * configure.in: Fix minor problems with gas feature detection code.
5711         * configure: Rebuilt.
5712
5713         * gcc.c (do_spec): Issue a warning for '%[]' usage.
5714
5715         * Undo this change.
5716         * gcc.c: Delete %[spec] support.
5717         (do_spec_1, case '('): Likewise.
5718         (do_spec_1, case '['): Call error.
5719
5720 Mon Jul 20 22:34:17 1998  Richard Henderson  <rth@cygnus.com>
5721
5722         * alpha.h (CPP_SPEC): Tidy.  Hook to cpp_cpu and cpp_subtarget.
5723         (CPP_SUBTARGET_SPEC): Default to empty string.
5724         (CPP_AM_*, CPP_IM_*, CPP_CPU_*, CPP_CPU_SPEC): New.
5725         (EXTRA_SPECS, SUBTARGET_EXTRA_SPECS): New.
5726         * alpha/elf.h (LD_SPEC): Use %(elf_dynamic_linker).
5727         * alpha/linux-elf.h (SUBTARGET_EXTRA_SPECS): New.
5728         (LIB_SPEC): Tidy.
5729         * alpha/linux.h (CPP_PREDEFINES): Tidy.
5730         * alpha/netbsd-elf.h (SUBTARGET_EXTRA_SPECS): New.
5731         * alpha/netbsd.h (CPP_PREDEFINES): Tidy.
5732         * alpha/osf.h (CPP_PREDEFINES): Remove bits subsumed by CPP_CPU_SPEC.
5733         * alpha/win-nt.h (CPP_PREDEFINES): Likewise.
5734         * alpha/vsf.h (CPP_PREDEFINES): Likewise.
5735         (CPP_SUBTARGET_SPEC): New.  Do this instead of overriding CPP_SPEC.
5736         * alpha/vxworks.h: Likewise.
5737
5738 Mon Jul 20 22:51:57 1998  Ken Raeburn  <raeburn@cygnus.com>
5739
5740         * mips.md (reload_outsi): Added missing REGNO call.
5741         (smulsi3_highpart, umulsi3_highpart): Provide prototype for
5742         function pointer.
5743         (mul_acc_di, mul_acc_64bit_di): Don't use match_op_dup, use
5744         another match_operator and compare the codes.
5745
5746         * mips.h (MASK_DEBUG_E, MASK_DEBUG_I): Set to zero.
5747
5748         * MIPS multiply pattern fixes:
5749         * mips.h (enum reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS):
5750         Add union classes for HI, LO, or HILO plus general registers.
5751         (GENERATE_MADD): Deleted.
5752         * mips.md (mulsi3_mult3): Don't disparage output-LO alternative.
5753         Add TARGET_MAD to condition.
5754         (mulsi3): Test HAVE_mulsi3_mult3, not specific flags.
5755         (mul_acc_si): Expand GENERATE_MADD here; it's the only use.  Use
5756         "*d" for accumulator, to give preference to LO initially but not
5757         during reload.
5758
5759 Mon Jul 20 16:16:38 1998  Dave Brolley  <brolley@cygnus.com>
5760
5761         * configure.in (enable_c_mbchar): New configure option.
5762         (extra_cpp_objs): Always available now.
5763
5764         * cexp.y (mbchar.h): #include it.
5765         (yylex): Handle Multibyte characters in character literals.
5766
5767         * cccp.c (mbchar.h): #include it.
5768         (main): Set character set based on LANG environment variable.
5769         (rescan): Handle multibyte characters in comments.
5770         (skip_if_group): See above.
5771         (validate_else): See above.
5772         (skip_to_end_of_comment): See above.
5773         (macarg1): See above.
5774         (discard_comments): See above.
5775         (rescan): Handle multibyte characters in string and character literals.
5776         (collect_expansion): See above.
5777         (skip_quoted_string): See above.
5778         (macroexpand): See above.
5779         (macarg1): See above.
5780         (discard_comments): See above.
5781         (change_newlines): See above.
5782
5783         * c-lex.c (mbchar.h): #include it.
5784         (GET_ENVIRONMENT): New macro.
5785         (init_lex): Set character set based on LANG environment variable.
5786         (yylex): Handle multibyte characters in character literals.
5787         (yylex): Handle multibyte characters in string literals.
5788
5789         * Makefile.in (mbchar.o): New target.
5790         (cccp$(exeext)): @extra_cpp_objs@ is always available.
5791         (cppmain$(exeext)): @extra_cpp_objs@ is always available.
5792
5793         * mbchar.[ch]: New files for multibyte character handling.
5794
5795 Mon Jul 20 01:11:11 1998  David S. Miller  <davem@pierdol.cobaltmicro.com>
5796
5797         * jump.c (jump_optimize): When simplifying noop moves and
5798         PUSH_ROUNDING, fix thinko so we use same criterion for identifying
5799         the PUSHes to rewrite in second loop as we did in the first.
5800
5801 Sun Jul 19 08:23:53 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5802
5803         * cplus-dem.c (demangle_nested_args): Make function definition
5804         static to match the prototype.
5805
5806 Fri Jul 17 14:58:44 1998  Richard Henderson  <rth@cygnus.com>
5807
5808         * alloca.c: Respect USE_C_ALLOCA.
5809         * gencheck.c (xmalloc): Ignore __GNUC__ for definition.
5810         * gengenrtl.c (xmalloc): Likewise.
5811
5812 Fri Jul 17 14:18:14 1998  Richard Henderson  <rth@cygnus.com>
5813
5814         * loop.h (struct induction): Add no_const_addval.
5815         * loop.c (the_movables, reg_address_cost): New variables.
5816         (init_loop): Init reg_address_cost.
5817         (loop_optimize): Call end_alias_analysis.
5818         (scan_loop): Init the_movables.
5819         (record_giv): Init induction->no_const_addval.
5820         (basic_induction_var) [PLUS]: Use rtx_equal_p instead of ==.
5821         [REG]: Rearrange loop search test to catch more cases.
5822         (general_induction_var): Return success not benefit; take an extra
5823         argument for that.  Change all callers.
5824         (simplify_giv_expr) [PLUS]: Always combine invariants.  Use sge_plus.
5825         [MULT]: Use rtx_equal_p instead of ==.  Combine simple invariants.
5826         [default]: Search the_movables for additional combinations.
5827         (sge_plus_constant, sge_plus): New functions.
5828         (express_from_1): New function.
5829         (express_from): Always define.  Rewrite using express_from_1.
5830         (combine_givs_p): Handle more cases.  Ignore address cost.
5831         (cmp_combine_givs_stats): New function.
5832         (combine_givs_used_once, combine_givs_benefit_from): New functions.
5833         (combine_givs): Rewrite to do best-fit combination.
5834
5835         * fold-const.c (operand_equal_p): Handle RTL_EXPR.
5836         (fold): Do a complete (A*C)+(B*C) association check.
5837
5838 Fri Jul 17 11:21:55 1998  Jim Wilson  <wilson@cygnus.com>
5839
5840         * function.c (fixup_var_refs_insns): Handle CLOBBER of a CONCAT.
5841
5842 Fri Jul 17 11:48:55 1998  Jeffrey A Law  (law@cygnus.com)
5843
5844         * mn10300.c (MODES_TIEABLE_P): Fix typo.
5845
5846 Fri Jul 17 03:26:12 1998  Rihcard Earnshaw (rearnsha@arm.com)
5847
5848         * tree.c (valid_machine_attribute): Only create a new type variant if
5849         there is a decl to use it.
5850
5851 Thu Jul 16 14:48:04 1998  Nick Clifton  <nickc@cygnus.com>
5852
5853         * gcc.c (do_spec_1): Cope with %g/%u/%U options which do not have
5854         a suffix.
5855
5856 Fri Jul 17 03:24:40 1998  Hans-Peter Nilsson  <hp@axis.se>
5857
5858         * extend.texi (Explicit Reg Vars): Typo: change "may deleted" into "may
5859         be deleted" 
5860
5861 Thu Jul 16 14:48:47 1998  Jeffrey A Law  (law@cygnus.com)
5862
5863         * mn10300.c (count_tst_insns): New arg oreg_countp.  Callers changed.
5864         Simplify tests for clearing an address register.
5865         (expand_prologue): Corresponding changes.
5866
5867         * mn10300.md (movXX patterns): Make sure the destination is an
5868         ADDRESS_REG when substituting "zero_areg" for (const_int 0).
5869         (logical patterns): Split into expanders + patterns
5870         (zero and sign extension patterns): Similarly.
5871         (shift patterns): Similarly.
5872
5873 Thu Jul 16 01:17:44 1998  Richard Henderson  <rth@cygnus.com>
5874
5875         * loop.c (emit_iv_add_mult): Scan the entire insn list generated
5876         for the sequence, recording base values.
5877
5878 Wed Jul 15 10:49:55 1998  Richard Henderson  <rth@cygnus.com>
5879
5880         * i386.h (CPP_CPU_SPEC): Remove -Asystem(unix).
5881
5882 Tue Jul 14 14:15:30 1998  Nick Clifton  <nickc@cygnus.com>
5883
5884         * gcc.c: Remove ANSI-C ism from --help code.
5885
5886         * toplev.c: Support --help with USE_CPPLIB.
5887
5888 Tue Jul 14 14:46:08 1998  Jeffrey A Law  (law@cygnus.com)
5889
5890         * configure.in: Rework gas feature code to work with symlink based
5891         source trees.
5892
5893         * extend.texi: Clarify some issues related to local variables
5894         assigned to explicit registers.
5895
5896         * mn10300.md (mulsi): Turn into expander + pattern.
5897
5898         * mn10300.md (movsi, movsf, movdi, movdf): Remove "x" from I -> a
5899         alternative.
5900
5901 Tue Jul 14 07:41:59 1998  Richard Earnshaw (rearnsha@arm.com)
5902
5903         * arm/tcoff.h (USER_LABEL_PREFIX): Make it empty to match coff.h.
5904
5905 Tue Jul 14 03:02:44 1998  Jeffrey A Law  (law@cygnus.com)
5906
5907         * version.c: Bump again to distinguish mainline tree from the
5908         egcs-1.1 branch.
5909
5910 See ChangeLog.0 for earlier changes.
5911
5912 Local Variables:
5913 add-log-time-format: current-time-string
5914 End: