* sh.c (addsubcosts): CONST is not cheap.
[official-gcc.git] / gcc / ChangeLog
blob00b1f24316bb0635a58854dc44ac16c5ad0de243
1 Mon Sep 18 20:26:50 2000  J"orn Rennecke <amylaar@redhat.co.uk>
3         * sh.c (addsubcosts): CONST is not cheap.
4         (find_barrier): For Sh1, take alignment after jumps into account.
6 2000-09-15  Andrew Haley  <aph@redhat.com>
8         * toplev.c (rest_of_compilation): Call purge_hard_subreg_sets to
9         remove all SETs of SUBREGs of hard registers.
10         * function.c (purge_hard_subreg_sets): New function.
11         (purge_single_hard_subreg_set): New function.
12         * rtl.h: (purge_hard_subreg_sets): New function.
14 2000-09-18  Richard Henderson  <rth@cygnus.com>
16         * config/ia64/ia64-protos.h: Update.
17         * config/ia64/ia64.c (signed_inequality_operator): New.
18         (ia64_expand_compare): New.
19         (ia64_register_move_cost): Handle PR_REGS moves.
20         (ia64_secondary_reload_class): Require a GR when moving to a PR.
21         (struct reg_write_state): Add written_by_and/or.
22         (struct reg_flags): Add is_and/or.
23         (rws_update): Set them.
24         (rws_access_regno): Test them to allow parallel comparisons.
25         (rtx_needs_barrier): Recognize parallel comparisons.
26         (emit_insn_group_barriers): Set prev_insn after a call stop bit.
27         Call recog_memoized; ignore pred_rel_mutex.
28         (emit_predicate_relation_info): Don't call find_basic_blocks here.
29         (ia64_reorg): Do it here instead.
30         * config/ia64/ia64.h: s/CCmode/BImode/g
31         (MODES_TIEABLE_P): Don't tie BImode.
32         (PREFERRED_RELOAD_CLASS): Do not reload operations into AR regs.
33         (CONST_COSTS): Pick sensible values for CONST_INT based on context.
34         (RTX_COSTS): Make multiply 4 insns.
35         (MEMORY_MOVE_COST): New.
36         (PREDICATE_CODES): Update.
37         * config/ia64/ia64.md: s/CCmode/BImode/g
38         (movcci, movbi): New.
39         (andbi3, andcmbi3, iorbi3, iorcmbi3, one_cmplbi2): New.
40         (cmpsi_and_0, cmpsi_and_1, cmpsi_andnot_0, cmpsi_andnot_1): New.
41         (cmpdi_and_0, cmpdi_and_1, cmpdi_andnot_0, cmpdi_andnot_1): New.
42         (tbit_and_0, tbit_and_1, tbit_and_2, tbit_and_3): New.
43         (cmpsi_or_0, cmpsi_or_1, cmpsi_orcm_0, cmpsi_orcm_1): New.
44         (cmpdi_or_0, cmpdi_or_1, cmpdi_orcm_0, cmpdi_orcm_1): New.
45         (tbit_or_0, tbit_or_1, tbit_or_2, tbit_or_3): New.
46         (mulsi, muldi): Use xmpy not xma.
47         (cmpbi): New.
48         (movcc, movcc_internal): Remove.
49         (branch expanders): Use ia64_expand_compare.
50         (setcc expanders): Likewise.
51         (cmov insns): Use move_operand and ia64_move_ok.
52         (pred_rel_mutex): Use unspec not unspec_volatile.  Prevent the
53         scheduler from moving it past a use.
54         * config/ia64/build.hacks: Remove.
56 Mon 18-Sep-2000 19:21:35 BST  Neil Booth  <NeilB@earthling.net>
58         * cpphash.h (HASHSTEP): Take character rather than pointer
59         to character.
60         (_cpp_check_directive, _cpp_check_linemarker): Update prototypes.
62         * cpphash.c (cpp_loookup): Update for new HASHSTEP.
64         * cpplex.c (auto_expand_name_space, trigraph_replace,
65         backslash_start, handle_newline, parse_name, INIT_TOKEN_STR,
66         IMMED_TOKEN, PREV_TOKEN_TYPE, PUSH_TOKEN, REVISE_TOKEN,
67         BACKUP_TOKEN, BACKUP_TRIGRAPH, MIGHT_BE_DIRECTIVE,
68         KNOWN_DIRECTIVE): Delete.
70         (handle_newline, check_long_token, skip_escaped_newlines,
71         unterminated): New functions.
72         (ACCEPT_CHAR, SAVE_STATE, RESTORE_STATE): New macros.
74         (parse_identifier): Was parse_name, new implementation.
75         (skip_line_comment, skip_block_comment, skip_whitespace,
76         parse_number, parse_string, trigraph_ok, save_comment,
77         adjust_column, _cpp_get_line): New implementations.
79         (lex_token): New function.  Lexes a token at a time, looking
80         forwards.  Contains most of the guts of the old lex_line.
81         (lex_line): New implementation, using lex_token to obtain
82         individual tokens.
83         (cpp_scan_buffer): Use the token's line, not the list's line.
85         * cpplib.c (_cpp_check_directive, _cpp_check_linemarker):
86          New implementations.
87         (do_assert): Don't bother setting the answer's list's line.
88         (cpp_push_buffer): Initialise new pfile and read_ahead members
89         of struct cpp_buffer.
91         * cpplib.h (cppchar_t): New typedef.
92         (struct cpp_buffer): read_ahead, pfile and col_adjust are
93         new members.
94         (struct lexer_state): New structure that determines the state
95         and behaviour of the lexer.
96         (IN_DIRECTIVE, KNOWN_DIRECTIVE): New macros.
97         (struct cpp_reader): New member "state". Rename
98         multiline_string_line and multiline_string_column. Delete
99         col_adjust, in_lex_line members.
100         (CPP_BUF_COLUMN): Update.
102 2000-09-18  Richard Henderson  <rth@cygnus.com>
104         * combine.c (simplify_comparison): Shift a NOT out of a single
105         bit test.
107         * combine.c (if_then_else_cond): Canonicalize BImode true to
108         STORE_FLAG_VALUE.
109         * explow.c (trunc_int_for_mode): Likewise.
111         * combine.c (combine_simplify_rtx): Use gen_unary to distribute
112         the NOT for De Morgan's rule.
113         * simplify-rtx.c (simplify_unary_operation): Simplify a BImode NOT
114         of a comparison to the reverse comparison.
116         * combine.c (try_combine): Allow split to create a single insn.
118         * machmode.def: Add BImode.  Add a column for bitsize.
119         * machmode.h (DEF_MACHMODE): Adjust for extra column.
120         (GET_MODE_BITSIZE): Use it.
121         * rtl.c (DEF_MACHMODE): Adjust for extra column.
122         (mode_bitsize): New.
123         (mode_mask_array): Use bitsize.
124         * combine.c (combine_simplify_rtx): Require inner and outer
125         modes to match on nonzero_bits optimizations.
127 2000-09-18  Bernd Schmidt  <bernds@redhat.co.uk>
129         * reload1.c (forget_old_reloads_1): If a hard reg is stored, clear
130         its entry in spill_reg_store.
131         * config/sh/lib1funcs.ams (movstr_i4 functions): Always compile in.
132         * sh.c (reg_no_subreg_operand): New function.
133         * sh-protos.h (reg_no_subreg_operand): Declare it.
134         * sh.h (PREDICATE_CODES): Add it.
135         * sh.md (floatsisf2_i4, floatsidf2_i, extendsfdf2_i4): Use it for
136         input operand that needs to be in fpul.
137         (fix_truncsfsi2, fix_truncsfsi2_i4): Use register_operand for output.
138         * sh.c (find_barrier): Take into account that machine_dependent_reorg
139         might add new insns.
141 2000-09-18  Alexandre Oliva  <aoliva@redhat.com>
143         * config/sh/sh.c (sh_expand_prologue): Mark GOTaddr2picreg as
144         MAYBE_DEAD.
145         (sh_expand_epilogue): Take the PIC register into account when
146         computing the frame size.
148         * config/sh/sh.c (nonpic_symbol_mentioned_p): Check LABEL_REFs.
149         * config/sh/sh.md (sym_label2reg, symPLT_label2reg): Protect
150         LABEL_REFs with a PIC-safe unspec.
152 2000-09-18  Will Cohen  <wcohen@redhat.com>
154         * extend.texi (Zero Length): State that static initializers for
155         zero-length arrays are not allowed.
157         * c-typeck.c (process_init_element): Flag initializers for zero
158         length arrays.
160         * tree.c (integer_all_onesp): Ignore TREE_INT_CST_HIGH if prec is
161         exactly HOST_BITS_PERWIDE_INT.
163 2000-09-18  Joseph S. Myers  <jsm28@cam.ac.uk>
165         * c-common.c (check_format_info): Properly save the argument
166         number and parameter for $ operand number formats in case width
167         and precision arguments are also used.  Allow printf width and
168         precision arguments to have operand numbers even if none was
169         specified for the main format, since this is OK for %*.*m.  Only
170         object to missing $ operand number if the format used requires an
171         argument.
173 2000-09-18  Joseph S. Myers  <jsm28@cam.ac.uk>
175         * c-common.c (format_char_info): Add 'W' flag to comment.
176         (print_char_table, scan_char_table): Use it.
177         (check_format_info): Use the 'W' flag to determine whether a
178         format argument is written into.
180 2000-09-18  Joseph S. Myers  <jsm28@cam.ac.uk>
182         * c-common.c (check_format_types): Reorganise and clean up,
183         checking earlier for ERROR_MARKs and making cur_type into its
184         TYPE_MAIN_VARIANT where convenient.
186 2000-09-18  Joseph S. Myers  <jsm28@cam.ac.uk>
188         * gcc.c (cpp_options): Add specs for __STDC_HOSTED__.
190 2000-09-18  Bernd Schmidt  <bernds@redhat.co.uk>
192         * optabs.c (emit_libcall_block): Set CONST_CALL_P for the call.
194         * i386-protos.h (ix86_init_builtins, ix86_expand_builtin): Declare.
195         * i386.c (struct builtin_description): New.
196         (bdesc_comi, bdesc_2arg, bdesc_1arg): New arrays.
197         (mmx_reg_operand): Declare MODE arg as unused.
198         (ix86_expand_sse_comi, ix86_expand_sse_compare, safe_vector_operand,
199         ix86_expand_unop1_builtin, ix86_expand_unop_builtin,
200         ix86_expand_binop_builtin, ix86_expand_store_builtin,
201         ix86_init_builtins, ix86_expand_builtin): New functions.
202         * i386.h (ix86_builtins): New enumeration.
203         (MD_INIT_BUILTINS, MD_EXPAND_BUILTIN): New macros.
204         * i386.md (attr length_immediate): 0 for mmx/sse types.
205         (attr prefix_0f): 1 for mmx/sse types.
206         (setcc_2): Remove "*" so we get gen_setcc_2.
207         (emms): Account for changed register numbering.  Set "memory" attr
208         to unknown.
209         (sfence): Set "memory" attr to unknown.
211 2000-09-18  Andreas Jaeger  <aj@suse.de>
213         * configure.in: Define _GNU_SOURCE only when using the GNU C
214         Library.
215         * configure: Regenerated.
216         * config.in: Regenerated.
218 2000-09-17  Mark Mitchell  <mark@codesourcery.com>
220         * cppinit.c (cpp_init): Don't use ANSI prototypes.
221         * flow.c (flow_dump_loop): Likewise.
222         (flow_loops_dump): Likewise.
224         * c-typeck.c (c_start_case): Fix typo.
226 2000-09-17  Joseph S. Myers  <jsm28@cam.ac.uk>
228         * c-decl.c (grokdeclarator): Don't give a warning about defaulting
229         to int for plain complex which defaults to complex double.  Do
230         warn about defaulting to complex double if pedantic.  Warn about
231         complex integer types if pedantic.  Warn about complex types if
232         pedantic and not in C99 mode.
233         * c-typeck.c (build_unary_op): If pedantic, warn about use of ~
234         for complex conjugation.
236 2000-09-17  Joseph S. Myers  <jsm28@cam.ac.uk>
238         * contrib.texi: Update my entry.
240 Sun Sep 17 18:48:32 2000  Denis Chertykov  <denisc@overta.ru>
242         * config/avr/avr.md (mcu_enhanced): New attribute.
243         (mcu_mega): Likewise.
244         (extendhisi2): Use mcu_enhanced.
245         (zero_extendhisi2): Likewise.
246         (call_insn): Use mcu_enhanced and mcu_mega.
247         (call_value_insn): Likewise.
248         (*sbrx_branch): Use mcu_mega.
249         (*sbrx_and_branchsi): Likewise.
250         (*sbrx_and_branchhi): Likewise.
251         (*tablejump_lib): Likewise.
253 Sun Sep 17 10:46:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
255         * alias.c (true_dependence): Allow non-unchanging read to conflict
256         with unchanging write.
258         * expr.c (store_constructor_field): Accept ALIAS_SET arg.
259         (store_constructor): Pass alias_set to it.
261         * c-decl.c (grokdeclarator): Reorder tests to avoid looking at
262         TYPE_MAIN_VARIANT of ERROR_MARK.
263         * c-lex.c (readescape): Avoid using printf syntax we don't recognize.
265         * simplify-rtx.c (simplify_unary_operation): Add cases
266         FLOAT_EXTEND and FLOAT_TRUNCATE to ones that return 0.
268 2000-09-17  Bernd Schmidt  <bernds@redhat.co.uk>
270         * expr.h (emit_library_call, emit_library_call_value): Delete
271         declarations.
272         * rtl.h (enum libcall_type): New.
273         (emit_library_call, emit_library_call_value): Change fn_type arg to
274         be of type enum libcall_type.
275         * calls.c: Likewise for the function definitions.  Several callers
276         throughout changed to use the new enumeration appropriately.
277         (emit_library_call_value_1): Likewise.  Put back code to make libcall
278         blocks of equal form, but only use it for the two new higher
279         enumeration values.
281 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
283         Convert the C front-end to use function-at-a-time mode.
284         * c-common.h: Include splay-tree.h.
285         (C_DECLARED_LABEL_FLAG): New macro.
286         (struct language_function): Add x_scope_stmt_stack and
287         x_function_name_declared_p.
288         (RECHAIN_STMTS): Move definition.
289         (lang_statment_code_p): Likewise.
290         (lang_expand_stmt): Likewise.
291         (lang_expand_decl_stmt): New variable.
292         (lang_expand_function_end): Likewise.
293         (current_scope_stmt_stack): New function.
294         (add_decl_stmt): Likewise.
295         (add_scope_stmt): Likewise.
296         (mark_stmt_tree): Likewise.
297         (struct c_lang_decl): New structure.
298         (DECL_SAVED_TREE): Define.
299         (c_mark_lang_decl): New function.
300         (c_expand_start_cond): Change prototype.
301         (c_finish_then): New function.
302         (c_finish_else): Likewise.
303         (current_function_name_declared): Remove.
304         (set_current_function_name_declared): Likewise.
305         (mark_c_language_function): Declare.
306         (case_compare): Likewise.
307         (c_add_case_label): Likewise.
308         (c_expand_expr): Likewise.
309         (c_safe_from_p): Likewise.
310         * c-common.c (lang_expand_function_end): New variable.
311         (struct if_elt): Add if_stmt.
312         (c_expand_start_cond): Add the if-statement to the statement-tree,
313         rather than generating RTL.
314         (c_finish_then): New function.
315         (c_expand_start_else): Don't generate RTL.
316         (c_finish_else): New function.
317         (c_expand_expr_stmt): Don't generate RTL.
318         (statement_code_p): Add SCOPE_STMT.
319         (case_compare): New function.
320         (c_add_case_label): Likewise.
321         (mark_stmt_tree): Likewise.
322         (c_mark_lang_decl): Likewise.
323         (mark_c_language_function): Likewise.
324         (c_expand_expr): Likewise.
325         (c_safe_from_p): Likewise.
326         * c-decl.c (c_stmt_tree): New variable
327         (c_scope_stmt_stack): Likewise.
328         (c_function_name_declared_p): Likewise.
329         (lang_expand_expr_stmt): Remove.
330         (poplevel): Don't call output_inline_function for nested
331         functions.
332         (pushdecl): Don't set DECL_CONTEXT for a local declaration of an
333         `extern' function.
334         (redeclaration_error_message): Change means of computing whether
335         or not a function is nested.
336         (lookup_label): Don't call label_rtx.
337         (init_decl_processing): Add more GC roots.
338         (start_decl): Add DECL_STMTs to the statement-tree, rather than
339         calling rest_of_decl_compilation.
340         (finish_decl): Don't call expand_decl.
341         (store_parm_decls): Begin the statement-tree, but don't generate
342         RTL.
343         (finish_function): Tie off the statement-tree.  Call c_expand_body
344         if appropriate.
345         (c_expand_body): New function.
346         (push_c_function_context): Save more information.
347         (pop_c_function_contxt): Likewise.
348         (copy_lang_decl): Now that we use DECL_LANG_SPECIFIC, copy it.
349         (lang_mark_tree): Mark it.
350         (current_stmt_tree): Adjust.
351         (current_scope_stmt_stack): New function.
352         (do_case): Remove.
353         (set_current_name_declared): Likewise.
354         (c_begin_compound_stmt): Define.
355         (c_expand_decl_stmt): Likewise.
356         * c-lang.c: Include rtl.h and expr.h.
357         (lang_init): Set more language-specific hooks.
358         * c-lex.c: Include expr.h.
359         * c-parse.in: Changes throughout to add statements to the
360         statement-tree, rather than generating RTL after every statement.
361         * c-semantics.c (lang_expand_decl_stmt): Define.
362         (add_decl_stmt): New function.
363         (add_scope_stmt): Likewise.
364         (finish_stmt_tree): Tweak.
365         (genrtl_expr_stmt): Likewise.
366         (genrtl_decl_stmt): Handle local labels, and call
367         lang_expand_decl_stmt if required.
368         (genrtl_for_stmt): Fix line-number handling.
369         (genrtl_case_label): Handle cleanups.
370         (genrtl_asm_stmt): Don't call combine_strings.
371         (genrtl_compound_stmt): Simplify.
372         (expand_stmt): Handle SCOPE_STMTs.
373         * c-tree.h (struct lang_decl): New structure.
374         (C_DECLARED_LABEL_FLAG): Remove.
375         (c_begin_compound_stmt): Declare.
376         (c_expand_decl_stmt): Likewise.
377         (c_expand_start_case): Rename to c_start_case.
378         (c_finish_case): New function.
379         * c-typeck.c (start_init): Tweak setting of
380         constructor_incremental.
381         (c_expand_asm_operands): Tweak error-handling.  Add to the
382         statement-tree.
383         (c_expand_return): Add to the statement-tree.
384         (c_expand_start_case): Rename to ...
385         (c_start_case): ... this.
386         (struct c_switch): New type.
387         (switch_stack): New variable.
388         (do_case): Simplify.
389         (c_finish_case): New function.
390         * dependence.c: Include expr.h.
391         (enum dependence_type): Change spelling of enumerals.
392         (check_node_dependence): Adjust.
393         * expr.h (lang_safe_from_p): Declare.
394         (safe_from_p): Likewise.
395         * expr.c (lang_safe_from_p): New variable.
396         (safe_from_p): Give it external linkage.  Use lang_safe_from_p.
397         * stmt.c (expand_expr_stmt): Avoid clobberring of last_expr_type.
398         * toplev.c (rest_of_decl_compilation): Robustify.
399         * tree.c (contains_placeholder_p): Likewise.
400         * Makefile.in: Update dependencies.
401         * objc/objc-act.h: Adjust calculation of value for dummy_tree_code.
402         * objc/objc-act.c: Include rtl.h, expr.h, and c-common.h.
403         (objc_expand_function_end): New function.
404         (finish_method_def): Use it.
405         (init_objc): Initialize more language-specific hooks.
406         * objc/Make-lang.in: Update dependencies.
407         
408 2000-09-16  Geoffrey Keating  <geoffk@cygnus.com>
410         * configure.in: Define macros that affect features before
411         testing for features.  Don't define _XOPEN_SOURCE.
412         * configure: Regenerated.
413         * config.in: Regenerated.
415 Sat Sep 16 19:42:50 EDT 2000  John Wehle  (john@feith.com)
417         * rtlanal.c (rtx_varies_p): Volatile asms vary.
418         (rtx_unstable_p): Restructure code.  Volatile asms
419         are unstable.
421 Sat Sep 16 14:35:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
423         * function.h (no_debugging_symbols): New field.
424         * integrate.c (save_for_inline): Renamed from save_for_inline_nocopy.
425         Initialize no_debugging_symbols.
426         (output_inline_function): Save and restore write_symbols and set from
427         no_debugging_symbols.
428         * toplev.c (rest_of_compilation): Call save_for_inline.
429         * tree.h: Update comment.
430         
431         * stor-layout.c (place_field): Don't do anything if field or
432         its type are ERROR_MARK.
434 Sat Sep 16 19:14:00 2000  Laurynas Biveinis <lauras@softhome.net>
436         * cppfiles.c (purge_cache): Use munmap only if MMAP_THRESHOLD defined.
437         (read_include_file): Ensure inc->mmaped is initialized.
439 2000-09-16  Richard Henderson  <rth@cygnus.com>
441         * cppiles.c (purge_cache): Use PTR not caddr_t.
443 2000-09-16  Hans-Peter Nilsson  <hp@axis.com>
445         * gcc.c: In description for %{<S}, say the option removed is -S.
446         * invoke.texi (Spec Files): Ditto.
448 2000-09-16  Andreas Jaeger  <aj@suse.de>
450         * configure.in: Always define _GNU_SOURCE to make interfaces
451         visible that were hidden by only defining _GNU_SOURCE.
452         * configure: Regenerated.
454 Sat 16-Sep-2000 08:13:45 BST  Neil Booth  <NeilB@earthling.net>
456         * cpplex.c (push_macro_context): Set an argument's level after
457         calling parse_args.  We could loop infinitely otherwise.
459 2000-09-15  Tom Tromey  <tromey@cygnus.com>
461         * configure, config.in: Rebuilt.
462         * configure.in: Check for iconv.h.  Define _XOPEN_SOURCE.
464 2000-09-15  Greg McGary  <greg@mcgary.org>
466         * cppmacro.c (check_trad_stringification): Check token
467         text pointers against limit before dereferencing.
469 2000-09-15  Joseph S. Myers  <jsm28@cam.ac.uk>
471         * c-common.c (format_wanted_type): New structure.
472         (check_format_types): New function.
473         (check_format_info): Pass all checking of types of format
474         arguments, including width and precision arguments, to this new
475         function.
477 2000-09-15  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
479         * BUGS: Remove file.
481 2000-09-15  Jakub Jelinek  <jakub@redhat.com>
483         * config/alpha/alpha.c (override_options): ev6 cache latencies
484         from Richard Henderson.  Don't allow -mmemory-latency=L0.
486         * config/alpha/alpha.h (TARGET_CPU_EV5, TARGET_CPU_EV6): Define.
487         (TARGET_OPTIONS): Add tune=.
488         (alpha_tune_string): Declare.
489         * config/alpha/alpha.c (override_options): Add cpu_table.
490         Use alpha_cpu_string first to set both alpha_cpu and target_flags
491         and then alpha_tune_string to set alpha_cpu only.
492         Replace tests for PROCESSOR_EV* with TARGET_CPU_EV* tests.
493         * config/alpha/elf.h (ASM_FILE_START): Likewise.
494         * config/alpha/osf.h (ASM_FILE_START): Likewise.
495         * config/alpha/openbsd.h (ASM_FILE_START): Likewise.
497 Fri Sep 15 19:45:55 MET DST 2000  Jan Hubicka  <jh@suse.cz>
499         * i386-protos.h (no_comparison_operator, uno_comparison_operator):
500         Remove.
501         (ix86_comparison_operator, ix86_cc_mode): Declare
502         * i386.h (CCGC, CCGCO): New modes.
503         (SELECT_CC_MODE): Move offline to ....
504         * i386.c (ix86_cc_mode): .... here; use new modes.
505         (ix86_comparison_operator): New.
506         (fcmov_comparison_operator): Ensure proper mode.
507         (put_condition_mode): More sanity checking.
508         (ix86_match_ccmode): Handle new modes.
509         (ix86_expand_fp_compare): GEU requires CCmode.
510         (ix86_expand_strlensi_unroll_1): Use emit_cmp_and_jump_insn instead of
511         doing it by hand.
512         * i386.md (cmp?i_ccz_1): Remove
513         (cmp?i_ccno_1): Use ix86_match_ccmode.
514         (cmp?i_minus_1): New.
515         (cmpsi_1): New expander.
516         (cmpqi_ext_1): Use match_ccmode
517         (cmpqi_ext_3): New expander.
518         (cmpqi_ext_3_insn): Rename from cmpqi_ext_3.
519         (cmpqi_ext_4): Use match_ccmode.
520         (add?i_?): Use match_ccmode.
521         (add?i_6): New.
522         (test?i_ccz_1): Remove
523         (test?i_1): New.
524         (testsi_ccno_1, testqi_ccz_1, testqi_ext_ccno_0): New expander.
525         (testqi_ext_0): Use ix86_match_ccmode.
526         (*xorqi_cc_ext_1): Use ix86_match_ccmode.
527         (xorqi_cc_ext_1): New expander.
528         (shift patterns): Use CCGOCmode for all shifts except for sar.
529         (setcc_?, jcc_?, miv?icc_nic): Use ix86_comparison_operator.
530         (setcc_3, jcc_3, miv?icc_c): Remove.
532 2000-09-15  Will Cohen  <wcohen@redhat.com>
534         * dwarf2out.c (add_const_value_attribute): Changed array into a
535         xmalloced object, so it exists after function exit.
536         (free_AT): Added case for dw_val_class_float to free allocated
537         memory.
539 2000-09-15  Kazu Hirata  <kazu@hxi.com>
541         * config/i386/i386.md: Fix a comment typo.
542         * gcc.c: Fix formatting.
544 2000-09-15  Bernd Schmidt  <bernds@redhat.co.uk>
546         * optabs.c (emit_libcall_block): If target is a user variable,
547         copy to a temporary first.
548         * expr.c (convert_move): When generating a libcall, make a libcall
549         block.
550         * calls.c (emit_library_call_value_1): Don't create a libcall
551         sequence here; our caller will in most cases do it.
553         * sh.h (SECONDARY_INPUT_RELOAD_CLASS): Handle moving T, MACL or
554         MACH into FPUL.
555         (SECONDARY_OUTPUT_RELOAD_CLASS): Similar case.
556         * sh.md (reload_outsf): Generate recognizable patterns for
557         TARGET_SH3E.
558         (floatsisf2, floatsisf2_ie, floatsisf2_i4, fix_truncsfsi2,
559         fix_truncsfsi2_i4, fixsfsi, floatsidf2, floatsidf2_i, fix_truncdfsi2,
560         fix_truncdfsi2_i, extendsfdf2, extendsfdf2_i4, truncdfsf2,
561         truncdfsf2_i4): Change not to use explicit references to fpul.
562         (floatsisf2_ie): Remove USE of fpscr.
563         (floatsisf2): Change default expansion to match this.
564         (fix_truncsfsi2_i4_2, fix_truncdfsi2_i4 & splitters): Comment out
565         unused patterns.
567 2000-09-15  Richard Henderson  <rth@cygnus.com>
569         * expmed.c (store_bit_field): Consider naturally aligned
570         memory for direct reference.
572 2000-09-15  Richard Henderson  <rth@cygnus.com>
574         * config/alpha/alpha.c (alpha_expand_unaligned_load): Force all
575         AND addresses into alias set 0.
576         (alpha_expand_unaligned_store): Likewise.
577         (alpha_expand_unaligned_load_words): Likewise.
578         (alpha_expand_unaligned_store_words): Likewise.
580 2000-09-15  Bernd Schmidt  <bernds@redhat.co.uk>
582         * config/sh/sh.h (CPP_SPEC): For -m4-nofpu, define __SH4_NOFPU__.
583         * config/sh/lib1funcs.asm (movstr_i4): Also compile if __SH4_NOFPU__
584         is defined.
585         * config/mips/mips.c (mips_va_arg): Args passed by reference have a
586         rsize of UNITS_PER_WORD.
588 Fri 15-Sep-2000 06:49:07 BST  Neil Booth  <NeilB@earthling.net>
590         * cpplex.c (ON_REST_ARG): Correct the test.
591         (maybe_paste_with_next): Duplicate a token that fail pasting,
592         and clear its PASTE_LEFT flag, so that nested pasting attempts
593         do not occur.
595 2000-09-14  Richard Henderson  <rth@cygnus.com>
597         * calls.c (precompute_register_parameters): Use COSTS_N_INSNS, not 2.
598         * cse.c (rtx_cost): Likewise.
599         * optabls.c (expand_binop): Likewise.
600         (expand_twoval_binop, prepare_cmp_insn): Likewise.
601         * regclass.c (copy_cost): Likewise.
602         * reload1.c (reload_cse_move2add): Likewise.
604 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
606         * c-parse.in (reswords): Add _Complex.
608 2000-09-14  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
610         * gcc.1: Delete documentation for -undef preprocessor option.
612 2000-09-14  Alexandre Oliva  <aoliva@redhat.com>
614         * config/sh/sh.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
615         STARTFILE_SPEC, ENDFILE_SPEC): Remove define.
616         * config/sh/elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP):
617         Remove undefine before config/elfos.h.
618         * config/sh/t-sh (EXTRA_MULTILIB_PARTS): Comment out.
620 2000-09-14  Kazu Hirata  <kazu@hxi.com>
622         * invoke.texi (H8/300 Options): Add -ms2600.
623         * config/h8300.c (h8300_init_once): Output an error when -ms2600
624         is used without -ms.
625         * config/h8300.h (TARGET_MAC): New.
626         (TARGET_SWITCHES): Add -ms2600 and -mno-s2600.
627         (CONDITIONA_REGISTER_USAGE): Disable the mac register on any
628         machine other than H8/S2600.
629         * config/h8300.md: Accept mac instructions on the H8/S2600 instead
630         of the H8/S2000.
632 2000-09-14  Alexandre Oliva  <aoliva@redhat.com>, Bernd Schmidt  <bernds@redhat.co.uk>
634         * reload.c (find_reloads_address_1): Generate reloads for auto_inc
635         pseudos that refer to the original pseudos, not only to their
636         equivalent memory locations.
638 Thu Sep 14 12:10:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
640         * expr.c (expand_expr, case COMPONENT_EXPR): Copy memory attributes
641         when making new MEM.
643         * Makefile.in (LN): Remove duplicate definition.
645 2000-09-12  Bernd Schmidt  <bernds@redhat.co.uk>
647         From Joern Rennecke:
648         * local-alloc.c (update_equiv_regs): If there is no REG_EQUAL note
649         on an insn and function_invariant_p returns nonzero for the source,
650         add a REG_EQUAL note.
652 Thu Sep 14 00:51:57 EDT 2000  John Wehle  (john@feith.com)
654         * alias.c (memrefs_conflict_p): An ADDRESSOF doesn't
655         conflict with frame_pointer_rtx.
657 2000-09-13  Kazu Hirata  <kazu@hxi.com>
659         * loop.c: Fix formatting.
660         * loop.h: Likewise.
662 2000-09-13  Richard Henderson  <rth@cygnus.com>
664         * config/ia64/ia64.md (divsf3): New.
665         (divsf3_internal_lat, divsf3_internal_thr): New.
666         (divdf3, divdf3_internal_lat, divdf3_internal_thr): New.
667         (divtf3, divtf3_internal_lat, divtf3_internal_thr): New.
668         (adddf3_trunc, subdf3_trunc, muldf3_trunc): New.
669         (madddf4_trunc, msubdf4_trunc, nmuldf3_trunc): New.
670         (nmadddf4_alts, nmadddf4_trunc): New.
671         (addtf3_truncsf, addtf3_truncdf, subtf3_truncsf): New.
672         (subtf3_truncdf, multf3_truncsf, multf3_truncdf): New.
673         (multf3_truncsf_alts, multf3_truncdf_alts): New.
674         (maddtf4_truncsf, maddtf4_truncdf, maddtf4_alts_truncdf): New.
675         (msubtf4_truncsf, msubtf4_truncdf, nmultf3_truncsf): New.
676         (nmultf3_truncdf, nmaddtf4_truncsf, nmaddtf4_truncdf): New.
677         (nmaddtf4_truncdf_alts): New.
678         (recip_approx): Don't predicate.
680 2000-09-13  Richard Henderson  <rth@cygnus.com>
682         * config/ia64/lib1funcs.asm (__divsf3): Protect fnorm.s with p6.
684 2000-09-13  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
686         * flags.h (flag_dump_rtl_in_asm): Declare.
687         * toplev.c (flag_dump_rtl_in_asm): Define.
688         (decode_d_option): Set flag_dump_rtl_in_asm and flag_print_asm_name
689         if -dP is specified.
690         * rtl.h (print_rtx_head): Declare.
691         * print-rtl.c (print_rtx_head): Define.
692         (print_rtx): Print the string pointed to by print_rtx_head
693         at beginning of each dump line.
694         (print_rtl): Likewise.
695         (print_rtl_single): Likewise.
696         * final.c (final_scan_insn): Dump the insn in the assembly
697         file for debugging.
698         * gcc.1: Document -dP option.
699         * invoke.texi (Debugging Options): Likewise.
701 2000-09-13  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
703         * md.texi (Machine Constraints): Document the 68HC11 constraints.
704         * install.texi (Configurations): Document the 68HC11&68HC12 port.
705         * invoke.texi (Option Summary, M68hc1x Options): Document the options.
707 Tue Sep 12 13:51:13 2000  Denis Chertykov  <denisc@overta.ru>
709         * config/avr/avr.h (ASSEMBLER_DIALECT): New macro declared.
710         * config/avr/avr.md (*movstrqi_insn): Cleanup output template.
711         (*clrstrqi): Likewise.
712         (xorhi3,xorsi3,absqi2): Likewise.
713         (one_cmplhi2,one_cmplsi2): Likewise.
714         (addsi3): Two stupid constraint alternatives removed.
715         (extendhisi2): Use `movw' for enhanced avr cores.
716         (zero_extendhisi2): Likewise.
718 Wed Sep 13 02:31:23 EDT 2000  John Wehle  (john@feith.com)
720         * alias.c (find_base_term): Use frame_pointer_rtx
721         when handling an ADDRESSOF.
723         * cse.c (canon_hash): Handle USE of BLKmode memory.
724         (cse_insn): Outgoing arguments for a libcall don't
725         affect any recorded expressions.
727 2000-09-12  Tom Tromey  <tromey@cygnus.com>
729         * configure, config.in: Rebuilt.
730         * configure.in: Check for iconv, nl_langinfo, langinfo.h.
732 2000-09-12  Jakub Jelinek  <jakub@redhat.com>
734         * c-lex.c (lex_string): Use charwidth to compute bytemask.
735         * expr.c (expand_expr): Don't optimize constant array references
736         initialized with wide string constants.
738 2000-09-13  Michael Hayes  <mhayes@cygnus.com>
740         * loop.c (note_set_pseudo_multiple_uses): Correct.
742 2000-09-12  Jim Wilson  <wilson@cygnus.com>
744         * ifcvt.c (noce_process_if_block): If A and B are the same, and no
745         else block, and X has side-effects, then fail.
747 2000-09-12  Greg McGary  <greg@mcgary.org>
749         * config/mips/mips-protos.h
750         (trap_cmp_op, mips_gen_conditional_trap): New func decls.
751         * config/mips/mips.h (ISA_HAS_COND_TRAP): New macro.
752         (PREDICATE_CODES): Add "trap_cmp_op".
753         * config/mips/mips.c
754         (trap_cmp_op, mips_gen_conditional_trap): New functions.
755         * config/mips/mips.md (trap, conditional_trap): New patterns.
757 2000-09-12  Bernd Schmidt  <bernds@redhat.co.uk>
759         * flow.c (try_pre_increment_1): Don't do anything to sets of the stack
760         pointer.
762 2000-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
764         * builtins.c (built_in_decls): New array.
765         (expand_builtin_fputs): New function.
766         (expand_builtin): Handle BUILT_IN_FPUTC and BUILT_IN_FPUTS.
768         * builtins.def (BUILT_IN_FPUTC, BUILT_IN_FPUTS): New members.
770         * c-common.c (c_common_nodes_and_builtins): Handle fputc/fputs.
772         * tree.h (built_in_decls): New array.
774 Tue Sep 12 08:53:57 2000  Jeffrey A Law  (law@cygnus.com)
776         * convex.md: Use "+" instead of "=" for outputs wrapped in a
777         STRICT_LOW_PART.
778         * i370.md, i386.md, ns32k.md, sh.md, vax.md: Likewise.
780 2000-09-12  Kazu Hirata  <kazu@hxi.com>
782         * haifa-sched.c: Fix formatting.
784         * genattrtab.c: Fix formatting.
786         * unroll.c: Fix formatting.
788 2000-09-12  Bruce Korb  <bkorb@gnu.org>
790         * fixinc/fixfixes.c: make a type for the fix procedure & use it,
791         remove obsolete code
792         * fixinc/fixincl.c: Use PARAMS, not _P_.  Add no-op default to switch.
793         * fixinc/fixincl.tpl: make non-exported arrays static scope
794         * fixinc/fixincl.x: regenerate
795         * fixinc/fixlib.h: Use PARAMS, not _P_
796         * fixinc/fixtests.c: make a type for the test proc & use it
797         * fixinc/server.h: Use PARAMS, not _P_
799 2000-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
801         * c-typeck.c (process_init_element): Avoid union init warnings on
802         floating point zero.  Don't crash on unions containing structs.
804 2000-09-12  Alexandre Oliva  <aoliva@redhat.com>
806         * config/sh/sh.h (PREDICATE_CODES): Add CONST_DOUBLE to
807         general_movsrc_operand, and remove CONST_INT from
808         general_movdst_operand.
810 2000-09-12  Bernd Schmidt  <bernds@redhat.co.uk>
812         * cse.c (approx_reg_cost): If SMALL_REGISTER_CLASSES, return INT_MAX
813         if a reference to non-fixed hardreg is seen.  Otherwise, count hard
814         regs with a higher cost.
815         (preferrable): Deal with cases where either cost or regcost is
816         MAX_COST.
817         (cse_insn): Use MAX_COST rather than 10000.  Always initialize
818         regcost values.
819         (COSTS_N_INSNS): Move definition...
820         * rtl.h: ...here.
821         (MAX_COST): New macro.
822         * loop.c (init_loop): Use COSTS_N_INSNS macro instead of hardcoded
823         constant.
825 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
827         * c-common.h (genrtl_clear_out_block): Remove.
828         * c-semantics.c (genrtl_clear_out_block): Remove.
829         (genrtl_while_stmt): Don't call it.
830         (genrtl_for_stmt): Likewise.
832 2000-09-11  Zack Weinberg  <zack@wolery.cumb.org>
834         * cppfiles.c: Move all default-#defines to top of file.
835         (open_include_file): Replace by lookup_include_file.
836         (read_with_read, read_file): Merged into read_include_file.
837         (stack_include_file, purge_cache): New functions.
838         (close_cached_fd): Delete.
839         (lookup_include_file, read_include_file, _cpp_pop_file_buffer):
840         Cache the in-memory buffer, not the file descriptor.
842         * cpphash.h (struct include_file): Add buffer, st, refcnt,
843         mapped fields.
844         (xcnew): New utility macro.
845         (DO_NOT_REREAD, NEVER_REREAD): Move up by struct include_file.
846         * cpplib.h (struct cpp_buffer): Remove mapped field.
848 2000-09-11  Zack Weinberg  <zack@wolery.cumb.org>
850         * cpplex.c (parse_string): Accept backslash space newline as a
851         line continuation.
852         (lex_line): Likewise.
853         (_cpp_get_token): Remove hard limit on macro nesting.
855 2000-09-12  Philipp Thomas  <pthomas@suse.de>
857         * aclocal.m4 (AM_WITH_NLS): Don't force use of included gettext.
858         * configure: Rebuilt.
860 2000-09-13  Michael Hayes  <mhayes@cygnus.com>
862         * flow.c (split_block): Fix update of registers live at
863         end of split block.
865 Tue Sep 12 01:51:38 MET DST 2000  Jan Hubicka  <jh@suse.cz>
867         * i386.md (add?i_3, add?i_5): New.
868         (add?i_4): Rename from add?i_3;  Fix compare pattern.
869         (sub?i_3, xor?i_3, ior?i_3): New.
871         * genrecog.c (write_tree): Output code to clear insn_extract cache.
872         * genattrtab.c (write_attr_case): Gen call to extract_insn_cache
873         instead of extract_insn and extract_constrain_insn_cache instead of
874         extract_insn and constrain_operands.
875         * recog.c (extract_insn_cached, extract_constrain_insn_cached):
876         New functions.
877         (extract_insn): Clear which_alternative.
878         (constrain_operands): Set which_alternative to -1 when failed.
879         * recog.h (extract_constrain_insn_cached, extract_insn_cached):
880         Declare.
882 2000-09-11  Matthew Hiller  <hiller@redhat.com>
884         * config/h8300/h8300.md (movstrictqi): Changed constraint modifier
885         on operand 0 to '+'.
886         (movstricthi): Likewise.
888 2000-09-12  Michael Hayes  <mhayes@cygnus.com>
890         * loop.h (LOOP_IVS): New macro.
891         (REG_IV_TYPE, REG_IV_INFO): Add ivs argument.
892         (struct loop_ivs): New.
893         (struct loop_info): Add ivs field.
894         (reg_iv_type, reg_iv_info): Delete prototype.
895         (reg_biv_class, loop_iv_list): Likewise.
896         * loop.c (record_biv, find_life_end): Pass loop argument.
897         (reg_iv_type): Remove global array and use
898         field in loop_regs structure within loop_ivs structure.
899         (reg_iv_info, reg_biv_class, loop_iv_list): Likewise.
900         (first_increment_giv, last_increment_giv): Use entry in
901         loop_ivs structure.
902         (record_initial): Pass ivs pointer.
903         * unroll.c (copy_loop_body, remap_split_bivs): Add loop argument.
905 2000-09-12  Michael Hayes  <mhayes@cygnus.com>
907         * loop.h (LOOP_REGS): New macro.
908         (struct loop_regs): New.
909         (struct loop_info): Add regs field.
910         * loop.c (set_in_loop): Remove global array and store
911         in loop_regs structure as part of loop_info structure.
912         (n_times_set, may_not_optimize): Likewise.
913         (reg_single_usage, moved_once): Likewise.
914         (count_one_set): Add regs argument.
915         (combine_movables, rtx_equal_for_loop_p, combine_givs): Likewise.
916         (set_pseudo_multiple_uses): Pass regs pointer.
918 2000-09-12  Michael Hayes  <mhayes@cygnus.com>
920         * unroll.c (iteration_info): Subsume into loop_iterations.
921         * loop.h (loop_info): New field iv.
923 2000-09-12  Michael Hayes  <mhayes@cygnus.com>
925         * basic-block.h (LOOP_TREE, LOOP_PRE_HEADER, LOOP_EDGES): New.
926         (LOOP_EXITS_DOMS, LOOP_ALL): Likewise.
927         (flow_loops_update): New prototype.
928         (flow_loops_find): Add flags to prototype.
929         (struct loop): Add `pre_header_root' and `pre_header_trace' fields.
930         * flow.c (flow_loop_pre_header_scan): New.
931         (flow_loop_dump): Dump pre-header root and trace and exit dominators.
932         (flow_loop_free): Free pre-header root and trace and exit dominators.
933         (flow_loops_find): New argument flags.
934         (flow_loops_update): New function.
935         * toplev.c (rest_of_compilation): Add flag argument to flow_loops_find.
937 2000-09-12  Michael Hayes  <mhayes@cygnus.com>
939         * basic-block.h (split_block, update_bb_for_insn): New prototypes.
940         * flow.c (split_block, update_bb_for_insn): New functions.
942 2000-09-11  Richard Henderson  <rth@cygnus.com>
944         * cse.c (fold_rtx): Honor NO_FUNCTION_CSE.
946 2000-09-11  Richard Henderson  <rth@cygnus.com>
948         * config/ia64/ia64-protos.h (fr_nonimmediate_operand): Declare.
949         * config/ia64/ia64.c (fr_nonimmediate_operand): New.
950         (ia64_override_options): Prevent optimizing division for both
951         latency and throughput.
952         (rtx_needs_barrier): Handle frcpa.
953         * config/ia64/ia64.h (MASK_INLINE_DIV_LAT): New.
954         (MASK_INLINE_DIV_THR, TARGET_INLINE_DIV_LAT): New.
955         (TARGET_INLINE_DIV_THR, TARGET_INLINE_DIV): New.
956         (TARGET_SWITCHES): Add -minline-divide-min-latency and
957         -minline-divide-max-throughput.
958         (PREDICATE_CODES): Update.
959         * config/ia64/ia64.md (extendsidi2): Remove * from f case.
960         (zero_extendsidi2): Likewise.  Fix typo in f case insn.
961         (extendsfdf2): Add cases for gr<->fr and fr<->mem.
962         (extendsftf2): Likewise.
963         (extenddftf2): Likewise.
964         (fix_trunctfdi2_alts): New.
965         (fixuns_trunctfdi2_alts): New.
966         (madd*4): Rename from madd*3.
967         (divsi3, modsi3, udivsi3, umodsi3): New.
968         (divsi3_internal): New.
969         (divdi3, moddi3, udivdi3, umoddi3): New.
970         (divdi3_internal_lat, divdi3_internal_thr): New.
971         (multf3_alts, maddtf4_alts, nmaddtf4_alts): New.
972         (recip_approx): New.
974 2000-09-11  Alexandre Oliva  <aoliva@redhat.com>
976         * print-rtl.c (debug_call_placeholder_verbose): New variable.
977         (print_rtx) [CALL_PLACEHOLDER]: Dump all call sequences if it is
978         set.
979         * integrate.c (copy_rtx_and_substitute): Don't share
980         LEAF_REG_REMAPpable registers with the inlined function.  Don't
981         share the function value with calling sequences.
983 2000-09-11  Jakub Jelinek  <jakub@redhat.com>
985         * c-decl.c (do_case): Fix a typo.
987         * combine.c (simplify_if_then_else): Don't convert a == b ? b : a
988         to a if the comparison is floating mode and not -ffast-math.
989         * simplify-rtx.c (simplify_ternary_operation): Likewise.
991 Mon Sep 11 20:07:48 2000  J"orn Rennecke <amylaar@redhat.co.uk>
993         * sh.h (INITIALIZE_TRAMPOLINE): Remove stray call to
994         gen_ic_invalidate_line.
996 2000-09-11  Philip Blundell  <pb@futuretv.com>
998         * config/arm/elf.h (SUBTARGET_CPP_SPEC): Don't define `arm_elf'.
1000 Mon Sep 11 10:48:41 2000  Ulrich Drepper <drepper@redhat.com>
1002         * install.texi (LANGUAGES): Update to include new languages.
1003         * INSTALL: Rebuilt.
1005 2000-09-11  DJ Delorie  <dj@redhat.com>
1007         * gcc.c (main): Don't warn about unused -B prefixes
1008         (unused_prefix_warnings): remove
1010 2000-09-11  Kazu Hirata  <kazu@hxi.com>
1012         * final.c: Fix formatting.
1014         * integrate.c: Fix formatting.
1016 2000-09-11  Geoff Keating  <geoffk@cygnus.com>
1018         * alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
1020 2000-09-11  Bernd Schmidt  <bernds@redhat.co.uk>
1022         * reload.c (regno_clobbered_p): Fix thinko in previous change.
1024 2000-09-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1026         * gcc.1: Document 68hc11 specific options.
1028 2000-09-10  Geoff Keating  <geoffk@cygnus.com>
1030         * config/rs6000/sysv4.h (MASK_LONG_DOUBLE_128): Define.
1031         (TARGET_LONG_DOUBLE_128): Define.
1032         (SUBTARGET_SWITCHES): Add -mlong-double-64 and -mlong-double-128.
1033         (LONG_DOUBLE_TYPE_SIZE): Redefine.
1034         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
1035         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on definition
1036         of __LONG_DOUBLE_128__.
1037         (CPP_SYSV_SPEC): Define __LONG_DOUBLE_128__ if -mlong-double-128
1038         passed.
1039         (CPP_LONGDOUBLE_DEFAULT_SPEC): Define.
1040         (CPP_SYSV_DEFAULT_SPEC): Define.
1041         (SUBTARGET_EXTRA_SPECS): Add cpp_longdouble_default.
1042         (INIT_TARGET_OPTABS): Define.
1044         * config/rs6000/aix.h (RS6000_ITRUNC): Moved from rs6000.h.
1045         (RS6000_UITRUNC): Likewise.
1046         (INIT_TARGET_OPTABS): New macro.
1047         * config/rs6000/rs6000.c (rs6000_trunc_used): Delete.
1048         (trunc_defined): Delete.
1049         (output_prolog): Don't output .extern definitions for fp->int
1050         conversion routines, ASM_OUTPUT_EXTERNAL_LIBCALL will do it.
1051         * config/rs6000/rs6000.h (rs6000_trunc_used): Delete.
1052         (trunc_defined): Delete.
1053         (RS6000_ITRUNC): Moved to aix.h.
1054         (RS6000_UITRUNC): Likewise.
1055         * config/rs6000/rs6000.md (fix_truncdfsi2): Fail if it would
1056         only emit a libcall.
1057         (fixuns_truncdfsi2): Delete.
1058         (trunc_call): Delete.
1059         (trunc_call_rtl): Delete.
1061 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
1063         * varasm.c (make_decl_rtl): Restore leading star on
1064         DECL_ASSEMBLER_NAME set for decls with an asmspec.
1066 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
1068         * c-pragma.c (handle_pragma_pack): Correct parsing logic so it
1069         won't give a spurious error for '#pragma pack()'.  Simplify
1070         control flow for readability.  'reset' action is not necessary.
1072 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
1074         * defaults.h: Provide default definitions for: CHAR_TYPE_SIZE,
1075         SHORT_TYPE_SIZE, INT_TYPE_SIZE, LONG_TYPE_SIZE,
1076         LONG_LONG_TYPE_SIZE, WCHAR_TYPE_SIZE, FLOAT_TYPE_SIZE,
1077         DOUBLE_TYPE_SIZE, LONG_DOUBLE_TYPE_SIZE, and WCHAR_UNSIGNED.
1079         * cppexp.c, dwarfout.c, dwarf2out.c, emit-rtl.c, final.c, optabs.c,
1080         profile.c, sdbout.c, tradcif.y, tree.c:
1081         Include defaults.h if not already included.
1082         Don't define the above macros.
1084         * Makefile.in: Update dependencies.
1086 2000-09-10  Mark Mitchell  <mark@codesourcery.com>
1088         * c-common.h (add_stmt): Change prototype.
1089         (RECHAIN_STMTS): New macro.
1090         (CASE_LABEL_DECL): Likewise.
1091         (genrtl_case_label): Change prototype.
1092         (c_expand_start_case): Remove prototype.
1093         (build_case_label): Change prototype.
1094         (decl_constant_value): Declare.
1095         * c-common.c (check_case_value): Handle C++'s extensions to C
1096         semantics.
1097         * c-commnon.def (CASE_LABEL): Add room for the CASE_LABEL_DECL
1098         field.
1099         * c-parse.in (stmt): Adjust handling of return statements and case
1100         laels.
1101         * c-semantics.c (add_stmt): Return the new statement.
1102         (genrtl_return_stmt): Take the RETURN_STMT as input, not the
1103         returned expression.  Directly generate RTL, rather than calling
1104         c_expand_return.
1105         (genrtl_switch_stmt): Don't call c_expand_start_case.
1106         (build_case_label): Take the LABEL_DECL as input, too.
1107         (genrtl_case_label): Just call add_case_node.
1108         (expand_stmt): Adjust calls to genrtl_return_stmt and
1109         genrtl_case_label.
1110         * c-tree.h (c_expand_start_case): Declare.
1111         * c-typeck.c (decl_constant_value): Give it external linkage.
1112         (c_expand_return): Don't call expand_return or expand_null_return;
1113         use genrtl_return_stmt instead.
1114         * stmt.c (struct nesting): Remove num_ranges field.
1115         (add_case_node): Give it external linkage.
1116         (expand_start_case): Don't set num_ranges.
1117         (expand_start_case_dummy): Don't clear it.
1118         (pushcase): Rely on add_case_node to handle `default' labels.
1119         (add_case_node): Handle `default' labels.
1120         * tree.c (tree_int_cst_compare): New function.
1121         * tree.h (tree_int_cst_compare): Declare.
1122         (add_case_node): Likewise.
1124 2000-09-10  Richard Henderson  <rth@cygnus.com>
1126         * c-parse.in: Revert last change.
1127         (init_reswords): Do not enter disabled keywords into the ridpointers
1128         table, modulo objc weirdness.
1129         (_yylex): Return the canonical spelling for a keyword.
1131 2000-09-10  Philip Blundell  <philb@gnu.org>
1133         * config/arm/arm.h (CPP_ISA_SPEC): Don't define `arm' or `thumb'.
1134         * config/arm/linux-elf.h (CPP_PREDEFINES): Don't define `__arm__'.
1136 Sun Sep 10 14:30:28 EDT 2000  John Wehle  (john@feith.com)
1138         * alias.c (find_base_term): Handle ADDRESSOF.
1139         (memrefs_conflict_p): An ADDRESSOF doesn't conflict.
1141 2000-09-10  Denis Chertykov  <denisc@overta.ru>
1143         * genoutput.c (output_insn_data): Translate <NEWLINE> to \n\ while
1144         outputting templates with many lines.
1146 2000-09-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1148         * libgcc2.h: Use LONG_LONG_TYPE_SIZE instead of MIN_UNITS_PER_WORD
1149         to decide whether 64-bit support must be generated.
1151 2000-09-10  Richard Henderson  <rth@cygnus.com>
1153         * c-parse.in (asm patterns): Fix volatile check.
1155 2000-09-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1157         * cppmacro.c (check_trad_stringification): New function.
1158         (save_expansion): If -Wtraditional, warn about stringification of
1159         macro arguments.
1161 2000-09-11  Michael Hayes  <mhayes@cygnus.com>
1163         * loop.h (struct loop_mem_info): Move from loop.c
1164         (struct loop_info): Add fields store_mems, mems, mems_idx,
1165         mems_allocated, unknown_address_altered,
1166         unknown_constant_address_altered, num_mem_sets, and
1167         first_loop_store_insn.
1169         * loop.c (loop_store_mems): Replace with field in loop_info struct.
1170         (loop_mems, loop_mems_idx, loop_mems_allocated): Likewise.
1171         (unknown_address_altered, unknown_constant_address_altered): Likewise.
1172         (num_mem_sets): Likewise.
1173         (replace_loop_mems, replace_loop_regs): New.
1174         (struct loop_replace_args): New.
1175         (load_mems): Use replace_loop_mems.
1176         (try_copy_prop): Use replace_loop_regs.
1177         (replace_loop_reg, replace_loop_mem): Use loop_replace_args structure.
1179 2000-09-09  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1181         * configure.in: Recognize m6811-elf and m6812-elf.
1182         * configure: Regenerate.
1184 2000-09-09  Geoff Keating  <geoffk@cygnus.com>
1186         * recog.c (validate_replace_rtx_1): Correct MODE parameter in call
1187         to operand_subword.
1189 2000-09-10  Michael Hayes  <mhayes@cygnus.com>
1191         * loop.c (struct movables): New.
1192         (num_movables): Move into struct movables.
1193         (the_movables): Change type to struct movables.
1194         (ignore_some_movables): Change struct movable arg to struct movables.
1195         (force_movables, combine_movables, regs_match_p): Likewise.
1196         (rtx_equal_for_loop_p, move_movables): Likewise.
1197         (scan_loop): Change movables to be of type struct movables.
1198         Replace last_movable with field in movables structure.
1200 2000-09-08  Zack Weinberg  <zack@wolery.cumb.org>
1202         * c-pragma.c: Don't elide entire file if !HANDLE_GENERIC_PRAGMAS.
1203         (init_pragma): Avoid warning if pfile happens to be unused.
1204         * c-pragma.h: Never define HANDLE_GENERIC_PRAGMAS.  Never
1205         define init_pragma to nothing.  Always prototype
1206         init_pragma.  Prototype dispatch_pragma if !USE_CPPLIB.
1208         * c-lex.c (process_directive): Always call dispatch_pragma.
1209         Initialize entering_c_header to 0.
1211 2000-09-08  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1213         * config/m68hc11/m68hc11.md: New file, machine description for
1214         68HC11 & 68HC12.
1215         * config/m68hc11/m68hc11.h: New file, definitions for 68HC11 & 68HC12.
1216         * config/m68hc11/m68hc11.c: New file, functions for 68HC11 & 68HC12.
1217         * config/m68hc11/m68hc12.h: New file, definitions for 68HC12.
1218         * config/m68hc11/m68hc11-protos.h: New file.
1219         * config/m68hc11/m68hc11-crt0.S: New file, startup code.
1220         * config/m68hc11/t-m68hc11-gas: New file, makefile fragment.
1221         * config/m68hc11/xm-m68hc11.h: New file, target defs.
1222         * config/m68hc11/larith.asm: New file, libgcc routines.
1224 2000-09-08  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
1226         * Makefile.in (DPBIT_FUNCS): Add _usi_to_df.
1227         (FPBIT_FUNCS): Add _usi_to_sf.
1228         * config/fp-bit.c (usi_to_float): New function.
1229         * config/fp-bit.h (L_usi_to_sf, L_usi_to_df): Define.
1230         (usi_to_float): Add appropriate #define.
1232 2000-09-08  Bernd Schmidt  <bernds@redhat.co.uk>
1234         * i386-protos.h (sse_comparison_operator, mmx_reg_operand): Declare
1235         new functions.
1236         * i386.c (sse_comparison_operator, mmx_reg_operand): New functions.
1237         * i386.md (attr "type"): Add sse and mmx types.
1238         (attr "memory"): Handle them without a crash.
1239         (movsi_1, movdi_2): Allow MMX regs.
1240         (movdi splits): Don't split moves involving MMX regs.
1241         (setcc_4): Remove '*' from pattern name so we get a gen_setcc4.
1242         (movv4sf_internal, movv4si_internal, movv8qi_internal,
1243         movv4hi_internal, movv2si_internal, movv8qi, movv4hi, movv2si,
1244         movv4sf, movv4si, pushv4sf, pushv4si, pushv8qi, pushv4hi, pushv2si,
1245         sse_movaps, sse_movups, sse_movmskps, mmx_pmovmskb, mmx_maskmovq,
1246         sse_movntv4sf, sse_movntdi, sse_movhlps, sse_movlhps, sse_movhps,
1247         sse_movlps, sse_loadss, sse_movss, sse_storess, sse_shufps,
1248         addv4sf3, vmaddv4sf3, subv4sf3, vmsubv4sf3, mulv4sf3, vmmulv4sf3,
1249         divv4sf3, vmdivv4sf3, rcpv4sf2, vmrcpv4sf2, rsqrtv4sf2, vmrsqrtv4sf2,
1250         sqrtv4sf2, vmsqrtv4sf2, sse_andti3, sse_nandti3, sse_iorti3,
1251         sse_xorti3, maskcmpv4sf3, maskncmpv4sf3, vmmaskcmpv4sf3,
1252         vmmaskncmpv4sf3, sse_comi, sse_ucomi, sse_unpckhps, sse_unpcklps,
1253         smaxv4sf3, vmsmaxv4sf3, sminv4sf3, vmsminv4sf3, cvtpi2ps, cvtps2pi,
1254         cvttps2pi, cvtsi2ss, cvtss2si, cvttss2si, addv8qi3, addv4hi3,
1255         addv2si3, ssaddv8qi3, ssaddv4hi3, usaddv8qi3, usaddv4hi3, subv8qi3,
1256         subv4hi3, subv2si3, sssubv8qi3, sssubv4hi3, ussubv8qi3, ussubv4hi3,
1257         mulv4hi3, smulv4hi3_highpart, umulv4hi3_highpart, mmx_pmaddwd,
1258         mmx_iordi3, mmx_xordi3, mmx_anddi3, mmx_nanddi3, mmx_uavgv8qi3,
1259         mmx_uavgv4hi3, mmx_psadbw, mmx_pinsrw, mmx_pextrw, mmx_pshufw,
1260         eqv8qi3, eqv4hi3, eqv2si3, gtv8qi3, gtv4hi3, gtv2si3, umaxv8qi3,
1261         smaxv4hi3, uminv8qi3, sminv4hi3, ashrv4hi3, ashrv2si3, lshrv4hi3,
1262         lshrv2si3, mmx_lshrdi3, ashlv4hi3, ashlv2si3, mmx_ashldi3,
1263         mmx_packsswb, mmx_packssdw, mmx_packuswb, mmx_punpckhbw,
1264         mmx_punpckhwd, mmx_punpckhdq, mmx_punpcklbw, mmx_punpcklwd,
1265         mmx_punpckldq, emms, sfence, ldmxcsr, prefetch, stmxcsr, sse_clrti,
1266         mmx_clrdi): New patterns.
1268 2000-09-08  Richard Earnshaw  <rearnsha@arm.com>
1270         * arm.c: Don't include tm.h directly.
1272 Fri Sep  8 14:34:56 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1274         * recog.c (validate_replace_rtx_1): Fix confusion about equality
1275         testing; simplify subregs of constants and nested subregs.
1277 2000-09-08  Alexandre Oliva  <aoliva@redhat.com>
1279         * config/sh/sh.md (symPLT_label2reg): Use operand3 for PIC reg.
1281 2000-09-08  Bernd Schmidt  <bernds@redhat.co.uk>
1283         * combine.c (combine_simplify_rtx): Try to simplify VEC_SELECT of a
1284         VEC_CONCAT.
1285         * rtl.texi (description of USE): Add note about possible pitfalls
1286         with this rtx.
1287         From Richard Henderson:
1288         * reload1.c (choose_reload_regs): Compute need_mode properly.
1290 2000-09-07  Richard Henderson  <rth@cygnus.com>
1292         * config/ia64/lib1funcs.asm (__divsi3): Use .s1 for frcpa.
1293         (__modsi3, __umodsi3): Likewise.
1294         (__udivsi3): Likewise.  Normalize the TFmode values.
1296 2000-09-07  Geoff Keating  <geoffk@cygnus.com>
1298         * config/rs6000/sol-c0.c (_start): Declare `termfunc' parameter
1299         with a prototype.
1300         * config/rs6000/rs6000.h (RS6000_ARG_SIZE): Use cast to suppress
1301         warning.
1303 Fri Sep  8 03:26:38 2000  J"orn Rennecke <amylaar@redhat.co.uk>
1305         * sh.md (cmpeqsi_ior_t, cmpeqsi_and_t): Remove.
1306         (cmpeqdi_t): Add output pattern.
1307         (cmpeqdi_t+1): Don't split when not optimizing.
1308         Restore proper splitting operation.
1310 2000-09-07  Richard Henderson  <rth@cygnus.com>
1312         * c-lex.c (process_directive): If not HANDLE_GENERIC_PRAGMAS,
1313         do not call dispatch_pragma.
1315 2000-09-07  Jim Wilson  <wilson@cygnus.com>
1317         * reload.c (push_reload): Use CLASS_CANNOT_CHANGE_MODE_P in addition
1318         to CLASS_CANNOT_CHANGE_MODE.
1319         * config/ia64/ia64.h (CLASS_CANNOT_CHANGE_MODE_P): True only if the
1320         mode classes are different.
1322 2000-09-07  Zack Weinberg  <zack@wolery.cumb.org>
1324         * cpplib.h (struct cpp_options): Add user_label_prefix member,
1325         left out of commit which removed cppulp.c.
1327 2000-09-07  Richard Henderson  <rth@cygnus.com>
1329         * bb-reorder.c (fixup_reorder_chain): Add jump in new block
1330         after switch for CASE_DROPS_THROUGH.
1332 2000-09-07  Richard Henderson  <rth@cygnus.com>
1334         * loop.c (strength_reduce): Call check_ext_dependant_givs.
1335         Properly extend the biv initial value for the giv.
1336         (record_biv): Zero ext_dependant.
1337         (record_giv): New argument ext_val.  Update all callers.
1338         (general_induction_var): Likewise.
1339         (consec_sets_giv): Likewise.
1340         (simplify_giv_expr): Likewise.  Fill in ext_val if we find
1341         a sign-extend, zero-extend, or truncate.
1342         (combine_givs_p): Make sure modes are compatible.
1343         (check_ext_dependant_givs): New.
1344         (extend_value_for_giv): New.
1345         * loop.h (struct induction): Add ext_dependant.
1346         * unroll.c (iteration_info): Extend the biv initial value for the giv.
1347         (find_splittable_givs): Likewise.
1348         (final_giv_value): Likewise.
1350 2000-09-07  Zack Weinberg  <zack@wolery.cumb.org>
1352         * c-pragma.h: Define HANDLE_GENERIC_PRAGMAS if
1353         REGISTER_TARGET_PRAGMAS is defined.  Duplicate some
1354         definitions from cpplib.h.
1355         * cpplib.h: Don't typedef struct cpp_reader if c-pragma.h has
1356         already done it.
1357         * tm.texi: Document HANDLE_PRAGMA as no longer supported.  Add
1358         documentation for REGISTER_TARGET_PRAGMAS.
1360         * c-lex.c: Include cpplib.h before c-pragma.h.  Define a
1361         default-pragma callback to implement -Wunknown-pragmas if
1362         USE_CPPLIB.
1363         * c-parse.in: Move all includes to top of file.
1364         * c-pragma.c: Include cpplib.h before c-pragma.h.  Include
1365         tm_p.h.
1366         (dispatch_pragma): Put the namespace in the -Wunknown-pragmas
1367         warning.
1368         (init_pragma): If REGISTER_TARGET_PRAGMAS is defined, call it.
1370         * arm.h, arm-protos.h, arm.c,
1371           c4x.h, c4x-protos.h, c4x.c,
1372           h8300.h, h8300-protos.h, h8300.c,
1373           i370.h, i370-protos.h, i370.c,
1374           i960.h, i960-protos.h, i960.c,
1375           sh.h, sh-protos.h, sh.c,
1376           v850.h, v850-protos.h, v850.c: Convert HANDLE_PRAGMA-based
1377         pragmata scheme to use REGISTER_TARGET_PRAGMAS instead.
1379         * d30v.h: Don't mention HANDLE_PRAGMA in comment.  Add
1380         multiple include guard.
1381         * i370.md (untyped_call): Use GEN_CALL.
1382         (umodsi3): Remove unused variable.
1383         * sh/elf.h: Don't undef HANDLE_SYSV_PRAGMA.
1384         * v850.c (output_move_single, output_move_double): Constify
1385         return value.
1386         (print_operand): Constify a char *.
1387         * v850.h (struct small_memory_info): Constify name member.
1389 2000-09-07  Kazu Hirata  <kazu@hxi.com>
1391         * config/h8300.h: Fix comment typos.
1392         * config/h8300/h8300.md: Likewise.
1393         * config/h8300/lib1funcs.asm: Likewise.
1395 Thu 07-Sep-2000 21:29:00 BST  Neil Booth  <NeilB@earthling.net>
1397         * Makefile.in: Remove references to cppulp.{c,o}.
1398         * cppinit.c (initialize_builtins, cpp_start_read,
1399         cpp_handle_option): Update to use cpp_options structure.
1400         * cppulp.c: Remove.
1402 2000-09-07  Joseph S. Myers  <jsm28@cam.ac.uk>
1404         * c-common.c (time_char_table): Allow %#b and %#h.
1406 2000-09-07 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
1408         * reorg.c (find_end_label): If the basic block reorder pass moves the
1409         return insn to some other place try to locate it again and put our
1410         end_of_function_label there.
1411         * reorg.c (relax_delay_slots): Check if find_end_label created a
1412         new label that invalidates the current optimazation.
1414 2000-09-07  Catherine Moore  <clm@redhat.com>
1416         * unroll.c (unroll_loop): Check for unconditional jumps
1417         to loop continuation.  Delete if n_iterations is 1.
1418         (ujump_to_loop_cont): New routine.
1420 2000-09-07  Bernd Schmidt  <bernds@redhat.co.uk>
1422         * rtl.c (class_narrowest_mode): Add entries for MODE_VECTOR_INT and
1423         MODE_VECTOR_FLOAT.
1424         * reload.c (regno_clobbered_p): Accept new arg, MODE, and use it
1425         to handle multiword modes correctly.  All callers and the declaration
1426         changed.
1428 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
1430         * c-common.h (prep_stmt): Declare.
1431         (lang_expand_stmt): Likewise.
1432         * c-decl.c (lang_expand_stmt): Remove.
1433         * c-semantics.c (lang_expand_stmt): Define.
1434         (prep_stmt): New function.
1435         (expand_stmt): Handle common statement types here.
1437 2000-09-07  Niibe Yutaka  <gniibe@m17n.org>, Kaz Kojima  <kkojima@rr.iij4u.or.jp>, Alexandre Oliva  <aoliva@redhat.com>
1439         * configure.in (sh-*-linux*): Added.
1440         * configure: Rebuilt.
1441         * config/sh/t-linux: New file.
1442         * config/sh/sh.h (USERMODE_BIT): Define.
1443         (TARGET_USERMODE): Likewise.
1444         (TARGET_SWITCHES): New switches for the bits above.
1445         (INITIALIZE_TRAMPOLINE): Call __ic_invalidate in USERMODE.
1446         * config/sh/linux.h: New file.
1447         * config/sh/lib1funcs.asm (GLOBAL): Don't prefix symbols with
1448         underscore on linux.
1449         (L_sdivsi3, L_udivsi3): Define for linux.
1450         (L_ic_invalidate): Define.
1451         * invoke.texi (SH Options): Document -musermode.
1453 2000-09-07  Alexandre Oliva  <aoliva@redhat.com>
1455         * config/sh/sh.h (OVERRIDE_OPTIONS): Don't disable function
1456         CSE unless generating PIC.
1458         * config/sh/sh.md (symPLT_label2reg): Force the initialization of
1459         the PIC register.
1461 2000-09-06  H.J. Lu  (hjl@gnu.org)
1463         * Makefile.in (clean_s1): Depend on stage_b.
1464         (clean_s2): Depend on stage_d. Don't remove $(VOL_FILES) in
1465         stage2. They are used for "make compare".
1467 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
1469         Move statement-tree facilities from C++ to C front-end.
1470         * c-common.h (c_tree_index): Add CTI_VOID_ZERO.
1471         (void_zero_node): New macro.
1472         (struct stmt_tree_s): New type.
1473         (stmt_tree): New typedef.
1474         (struct language_function): New type.
1475         (last_tree): New macro.
1476         (last_expr_type): Likewise.
1477         (walk_tree_fn): New typedef.
1478         (current_stmt_tree): New function.
1479         (begin_stmt_tree): Likewise.
1480         (add_stmt): Likewise.
1481         (finish_stmt_tree): Likewise.
1482         (statement_code_p): Likewise.
1483         (lang_statement_code_p): New variable.
1484         (walk_stmt_tree): New function.
1485         (STMT_IS_FULL_EXPR_P): New macro.
1486         * c-common.c (lang_statement_code_p): New variable.
1487         (c_common_nodes_and_builtins): Initialize void_zero_node.
1488         (statement_code_p): New function.
1489         (walk_stmt_tree): Likewise.
1490         * c-decl.c (language_function): Rename to ...
1491         (c_language_function): ... this.  Include language_function.
1492         (push_c_function_context): Adjust accordingly.
1493         (pop_c_function_context): Likewise.
1494         (mark_c_function_context): Likewise.
1495         (current_stmt_tree): Define.
1496         * c-semantics.c (begin_stmt_tree): New function.
1497         (add_stmt): Likewise.
1498         (prune_unused_decls): Likewise.
1499         (finish_stmt_tree): Likewise.
1501 2000-09-06 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
1503         * flow.c (insn_dead_p): Detect dead memory stores with auto increments.
1505 2000-09-06  Kazu Hirata  <kazu@hxi.com>
1507         * calls.c: Fix formatting.
1509 2000-09-06  Graham Stott  <grahams@cygnus.co.uk>
1511         * config/i386/i386.h (ADDRESS_COST): Fix typo.
1513 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
1515         Integrated preprocessor.
1517         * Makefile.in: Remove all references to c-parse.gperf,
1518         c-gperf.h, and c-parse.h.  Remove -d from yacc command line
1519         generating c-parse.c.  Update dependencies.
1520         * c-parse.gperf, c-gperf.h: Delete.
1522         * c-common.c: Don't define parse_options, cpp_token, yy_cur,
1523         yy_lim, or yy_get_token.  Don't define get_directive_line if
1524         USE_CPPLIB.
1525         * c-common.h: Add multiple include guard.  Define RID values
1526         for every keyword in C, C++, and Objective C.  Put all the
1527         modifiers first.
1528         (struct c_fileinfo, get_fileinfo, dump_time_statistics): New.
1529         * c-decl.c (c_decode_option): Handle -lang-objc here.
1530         (print_lang_identifier): Handle C_IS_RESERVED_WORD case.
1531         (grokdeclarator): Adjust for new RID scheme.
1532         (extract_interface_info): New stub.
1533         * c-lang.c: Don't declare yy_cur or parse_options.
1534         (lang_init_options): Call cpp_init.  Don't call
1535         cpp_options_init.
1536         (lang_init): Don't call check_newline if USE_CPPLIB.
1538         * c-lex.c: Don't include c-parse.h.  Do include timevar.h.
1539         Elide lots of unnecessary code if USE_CPPLIB.  Delete code
1540         rendered unnecessary by new architecture.  Move routines not
1541         shared with C++ to c-parse.in.  Maintain a local idea of the
1542         line number.    Handle C++ as well as C.
1543         [USE_CPPLIB]: Declare and register callbacks for #ident and
1544         for entering/leaving files.
1545         (init_c_lex, c_lex): Are now the entry points to this file.
1546         (check_newline): Break out directive handling to
1547         process_directive.
1548         (read_ucs, is_extended_char, utf8_extend_token): Moved here
1549         from C++ front end.
1550         (readescape, parse_float): Overhaul.
1551         (lex_number, lex_string, lex_charconst): Break out of c_lex
1552         (n'ee yylex).
1553         (get_fileinfo, update_header_times, dump_one_header,
1554         dump_time_statistics): New and/or moved here from C++.
1555         Support per-file data needed by C++ and per-header timing
1556         statistics (C++ only, at the moment).
1557         * c-lex.h: Update prototypes.  Add multiple include guard.
1558         * c-tree.h (struct lang_identifier): Add rid_code field.
1559         (C_IS_RESERVED_WORD, C_RID_CODE): New.
1561         * c-parse.in: Include c-pragma.h. Remove unnecesary calls to
1562         reinit_parse_for_function and/or position_after_white_space.
1563         (save_filename, save_lineno): Look ahead before saving.
1564         (label -> identifier ':'): Save file and line before shifting ':'.
1565         (reservedwords): No need to call get_identifier.
1566         (init_parse, finish_parse, yyerror, yylex, yyprint,
1567         make_pointer_declarator): Are now here for C/ObjC.
1568         (rid_to_yy): Conversion table from RID constants to Yacc codes.
1570         * c-pragma.c: Rewrite parsing logic to fit with cpplib's
1571         #pragma registry.  Provide dummy implementation of that
1572         interface if !USE_CPPLIB.
1573         * c-pragma.h: Update to match.
1575         * flags.h: Add multiple include guard.
1576         (flag_detailed_statistics): Moved here from C++.
1577         * toplev.c: Define flag_detailed_statistics.
1579         * gcc.c (C specs): Use %(trad_capable_cpp) for -E|-M|-MM case
1580         #if USE_CPPLIB.
1581         * timevar.def (TV_CPP, TV_LEX): New.
1582         * timevar.h: Add multiple include guard.
1584         * objc/lang-specs.h: Use %(trad_capable_cpp) for -E|-M|-MM case
1585         #if USE_CPPLIB.
1586         * objc/objc-act.c: Don't mention yy_cur or parse_options.
1587         Initialize cpplib properly.  Force lineno to 0 after first
1588         call to check_newline.  Don't handle -lang-objc here.
1589         Move forget_protocol_qualifiers and remember_protocol_qualifiers here.
1591 2000-09-06  David Edelsohn  <edelsohn@gnu.org>
1593         * rs6000.md: Correct function unit definitions for cr_logical and
1594         mtjmpr.
1595         (sCOND): Additionally fail for sgt, slt, sge, sle if !TARGET_POWER
1596         and use portable method for >=0 and floating point >=.  Remove
1597         associated matchers.
1599 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
1601         * extend.texi: Mark named return value extension as deprecated.
1603 2000-09-06  Geoff Keating  <geoffk@cygnus.com>
1605         * config/rs6000/rs6000.c (rs6000_reverse_condition): Return
1606         the result.
1608 2000-09-06  Gabriel Dos Reis  <gdr@codesourcery.com>
1610         * toplev.c (display_help): Fix thinko in documentation.
1612         * diagnostic.h (output_buffer::indent_skip): New fields.
1613         (output_indentation): New macro.
1615         * diagnostic.c (output_indent): New function.
1616         (output_set_prefix, clear_diagnostic_info): Use.
1617         (output_emit_prefix): Predict future indentation.
1619 2000-09-06  DJ Delorie  <dj@redhat.com>
1621         * Makefile.in (stage_*): add more dependencies to ensure parallel
1622         builds build correctly
1624 2000-09-06  Manfred Hollstein  <manfredh@redhat.com>
1626         * Makefile.in (bootstrap-lean): Depend on bootstrap-lean_g,
1627         not bootstrap-lean_f.
1629 2000-09-06  Andreas Schwab  <schwab@suse.de>
1631         * mklibgcc.in: Emit rule for libgcc-stage-start.
1632         * Makefile.in (stage1-start, stage2-start, stage3-start,
1633         stage4-start): Don't handle libgcc here, use libgcc.mk instead.
1635 2000-09-06  Bernd Schmidt  <bernds@redhat.co.uk>
1637         * local-alloc.c (local_alloc): Ignore CLASS_LIKELY_SPILLED.
1638         (update_equiv_regs): Likewise, except for the mn10200 kludge.
1639         (combine_regs): Likewise.
1641         * Makefile.in (cse.o): Depend on $(BASIC_BLOCK_H).
1642         * cse.c: Include "basic-block.h".
1643         (struct table_elt): New field REGCOST.
1644         (CHEAP_REG): Delete macro.
1645         (COST): Return 0 for REGs.
1646         (approx_reg_cost_1, approx_reg_cost, preferrable): New functions.
1647         (notreg_cost): Return 0 for appropriate SUBREGs.
1648         (COSTS_N_INSNS): Return N * 2.
1649         (rtx_cost): Return 0 for REGs, and use cost of nested rtx for cheap
1650         SUBREGs.
1651         (CHEAPER): Use new function preferrable.
1652         (insert): Initialize REGCOST member.
1653         (find_best_addr): Use approx_reg_cost for estimation of register
1654         usage.
1655         (cse_insn): Likewise.
1656         * loop.c (iv_add_mult_cost): New function.
1657         (add_cost, shift_cost, mult_cost): Delete variables.
1658         (init_loop): Don't initialize add_cost; reduce copy_cost by half.
1659         (strength_reduce): Use iv_add_mult_cost instead of fixed add_cost.
1660         Make code that detects autoinc opportunities slightly less optimistic.
1661         (simplify_giv_expr): If expression contains other reg that is also a
1662         giv, only increment benefit if this is the only use of that reg.
1663         (consec_sets_giv): Take that change into account.
1664         (combine_givs): Slightly more verbose output.
1666         * i386.h (RTX_COSTS): For MULT, return true cost of multiplication,
1667         not the cost of an equivalent shift.
1668         * sh-protos.h (addsubcosts): Declare.
1669         * sh.c (addsubcosts): New function.
1670         * sh.h (CONST_COSTS): If CONST_OK_FOR_I, then return 0.
1671         (RTX_COSTS): Tweak.  Use addsubcosts.
1672         (ADDRESS_COST): Return higher cost for reg+reg addressing.
1674 2000-09-06  Geoff Keating  <geoffk@cygnus.com>
1676         * config/rs6000/rs6000.c (validate_condition_mode): New function.
1677         (branch_comparison_operator): Call validate_condition_mode to
1678         abort rather than returning 0.
1679         (branch_positive_comparison_operator): New function.
1680         (scc_comparison_operator): Call validate_condition_mode to abort
1681         rather than returning 0.
1682         (ccr_bit): Call validate_condition_mode.  Update for
1683         new branch scheme.
1684         (print_operand): Delete %C modifier.  Update %E case
1685         to use EQ bit not SO bit.
1686         (rs6000_reverse_condition): New function.
1687         (rs6000_generate_compare): New function.
1688         (rs6000_emit_sCOND): New function.
1689         (rs6000_emit_cbranch): New function.
1690         (output_cbranch): The length of a long branch insn is
1691         now only 8 bytes.  Add validate_condition_mode.  Use
1692         rs6000_reverse_condition.  Remove cror generation.
1694         * config/rs6000/rs6000.h: Update comments.
1695         (PREDICATE_CODES): Add new predicate.  Update codes used
1696         by branch_comparison_operator and scc_comparison_operator.
1697         * config/rs6000/rs6000-protos.h: Add prototypes for
1698         new external functions.
1699         * config/rs6000/rs6000.md: Add new scheduling parameters
1700         for cr_logical instructions.  Change length of branch
1701         instructions.
1702         (bCOND patterns): Call rs6000_emit_cbranch.
1703         (sCOND patterns): Call rs6000_emit_sCOND.
1704         (branch patterns): Change lengths to 4.
1705         (cr logical patterns): New.
1707 2000-09-06  Richard Henderson  <rth@cygnus.com>
1709         * config/i386/i386.md (call_pop): Fix test for setting
1710         current_function_uses_pic_offset_table.
1711         (call, call_value_pop, call_value): Likewise.
1713 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
1715         * timevar.c (timevar_add): Delete.
1716         (timevar_get): Also count time since the selected timer was
1717         last updated.  Do not examine the timevar stack if the
1718         selected timer is standalone.
1720 2000-09-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1722         * gthr-dce.h (__gthread_objc_mutex_deallocate): Free mutex->backend.
1724 2000-09-05  Jason Merrill  <jason@redhat.com>
1726         * c-decl.c (finish_incomplete_decl): Don't call complete_array_type
1727         for 'extern' arrays.
1729 2000-09-05  Richard Henderson  <rth@cygnus.com>
1731         * config/ia64/lib1func.asm (__divtf3): Rebundle for Itanium.
1732         Eliminate final copy from non-trapping case.
1733         (__divdf3, __divsf3): Likewise.
1735 2000-09-05  Richard Henderson  <rth@cygnus.com>
1737         * config/ia64/ia64.md (mulhi3): Fix typo last change.
1738         * config/ia64/lib1func.asm (__divdi3, __udivdi3, __umodsi3): Likewise.
1740 2000-09-03  Donn Terry  <donn@interix.com>,  Laurynas Biveinis  <lauras@softhome.net>
1742         * Makefile.in: Restructure bootstrap stages to allow clean
1743         restart after failure.
1745 2000-09-05  Richard Henderson  <rth@cygnus.com>
1747         * config/ia64.md (movsi and movdi patterns): Allow moves from
1748         8-bit constants to AR registers.
1750 2000-09-05  Richard Henderson  <rth@cygnus.com>
1752         * config/ia64/ia64.md (mulhi3): New.
1754 2000-09-05  Richard Henderson  <rth@cygnus.com>
1756         * config/ia64/ia64.h (INIT_TARGET_OPTABS): Remove.
1757         * config/ia64/lib1funcs.asm (__divdi3): Update from Intel IA-64
1758         Optimization Guide, minimum latency alternative.
1759         (__moddi3, __udivdi3, __umoddi3): Likewise.
1760         (__divsi3, __modsi3, __udivsi3, __umodsi3): Likewise.
1762 2000-09-05  Bruce Korb  <bkorb@gnu.org>
1764         * fixinc/fixincl.c (load_file): always read header files
1765         with sizes that are a multiple of the page size.
1766         & use libiberty's getpagesize for determining that.
1768 2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
1770         * gcse.c (hash_string_1): Add prototype.
1771         * cse.c (canon_hash_string): Likewise.
1773 2000-09-04  Craig Newell  <CraigN@ieee.org>
1775         * gcc.c: Undefine "__WCHAR_TYPE__" before redefining it.
1777 2000-09-04  Andreas Schwab  <schwab@suse.de>
1779         * Makefile.in (STAGESTUFF): Remove libgcc.
1780         (stage1-start, stage2-start, stage3-start): Copy the contents of
1781         the libgcc directory explicitly.
1782         (mostlyclean): Clean libgcc.
1784 2000-09-04  Andrew Haley  <aph@redhat.com>
1786         * dwarf2out.c: (stack_adjust_offset): New prototype.
1788 Wed Jan  1 00:23:59 MET 1997  Jan Hubicka  <jh@suse.cz>
1790         * combine.c (make_extraction): Fix rtx_cost comparison to
1791         match the comment.
1793 Wed Jan  1 00:17:32 MET 1997  Jan Hubicka  <jh@suse.cz>
1795         * i386.md (pushsi2, pushhi2, pophi2, swapsf, swapdf,
1796         umulsi3_highpart, smulsi3_highpart, testqi_ccno_1, xorqi_ext_1):
1797         Add '*' to insn pattern name.
1799 2000-09-04  Jakub Jelinek  <jakub@redhat.com>
1801         * cpplex.c (ON_REST_ARG): Check VAR_ARGS flag of current context,
1802         use posn - 1 to index into tokens array.
1803         (maybe_paste_with_next): Adjust caller.
1805 2000-09-03  Geoff Keating  <geoffk@cygnus.com>
1807         * invoke.texi: Document the -mvxworks option for rs6000 ELF.
1809         * config/rs6000/rs6000.h: Update various comments about XER_REGNO.
1810         (REGNO_REG_CLASS): Use symbolic register
1811         names.
1813 2000-09-03  Richard Earnshaw  <rearnsha@arm.com>
1815         * arm.c (final_prescan_insn): If the form of a jump insn isn't
1816         recognized, don't try to conditionally execute it.
1818 Sun Sep  3 13:10:56 2000  Denis Chertykov  <denisc@overta.ru>
1820         * config/avr/avr.md ("*tablejump_lib"): New pattern.
1821         (call_value_insn): Right length claculation.
1822         (call_insn): Likewise.
1824 2000-09-02  Marek Michalkiewicz  <marekm@linux.org.pl>
1826         * config/avr/avr-protos.h, config/avr/avr.c (unique_section,
1827         gas_output_limited_string, gas_output_ascii, output_movqi,
1828         output_movhi, out_movqi_r_mr, out_movqi_mr_r, out_movhi_r_mr,
1829         out_movhi_mr_r, out_movsi_r_mr, out_movsi_mr_r, output_movsisf,
1830         out_tstsi, out_tsthi, ret_cond_branch, ashlqi3_out, ashlhi3_out,
1831         ashlsi3_out, ashrqi3_out, ashrhi3_out, ashrsi3_out, lshrqi3_out,
1832         lshrhi3_out, lshrsi3_out, output_reload_inhi, output_reload_insisf,
1833         out_shift_with_cnt, ptrreg_to_str, cond_string, encode_section_info):
1834         Add "const" as needed to remove warnings.
1836         * config/avr/avr.c (avr_override_options, avr_init_once,
1837         function_prologue, function_epilogue, frame_pointer_required_p,
1838         class_likely_spilled_p, order_regs_for_local_alloc,
1839         avr_address_cost, avr_ret_register): Use K&R style arguments.
1840         (initial_elimination_offset, gas_output_limited_string):
1841         Remove ATTRIBUTE_UNUSED from the used arguments.
1842         (output_mov*, out_mov*_r_mr, out_mov*_mr_r, output_reload_insisf):
1843         Use local variables src, dest, base to access operands[].
1844         Rename reg_dest to reg_src if that's what it is.
1845         (output_movhi, output_movsisf): Optimize loading 8-bit immediate
1846         constants to LD_REGS if reg_was_0.
1847         (output_reload_insisf): Change arg 3 to insn length and set it.
1848         (out_movhi_r_mr, out_movhi_mr_r): Use in/out for more efficient
1849         access to 16-bit I/O register pairs.
1850         (avr_address_cost): Lower cost for the above case.
1851         (out_tsthi): Use "or" (faster) instead of "sbiw" if the operand
1852         may be clobbered, also for LD_REGS.
1853         (adjust_insn_length): Correct insn length for iorhi3 and iorsi3
1854         with a CONST_INT.
1856         * config/avr/avr.h (PTRDIFF_TYPE): Make signed.
1858         * config/avr/avr.md: Change all uses of the TEST_HARD_REG_CLASS
1859         macro to test_hard_reg_class function.
1860         (*movsi, *movsf): Change "cc" attribute from "clobber" to "none"
1861         for loading immediate constants to LD_REGS.
1862         (andsi3, cmphi, cmpsi): Add return statements to avoid warnings.
1865 Sat Sep  2 13:58:23 2000  Marek Michalkiewicz <marekm@linux.org.pl>
1867         * config/avr/avr.md ("*negsi2"): substitute %@ to __zero_reg__
1868         * config/avr/libgcc.S: Lost part of the previous patch.
1870 2000-08-31  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1872         * gthr-dce.h (__gthread_objc_mutex_allocate): Create a pthread_mutex_t
1873         object before calling pthread_mutex_init.
1875 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>
1877         * config/sh/t-elf, config/sh/crt1.asm, config/sh/crti.asm,
1878         config/sh/crtn.asm: New files.
1879         * config/sh/t-sh (EXTRA_MULTILIB_PARTS): Set.
1880         (crt1.o, crti.o, crtn.o): New targets.
1881         * configure.in [sh-*-elf*, sh-*-rtemself*] (tmake_file): Added
1882         sh/t-elf.
1883         * configure: Rebuilt.
1884         * config/sh/sh.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
1885         STARTFILE_SPEC, ENDFILE_SPEC, CRT_CALL_STATIC_FUNCTION): Define.
1886         * config/sh/elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP):
1887         Undefine for config/elfos.h to redefine.
1888         (STARTFILE_SPEC, ENDFILE_SPEC): Redefine after config/elfos.h.
1890 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>, Niibe Yutaka  <gniibe@m17n.org>, Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1892         * config/sh/sh-protos.h (nonpic_symbol_mentioned_p,
1893         legitimize_pic_address, output_pic_addr_const): Declare.
1894         * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE): Fix PIC register.
1895         (PREFERGOT_BIT, TARGET_PREFERGOT): Likewise.
1896         (TARGET_SWITCHES): New switch -mprefergot.
1897         (OVERRIDE_OPTIONS): Set flag_no_function_cse unless -mprefergot.
1898         (PIC_OFFSET_TABLE_REGNUM): Define.
1899         (GOT_SYMBOL_TABLE): Likewise.
1900         (LEGITIMIZE_ADDRESS): Use legitimize_pic_address.
1901         (ENCODE_SECTION_INFO): Define.
1902         (FINALIZE_PIC): New macros.
1903         (LEGITIMATE_PIC_OPERAND_P, SYMBOLIC_CONST_P): New macro.
1904         (ASM_OUTPUT_INT, ASM_OUTPUT_SHORT): Use output_pic_addr_const.
1905         * config/sh/sh.c (print_operand_address): Use output_pic_addr_const.
1906         (prepare_move_operands): Call emit_pic_move or
1907         emit_pic_const_move if appropriate.
1908         (output_far_jump): For PIC, use braf and output long offset.
1909         (machine_dependent_reorg):
1910         (sh_expand_prologue): Save and initialize the PIC register.
1911         (sh_expand_epilogue): Restore it.
1912         (initial_elimination_offset): Account for it.
1913         (nonpic_symbol_mentioned_p): New function.
1914         (legitimize_pic_address): Likewise.
1915         (output_pic_addr_const): Likewise.
1916         * config/sh/sh.md (calli_pcrel, call_valuei_pcrel): New insns.
1917         (call, call_value): Use them.
1918         (GOTaddr2picreg, sym_label2reg, symGOT2reg, symGOTOFF2reg,
1919         symPLT_label2reg): New expands.
1920         * invoke.texi (SH Options): Document -mprefergot.
1922 2000-09-01  Alexandre Oliva  <aoliva@redhat.com>
1924         * rtl.h (ASM_OPERANDS_INPUT_CONSTRAINT_EXP): New macro.
1925         * gcse.c (hash_string_1): New function.
1926         (hash_expr_1) <ASM_OPERANDS>: Disregard filename and line number.
1927         (expr_equiv_p) <ASM_OPERANDS>: Likewise.
1928         * cse.c (rtx_cost): Don't increase the cost of ASM_OPERANDS.
1929         (canon_hash_string): New function.
1930         (canon_hash) <ASM_OPERANDS>: Disregard filename and line number.
1931         (exp_equiv_p) <ASM_OPERANDS>: Likewise.
1932         (fold_rtx): Use ASM_OPERANDS accessor macros.
1933         * emit-rtl.c (copy_insn_1): Likewise.
1934         * integrate.c (copy_rtx_and_substitute): Likewise.
1935         * stmt.c (expand_asm_operands): Likewise.  Give an
1936         ASM_OPERANDS rtx the mode of the output reg being set from it.
1938 2000-09-01  Fred Fish  <fnf@be.com>
1940         * fix-header.c (write_rbrac): Add putc and getc to list of
1941         functions to protect against prior definition as a macro.
1943 2000-09-01  Joseph S. Myers  <jsm28@cam.ac.uk>
1945         * c-common.h (enum c_tree_index): Add CTI_C_SIZE_TYPE.
1946         (c_size_type_node): Define.
1947         * c-decl.c (init_decl_processing): Initialize c_size_type_node.
1948         * c-common.c (enum format_lengths, enum format_std_version,
1949         format_length_info, format_type_detail, BADLEN, NOLENGTHS,
1950         format_kind_info, printf_length_specs, scanf_length_specs, T89_I,
1951         T99_I, T89_L, T99_LL, TEX_LL, T89_S, T89_UI, T99_UI, T89_UL,
1952         T99_ULL, TEX_ULL, T89_US, T89_F, T99_F, T89_D, T99_D, T89_LD,
1953         T99_LD, T89_C, T99_SC, T99_UC, T89_V, T94_W, TEX_W, T94_WI,
1954         TEX_WI, T99_ST, T99_SST, T99_PD, T99_UPD, T99_IM, T99_UIM,
1955         format_types): Define.
1956         (format_char_info, print_char_table, scan_char_table,
1957         time_char_table): Rearrange for new organization of information
1958         about format length modifiers and standard versions.
1959         (T_ST): Redefine to use c_size_type_node.
1960         (check_format_info): Obtain information about length modifiers and
1961         standard versions from tables.  Adjust warning message wordings.
1962         Use the name from the user's program for `ll' and `hh' length
1963         modifiers in warning messages.  Use more informative names for
1964         wanted types where available (for wchar_t, wint_t, size_t, signed
1965         size_t, ptrdiff_t, unsigned ptrdiff_t, intmax_t and uintmax_t).
1967 2000-09-01  Jim Wilson  <wilson@cygnus.com>
1969         * calls.c (emit_call_1): Add REG_NORETURN note to call if ECF_NORETURN.
1970         * combine.c (distribute_notes): Handle REG_NORETURN.
1971         * rtl.c (reg_note_name): Add REG_NORETURN.
1972         * rtl.h (enum reg_note): Likewise.
1974         * config/ia64/ia64-protos.h (emit_safe_across_calls): Renamed from
1975         ia64_file_start.
1976         * config/ia64/ia64.c (emit_safe_across_calls): Likewise.
1977         (rtx_needs_barrier): Handle unspec_volatile 8 and 9.
1978         (emit_predicate_relation_info): Handle conditional calls with
1979         REG_NORETURN.
1980         * config/ia64/ia64.h (ASM_FILE_START): Call emit_safe_across_calls
1981         instead of ia64_file_start.
1982         * config/ia64/sysv4.h (ASM_FILE_START): Likewise.
1983         * config/ia64/ia64.md (safe_across_calls_all,
1984         save_across_calls_normal): New patterns.
1986         * loop.c (check_final_value): Check for biv use before checking for
1987         giv use.  Check for both biv and giv uses.  Always set last_giv_use
1988         if there is a giv use.
1990 2000-09-01  Richard Henderson  <rth@cygnus.com>
1992         * config/ia64/ia64.md (mulsi3): Use grfr_register_operand.
1993         (madddi3): Likewise.
1994         (maddsi3): New.
1996 Fri Sep  1 10:59:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1998         * expr.c (clear_storage): Don't use emit_move_insn unless
1999         either BLKmode or proper size.
2000         (store_constructor): Don't call clear_storage if REG of wrong size.
2002         * flow.c (init_propagate_block_info): Don't mark frame dead at end
2003         of function if returns wiht stack pointer depressed.
2005 2000-09-01  Andrew Haley  <aph@redhat.com>
2007         * dwarf2out.c (stack_adjust_offset): New function.
2008         (dwarf2out_stack_adjust): Break out stack adjust logic into
2009         new stack_adjust_offset function.  Look inside parallels and
2010         sequences for stack adjustments.
2012 2000-08-31  Jeff Law <law@cygnus.com>
2014         * arm.md: Use no_new_pseudos to determine when it is safe
2015         to create new pseudo registers.
2017         * arm.c (legitimize_pic_address): Use no_new_pseudos to determine
2018         when we can safely allocate new registers.
2020 2000-08-31  Geoffrey Keating  <geoffk@cygnus.com>
2022         * stmt.c (expand_asm_operands): Twiddle generating_concat_p
2023         so that CONCATs are not generated for ASMs.
2024         * emit-rtl.c (gen_reg_rtx): Don't generate CONCATs when
2025         not generating_concat_p.
2026         * function.c (pop_function_context_from): Reset
2027         generating_concat_p.
2028         (prepare_function_start): Likewise.
2029         * rtl.c (generating_concat_p): Define.
2030         * rtl.h (generating_concat_p): Declare.
2031         * toplev.c (rest_of_compilation): No CONCATs after RTL generation.
2033 2000-08-22  Philipp Thomas  <pthomas@suse.de>
2034             Masanobu Yuhara <yuhara@flab.fujitsu.co.jp>
2036         * gmicro.h (TARGET_SWITCHES): Add descriptions and mark them
2037         for translation.
2039 2000-08-30  Greg McGary  <greg@mcgary.org>
2041         * Makefile.in (fixinc.sh): Pass CC, CFLAGS and LDFLAGS to mkfixinc.sh
2042         * fixinc/Makefile.in (fixincl): Pass $(LDFLAGS) to $(CC).
2043         * fixinc/mkfixinc.sh: Pass $CC, $CFLAGS and $LDFLAGS to $MAKE.
2045 2000-08-30  Greg McGary  <greg@mcgary.org>
2047         * tree.h (struct tree_int_cst): Wrap low and high in a sub-struct.
2048         (TREE_INT_CST_LOW, TREE_INT_CST_HIGH): Access through sub-struct.
2049         (TREE_INT_CST): New macro.
2050         * varasm.c (const_hash, compare_constant_1, record_constant_1):
2051         Use new macro TREE_INT_CST.
2053 Wed 30-Aug-2000 23:18:59 BST  Neil Booth  <NeilB@earthling.net>
2055         * contrib.texi: Add self.
2057 2000-08-30  Alexandre Oliva  <aoliva@redhat.com>
2059         * config/sh/sh.md (cmpeqsi_ior_t, cmpeqsi_and_t): New insns.
2060         (cmpeqdi_t splitter): Use cmpeqsi_and_t instead of emitting jumps
2061         and labels.
2063 2000-08-30  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2065         * fixinc/gnu-regex.c: Don't define `const'.
2067 Tue Aug 29 22:09:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2069         * expr.c (store_constructor): Allow variable bounds of array type.
2070         (expand_expr): Don't blow up if type is ERROR_MARK.
2071         * varasm.c (output_constructor): Don't access lower bound of array
2072         type unless need it if index is supplied (so it can be a variable
2073         if no index is supplied).
2074         Use tree_low_cst; use HOST_WIDE_INT for sizes; change BITPOS to POS.
2075         Other minor cleanups.
2077 2000-08-29  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2079         * Makefile.in: Revamp handling of cflags to allow different WARN_CFLAGS
2080         for compilations in stage 1 and subsequent stages, respectively.
2081         * configure.in (vax): Add compiler-dependent CFLAGS for stage 1.
2082         * configure: Rebuilt.
2083         * x-vax, x-vax-gcc: Deleted.
2085 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
2087         * c-common.c (declare_function_name): Use func_id_node,
2088         function_id_node, and pretty_function_id_node.  Do not make
2089         __func__ visible at file scope.
2090         * c-common.h (c_tree_index): Add CTI_FUNCTION_ID,
2091         CTI_PRETTY_FUNCTION_ID, and CTI_FUNC_ID.
2092         (function_id_node, pretty_function_id_node, func_id_node): New
2093         macros.
2094         * c-decl.c (init_decl_processing): Initialize function_id_node,
2095         pretty_function_id_node, and func_id_node.
2096         (c_make_fname_decl): Correct comment.
2098         * tree.h (struct tree_identifier): Constify pointer member.
2100         * c-decl.c (pushdecl, implicit_decl_warning): Constify a char *.
2101         * c-pragma.h (struct weak_syms): Constify name and value members.
2102         (add_weak): Constify arguments.
2104         * calls.c (special_function_p): Constify a char *.
2105         (expand_call): Remove variable which is initialized and then
2106         never used.
2107         * dependence.c (struct def_use, struct induction, struct subscript):
2108         Constify 'variable' member.
2109         (get_low_bound, have_induction_variable): Constify char * argument.
2110         (find_induction_variable): Add braces to avoid dangling else.
2111         (classify_dependence): Constify char * arrays.
2112         * profile.c (output_func_start_profiler): Constify a char *.
2113         * stor-layout.c (finalize_record_size): Constify a char *.
2114         * tree.c (is_attribute_p): Constify a char *.
2115         * varasm.c (add_weak, remove_from_pending_weak_list): Constify argument.
2117         * varasm.c (make_function_rtl, make_decl_rtl): Rearrange code
2118         for comprehensibility.  Do not call get_identifier if we did
2119         not change the DECL_ASSEMBLER_NAME of the decl.  Use alloca to
2120         create temporary string constants, not ggc_alloc_string.  No
2121         need to copy result of ASM_FORMAT_PRIVATE_NAME.  Use const
2122         char * to hold IDENTIFIER_POINTERs.
2124 2000-08-29  Richard Henderson  <rth@cygnus.com>
2126         * config/ia64/ia64.md (muldi3): Use grfr_register_operand
2127         for the inputs.
2129 2000-08-29  Richard Henderson  <rth@cygnus.com>
2131         * reload.c (push_secondary_reload): Allow class == reload_class
2132         if we're using a reload_in/out pattern.
2134         * config/ia64/ia64.md (reload_inti): Use a TImode scratch.  Use
2135         the half that does not conflict with the reload register.
2136         (reload_outti): Likewise.
2138 2000-08-29  Kazu Hirata  <kazu@hxi.com>
2140         * reload.c: Fix formatting.
2142         * stmt.c: Fix formatting.
2144         * gcc.c: Fix formatting.
2146 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
2148         * flags.h (time_report, mem_report): New global flags.
2149         * toplev.c: Define time_report and mem_report.
2150         (f_options): Add -ftime-report and -fmem-report.
2151         (compile_file): Turn on time_report if quiet_flag is off.
2152         Call ggc_print_statistics at very end if mem_report is on.
2153         * timevar.c (TIMEVAR_ENABLE): Examine time_report, not quiet_flag.
2155         * ggc-common.c (ggc_print_statistics): Rename to
2156         ggc_print_common_statistics; all callers changed.  Scale
2157         quantities above 10K to kilobytes and above 10M to megabytes.
2158         * ggc-page.c (ggc_page_print_statistics): Rename to
2159         ggc_print_statistics.  Report memory consumed by internal data
2160         structures for each allocation bucket.  Scale quantities above
2161         10K to kilobytes and above 10M to megabytes.
2162         * ggc-simple.c: Prototype debug_ggc_tree to avoid warning.
2163         Cast PTR_KEY(p) to unsigned long in fprintf call to avoid warning.
2164         Define tally_leaves always.
2165         (ggc_print_statistics): New function.
2166         * ggc.h: Adjust for renamed functions.
2168 Wed Aug 30 00:11:42 2000  Denis Chertykov  <denisc@overta.ru>
2170         * config/avr/avr.md ("*movsf","*movsi"): Pass NULL to
2171         output_movsisf instead of which_alternative.
2173         * config/avr/avr.c (output_reload_inhi): Check for NULL ponter.
2175 Tue Aug 29 22:29:58 2000  Denis Chertykov  <denisc@overta.ru> & Marek Michalkiewicz <marekm@linux.org.pl>
2177         * config/avr/avr-protos.h: (avr_output_ascii) Removed.
2178         (avr_progmem_p): New prototype.
2179         (output_movsisf): Prototype declaration changed.
2180         (output_movqi): New prototype.
2181         (output_movhi): New prototype.
2182         (call_insn_operand): Likewise.
2183         (final_prescan_insn): Likewise.
2184         (avr_simplify_comparision_p): Likewise.
2185         (avr_normalize_condition): Likewise.
2186         (compare_eq_p): Likewise.
2187         (out_shift_with_cnt): Likewise.
2188         (const_int_pow2_p): Likewise.
2189         (output_reload_inhi): Prototype declaration changed.
2191         * config/avr/avr.c: (debug_hard_reg_set): Prototype declared.
2192         (ldi_reg_rtx): New. rtx for r31.
2193         (avr_init_stack): Initialize as "__stack".
2194         (function_prologue): Use it.
2195         Replace all TARGET_ENHANCED with AVR_ENHANCED.
2196         (avr_mcu_name): Initialize as "avr2".
2197         (avr_enhanced_p, avr_mega_p): New variables.
2198         (mcu_types, avr_override_options): Handle all known MCU types.
2199         Also handle avr1 (only preprocess, assemble and link).
2200         (print_operand): Using of `%K' in output template removed.
2201         (out_movqi_r_mr): Optimized.
2202         (out_movhi_r_mr): Likewise.
2203         (output_movqi): New function.
2204         (output_movhi): Likewise.
2205         (out_movsi_r_mr): Optimized.
2206         (output_movsisf): Compute insn length for `adjust_insn_length'
2207         (out_movqi_mr_r): Optimized.
2208         (out_movhi_mr_r): Optimized.
2209         (adjust_insn_length): Use output_movsisf, output_movqi,
2210         output_movhi for insn length adjusting.
2211         (reg_unused_after): Use dead_or_set_p.
2212         (preferred_reload_class): Now havn't any restriction.
2213         (reg_was_0): New function.
2214         (io_address_p): Likewise.
2215         (const_int_pow2_p): Likewise.
2216         (output_reload_inhi): Likewise.
2217         (output_reload_insisf): Likewise.
2219         * config/avr/avr.h (MULTILIB_DEFAULTS): Define.
2220         (LIB_SPEC): Use -lc for all supported devices.
2221         (LIBGCC_SPEC): Use -lgcc for all supported devices.
2222         (AVR_MEGA): Define as avr_mega_p.
2223         (AVR_ENHANCED): New, define as avr_enhanced_p.
2224         (TARGET_SWITCHES): Remove -menhanced, now handled by -mmcu=...
2225         (CPP_SPEC, LINK_SPEC): Handle all known MCU types.
2226         (CRT_BINUTILS_SPECS): Handle all known MCU types.
2227         Rename gcrt1-*.o to make file names unique on 8.3 filesystems.
2228         (EXTRA_SPECS): Add CPP_AVR[1-5]_SPEC.
2229         (ASM_SPEC): Pass -mmcu=... to the assembler.
2230         Change all -DAVR_* to -D__AVR_*__.
2231         (INIT_TARGET_OPTABS), config/avr/libgcc.S:
2232         Rename library functions to start with two underscores.
2233         (ASM_OUTPUT_COMMON): Outputs `.comm VAR,VAR-SIZE,1' to avoid
2234         alignment.
2235         (ASM_WEAKEN_LABEL): Declared for __attribute__((weak)).
2236         (SUPPORTS_WEAK): Likewise.
2237         (LDI_REG_REGNO): New. Register r31 will be used as temporary
2238         register for loading constants to r0-r14.
2240         * config/avr/avr.md: Replace all TARGET_ENHANCED with
2241         AVR_ENHANCED.
2242         (*mov_r_sp): Removed. Handled by output_movhi.
2243         (*mov_sp_r): Likewise.
2244         (*mov_sp_r_no_interrupts): Likewise
2245         (*mov_sp_r_tiny): Likewise.
2246         (*movqi): Use output_movqi.
2247         (*reload_inqi): New.
2248         (*movhi): Use output_movhi.
2249         (*reload_inhi): New.
2250         (*negsi2): Optimized.
2251         (*negsf2): Likewise.
2252         Added peepholes (define_peephole2) for loading constants to r0-r14
2253         and for using `cpse' command.
2255         * config/avr/libgcc.S: Rename library functions to start with two
2256         underscores.
2257         Add support for enhanced core.
2258         (_moqhi3): Fix typo, now _modqi3.
2259         (__divsi_raw): Use __zero_reg__ as loop counter, smaller by 1 word.
2260         (__prologue_saves__): Remove test for stack adjust by 0.
2261         (__tablejump__): New.
2263         * config/avr/t-avr: Build libgcc2 with -mcall-prologues.
2264         Add multilib support.
2266 Tue Aug 29 15:17:54 EDT 2000  John Wehle  (john@feith.com)
2268         * loop.c (prescan_loop): Don't check unknown_address_altered
2269         when deciding if insert_loop_mem is safe.  Add BLKmode MEMs
2270         to loop_store_mems as necessary.
2271         (loop_invariant_p): Don't check unknown_address_altered
2272         or unknown_constant_address_altered.
2274 2000-08-29  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2276         * vax.md (sltu, sgeu): Delete sltu and sgeu insn patterns.
2278 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
2280         * cpperror.c (print_file_and_line): If line is (unsigned int)-1,
2281         print just the filename.
2282         * cpplex.c (_cpp_run_directive): Add additional argument, the
2283         name to give the synthetic buffer.  This defaults to
2284         translated "<command line>".
2285         * cpplib.c (cpp_define, cpp_undef, cpp_assert, cpp_unassert):
2286         Adjust to match.
2287         (_cpp_define_builtin): New function.
2288         * cppinit.c (initialize_builtins): Use _cpp_define_builtin.
2289         * cpphash.h: Update prototypes.
2291         * tradcpp.c (main): Process -D and -U simultaneously, in the
2292         order they appeared on the command line.
2294 2000-08-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2296         * c-decl.c (define_label): Call warning_with_file_and_line and
2297         error_with_file_and_line instead of plain warning or error.
2299         * c-parse.in (label): Use save_filename/save_lineno to ensure
2300         correct values for calls to define_label.
2302 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
2304         * calls.c (expand_call): Don't create a VAR_DECL just to throw it
2305         away.
2306         * expr.c (expand_expr, case TARGET_EXPR): Don't call
2307         mark_addressable.
2308         * tree.h (get_file_function_name): Remove two duplicate
2309         declarations.
2311 2000-08-28  Kazu Hirata  <kazu@hxi.com>
2313         * tree.c: Fix formatting.
2315         * xcoffout.c: Fix formatting.
2317 2000-08-28  Jason Merrill  <jason@redhat.com>
2319         * dwarf2out.c (attr_checksum): Also ignore DW_AT_producer.
2321 2000-08-28  Daniel Berlin  <dberlin@redhat.com>
2323         * dwarf2out.c (dwarf2out_finish): Don't bother calling
2324         break_out_includes if it won't do anything.
2326 2000-08-28  Richard Henderson  <rth@cygnus.com>
2328         * reload.c (push_secondary_reload): Revert 2000-08-16 change.
2329         (find_reloads): Likewise.
2330         * config/alpha/alpha.md (reload_inqi): Revert 2000-08-11 change.
2331         (reload_inhi): Likewise.
2333 2000-08-28  Richard Henderson  <rth@cygnus.com>
2335         * config/i386/i386.c: Don't error on EXTRA_CONSTRAINT defined.
2336         (call_insn_operand): Don't expect a surrounding mem.
2337         (constant_call_address_operand): Likewise.
2338         * config/i386/i386.h (PREDICATE_CODES): Update.
2339         * config/i386/i386.md (call patterns): Move the match_operand
2340         for the call destination inside the mem.
2342 2000-08-28  Richard Henderson  <rth@cygnus.com>
2344         * local-alloc.c (requires_inout): Don't use reserved range for
2345         EXTRA_CONSTRAINTS; use anything not matched by REG_CLASS_FROM_LETTER.
2346         * recog.c (asm_operand_ok): Likewise.
2347         (preprocess_constraints, constrain_operands): Likewise.
2348         * regclass.c (record_reg_classes): Likewise.
2349         * reload.c (find_reloads): Likewise.
2350         * reload1.c (maybe_fix_stack_asms): Likewise.
2351         (reload_cse_simplify_operands): Likewise.
2352         * stmt.c (expand_asm_operands): Likewise.
2354         * md.texi: Update constraints documentation.
2355         * tm.texi (EXTRA_CONSTRAINT): Update.
2357 2000-08-28  Daniel Berlin  <dberlin@redhat.com>
2359         * dwarf2out.c (DIE_LABEL_PREFIX): Remove leading "__".
2360         (print_die): If we don't know the offset of the
2361         target die, try the symbol.  Add a trailing newline.
2362         (reverse_all_dies): New fn.
2363         (dwarf2out_finish): Call it.
2364         (break_out_includes): Reorganize for clarity.
2365         (add_sibling_attributes): Don't call reverse_die_lists.
2366         (output_comp_unit): Rename from output_comdat_comp_unit.  Use for
2367         primary CU, too.
2368         * flags.h: Add flag_eliminate_dwarf2_dups.
2369         * toplev.c (f_options): Support -feliminate-dwarf2-dups.
2371 2000-08-28  Jason Merrill  <jason@redhat.com>
2373         * dwarf2.h (DW_TAG_GNU_BINCL, DW_TAG_GNU_EINCL): New tags.
2374         * dwarf2out.c: #include "md5.h".
2375         (DIE_LABEL_PREFIX): New macro.
2376         (dw_val_struct): Add 'external' flag to val_die_ref.
2377         (add_AT_die_ref, AT_ref): Adjust.
2378         (AT_ref_external, set_AT_ref_external): New fns.
2379         (build_abbrev_table): Call set_AT_ref_external.
2380         (value_format): Call AT_ref_external.
2381         (die_struct): Add die_symbol field.
2382         (new_die): Clear it.
2383         (dwarf_tag_name): Handle BINCL/EINCL.
2384         (dwarf2out_start_source_file): Add BINCL DIE.
2385         (dwarf2out_end_source_file): Add EINCL DIE.
2386         (push_new_compile_unit, pop_compile_unit, clear_die_sizes): New fns.
2387         (loc_checksum, attr_checksum, die_checksum): New fns.
2388         (is_type_die, is_comdat_die, is_symbol_die): New fns.
2389         (compute_section_prefix, assign_symbol_names): New fns.
2390         (gen_internal_sym, output_die_symbol, output_symbolic_ref): New fns.
2391         (output_die): Call output_die_symbol and AT_ref_external.
2392         (output_comdat_comp_unit): New fn, split out from...
2393         (dwarf2out_finish): ...here.  Also call add_sibling_attributes for
2394         secondary CUs.
2395         (output_pubnames, output_aranges): Abort if we see entries from
2396         secondary CUs.
2397         * toplev.h: Declare file_name_nondirectory.
2398         * toplev.c (file_name_nondirectory): New fn, moved from C++ frontend.
2399         (rest_of_type_compilation): Call dwarf2out_decl if at toplevel.
2400         (debug_start_source_file): Call dwarf2out_start_source_file
2401         regardless of debug verbosity.
2402         (debug_end_source_file): Similarly.
2403         * tree.h: Declare clean_symbol_name.
2404         * tree.c (clean_symbol_name): Split out from...
2405         (get_file_function_name_long): ...here.
2407         * dwarf2out.c (new_loc_descr): Use calloc.
2408         (splice_child_die): Remove the die from the right parent.
2409         (gen_struct_or_union_die): Don't add AT_name to a specification DIE.
2411 Mon Aug 28 19:02:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2413         * toplev.c (decode_g_option): Don't give warning for unknown -g
2414         option; return 0 instead.
2415         (main): If -g option is not recognized by front end or
2416         language-independent code, give warning.
2418 2000-08-28  Greg McGary  <greg@mcgary.org>
2420         * config/i386/i386-protos.h (ix86_expand_compare): Add extern decl.
2421         * config/i386/i386.c (ix86_expand_compare): Remove `static'.
2422         * config/i386/i386.md (trap, conditional_trap): New insn & expand.
2424 2000-08-27  Greg McGary  <greg@mcgary.org>
2426         * cpplex.c (parse_string): Don't look for backslash
2427         before first char in `namebuf'.
2428         * loop.c (strength_reduce): Skip NOTEs.
2430 2000-08-27  Jason Merrill  <jason@redhat.com>
2432         * c-decl.c (duplicate_decls): Don't set TREE_STATIC or clear
2433         DECL_EXTERNAL on a local extern.  Don't set DECL_IGNORED_P or
2434         TREE_ASM_WRITTEN, either.
2435         (finish_decl): Adjust.
2437 2000-08-28  Philipp Thomas  <pthomas@suse.de>
2439         * ABOUT-GCC-NLS: Remove gettext patches from Paul Eggert as
2440         they have been incorporated into the gettext CVS. Change the text to
2441         reflect the current status of NLS. Add instructions for accessing
2442         the gettext CVS and add the patch from Martin v. Loewis.
2444 2000-08-27  Geoff Keating  <geoffk@cygnus.com>
2446         * config/rs6000/rs6000.md (movdi_internal64+5): Make SUBREG-safe
2447         by using gen_lowpart_common.
2448         (movdi_internal64+6): Likewise.
2450 2000-08-26  Alexandre Oliva  <aoliva@redhat.com>
2452         * tm.texi (FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION):
2453         Document.
2455         * config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Remap register
2456         numbers to the ranges used by GDB.
2458 2000-08-25  Richard Henderson  <rth@cygnus.com>
2460         * config/ia64/ia64.h (struct machine_function): Add n_varargs.
2461         * config/ia64/ia64.c (ia64_compute_frame_size): Use it.
2462         (ia64_expand_prologue): Likewise.
2463         (ia64_setup_incoming_varargs): Set it.  Properly skip the current
2464         argument for stdargs.
2466 2000-08-25  Jason Merrill  <jason@redhat.com>
2468         * integrate.c (expand_inline_function): Pull out the original decl.
2470 2000-08-25  Jim Wilson  <wilson@cygnus.com>
2472         * cse.c (cse_insn): Don't pass label subtraction to force_const_mem.
2474         * function.c (gen_mem_addressof): Clear MEM_ALIAS_SET if no decl.
2476 2000-08-25  Greg McGary  <greg@mcgary.org>
2478         * flow.c (dump_edge_info): Use ARRAY_SIZE.
2479         * config/alpha/alpha.c (alpha_expand_block_move): Likewise.
2481 2000-08-25  Richard Earnshaw  <rearnsha@arm.com>
2483         * arm.h (STRUCT_VALUE): Define to 0, not NULL.
2485 Fri Aug 25 12:52:49 EDT 2000  John Wehle  (john@feith.com)
2487         * i386.c (ix86_find_base_term): New.
2488         * i386-protos.h (ix86_find_base_term): Prototype.
2489         * i386.h (FIND_BASE_TERM): Define.
2490         * alias.c (find_base_term): Use it.
2491         * tm.texi (FIND_BASE_TERM): Document it.
2493         * alias.c (true_dependence, write_dependence_p): Unchanging
2494         memory can't conflict with non-unchanging memory.
2496         * alias.c (memrefs_conflict_p): A BLKmode reference
2497         to a symbol (or CONST_INT address) always conflicts
2498         with a reference to another symbol.
2500 2000-08-25  Joseph S. Myers  <jsm28@cam.ac.uk>
2502         * c-common.c (time_char_table): Don't allow width and flags with
2503         "z" format.
2505 2000-08-25  Jakub Jelinek  <jakub@redhat.com>
2507         * config/i386/i386.c (ix86_expand_branch): Treat GE and GEU the same
2508         way as LT and LTU when the second operand has 0 in low word.
2510 2000-08-26  Michael Hayes  <mhayes@cygnus.com>
2512         * basic-block.h (struct loop): Rename `exits' field to
2513         `exit_edges'.  Add `entry_edges' and `num_entries' fields.
2515         * flow.c (flow_loop_exit_edges_find): Rename from flow_loop_exits_find.
2516         (flow_loop_entry_edges_find): Add.
2517         (flow_edge_list_print): Rename from flow_exits_print.
2518         (flow_loops_find): Call flow_loop_entry_edges_find.
2519         (flow_loop_dump): Dump entry_edges list.
2520         (flow_loops_free): Free entry_edges.
2522 2000-08-26  Michael Hayes  <mhayes@cygnus.com>
2524         * loop.c (loop_dump_aux, debug_loop): New functions.
2525         (LOOP_BLOCK_NUM_1, LOOP_BLOCK_NUM, LOOP_INSN_UID): New macros.
2527         * flow.c (flow_loops_dump): Add callback parameter.
2528         (flow_loop_dump): Add callback parameter and call it.  Move
2529         loop note debugging code to loop_dump_aux.
2531         * basic-block.h (flow_loop_dump): Add callback parameter
2532         (flow_loops_dump): Likewise.
2534         * toplev.c (rest_of_compilation): Add NULL callback function pointer
2535         to call to flow_loops_dump.
2537 2000-08-26  Michael Hayes  <mhayes@cygnus.com>
2539         * loop.c (count_loop_regs_set): Replace start and end arguments
2540         with loop argument.  All callers udated.
2542 2000-08-26  Michael Hayes  <mhayes@cygnus.com>
2544         * loop.c (constant_high_bytes): Delete.
2546 2000-08-26  Michael Hayes  <mhayes@cygnus.com>
2548         * loop.c (prescan_loop): Move checks for NOTE_INSN_LOOP_CONT
2549         and NOTE_INSN_LOOP_VTOP to...
2550         (find_and_verify_loops) ...here.
2552 Fri Aug 25 04:21:13 2000  Alexandre Oliva  <aoliva@redhat.com>
2554         * crtstuff.c (CRT_CALL_STATIC_FUNCTION): Define default.
2555         (fini_dummy, init_dummy): Use it.
2557 Fri 25-Aug-2000 08:03:27 BST  Neil Booth  <NeilB@earthling.net>
2559         * cpplex.c (is_macro_disabled): Caller has already checked
2560         that we're not a preprocessed file.
2562 2000-08-24  Mark Mitchell  <mark@codesourcery.com>
2564         * Makefile.in (C_AND_OBJC_OBJS): Remove c-iterate.o.
2565         (c-iterate.o): Remove target.
2566         * gcc/c-common.h (enum rid): Remove RID_ITERATOR.
2567         * gcc/c-decl.c (init_decl_processing): Remove call to init_iterators.
2568         (finish_decl): Don't handle iterators.
2569         (grokdeclarator): Likewise.
2570         * gcc/c-parse.gperf: Remove __iterator and __iterator__ keywords.
2571         * gcc/c-gperf.h: Regenerated.
2572         * gcc/c-iterate.c: Removed.
2573         * gcc/c-lex.c (init_lex): Don't handle iterators.
2574         * gcc/c-parse.in (primary): Remove pop_iterator_stack call.
2575         (compstmt_primary_start): Remove push_iterator_stack call.
2576         (stmt): Don't allow iterator statements.  Replace iterator_expand
2577         with expand_expr_stmt.
2578         (all_iter_stmt): Remove.
2579         (all_iter_stmt_simple): Likewise.
2580         (all_iter_stmt_with_decl): Likewise.
2581         * gcc/c-tree.h (ITERATOR_P): Remove.
2582         (ITERATOR_BOUND_P): Likewise.
2583         (init_iterators): Remove declaration.
2584         (iterator_expand): Likewise.
2585         (iterator_for_loop_start): Likewise.
2586         (iterator_for_loop_end): Likewise.
2587         (iterator_for_loop_record): Likewise.
2588         (push_iterator_stack): Likewise.
2589         (pop_iterator_stack): Likewise.
2590         * gcc/c-typeck.c (decl_constant_value): Don't check ITERATOR_P.
2591         (readonly_warning): Likewise.
2592         * gcc/tree.h (ITERATOR_BOUND_P): Don't mention it.
2594 2000-08-24  Jim Wilson  <wilson@cygnus.com>
2596         * c-common.c (decl_attributes, case A_ALIGN): Revert last change.
2597         Copy type in a TYPE_DECL, just like pushdecl does.
2599 2000-08-24  Richard Henderson  <rth@cygnus.com>
2601         * toplev.c (main): Enable flag_reorder_blocks at -O2.
2603 2000-08-24  Zack Weinberg  <zack@wolery.cumb.org>
2605         * ggc-page.c (alloc_page): If HAVE_MMAP_ANYWHERE and we're
2606         asked for one page, allocate GGC_QUIRE_SIZE of them and put
2607         the extras on the free list.
2608         (release_pages): Clean up.
2609         (ggc_set_mark): Don't adjust G.allocated here...
2610         (sweep_pages): ... do it here.
2612 2000-08-24  Zack Weinberg  <zack@wolery.cumb.org>
2614         * cppfiles.c (read_include_file): Rearrange initializations.
2616 2000-08-24  Richard Henderson  <rth@cygnus.com>
2618         * stmt.c (expand_asm_operands): Treat EXTRA_CONSTRAINT like g or X.
2620         * config/ia64/ia64-protos.h: Update.
2621         * config/ia64/ia64.c (gr_register_operand): New.
2622         (fr_register_operand, grfr_register_operand): New.
2623         (gr_nonimmediate_operand, grfr_nonimmediate_operand): New.
2624         (grfr_reg_or_8bit_operand): New.
2625         (gr_reg_or_0_operand): Rename from reg_or_0_operand and
2626         use gr_register_operand.
2627         (gr_reg_or_5bit_operand, gr_reg_or_6bit_operand): Likewise.
2628         (gr_reg_or_8bit_operand, gr_reg_or_8bit_adjusted_operand): Likewise.
2629         (gr_reg_or_8bit_and_adjusted_operand): Likewise.
2630         (gr_reg_or_14bit_operand, gr_reg_or_22bit_operand): Likewise.
2631         (fr_reg_or_fp01_operand): Likewise.
2632         (not_postinc_memory_operand): New.
2633         (ia64_split_timode): Remove unused variables.
2634         (rtx_needs_barrier): Check arguments to cmpxchg.
2635         (builtin_description): Remove.
2636         (bdesc_2argsi, bdesc_2argdi): Remove.
2637         (ia64_init_builtins): Declare all builtins directly.
2638         (ia64_expand_fetch_and_op): Rewrite to be called from
2639         ia64_expand_builtin directly.  Use expand_binop and co.
2640         (ia64_expand_op_and_fetch): Likewise.
2641         (ia64_expand_compare_and_swap): Likewise.
2642         (ia64_expand_binop_builtin): Remove.
2643         (ia64_expand_lock_test_and_set): New.
2644         (ia64_expand_lock_release): New.
2645         (ia64_expand_builtin): Use them.
2646         * config/ia64/ia64.h (CONSTRAINT_OK_FOR_S): New.
2647         (EXTRA_CONSTRAINT): Use it.
2648         (PREDICATE_CODES): Update.
2649         * config/ia64/ia64.md (*): Use gr_register_operand and co.
2650         (mf): Indicate that we set memory as well as use it.
2651         (fetchadd_acq_si): Show memory being modified as well.
2652         (fetchadd_acq_di, cmpxchg_acq_si, cmpxchg_acq_di): Likewise.
2653         (val_compare_and_swap_si, val_compare_and_swap_di): Remove.
2654         (lock_test_and_set_si, lock_test_and_set_di): Remove.
2655         (fetch_and_add_si, fetch_and_sub_si, fetch_and_or_si): Remove.
2656         (fetch_and_and_si, fetch_and_xor_si, fetch_and_nand_si): Remove.
2657         (fetch_and_add_di, fetch_and_sub_di, fetch_and_or_di): Remove.
2658         (fetch_and_and_di, fetch_and_xor_di, fetch_and_nand_di): Remove.
2659         (add_and_fetch_di, sub_and_fetch_di, or_and_fetch_di): Remove.
2660         (and_and_fetch_di, xor_and_fetch_di, nand_and_fetch_di): Remove.
2661         (add_and_fetch_si, sub_and_fetch_si, or_and_fetch_si): Remove.
2662         (and_and_fetch_si, xor_and_fetch_si, nand_and_fetch_si): Remove.
2663         * config/ia64/ia64intrin.h (*): Cast result to the appropriate
2664         return type.  Pretty print definitions.
2666 2000-08-24  Jim Wilson  <wilson@cygnus.com>
2668         * config/ia64/ia64.md (movdi): Don't call gen_movdi_symbolic if
2669         we have a SYMBOL_REF with SYMBOL_REF_FLAG set.
2671 2000-08-24  Jason Merrill  <jason@redhat.com>
2673         * dwarf2out.c (AT_flag, AT_int, AT_unsigned, AT_string, AT_ref,
2674         AT_loc, AT_addr, AT_lbl): Abort on unsuitable input.
2675         (get_AT_low_pc, get_AT_hi_pc, get_AT_string, get_AT_flag,
2676         get_AT_unsigned, get_AT_ref): Don't call them if get_AT fails.
2678 2000-08-24  Greg McGary  <greg@mcgary.org>
2680         * optabs.c (init_optabs): Initialize fixtab, fixtrunctab, floattab,
2681         and extendtab within their proper array boundaries.
2682         * emit-rtl.c (init_emit_once): Pass `const_tiny_rtx' with bounds
2683         for the entire array.
2685         * config/arm/arm.c (arm_override_options): Use ARRAY_SIZE.
2686         * config/alpha/alpha.c (alpha_lookup_xfloating_lib_func): Likewise.
2687         * config/avr/avr.c (order_regs_for_local_alloc): Likewise.
2688         * config/fr30/fr30.c (fr30_print_operand): Likewise.
2689         * config/i386/dgux.c (output_options): Likewise.
2690         * config/i386/dgux.h (ASM_FILE_START): Likewise.
2691         * config/m88k/m88k.c (output_options): Likewise.
2692         * config/m88k/m88k.h (ASM_FILE_START): Likewise.
2693         * config/mcore/mcore.c (mcore_output_inline_const_forced,
2694         layout_mcore_frame, handle_structs_in_regs): Likewise.
2695         * config/mips/mips.c (output_block_move): Likewise.
2696         * config/rs6000/rs6000.c (rs6000_override_options,
2697         rs6000_file_start): Likewise.
2698         * config/sparc/sparc.c (sparc_add_gc_roots): Likewise.
2699         * fixinc/fixfixes.c (FIX_TABLE_CT): Likewise.
2700         * fixinc/fixtests.c (TEST_TABLE_CT): Likewise.
2701         * builtins.c (expand_builtin_setjmp): Likewise.
2702         * expr.c (safe_from_p): Likewise.
2703         * flow.c (life_analysis): Likewise.
2704         * fold-const.c (size_int_type_wide): Likewise.
2705         * gcc.c (translate_options, init_spec, set_spec, main): Likewise.
2706         * genattrtab.c (make_length_attrs): Likewise.
2707         * genopinit.c (gen_insn): Likewise.
2708         * genrecog.c (NUM_KNOWN_PREDS, NUM_SPECIAL_MODE_PREDS): Likewise.
2709         * global.c (global_alloc): Likewise.
2710         * local-alloc.c (find_free_reg): Likewise.
2711         * mips-tdump.c (print_symbol): Likewise.
2712         * mips-tfile.c (parse_def, parse_input): Likewise.
2713         * reload1.c (NUM_ELIMINABLE_REGS): Likewise.
2714         * stmt.c (expand_nl_goto_receiver): Likewise.
2715         * stor-layout.c (set_sizetype): Likewise.
2716         * varasm.c (decode_reg_name): Likewise.
2717         * toplev.c (decode_f_option, decode_W_option,
2718         set_target_switch, print_switch_values): Likewise.
2719         (NUM_ELEM): Remove macro.
2720         (display_help, main): s/NUM_ELEM/ARRAY_SIZE/
2722 2000-08-24  Greg McGary  <greg@mcgary.org>
2724         * tree.h (enum tree_index): New member `TI_MAIN_IDENTIFIER'.
2725         (MAIN_NAME_P, main_identifier_node): New macros.
2726         * c-common.c (c_common_nodes_and_builtins): Init main_identifier_node.
2727         * c-decl.c (start_decl, grokdeclarator, start_function,
2728         store_parm_decls, finish_function): Use MAIN_NAME_P.
2729         * config/avr/avr.c (function_prologue, function_epilogue): Likewise.
2730         * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Likewise.
2731         * config/i386/win32.h (SUBTARGET_PROLOGUE): Likewise.
2732         * config/pdp11/pdp11.c (output_function_prologue): Likewise.
2734 2000-08-24  Greg McGary  <greg@mcgary.org>
2736         * cppfiles.c (actual_directory): Don't write beyond `dir'
2737         when it contains "".
2738         * real.c (asctoeg): Stay within bounds of etens[][].
2740 2000-08-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2742         * dependence.c (dependence_string, direction_string,
2743         dump_one_node, dump_node_dependence): Hide unused identifiers.
2744         (get_low_bound, normalize_coefficients): Match definition to
2745         static prototype.
2746         (get_one_coefficient): Initialize variables `value0_is_idx' and
2747         `value1_is_idx'.
2748         (ziv_test, gcd_test): Mark parameters with ATTRIBUTE_UNUSED.
2749         (ziv_test): Delete variable `idx', use parameter `sub' instead.
2750         (direction_merge): Avoid automatic aggregate initialization.
2751         (have_dependence_p): Use `src' not `dest' to set `src_idx'.
2752         Initialize variables `dest_idx' and `src_idx'.
2753         (end_dependence_analysis): Avoid C89 style function definition.
2755 2000-08-24  Joseph S. Myers  <jsm28@cam.ac.uk>
2757         * c-common.c (time_char_table): Don't allow width with %F.
2758         (check_format_info): Don't allow "Z" length with scanf.
2760 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
2762         * diagnostic.c (finish_diagnostic): Define.
2763         (output_do_printf): Use wrap_text instead of output_add_string.
2764         (default_print_error_function): Avoid embedded '\n'.
2766         * diagnostic.h (flush_diagnostic_buffer): Declare.
2768 2000-08-23  Alexandre Oliva  <aoliva@redhat.com>
2770         * dependence.c: Replace `[][]' with `[][MAX_SUBSCRIPTS]'.
2772 2000-08-23  Hans-Peter Nilsson  <hp@axis.com>
2774         * Makefile.in (GCC_PASSES): Add specs.
2776 2000-08-23  Jim Wilson  <wilson@cygnus.com>
2778         * frame.h (IA64_UNW_EHANDLER, IA64_UNW_UHANDLER): New.
2779         * config/ia64/frame-ia64.c (__get_personality): Return zero if neither
2780         EHANDLER nor UHANDLER bit is set.
2781         (__get_except_table): Likewise.
2783 2000-08-23  Nick Clifton  <nickc@redhat.com>
2785         * config/arm/lib1funcs.asm: Replace upper case condition codes
2786         with lower case versions.
2788         * config/arm/arm.h (STRUCT_VALUE): Define.
2789         (STRUCT_VALUE_REGNUM): Delete.
2791 2000-08-23  Zack Weinberg  <zack@wolery.cumb.org>
2793         * cpphash.h (IN_I): New flag for directive table.
2794         * cpplib.c (DIRECTIVE_TABLE): Mark #define, #undef, #ident, and
2795         #pragma with IN_I.
2796         (_cpp_check_directive): If -fpreprocessed, execute directives
2797         marked with IN_I.  Issue no warnings in this case.
2798         * cpplex.c (_cpp_get_token): Expand no macros if -fpreprocessed.
2800 2000-08-23  Joseph S. Myers  <jsm28@cam.ac.uk>
2802         * c-common.c (print_char_table): Allow 'I' flag with %d, %i and
2803         %u.
2804         (check_format_info): Support printf 'I' flag; warn about it with
2805         -pedantic.
2807 2000-08-23  Richard Earnshaw  (rearnsha@arm.com)
2809         * arm.c (arm_expand_prologue): Ensure that the stack-adjustment
2810         barrier can't be ignored by the alias analysis code.
2812 2000-08-12  Eli Zaretskii  <eliz@is.elta.co.il>
2814         * fixinc/inclhack.def (sysv68_string): Fix the Sed script so it
2815         works inside fixincl.
2817 Wed Aug 23 04:55:48 2000  Alexandre Oliva  <aoliva@redhat.com>
2819         * simplify-rtx.c (simplify_rtx): Don't pass VOIDmode to
2820         simplify_relational_operation() unless both operands are of
2821         VOIDmode.
2822         * cse.c (fold_rtx): Likewise.
2824 Tue Aug 22 23:53:27 EDT 2000  John Wehle  (john@feith.com)
2826         * rtlanal.c (rtx_unstable_p): The pic register is stable
2827         (within one function) and the actual rtx should be used
2828         when checking the registers.
2829         (rtx_addr_can_trap_p): Pic memory addresses can't trap.
2831         * alias.c (true_dependence, write_dependence_p): Fix
2832         bug in previous patch.
2834         * i386.c (ix86_GOT_alias_set): New.
2835         (legitimize_pic_address): Use it.
2837         * rtlanal.c (rtx_unstable_p): An unchanging MEM is
2838         only stable if its address is stable.
2839         (rtx_varies_p): An unchanging MEM can't vary if
2840         its address doesn't vary.
2842 2000-08-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2844         * c-parse.in (unop +): Restrict -Wtraditional warnings to user code.
2846 2000-08-22  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2848         * vax.h (ASM_SPEC): Pass `-J' to assembler.
2849         * x-vax-gcc: New file for bootstrapping with gcc.
2850         * x-vax: Use X_CFLAGS rather than X_CPPFLAGS to pass `-J'.
2851         * configure.in: Use x-vax-gcc with gcc.
2852         * configure: Rebuilt.
2854 Tue Aug 22 21:21:05 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2856         * toplev.c (rest_of_compilation): Rebuild label notes after
2857         post-reload splitting pass if new labels have been created.
2859 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
2861         * diagnostic.h (output_buffer_state): New macro.
2862         * diagnostic.c (diagnostic_for_decl, sorry,
2863         default_print_error_function, output_do_verbatim,
2864         report_diagnostic, report_problematic_module): Use it.
2865         (wrap_text): Tweak.
2866         (output_format): Use wrap_text instead of maybe_wrap_text.
2868 2000-08-22  Nick Clifton  <nickc@redhat.com>
2870         * config/arm/lib1funcs.asm (ARM_DIV_MOD_BODY): New macro.
2871         Common code for ARM divide and modulus functions.
2872         (THUMB_DIV_MOD_BODY): New macro. Thumb equivalent of
2873         ARM_DIV_MOD_BODY.
2874         (FUNC_END): New macro: Common code at the end of the division and
2875         modulo functions.
2876         (THUMB_FUNCTION_START): New macro:  Common code at the start of
2877         Thumb functions.
2878         (__divsi3, __udivsi3, __modsi3, __umodsi3): Use new macros.
2880 Tue Aug 22 20:34:52 2000  Kaz Kojima <kkojima@rr.iij4u.or.jp>
2882         * config/sh/sh.md (cmpeqdi_t splitter): Fix a reverse testing.
2884         * config/sh/sh.c (prepare_scc_operands): Apply force_reg to
2885         sh_compare_op1 when the mode is DImode and sh_compare_op1 isn't
2886         const0_rtx.
2888 2000-08-22  Nick Clifton  <nickc@redhat.com>
2890         * config/arm/lib1funcs.asm (__umodsi3): Before performing any
2891         restorative additions, test for bottom bits of IP being set,
2892         rather than relying upon the RORs not matching.
2893         (__modsi3): Ditto.
2895 2000-08-22  David Edelsohn  <edelsohn@gnu.org>
2897         * aix.h (ASM_DECLARE_FUNCTION_NAME): Call named_section() or
2898         text_section() as appropriate instead of emitting text csect
2899         pseudo-op directly.
2900         (TEXT_SECTION_ASM_OP): Only require default 32-bit alignment.
2901         (UNIQUE_SECTION): Define macro.
2902         (ASM_OUTPUT_SECTION_NAME): Define macro.
2903         * rs6000.c (rs6000_override_options): Disable -ffunction-sections
2904         on AIX if debugging and -fdata-sections always.
2906 2000-08-22  Steven King  <sxking@uswest.net>
2908         * config/float-i386.h (LDBL_EPSILON): Remove __convert_long_double
2909         machinery.
2910         (LDBL_MAX): Same here.
2912 2000-08-22  Richard Henderson  <rth@cygnus.com>
2914         * flow.c (tidy_fallthru_edge): Update b->end properly.
2916 2000-08-22  Stan Cox  <scox@redhat.com>
2918         * Makefile.in (OBJS): Add dependence.o.
2919         * dependence.c: New file.
2921 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>, John David Anglin  <dave.anglin@nrc.ca>
2923         * calls.c (check_sibcall_argument_overlap_1): Adjust for
2924         ARGS_GROW_DOWNWARD.
2925         (check_sibcall_argument_overlap): Likewise.
2927 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>
2929         * invoke.texi (SH Options): Document -m4-nofpu,
2930         -m4-single-only, -m4-single, -m4, -mbigtable, -mfmovd,
2931         -mhitachi, -mnomacsave, -misize, -mpadstruct, -mspace.
2933 2000-08-22  Joseph S. Myers  <jsm28@cam.ac.uk>
2935         * c-common.c (check_format_info): Give the 'some locales' warning
2936         for strftime %Ey rather than the unconditional 'only last 2 digits
2937         of year' one.
2939 2000-08-22  Richard Henderson  <rth@cygnus.com>
2941         * alias.c (init_alias_analysis): Do not register
2942         struct_value_incoming_rtx or static_chain_rtx as pointing
2943         to stack memory.
2945 Tue Aug 22 01:44:43 2000  Jeffrey A Law  (law@cygnus.com)
2947         * protoize.c (munge_compile_params): Fix typo and formatting buglets.
2949 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
2951         * diagnostic.h (report_problematic_module): Declare.
2952         * diagnostic.c (report_problematic_module): New function.
2953         (report_error_function): Tweak.
2955 Tue Aug 22 02:31:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2957         * stmt.c (expand_goto_internal, fixup_gotos): Only check
2958         TYPE_RETURNS_STACK_DEPRESSED for FUNCTION_TYPE.
2960 2000-08-21  Richard Henderson  <rth@cygnus.com>
2962         * flow.c (calculate_global_regs_live): Mark frame pointer live
2963         everywhere before reload.
2965 2000-08-21  Jim Wilson  <wilson@cygnus.com>
2967         * real.c (ereal_from_int, ereal_from_uint, significand_size): Handle
2968         INTEL_EXTENDED_IEEE_FORMAT.
2969         (toe64): Delete INTEL_EXTENDED_IEEE_FORMAT support.  Unconditionally
2970         clear last two bytes of output FP value.
2972 2000-08-21  Graham Stott  <grahams@cygnus.co.uk>
2974         * config/ia64/ia64.h (REDO_SECTION_INFO_P): Change decl to DECL.
2976 2000-08-21  Jakub Jelinek  <jakub@redhat.com>
2978         * unroll.c (loop_find_equiv_value): If ret is modified between
2979         insn and loop_start, ret might not be equivalent to reg.
2981 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
2983         * c-common.c (init_dollar_format_checking,
2984         maybe_read_dollar_number, finish_dollar_format_checking): New
2985         functions.
2986         (dollar_arguments_used, dollar_arguments_count,
2987         dollar_first_arg_num, dollar_max_arg_used, dollar_format_warned):
2988         New variables.
2989         (check_format_info): Support $ formats for scanf and printf width
2990         and precision.  Always increment format_chars to advance past the
2991         '*' of precision, not just when the format parameters are
2992         available to check.
2994 2000-08-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2996         * mips.c (block_move_loop, expand_block_move,
2997         function_arg_partial_nregs, save_restore_insns, function_prologue,
2998         mips_expand_prologue, RA_MASK): Avoid using the `U' integer
2999         constant suffix.
3000         (function_arg_advance, function_arg): Match argument to format
3001         specifier `%p'.
3003 2000-08-21  Nix  <nix@esperi.demon.co.uk>
3005         * gcc.c (do_spec_1): Implement %j spec flag.
3006         Remove dead comment.
3008         * gcc.texi (The Configuration File): Document HOST_BIT_BUCKET.
3009         * system.h (HOST_BIT_BUCKET): Default to "/dev/null".
3010         * config/i386/xm-dos.h (HOST_BIT_BUCKET): Define as "NUL".
3011         * config/i386/xm-os2.h, config/winnt/winnt.h: Likewise.
3013         * protoize.c (munge_compile_params): Use HOST_BIT_BUCKET (if
3014         writable) instead of hardcoded value.
3016         * toplev.c (compile_file): Output to a file even if -fsyntax-only.
3018         * gcc.c, config/i386/xm-dos.h, config/i386/xm-os2.h: Kill
3019         MKTEMP_EACH_FILE.
3021         * gcc.c (cc1_options): Do not process -o or run the assembler if
3022         -fsyntax-only.
3023         * objc/lang-spec.h: Likewise.
3025 2000-08-21  Eli Zaretskii  <eliz@is.elta.co.il>
3027         * fixinc/fixincl.c (fix_with_system): Pipe the output of
3028         "external" fixes through `cat', to avoid truncating the input
3029         file by redirection.
3031 2000-08-21  Jakub Jelinek  <jakub@redhat.com>
3033         * config/i386/i386.md (lea_general_1): Copy insn condition to split
3034         condition.
3035         (lea_general_2, lea_general_3): Likewise.
3037 2000-08-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3039         * c-decl.c (duplicate_decls, define_label): Restrict -Wtraditional
3040         warnings to user code.
3042         * c-lex.c (readescape, yylex): Likewise.
3044         * c-typeck.c (store_init_value, process_init_element): Likewise
3045         (c_expand_start_case): Format.
3047 2000-08-18  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
3049         * mips/linux.h (LINK_SPEC): Use %(endian_spec).
3051         * mips/mips.h: Change LINKER_ENDIAN_SPEC to ENDIAN_SPEC
3052         and linker_endian_spec to endian_spec.
3053         (ENDIAN_SPEC): Add %{EB} and %{EL}.
3054         (LINK_SPEC): Remove %{EB} and %{EL}.
3055         (ASM_SPEC): Likewise.  Use %(endian_spec).
3057 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3059         * c-tree.h (flag_hosted): Move declaration from here...
3060         * c-common.h (flag_hosted): ... to here.
3061         (flag_noniso_default_format_attributes): New declaration.
3062         * c-decl.c (flag_noniso_default_format_attributes): New variable.
3063         (c_decode_option): Set it appropriately for options choosing
3064         language standard variant.
3065         * c-common.c (init_function_format_info): Only provide default
3066         format attributes if flag_hosted.  Only provide the gettext
3067         formats if flag_noniso_default_format_attributes.  Update
3068         comments.
3069         (check_format_info): Disable treatment of %a as a scanf flag in
3070         C99 mode.
3072 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3074         * c-common.c (scan_char_table): Add 'w' to flags for all formats
3075         except 'n'.
3076         (check_format_info): Set 'wide' for scanf format widths.  Warn for
3077         a zero scanf width.  Make the check for writing into a constant
3078         object at the first level of indirection; at later levels, warn if
3079         any type qualifiers are encountered.
3081 Mon Aug 21 07:41:12 2000  Jeffrey A Law  (law@cygnus.com)
3083         * reload.c (reload_inner_reg_of_subreg): New function broken out of
3084         push_reload.
3085         (push_reload): Use reload_inner_reg_of_subreg.
3086         (combine_reloads): Do not combine reloads if the input reload
3087         is a SUBREG in which the inner part will need reloading.
3089         * global.c (global_alloc): Avoid passing dumpfile argument to
3090         reload routines.
3091         * toplev.c (rest_of_compilation): Likewise.
3092         * reload.h (reload): Remove dumpfile argument.  Callers changed.
3093         (debug_reload, debug_reload_to_stream): Move prototypes here.
3094         * rtl.h  (reload): Remove dumpfile argument.
3095         * reload.c (debug_reload): Remove prototype.
3096         (debug_reload_to_stream): Likewise.
3097         * reload1.c: Avoid passing dumpfile around, rely on rtl_dump_file
3098         instead.
3100 2000-08-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3102         * diagnostic.c (context_as_prefix): Export.
3103         (need_error_newline): Remove.
3104         (lang_diagnostic_starter, lang_diagnostic_finalizer): New objects.
3105         (error_module_changed, record_last_error_module,
3106         error_function_changed, record_last_error_function): New functions.
3107         (initialize_diagnostics): Default intialize
3108         lang_diagnostic_starter, lang_diagnostic_finalizer.
3109         (init_output_buffer): Tweak.
3110         (file_name_as_prefix): New function.
3111         (announce_function, default_print_error_function,
3112         report_error_function, set_diagnostic_context): Tweak.
3114 2000-08-21  Richard Earnshaw  <rearnsha@arm.com>
3116         * flow.c (init_propagate_block_info): Handle SUBREG in a jump
3117         condition expression.
3119 2000-08-20  Richard Henderson  <rth@cygnus.com>
3121         * flow.c (merge_blocks_nomove): Don't seek back past the bb note.
3123 2000-08-20  Zack Weinberg  <zack@wolery.cumb.org>
3125         * cppinit.c (cpp_init): Set global flag when called.
3126         (cpp_reader_init): Bomb out if cpp_init hasn't been called.
3128 Sun Aug 20 01:41:35 2000  Dennis Chernoivanov  <cdi@sparc.spb.su>
3130         * cpplex.c (cpp_scan_buffer): Move `output_line_command' just
3131         before `process_directive' so that newlines won't be missed
3132         for directives.
3133         (cpp_printf): Increment `print->lineno' when newline is emitted.
3135         * cppmain.c (cb_ident): Likewise.
3136         (cb_define): Likewise.
3137         (cb_undef): Likewise.
3138         (cb_include): Likewise.
3139         (cb_def_pragma): Likewise.
3140         (dump_macros_helper): Likewise.
3142 2000-08-20  Richard Henderson  <rth@cygnus.com>
3144         * config/ia64/ia64.c (emit_insn_group_barriers): Stop if ar.lc
3145         assigned before a loop.
3147         * config/ia64/ia64.md (ashlsi3): Zero extend the shift count.
3148         (ashrsi3, lshrsi3): Likewise.
3150 2000-08-20  Gabriel Dos Reis  <gdr@codesourcery.com>
3152         * c-lang.c: #include diagnostic.h
3153         (c_tree_printer): New function.
3154         (lang_init): Initialize lang_printer.
3156         * Makefile.in (c-lang.o): Depends on diagnostic.h
3158 2000-08-20  Gabriel Dos Reis  <gdr@codesourcery.com>
3160         * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic.
3162         * diagnostic.c (default_diagnostic_starter,
3163         default_diagnostic_finalizer): New functions.
3164         (diagnostic_for_asm, diagnostic_for_decl): Tweak.
3165         (pedwarn, pedwarn_with_file_and_line, error,
3166         error_with_file_and_line, fatal, warning,
3167         warning_with_file_and_line): Adjust call to report_diagnostic.
3168         (report_diagnostic): Rework.
3169         (set_diagnostic_context): New function.
3171         * diagnostic.h (struct diagnostic_context): New data structure.
3172         (diagnostic_message, diagnostic_argument_list,
3173         diagnostic_file_location, diagnostic_line_location,
3174         diagnostic_is_warning, diagnostic_starter, diagnostic_finalizer,
3175         diagnostic_finalizer, diagnostic_auxiliary_data): New macros.
3176         (set_diagnostic_context): Declare.
3177         (report_diagnostic): Change prototype.
3179 Sun 20-Aug-2000 09:25:45 BST  Neil Booth  <NeilB@earthling.net>
3181         * fix-header.c (main): Initialize cpplib.
3183 2000-08-19  Michael Meissner  <meissner@redhat.com>
3185         * ifcvt.c (find_if_block): Do not assume that a THEN block has any
3186         instructions in it before checking for indirect jumps.
3188         * ifcvt.c (find_if_block): Do not consider a THEN block that ends
3189         in a indirect jump as a potential for conditional execution.
3191         * d30v.h (d30v_init_expanders): Don't declare here.
3192         * d30v-protos.h (d30v_init_expanders): Declare here with a valid
3193         prototype.
3195 Sat 19-Aug-2000 21:11:45 BST  Neil Booth  <NeilB@earthling.net>
3197         * cpp.texi: Add @section for assertions.
3199 Sat Aug 19 12:37:08 EDT 2000  John Wehle  (john@feith.com)
3201         * loop.c (scan_loop): Use CONST_CALL_P instead of
3202         checking for REG_LIBCALL / REG_RETVAL.
3204 Sat Aug 19 09:18:47 2000  Jeffrey A Law  (law@cygnus.com)
3206         * reload1.c (reload_as_needed): Accept dumpfile argument,
3207         pass it to emit_reload_insns.
3208         (emit_reload_insns): Add new dumpfile argument.  If non-null
3209         then dump the reloads for each insn into the dumpfile.
3210         (reload): Pass dumpfile to reload_as_needed.
3212         * invoke.texi: Clean up linux-gnu vs linux comments.
3214 2000-08-19  Richard Henderson  <rth@cygnus.com>
3216         * config/ia64/ia64.c (reg_or_5bit_operand): New.
3217         (ia64_depz_field_mask): New.
3218         * config/ia64/ia64.h (CONSTRAINT_OK_FOR_R): New.
3219         (PREDICATE_CODES): Update.
3220         * config/ia64/ia64.md: Update commentary.
3221         (depz_internal): New.
3222         (ashlsi3): Implement directly.
3223         (ashrsi3, lshrsi3): Simplify; rely on extv and extzv for constants.
3224         (ashldi3): Use shladd.
3225         * config/ia64/ia64-protos.h: Update.
3227 2000-08-18  Zack Weinberg  <zack@wolery.cumb.org>
3229         * toplev.c (independent_decode_option): Always process -g.
3230         Remove third argument, now unused.  Adjust caller to match.
3232 2000-08-18  Richard Henderson  <rth@cygnus.com>
3234         * combine.c (make_compound_operation): Break after creating
3235         the extraction.
3237 2000-08-18  Zack Weinberg  <zack@wolery.cumb.org>
3239         * cpplib.c (cpp_register_pragma_space): Just return if the
3240         namespace is already registered.
3242 2000-08-18  Ray Essick <essick@ddna.labs.mot.com> & Nick Clifton  <nickc@redhat.com>
3244         * config/mcore/mcore.md (rotlsi3): Allow allow rotations by a
3245         constant amount.  Do not generate ROTL instruction.
3247 Fri Aug 18 16:22:20 2000  Alexandre Oliva  <aoliva@redhat.com>
3249         * config/sh/elf.h: Do not include sh/sh.h.
3250         * config/sh/rtems.h: Likewise.
3251         * config/sh/rtemself.h: Do not include sh/elf.h.
3252         * configure.in: Get them included with `tm_file's.
3253         * configure: Rebuilt.
3255         * config/sh/sh.md (fpu_switch0, fpu_switch1): Simplify.
3256         * config/sh/sh.c (fpscr_set_from_mem): Use them.
3258 Fri Aug 18 14:23:18 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3260         * stor-layout.c (compute_record_type): Don't use mode of single
3261         field as mode of record if not integer mode of same type.
3263         * regmove.c (perhaps_ends_bb_p): New function.
3264         (optimize_reg_copy_1, optimize_reg_copy_2): Call it.
3265         (optimize_reg_copy_3, fixup_match_2, regmove_optimize): Likewise.
3266         (fixup_match_1): Likewise.
3267         (fixup_match_1, combine_stack_adjustments_for_block): Add casts to
3268         avoid signed/unsigned warnings.
3270         * function.c (fixup_var_refs_1, case MEM): Update CODE after
3271         updating X.
3273 Fri 18-Aug-2000 18:33:45 BST  Neil Booth  <NeilB@earthling.net>
3275         * cpphash.h: Use HAVE_DESIGNATED_INITIALIZERS.
3276         (_cpp_trigraph_map): Declaration moved from cpplex.c
3278         * cppinit.c: Define _cpp_trigraph_map.  Use UCHAR_MAX + 1
3279         instead of 256.  Use consistent test for designated initializers.
3280         (cpp_init): Initialize trigraph_map.
3281         (initialize_standard_includes, parse_option):  Use memcmp
3282         instead of strncmp.
3284         * cpplex.c (init_trigraph_map): Remove.
3285         (trigraph_ok, trigraph_replace, lex_line): Refer to
3286         _cpp_trigraph_map.
3288         * cpplib.c (str_match, WARNING, ERROR, ICE): Delete.
3289         (do_unassert): Remove unused "next" local.
3291         * system.h (HAVE_DESIGNATED_INITIALIZERS): New prototype.
3293 2000-08-18  Emmanuel Marty  <emarty@suntech.fr>
3295         * arm/lib1funcs.asm (_umodsi3 THUMB VARIANT): Restore deleted return
3296         insn.
3298 2000-08-17  Richard Henderson  <rth@cygnus.com>
3300         * config/ia64/ia64.c (spill_restore_mem): Handle emitting
3301         the first insn in a sequence.
3303 Thu Aug 17 22:40:05 EDT 2000  John Wehle  (john@feith.com)
3305         * alias.c (true_dependence, write_dependence_p): A read
3306         involving a label_ref or the constant pool doesn't create
3307         a dependency.
3309         * rtl.h (unchanging): Improve documentation.
3311 2000-08-17  Rodney Brown  <RodneyBrown@mynd.com>
3313         * cse.c (insert_regs): Remove unused `regno'.
3315 2000-08-17  Neil Booth  <NeilB@earthling.net>
3317         * (cppinit.c) merge_include_chains: Use remove_dup_dir,
3318         remove_dup_dirs.  If qtail == brack, remove brack not
3319         qtail.
3320         (remove_dup_dir, remove_dup_dirs): New functions.
3322 2000-08-17  Neil Booth  <NeilB@earthling.net>
3324         * cppinit.c (cpp_cleanup): Free include dir chains.
3325         * cpplib.c (do_undef): Let _cpp_free_definition make the node void.
3326         (do_unassert): Free the assert with _cpp_free_definition.
3327         * cppmacro.c (_cpp_free_definition): Free memory allocated for
3328         assertions.  Make the node a T_VOID node.
3330 2000-08-17  Neil Booth  <NeilB@earthling.net>
3332         * cppinit.c (path_include, append_include_chain):
3333         Remove 2nd parameter (struct cpp_pending *).
3334         (path_include, initialize_standard_includes, cpp_handle_option):
3335         Update callers appropriately.
3336         (cpp_handle_option): Use pend.
3338 2000-08-17  Neil Booth  <NeilB@earthling.net>
3340         * cppinit.c (sort_options): Remove, put functionality in
3341         cpp_init.
3342         (cpp_init): New.
3343         (initialize_builtins): Free memory.
3344         (cpp_start_read): Move init_IStable to cpp_init.
3346         * cpplib.h (cpp_init): New prototype.
3347         * cppmain.c (main): Call cpp_init.
3349 Thu Aug 17 13:20:32 EDT 2000  John Wehle  (john@feith.com)
3351         * rtlanal.c (rtx_unstable_p): Use CONSTANT_P.
3352         (rtx_unstable_p, rtx_varies_p): Process vectors.
3354 2000-08-16  Niibe Yutaka  <gniibe@m17n.org>, Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3356         * config/sh/lib1funcs.asm (GLOBAL): Define.  Use for all
3357         references to GLOBAL symbols.  Use LOCAL where appropriate.
3359 2000-08-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3361         * configure.in (*-ibm-aix4.[12]*): Delete test for gnu ld.  Always
3362         use t-aix41 when host == target.
3364 2000-08-16  Richard Henderson  <rth@cygnus.com>
3366         * reload.c (push_secondary_reload): Revert last change.
3367         If we use a reload_in/out pattern, make the when the same
3368         as the primary reload.
3369         (find_reloads): Likewise.
3371 2000-08-16  Manfred Hollstein  <manfredh@redhat.com>
3373         * configure.in (libstdcxx-v3): Fix test.
3374         * configure: Regenerate.
3376 Wed Aug 16 08:10:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3378         * calls.c (calls_function_1, expand_call): Only test
3379         TYPE_RETURNS_STACK_DEPRESSED for FUNCTION_TYPE.
3380         * function.c (thread_prologue_and_epilogue_insns): Likewise.
3382 2000-08-16  Richard Henderson  <rth@cygnus.com>
3384         * combine.c (simplify_shift_const): Revert previous two
3385         changes.  If SHIFT_COUNT_TRUNCATED, crop the shift count
3386         before the main loop.
3388 2000-08-15  Richard Henderson  <rth@cygnus.com>
3390         * combine.c (simplify_shift_const): Bound shift count when
3391         combining shifts.
3393 Tue Aug 15 17:33:05 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3395         * calls.c (ECF_SP_DEPRESSED): New macro.
3396         (calls_function_1): Treat calling sp-depressed function as alloca.
3397         (emit_call_1): Don't adjust SP if calling sp-depressed function.
3398         (expand_call): Set ECF_SP_DEPRESSED if TYPE_RETURNS_STACK_DEPRESSED.
3399         If sp-depressed, ensure block saves and restores SP.
3400         * fold-const.c (extract_muldiv): Only check TYPE_IS_SIZETYPE
3401         for INTEGER_TYPE.
3402         * function.c (keep_stack_depressed): New function.
3403         (thread_prologue_and_epilogue_insns): Call it.
3404         * print-tree.c (print_node): Use HOST_WIDE_INT_PRINT_UNSIGNED
3405         to print DECL_OFFSET_ALIGN.
3406         Print no-force-blk and transparent-union flags properly.
3407         * stmt.c (expand_goto_internal): Don't restore stack if last block
3408         and function returns with sp depressed.
3409         (fixup_gotos): Likewise.
3410         (save_stack_pointer): New function, from code in expand_decl.
3411         (expand_decl): Call new function.
3412         * tree.h (TYPE_IS_SIZETYPE): Call INTEGER_TYPE_CHECK.
3413         (TYPE_RETURNS_STACK_DEPRESSED): New macro.
3414         (save_stack_pointer): New declaration.
3416         * diagnostic.c (fatal_function): New variable.
3417         (set_fatal_function): New function.
3418         (fatal): Call it.
3419         * diagnostic.h (set_fatal_function): New declaration.
3421 2000-08-15  William Cohen  <wcohen@redhat.com>
3423         * config/sh/elf.h (DWARF2_DEBUGGING_INFO): Defined.
3424         (PREFERRED_DEBUGGING_TYPE): Set to dwarf2 info.
3425         (DWARF2_ASM_LINE_DEBUG_INFO): Defined.
3427 2000-08-15  Richard Henderson  <rth@cygnus.com>
3429         * flow.c (mark_used_reg): Set reg_cond_reg appropriately.
3431 2000-08-15  Richard Earnshaw <rearnsha@arm.com>
3433         * arm.c (arm_function_ok_for_sibcall): New function.
3434         * arm.h (FUNCTION_OK_FOR_SIBCALL): Define.
3435         * arm.md (call expanders): Don't check here for calls that can't
3436         be sibling calls.
3438 2000-08-15  Richard Earnshaw <rearnsha@arm.com>
3440         * arm.md (splits generating cond_exec): Disable.
3442 2000-08-15  Richard Earnshaw <rearnsha@arm.com>
3444         * arm/linux-elf.h (text_section): Delete declaration.
3446 2000-08-15  Richard Earnshaw <rearnsha@arm.com>
3448         ARM support for unordered FP operations.
3449         * arm-protos.h (arm_comparison_operator): Declare.
3450         * arm.c (arm_comparison_operator): New function.
3451         (arm_select_cc_mode): Add unordered comparison codes.
3452         (get_arm_condition_code): Likewise.
3453         (arm_final_prescan_insn): Can't handle unordered jumps that can't
3454         be done in one insn.
3455         * arm.h (PREDICATE_CODES): Add arm_comparison_operator.
3456         * arm.md (all uses of comparison_operator): Replace with
3457         arm_comparison_operator.
3458         (bunordered, bordered, bugt, bunlt, bunge, bunle, buneq, bltgt): New
3459         expands.
3460         (arm_buneq, arm_bltgt, arm_buneq_reversed, arm_bltgt_reveresed): New
3461         patterns.
3463 Tue Aug 15 00:36:36 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
3465         * gthr-posix.h: Conditionally include <sched.h>; include
3466         <config.h> from libobjc/.
3468 2000-08-14  Richard Henderson  <rth@cygnus.com>
3470         * config/i386/i386.c (legitimize_pic_address): Use Pmode
3471         for all CONSTs.
3473 2000-08-14  Richard Henderson  <rth@cygnus.com>
3475         * configure.in (ia64-*): Set float_format for i386 long double.
3477         * real.c (GET_REAL): Treat 128-bit INTEL_EXTENDED_IEEE_FORMAT
3478         as we would for i386 XFmode.
3479         (PUT_REAL): Likewise.
3480         (endian, ereal_atof, real_value_truncate): Likewise.
3481         (ereal_isneg, toe64, etens, make_nan): Likewise.
3482         * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Likewise.
3484         * config/ia64/ia64-protos.h: Update.
3485         * config/ia64/ia64.c (general_tfmode_operand): New.
3486         (destination_tfmode_operand): New.
3487         (tfreg_or_fp01_operand): New.
3488         (ia64_split_timode): New.
3489         (spill_tfmode_operand): New.
3490         (ia64_expand_prologue): Use TFmode not XFmode.
3491         (ia64_expand_epilogue): Likewise.
3492         (ia64_function_arg): Likewise.
3493         (ia64_function_arg_advance): Likewise.
3494         (ia64_return_in_memory): Likewise.
3495         (ia64_function_value): Likewise.
3496         (ia64_print_operand): Likewise.
3497         (ia64_register_move_cost): Set GR<->FR to 5.
3498         (ia64_secondary_reload_class): Get GR for TImode memory op.
3499         * config/ia64/ia64.h (ROUND_TYPE_SIZE): Remove.
3500         (ROUND_TYPE_ALIGN): Remove.
3501         (LONG_DOUBLE_TYPE_SIZE): Set to 128.
3502         (INTEL_EXTENDED_IEEE_FORMAT): Define.
3503         (HARD_REGNO_NREGS): Use TFmode, not XFmode.
3504         (HARD_REGNO_MODE_OK): Likewise.  Disallow TImode in FRs.
3505         (MODES_TIEABLE_P): Use TFmode, not XFmode.
3506         (CLASS_MAX_NREGS): Likewise.
3507         (ASM_OUTPUT_LONG_DOUBLE): Output by 4 byte hunks.
3508         (PREDICATE_CODES): Update.
3509         * config/ia64/ia64.md (movti): New.
3510         (movti_internal): Use a clobber for memory alternatives.
3511         (reload_inti, reload_outti): New.
3512         (movsfcc_astep): Predicate properly.
3513         (movdfcc_astep): Likewise.
3514         (movxf): Remove.
3515         (movtf): New.
3516         (extendsftf2, extenddftf2): New.
3517         (trunctfsf2, trunctfdf2): New.
3518         (floatditf2, fix_trunctfdi2): New.
3519         (floatunsditf2, fixuns_trunctfdi2): New.
3520         (addtf3, subtf3, multf3, abstf2): New.
3521         (negtf2, nabstf2, mintf3, maxtf3): New.
3522         (maddtf3, msubtf3, nmultf3, nmaddtf3): New.
3523         (cmptf): New.
3524         (fr_spill): Use TFmode, not XFmode.
3525         (fr_restore): Likewise.
3526         * config/ia64/lib1funcs.asm (__divtf3): New.
3527         * config/ia64/t-ia64 (LIB1ASMFUNCS): Add it.
3529 2000-08-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3531         * cse.c (fold_rtx): Avoid empty body in an if-statement.
3533         * doloop.c (doloop_iterations_max, doloop_modify): Avoid using the
3534         `U' integer constant suffix.
3536         * dwarf2out.c (add_subscript_info): Avoid empty body in an
3537         else-statement.
3539         * sparc/sol2.h (__enable_execute_stack): Prototype.
3541 2000-08-14  David Edelsohn  <edelsohn@gnu.org>
3543         * collect2.c: Remove use of AIX import file.
3545         * longlong.h: Test ARCH_PWR not ARCH_POWER.
3547         * rs6000.c (print_operand, case 'E'): Add else.
3549 2000-08-14  Richard Henderson  <rth@cygnus.com>
3551         * config/ia64/ia64.md (movdi): Delay calling ia64_expand_load_address.
3552         (movdi_symbolic): New.
3554 2000-08-14  Jim Wilson  <wilson@cygnus.com>
3556         * config/ia64/ia64.h (ASM_SPEC): Pass -mconstant-gp and -mauto-pic
3557         to GNU as.  For Intel as, pass -M const_gp and -M no_plabel.
3558         * config/ia64/linux.h (ASM_SPEC): Pass -mconstant-gp and -mauto-pic
3559         to GNU as.
3561 2000-08-14  Richard Henderson  <rth@cygnus.com>
3563         * expr.c (emit_group_load): Don't force constants into registers.
3564         Special case source already in the correct mode.
3566 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
3568         * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
3569         * fixinc/inclhack.def: Likewise.
3570         * fixinc/mkfixinc.sh: Likewise.
3571         * configure: Regenerate.
3572         * fixinc/fixincl.x: Regenerate.
3573         * install.texi: Document equivalence of linux and linux-gnu.
3575 Mon Aug 14 18:51:44 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
3577         * cse.c (insert_regs): Also in REG case: When finding an invalid
3578         value, and we make a new quantity, make sure that it won't be
3579         mistaken by for a valid one by mention_regs.
3581 2000-08-13  Ralf Gütlein <ralf.guetlein@aranea.de>
3583         * h8300.md: Remove obsolete peepholes.
3585 2000-08-13  Kazu Hirata  <kazu@hxi.com>
3587         * invoke.texi (H8/300 Options): Fix typos.
3588         * config/h8300.c: Fix formatting.
3589         * config/h8300.h: Fix comment typos.
3590         (OVERRIDE_OPTIONS): Fix formatting.
3592         * function.c: Fix formatting.
3594         * cse.c: Fix formatting.
3596 2000-08-13  Geoff Keating  <geoffk@cygnus.com>
3598         * flow.c (attempt_auto_inc): Remove unused variable `bb'.
3599         (attempt_auto_inc): Suppress parentheses warning.
3600         * function.c (put_reg_into_stack): Remove unused variable `unsigned_p'.
3601         * loop.c (load_mems): Remove `u' suffix in two places.
3602         * config/rs6000/rs6000.c: Remove unnecessary `u' suffixes from
3603         hex constants.
3604         * config/rs6000/rs6000.h: Likewise.
3605         * config/rs6000/sol-c0.c: Prototype some functions.  Remove the
3606         __eabi dummy routine.
3607         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Remove unused
3608         variable `buf_ptr'.
3610         * config/rs6000/rs6000.c (rs6000_select_section): Rewrite to
3611         not put stuff in .sdata unnecessarily.
3612         (rs6000_unique_section): New function.
3613         * config/rs6000/rs6000-protos.h: Add rs6000_unique_section.
3614         * config/rs6000/sysv4.h (UNIQUE_SECTION): Define.
3616         * c-typeck.c (build_array_ref): Don't complain about non-lvalue
3617         arrays in C99.  Don't try to look at DECL_REGISTER of a
3618         COMPONENT_REF.  Don't complain twice about the same error.
3620         * fixinc/inclhack.def (aix_pthread): New fix.
3621         (aix_sysmachine): New fix.
3622         * fixinc/fixincl.x: Regenerate.
3624         * expr.c (expand_expr): Call convert_modes when turning a large
3625         multiply into a small one.
3627 2000-08-12  Geoff Keating  <geoffk@cygnus.com>
3629         * tree.h (DECL_OFFSET_ALIGN): Make the off_align field of
3630         the tree structure an exponent rather than an explicit alignment
3631         so it doesn't overflow.
3632         (SET_DECL_OFFSET_ALIGN): New macro.
3633         * stor-layout.c (place_union_field): Use SET_DECL_OFFSET_ALIGN
3634         rather than DECL_OFFSET_ALIGN.
3635         (place_field): Likewise.
3636         * expmed.c (store_bit_field): Abort on align==0 to avoid
3637         antisocial machine behaviour.
3639 2000-08-12  Richard Henderson  <rth@cygnus.com>
3641         * sibcall.c (uses_addressof): Accept both addressof and
3642         current_function_internal_arg_pointer inside a mem.
3643         (optimize_sibling_and_tail_recursive_call): Fail tail recursion
3644         if current_function_uses_addressof.
3645         * stmt.c (expand_return): Kill tail recursion and HAVE_return
3646         optimizations.
3648 2000-08-11  Richard Henderson  <rth@cygnus.com>
3650         * config/ia64/ia64.md (addsi3): Remove expander.
3651         (subsi3, mulsi3, negsi2, one_cmplsi2): Likewise.
3652         (*addsi3_shladd): New.
3654 2000-08-11  Richard Henderson  <rth@cygnus.com>
3656         * config/ia64/ia64.c (do_spill): Pass cfa offset to move expander.
3657         (do_restore): Likewise.
3658         (gen_movdi_x, gen_fr_spill_x, gen_fr_restore_x): New.
3659         (ia64_expand_prologue, ia64_expand_epilogue): Use them.
3660         (rtx_needs_barrier): Track actual bit manipulation for
3661         ar.unat moves, gr_spill, and gr_restore.
3662         (emit_insn_group_barriers): Special case gr_spill/gr_restore.
3663         (process_set): Don't handle varargs spills.
3664         * config/ia64/ia64.md (gr_spill): Accept cfa offset.  Emit
3665         .mem.offset here instead of in process_set.
3666         (gr_restore): Likewise.
3668 2000-08-11  Richard Henderson  <rth@cygnus.com>
3670         * config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.
3672 2000-08-11  Mark Elbrecht  <snowball3@bigfoot.com>
3674         * gcc.texi (The Configuration File): Document
3675         COLLECT2_HOST_INITIALIZATION, GCC_DRIVER_HOST_INITIALIZATION, and
3676         UPDATE_PATH_HOST_CANONICALIZATION.
3678 2000-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3680         * c-parse.in (cast_expr): Avoid -Wstrict-prototype warnings for
3681         unprototyped function pointer casts on integer constants.
3683 2000-08-11 Laurynas Biveinis <lauras@softhome.net>
3685         * fixproto: Recognize DOS paths with drive letters as absolute paths.
3687 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3689         * extend.texi (Volatiles): Fix typos.
3691 2000-08-11  Kazu Hirata  <kazu@hxi.com>
3693         * flow.c: Fix formatting.
3695 2000-08-11  Richard Henderson  <rth@cygnus.com>
3697         * reload.c (push_secondary_reload): When invoking a reload_{in,out}
3698         pattern, always allocate a tertiary scratch register.
3700         * config/alpha/alpha.md (reload_inqi): Use a DImode scratch.
3701         (reload_inhi): Likewise.
3703 2000-08-11  Richard Henderson  <rth@cygnus.com>
3705         * function.c (put_reg_into_stack): Allow type to be NULL.
3706         (schedule_fixup_var_refs): Likewise.
3707         (gen_mem_addressof): Allow decl to be NULL.
3708         (put_addressof_into_stack): Likewise.
3710         * flow.c (merge_blocks_nomove): Be more careful about
3711         locating the beginning of block A.
3713         * combine.c (simplify_shift_const): Obey SHIFT_COUNT_TRUNCATED.
3715 Thu Aug 10 22:47:09 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
3717         * configure.in:
3718         * configure:
3719         * gthr-posix.h:
3720         * config.in: Reverted the check for <sched.h>.
3722 2000-08-10  Chris Demetriou  <cgd@sibyte.com>
3724         * mips/elf.h (CTOR_SECTION_NAME, DTOR_SECTION_NAME): New
3725         macros define the name of CTOR and DTOR sections.
3726         (CTOR_LIST_BEGIN, CTOR_LIST_END, DTOR_LIST_BEGIN,
3727         DTOR_LIST_END): Change to use attributes to specify
3728         sections.
3729         * mips/elf64.h (CTOR_SECTION_NAME, DTOR_SECTION_NAME,
3730         (CTOR_LIST_BEGIN, CTOR_LIST_END, DTOR_LIST_BEGIN,
3731         DTOR_LIST_END): Same as in mips/elf.h.
3733 2000-08-10  Drew Moseley  <dmoseley@redhat.com>
3735         * config/mn10300/mn10300.h: Added no-crt0 option for explicitly
3736         disabling just crt0.o.
3738 2000-08-10  Richard Earnshaw <rearnshaw@arm.com> & Nick Clifton  <nickc@cygnus.com>
3740         * arm.h (CPP_SPEC): Use sub-spec cpp_interwork.
3741         (CPP_INTERWORK_SPEC, CPP_INTERWORK_DEFAULT_SPEC): New sub-specs.
3742         (EXTRA_SPECS): Add them.
3743         * arm/lib1funcs.asm: Support builds for interworking.
3744         Use macros to eliminate duplicated pieces of code.
3746 2000-08-10  Kazu Hirata  <kazu@hxi.com>
3748         * h8300.c (expand_a_rotate): New.
3749         (emit_a_rotate): Likewise.
3750         (h8300_adjust_insn_length): Add support for the rotate insns.
3751         * h8300.md (rotlqi3): New.
3752         (*rotlqi3_1): Likewise.
3753         (rotlhi3): Likewise.
3754         (*rotlhi3_1): Likewise.
3755         (rotlhi3): Likewise.
3756         (*rotlhi3_1): Likewise.
3757         * h8300-proto.h: Add prototypes for expand_a_rotate and
3758         emit_a_rotate.
3760         * h8300.c: Fix comment typos.
3761         (dosize): Declare the variable amount as unsigned.
3762         (get_shift_alg): Fix a comparison between signed and unsigned.
3763         (emit_a_shift): Likewise.
3764         (h8300_adjust_insn_length): Simplify the code.
3766         * c-decl.c: Fix formatting.
3768 2000-08-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3770         * c-lex.c (parse_float, yylex): For -Wtraditional, issue a
3771         warning about non-traditional numeric constant suffixes.
3773         * cppexp.c (parse_number): Likewise.
3775         * invoke.texi: (-Wtraditional): Document new behavior.
3777 Thu Aug 10 00:11:04 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
3779         * gthr-posix.h: Include auto-host.h. Conditionally include
3780         <sched.h>.
3781         * configure.in: Check for the <sched.h> header file.
3782         * config.in: Added define for HAVE_SCHED_H.
3784 2000-08-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3786         * c-typeck.c (process_init_element): For -Wtraditional, warn about
3787         initialization of unions.
3789         * invoke.texi (-Wtraditional): Document new behavior.
3791 2000-08-09  Zack Weinberg  <zack@wolery.cumb.org>
3793         * configure.in (--enable-c-cpplib): Uncomment.  Use AC_DEFINE
3794         instead of extra_c_flags.
3795         (--enable-c-mbchar): Use AC_DEFINE instead of extra_c_flags.
3796         * configure: Regenerate.
3797         * config.in: Regenerate.
3799         * cpperror.c (cpp_type2name): New function.
3800         * cpplex.c (lex_line): If we issued an error for an invalid
3801         preprocessing directive, discard that logical line.
3802         * cpplib.c (do_line): Call a hook function if the current file
3803         is renamed by #line.
3804         (do_ident): Pass the contents of the string, not the entire
3805         token, to the callback function.
3806         * cpplib.h (CPP_LAST_PUNCTUATOR): New #define.
3807         (cb.rename_file): New hook function.
3808         (cb.ident): Adjust prototype.
3809         (cpp_type2name): Prototype.
3810         * cppmacro.c (dump_macro_args): Correct precedence lossage.
3812         * cppmain.c (cb_ident): Update for changed interface.
3813         (cb_rename_file): New function.
3814         (main): Set rename callback.
3816 2000-08-09  Alexandre Oliva  <aoliva@redhat.com>
3818         * caller-save.c (mark_referenced_regs): Mark partially-overwritten
3819         multi-word registers.
3821 2000-08-08  Joseph S. Myers  <jsm28@cam.ac.uk>
3823         * c-common.c (combine_strings, check_format_info): Refer to ISO C
3824         or ISO C89 instead of ANSI C.
3825         * c-decl.c (grokdeclarator, xref_tag, finish_struct,
3826         build_enumerator, do_case): Likewise.
3827         * c-lex.c (parse_float, yylex): Likewise.
3828         * c-parse.in: Likewise.
3829         * c-typeck.c (common_type, build_array_ref, build_binary_op,
3830         build_unary_op, pedantic_lvalue_warning, build_conditional_expr,
3831         build_c_cast, convert_for_assignment, set_init_index,
3832         set_init_label, c_expand_start_case): Likewise.
3833         * toplev.c (documented_lang_options, display_help): Likewise.
3835 2000-08-08  Kazu Hirata  <kazu@hxi.com>
3837         * h8300.c: Fix formatting.
3838         * h8300.h: Likewise.
3839         * h8300.md: Likewise.
3840         (movsi_h8300hs): Fix formatting of the resulting assembly code.
3842         * reload1.c: Fix formatting.
3844 2000-08-08  Rodney Brown  <RodneyBrown@mynd.com>
3846         * alpha/alpha.c (alpha_emit_xfloating_libcall):
3847         Use GEN_CALL_VALUE define.
3848         * alpha/alpha.md (untyped_call): Use GEN_CALL define.
3849         * clipper/clipper.md (untyped_call): Likewise.
3850         * dsp16xx/dsp16xx.md (untyped_call): Likewise.
3851         * fx80/fx80.md (untyped_call): Likewise.
3852         * mips/mips.md (untyped_call): Likewise.
3853         * ns32k/ns32k.md (untyped_call): Likewise.
3854         * pa/pa.md (untyped_call): Likewise.
3855         * romp/romp.md (untyped_call): Likewise.
3856         * sparc/sparc.md (untyped_call): Likewise.
3858 2000-08-08  Jason Eckhardt  <jle@cygnus.com>
3860         * config/i860/i860.c (singlemove_string): Do not generate assembler
3861         pseudo instructions that must be expanded (that is, with signed
3862         constants larger than 16 bits).
3864 2000-08-08  Richard Henderson  <rth@cygnus.com>
3866         * flow.c (life_analysis): Only turn off PROP_LOG_LINKS and
3867         PROP_AUTOINC at -O0.  Don't collect alias info at -O0.
3868         (init_propagate_block_info): Don't kill memory stores at -O0.
3869         (mark_set_1, mark_used_regs): Likewise.
3871 2000-08-08  David Edelsohn  <edelsohn@gnu.org>
3873         * rs6000.c (optimization_options): Decorate 'level' as
3874         ATTRIBUTE_UNUSED.
3875         (mask64_operand): Remove sign-extend thinko.
3876         (rldic_operand): New function.
3877         (load_multiple_operation): regno's are unsigned ints.
3878         (store_multiple_operation): Likewise.
3879         (lmw_operation): Likewise.
3880         (stmw_operation): Likewise.
3881         (includes_lshift_p): shift_mask is unsigned int.
3882         (includes_lshift64_p): New function.
3883         (addrs_ok_for_quad_peep): unsigned int reg1.
3884         (print_operand): Consistently add "else" after
3885         output_operand_lossage().
3886         (print_operand, case 'b'): Fold in case 'W'.
3887         (print_operand, case 'W'): Print rldic MB value.
3888         (output_epilogue): Update Objective-C language string.
3889         (output_toc): unsigned HOST_WIDE_INT low, compare unsigned.
3890         * rs6000.h (PREDICATE_CODES): Add rldic_operand.
3891         * rs6000.md (ashldi3): Add rldic instruction.
3892         (iordi3, xordi3): Remove redundant "else if CONST_DOUBLE".
3893         (cmpsi_internal2, cmpdi_interal2): Use 'b' output template
3894         modifier.
3896 2000-08-08  Richard Henderson  <rth@cygnus.com>
3898         * config/ia64/ia64-protos.h: Remove duplicates.  Update
3899         for massive code rearrangements.
3900         * config/ia64/ia64.c (ia64_arpfs_regno): Remove.
3901         (ia64_rp_regno, ia64_fp_regno, ia64_input_regs): Remove.
3902         (ia64_local_regs, ia64_need_regstk): Remove.
3903         (ar_ccv_reg_operand): New.
3904         (ia64_gp_save_reg): New.
3905         (struct ia64_frame_info): Combine most of the size elements;
3906         add new gr save elements.
3907         (find_gr_spill): New.
3908         (next_scratch_gr_reg): New.
3909         (mark_reg_gr_used_mask): New.
3910         (ia64_compute_frame_size): Rewrite.  Allocate special AR regs
3911         to GR backing store regs when possible.
3912         (ia64_initial_elimination_offset): New.
3913         (ia64_rap_fp_offset): Remove.
3914         (save_restore_insns): Remove.
3915         (setup_spill_pointers): New.
3916         (finish_spill_pointers): New.
3917         (spill_restore_mem): New.
3918         (do_spill, do_restore): New.
3919         (ia64_expand_prologue): Rewrite to use them.
3920         (ia64_expand_epilogue): Likewise.
3921         (ia64_direct_return): Update for current_frame_info changes.
3922         (ia64_function_prologue): Simplify .prologue emission.  Emit
3923         .spill when needed.
3924         (ia64_setup_incoming_varargs): Don't ever emit rtl.
3925         (ia64_dbx_register_number): New.
3926         (ia64_initialize_trampoline): New.
3927         (ia64_secondary_reload_class): Request GR_REGS for integer
3928         arithmetic destined for FR_REGS.
3929         (ia64_init_machine_status): Don't reset return_address_pointer_rtx.
3930         (ia64_mark_machine_status): Mark ia64_gp_save.
3931         (rws_access_regno): Rename from rws_access_reg; don't treat
3932         predicates specially.
3933         (rws_access_reg): New.  Update all callers.
3934         (rtx_needs_barrier): Remove dead unspecs.
3935         (ia64_epilogue_uses): Mark ar.pfs and ar.unat live on exit.
3936         (ia64_encode_section_info): Silence signed/unsigned warnings.
3937         (spill_offset, sp_offset, spill_offset_emitted): Remove.
3938         (tmp_reg, tmp_saved): Remove.
3939         (process_set): Rewrite to expect complicated bits via
3940         REG_FRAME_RELATED_EXPR.
3941         (ia64_expand_fetch_and_op): Use emit_move_insn; be explicit
3942         in the use of ar.ccv; never set RTX_UNCHANGING_P.
3943         (ia64_expand_op_and_fetch): Likewise.
3944         (ia64_expand_compare_and_swap): Likewise.
3945         (ia64_expand_builtin): Likewise.
3946         * config/ia64/ia64.h (AR_UNAT_REGNUM): New.
3947         (FIRST_PSEUDO_REGISTER): Update.
3948         (AR_M_REGNO_P): Update.
3949         (FIXED_REGS): Don't mark three local registers as used.
3950         (EXTRA_CC_MODES): New.
3951         (SELECT_CC_MODE): New.
3952         (HARD_REGNO_NREGS): Allow DImode in p0; handle CCImode.
3953         (HARD_REGNO_MODE_OK): Disallow CCImode from non-predicates.
3954         (FRAME_GROWS_DOWNWARD): Unset.
3955         (STARTING_FRAME_OFFSET): Zero.
3956         (ELIMINABLE_REGS): Eliminate from the soft to hard frame pointer.
3957         (INITIAL_ELIMINATION_OFFSET): Defer to out of line function.
3958         (HARD_FRAME_POINTER_REGNUM): New.
3959         (CAN_DEBUG_WITHOUT_FP): Define.
3960         (TRAMPOLINE_TEMPLATE): Remove.
3961         (TRAMPOLINE_SIZE): Lower to 32.
3962         (TRAMPOLINE_ALIGNMENT): Lower to 64.
3963         (INITIALIZE_TRAMPOLINE): Defer to out of line function.
3964         (PREDICATE_CODES): Update.
3965         (struct machine_function): Add ia64_gp_save.
3966         * config/ia64/ia64.md: Purge unused unspecs.
3967         (movsi patterns): Allow moves to/from AR_M_REGS.
3968         (movdi patterns): Allow moves to/from p0.
3969         (call patterns): Move most setjmp hackery to ia64_gp_save_reg.
3970         (gr_spill, gr_restore): Indicate ar.unat read/written.
3971         (nonlocal_goto): Don't pass old frame_pointer.
3972         (nonlocal_goto_receiver): Remove.
3973         (exception_receiver): New.
3974         (builtin_setjmp_setup): New.
3975         (builtin_setjmp_receiver): New.
3976         * config/ia64/lib1funcs.asm (__ia64_save_stack_nonlocal): Bundle.
3977         (__ia64_nonlocal_goto): Bundle.  Don't kill r7.
3978         (__ia64_restore_stack_nonlocal): Likewise.
3979         (__ia64_trampoline): New.
3980         * config/ia64/sysv4.h (DBX_REGISTER_NUMBER): Defer to out of line
3981         function.
3982         * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __trampoline.
3984 2000-08-08  Richard Henderson  <rth@cygnus.com>
3986         * frame.h (ia64_frame_state): Add my_psp.
3987         * libgcc2.c (ia64_throw_helper): Add throw_sp argument.
3988         (__throw): Pass it in.  Don't clobber r7.
3989         * config/ia64/frame-ia64.c (init_ia64_reg_loc): Mark inline.
3990         (execute_one_ia64_descriptor) [mem_stack_v]: Sets psp.when
3991         and nothing to do with sp.
3992         (normalize_reg_loc): Use frame->my_psp.
3993         (frame_translate): Handle frame-pointer-less functions.  Set
3994         spill_base correctly, in absence of being told.
3995         (__build_ia64_frame_state): New sp argument.  Fill in frame->my_sp.
3996         (__ia64_backtrace_helper): New sp argument.  Use
3997         builtin_return_address instead of label addresses.
3998         (print_record) [mem_stack_v]: No size member.
4000 2000-08-08  Richard Henderson  <rth@cygnus.com>
4002         * regclass.c (choose_hard_reg_mode): Iterate over all CC modes.
4004 2000-08-08  Richard Henderson  <rth@cygnus.com>
4006         * tm.texi (LOCAL_REGNO): Document.
4007         * flow.c (LOCAL_REGNO, EPILOGUE_USES): Provide default.
4008         (mark_regs_live_at_end): Don't mark LOCAL_REGNO registers.
4009         * reload1.c (reload): Likewise when considering nonlocal labels.
4011         * config/ia64/ia64.h (LOCAL_REGNO): New.
4012         * config/sparc/sparc.h (LOCAL_REGNO): New.
4014 2000-08-08  Joseph S. Myers  <jsm28@cam.ac.uk>
4016         * c-lex.c (yylex): Don't allow integer suffixes 'LUL', 'Ll', 'lL'.
4018 2000-08-07  Nick Clifton  <nickc@redhat.com>
4020         * config/mips/mips.c: Fix compile time warning messages.
4021         * config/mips/mips-protos.h: Add prototype for equality_op.
4023         * mn10300.h (TARGET_SWITCHES): Document `-mam33'.
4025 2000-08-07  Graham Stott  <grahams@cygnus.co.uk>
4027         * mn10300.md: Use nonimmediate_operand instead of general_operand
4028         on output operands.
4030         * mn10300.h (PREFERRED_RELOAD_CLASS): Limit memory reloads.
4032 2000-08-07  Alexandre Oliva  <aoliva@redhat.com>
4034         * sh.h (EXTRA_CONSTRAINT_Q): Adjust to GNU Coding Standards.
4035         * sh.c (expand_block_move): Break long lines.
4036         (expand_ashiftrt, fpscr_set_from_mem): Likewise.
4037         * sh.md (mulsi3): Likewise.
4038         (movdi): Adjust spacing.
4040 2000-08-07  Richard Henderson  <rth@cygnus.com>
4042         * expmed.c (store_bit_field): Don't require MEM_IN_STRUCT_P.
4043         * expr.c (emit_group_store): Don't set it.
4045 2000-08-07  Kazu Hirata  <kazu@hxi.com>
4047         * invoke.texi (Options for Debugging Your Program or GCC): Remove
4048         duplicate entries for 'w' and 'z'.
4050         * flow.c: Fix a comment typo.
4052 Sun Aug  6 23:47:35 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
4054         * c-parse.in: Changed the language string for Objective-C to "GNU
4055         Objective-C".
4057 Sun Aug  6 11:54:03 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
4059         * gthr-posix.h: Integrated Chris Ball's <cball@fmco.com> changes
4060         to improve the Posix thread support for Objective-C.
4062 2000-08-06  Joseph S. Myers  <jsm28@cam.ac.uk>
4064         * c-common.h (enum c_tree_index): Add CTI_SIGNED_SIZE_TYPE and
4065         CTI_UNSIGNED_PTRDIFF_TYPE.
4066         (signed_size_type_node): Define.
4067         (unsigned_ptrdiff_type_node): Define.
4068         * c-decl.c (init_decl_processing): Create the
4069         signed_size_type_node and unsigned_ptrdiff_type_node types.
4070         * c-common.c (T_SC): Define.
4071         (T_SST): Define.
4072         (T_UPD): Define.
4073         (print_char_table): Use T_SST for %zd, %zi, %zn.  Use T_UPD for
4074         %to, %tu, %tx, %tX.  Allow %hhn (T_SC).  Add "c" to the flags for
4075         %s and %p.
4076         (scan_char_table): Use T_SC for %hhd, %hhi, %hhn.  Use T_SST for
4077         %zd, %zi, %zn.  Use T_UPD for %to, %tu, %tx, %tX.  Add "c" to the
4078         flags for %c, %s and %[.
4079         (check_format_info): Only allow leniency for signedness of targets
4080         of character pointers (when pedantic) for formats flagged with
4081         "c", so for strings but not for %hh formats.  When pedantic, don't
4082         allow character pointers to substitute for void pointers if a
4083         second level of indirection is present.
4085 2000-08-06  Kazu Hirata  <kazu@hxi.com>
4087         * invoke.texi (Options for Debugging Your Program or GCC): Update
4088         the names of dump files.
4090         * h8300.c (dosize): Rearrange code for conciseness.
4091         (split_adds_subs): Likewise.
4093         * loop.c: Fix formatting.
4095         * dwarf2out.c: Fix formatting.
4097         * tm.texi (FUNCTION_ARG_PARTIAL_NREGS): Fix a typo.
4099         * expr.c: Fix formatting.
4101 2000-08-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4103         * rs6000.c (rs6000_maybe_dead): Prototype.
4105 2000-08-06  Richard Henderson  <rth@cygnus.com>
4107         * stmt.c (expand_goto): Do virtual_stack_vars_rtx replacement for
4108         HAVE_nonlocal_goto as well.
4109         * config/i960/i960.md (nonlocal_goto): Don't do it here.
4110         * config/pj/pj.md (nonlocal_goto): Likewise.
4112 2000-08-07  Michael Hayes  <mhayes@cygnus.com>
4114         * loop.c (try_swap_copy_prop): New function.
4115         (load_mems): Rename copies to load_copies and add new regset
4116         store_copies.  Check for sets of shadow registers and mark
4117         in store_copies.   Call try_swap_copy_prop for registers
4118         marked in store_copies.
4120 Sun Aug  6 00:54:42 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
4122         * objc/objc-act.c: New command line option -fconstant-string-class
4123         to allow specifying a user defined constant string class,
4124         different from NXConstantString.
4126         * toplev.c: Moved the Objective-C specific options to
4127         objc/lang-options.h.
4129         * objc/lang-options.h: Moved the Objective-C specific options from
4130         toplev.c. Added -fconstant-string-class.
4132 2000-08-05  Chris Demetriou  <cgd@sibyte.com>
4134         * mips/elf.h (CTOR_LIST_BEGIN, CTOR_LIST_END,
4135         DTOR_LIST_BEGIN, DTOR_LIST_END): change type of
4136         __CTOR_LIST__ from func_ptr array to just func_ptr, to
4137         avoid extra alignment imposed on arrays.
4138         * mips/elf64.h (CTOR_LIST_BEGIN, CTOR_LIST_END,
4139         DTOR_LIST_BEGIN, DTOR_LIST_END): Likewise.
4141         * mips.h: Clean up comments and spacing near MASKs.
4142         (TARGET_UNIX_ASM): Delete.
4143         (MASK_MIPS16, MASK_NO_CHECK_ZERO_DIV, MASK_CHECK_RANGE_DIV,
4144         MASK_UNINIT_CONST_IN_RODATA): Change values to make mask
4145         values contiguous.
4147 2000-08-05  Joseph S. Myers  <jsm28@cam.ac.uk>
4149         * c-common.c (print_char_table): Add entries for the X/Open '
4150         format flag (print decimals with locale's thousands grouping
4151         character).  Make %C expect wint_t.
4152         (check_format_info): If pedantic, warn when the %n$ operand
4153         number form is used.  Allow for the ' flag; warn about it if
4154         pedantic.
4156 2000-08-05  Zack Weinberg  <zack@wolery.cumb.org>
4158         * i386.h (FUNCTION_OK_FOR_SIBCALL):  Not OK if DECL's return
4159         type is a float mode, cfun->decl's return type is not, and
4160         TARGET_FLOAT_RETURNS_IN_80387.
4162 2000-08-04  Andreas Schwab  <schwab@suse.de>
4164         * cppmain.c (cb_def_pragma): Skip the first two tokens from the
4165         token list, which are always `#' and `pragma'.
4167 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
4169         * tree.c (tree_expr_nonnegative_p): Move to...
4170         * fold-const.c: ... here.  Also handle BIND_EXPR and RTL_EXPR.
4171         (rtl_expr_nonnegative_p): New.
4172         * tree.h: Add prototype for rtl_expr_nonnegative_p.
4174         * real.h (CONST_DOUBLE_LOW, CONST_DOUBLE_HIGH, CONST_DOUBLE_MEM,
4175         CONST_DOUBLE_CHAIN: Move to...
4176         * rtl.h: ...here.  Use XCINT/XCEXP.
4178         * Makefile.in: Remove toplev.o from OBJS.  Add rule to make
4179         libbackend.a; add libbackend.a to STAGESTUFF.  Add BACKEND
4180         variable.  Use BACKEND when linking cc1, not OBJS.  Add BACKEND
4181         to VOL_FILES.
4183         * objc/Make-lang.in (cc1obj): Link with $(BACKEND).
4185 2000-08-05  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
4187         * config/c4x/c4x.md (return_indirect_internal): New.
4188         * config/c4x/c4x.c (c4x_expand_epilogue): Use it.
4190 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
4192         * c-common.c (time_char_table): Mark up formats added in C99 and
4193         make other corrections.  %D and %g were added in C99.  %Og is an
4194         extension.  %EX is permitted.  %R, %T, %n, %r, %t were added in
4195         C99.  %e was added in C99.  %Oj is an extension.  %G and %z are in
4196         C99 rather than GNU extensions, but %OG and %Oz are extensions.
4197         %h was added in C99.  %C was added in C99.  %OY and %OC are
4198         extensions.  Add the C99 format %F.
4199         (check_format_info): If pedantic and not in C99 mode, warn for C99
4200         formats, %E and %O.
4202 Fri Aug  4 23:01:58 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4204         * function.c (schedule_fixup_var_refs): New function, broken out
4205         of put_reg_into_stack.
4206         (put_reg_into_stack): Use it.
4207         (put_var_into_stack): In CONCAT case, fixup up references for
4208         components only after fixing up references to the whole concat.
4210 2000-08-04  Rodney Brown  <RodneyBrown@pmsc.com>
4212         * alias.c (mark_constant_function): Use INSN_P.
4213         (init_alias_analysis): Likewise.
4214         * combine.c (combine_instructions): Use INSN_P.
4215         (can_combine_p): Likewise.
4216         (try_combine): Likewise.
4217         (distribute_notes): Likewise.
4218         (distribute_links): Likewise.
4219         * cse.c (cse_around_loop): Use INSN_P.
4220         (invalidate_skipped_block): Likewise.
4221         (cse_set_around_loop): Likewise.
4222         (cse_end_of_basic_block): Likewise.
4223         (delete_trivially_dead_insns): Likewise.
4224         * emit-rtl.c (unshare_all_rtl_again): Use INSN_P.
4225         (unshare_all_rtl_1): Likewise.
4226         (next_cc0_user): Likewise.
4227         (try_split make_insn_raw): Likewise.
4228         (remove_unnecessary_notes): Likewise.
4229         * final.c (shorten_branches): Use INSN_P.
4230         (leaf_renumber_regs): Likewise.
4231         (leaf_renumber_regs_insn): Likewise.
4232         * flow.c (find_label_refs): Use INSN_P.
4233         (verify_wide_reg): Likewise.
4234         (notice_stack_pointer_modification): Likewise.
4235         (count_or_remove_death_notes): Likewise.
4236         (verify_flow_info): Likewise.
4237         (clear_log_links): Likewise.
4238         * function.c (fixup_var_refs_insns): Use INSN_P.
4239         (compute_insns_for_mem): Likewise.
4240         * gcse.c (alloc_gcse_mem): Use INSN_P.
4241         (compute_sets): Likewise.
4242         (compute_hash_table): Likewise.
4243         (classic_gcse): Likewise.
4244         (cprop): Likewise.
4245         (insert_insn_end_bb): Likewise.
4246         (delete_null_pointer_checks_1): Likewise.
4247         * global.c (expand_preferences): Use INSN_P.
4248         (build_insn_chain): Likewise.
4249         * graph.c (node_data): Use INSN_P.
4250         * haifa-sched.c (priority): Use INSN_P.
4251         (rm_line_notes): Likewise.
4252         (rm_other_notes): Likewise.
4253         (find_insn_reg_weight): Likewise.
4254         (init_target_units): Likewise.
4255         (schedule_block): Likewise.
4256         (compute_block_forward_dependences): Likewise.
4257         (debug_dependencies): Likewise.
4258         (set_priorities): Likewise.
4259         * integrate.c (function_cannot_inline_p): Use INSN_P.
4260         (save_parm_insns): Likewise.
4261         (copy_insn_list): Likewise.
4262         * jump.c (mark_all_labels): Use INSN_P.
4263         (never_reached_warning): Likewise.
4264         * lcm.c (optimize_mode_switching): Use INSN_P.
4265         * local-alloc.c (validate_equiv_mem): Use INSN_P.
4266         (memref_used_between_p): Likewise.
4267         (update_equiv_regs): Likewise.
4268         (block_alloc): Likewise.
4269         (no_conflict_p): Likewise.
4270         * loop.c (scan_loop): Use INSN_P.
4271         (find_and_verify_loops): Likewise.
4272         (count_loop_regs_set): Likewise.
4273         (loop_reg_used_before_p): Likewise.
4274         (strength_reduce): Likewise.
4275         (recombine_givs): Likewise.
4276         (check_dbra_loop): Likewise.
4277         (load_mems): Likewise.
4278         (try_copy_prop): Likewise.
4279         * print-rtl.c (print_rtx): Use INSN_P.
4280         * recog.c (find_single_use): Use INSN_P.
4281         * reg-stack.c (stack_regs_mentioned): Use INSN_P.
4282         (next_flags_user): Likewise.
4283         (swap_rtx_condition): Likewise.
4284         * regmove.c (mark_flags_life_zones): Use INSN_P.
4285         (optimize_reg_copy_1): Likewise.
4286         (optimize_reg_copy_2): Likewise.
4287         (optimize_reg_copy_3): Likewise.
4288         (reg_is_remote_constant_p): Likewise.
4289         (fixup_match_2): Likewise.
4290         (regmove_optimize): Likewise.
4291         (fixup_match_1): Likewise.
4292         * regrename.c (build_def_use): Use INSN_P.
4293         (replace_reg_in_block): Likewise.
4294         (consider_use): Likewise.
4295         * reload.c (find_equiv_reg): Use INSN_P.
4296         * reload1.c (reload): Use INSN_P.
4297         (maybe_fix_stack_asms): Likewise.
4298         (calculate_needs_all_insns): Likewise.
4299         (reload_as_needed): Likewise.
4300         (emit_output_reload_insns): Likewise.
4301         (delete_address_reloads_1): Likewise.
4302         (reload_cse_regs_1): Likewise.
4303         (reload_combine): Likewise.
4304         (reload_cse_move2add): Likewise.
4305         * reorg.c (redundant_insn): Use INSN_P.
4306         (dbr_schedule): Likewise.
4307         * resource.c (find_dead_or_set_registers): Use INSN_P.
4308         (mark_target_live_regs): Likewise.
4309         * rtlanal.c (reg_used_between_p): Use INSN_P.
4310         (reg_referenced_between_p): Likewise.
4311         (reg_set_between_p): Likewise.
4312         (reg_set_p): Likewise.
4313         (single_set): Likewise.
4314         (multiple_sets): Likewise.
4315         (find_last_value): Likewise.
4316         (reg_set_last): Likewise.
4317         (find_reg_note): Likewise.
4318         (find_regno_note): Likewise.
4319         * sibcall.c (sequence_uses_addressof): Use INSN_P.
4320         * simplify-rtx.c (cselib_process_insn): Use INSN_P.
4321         * ssa.c (find_evaluations): Use INSN_P.
4322         (rename_block): Likewise.
4323         (rename_equivalent_regs): Likewise.
4324         * unroll.c (loop_find_equiv_value): Use INSN_P.
4325         (set_dominates_use): Likewise.
4326         * varasm.c (mark_constant_pool): Use INSN_P.
4327         (mark_constants): Likewise.
4328         * config/alpha/alpha.c (alpha_does_function_need_gp): Use INSN_P.
4329         (alphaev4_next_group): Likewise.
4330         (alphaev5_next_group): Likewise.
4331         * config/c4x/c4x.c (c4x_process_after_reload): Use INSN_P.
4332         (c4x_rptb_rpts_p): Likewise.
4333         * config/mips/mips.c (mips16_optimize_gp): Use INSN_P.
4334         * config/rs6000/rs6000.c (uses_TOC): Use INSN_P.
4335         (rs6000_adjust_priority): Likewise.
4336         * config/sh/sh.c (sh_loop_align): Use INSN_P.
4337         (machine_dependent_reorg): Likewise.
4338         (split_branches): Likewise.
4339         * config/tahoe/tahoe.c (tahoe_cmp_check): Use INSN_P.
4341 Fri Aug  4 11:43:49 2000  John Wehle  (john@feith.com)
4343         * combine.c (recog_for_combine): Remove the old notes
4344         prior to attempting to recognize the new pattern.
4345         (distribute_notes): Ignore REG_NONNEG notes.
4347 2000-08-04  Chandrakala Chavva  <cchavva@redhat.com>
4349         * varasm.c (output_constructor): Add .align 0 for packed vars.
4351 2000-08-04  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
4353         * configure.in: Use default thread_file even when enable_threads is
4354         yes or dce because hpux10.20 pa port uses MULTILIB implementation.
4355         * configure: Rebuilt.
4357         * gthr-dce.h (__gthread_objc_condition_allocate): Fix typo.
4359 2000-08-04  Donn Terry (donnte@microsoft.com)
4361         * prefix.c (translate_name): Don't strip trailing DIR_SEPARATOR.
4363 2000-08-04  Mark Elbrecht  <snowball3@bigfoot.com>
4365         * i386/x-djgpp: Delete code that conditionally modifies target_alias.
4366         Delete code that conditionally modifies 'version'.
4367         Delete X_CPPFLAGS. Add comment for SYSTEM_HEADER_DIR.
4368         * i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): New macro.
4369         * gcc.c (main): Use it.
4370         * config/i386/xm-djgpp.h (UPDATE_PATH_HOST_CANONICALIZE): New macro.
4371         * prefix.c (update_path): Use it.
4372         * i386/djgpp.h (STANDARD_INCLUDE_DIR): Define.
4373         (MD_EXEC_PREFIX): Set to '/dev/env/DJDIR/bin/'.
4374         (ASM_OUTPUT_SECTION_NAME): Add code attribute to sections containing
4375         code.
4376         (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Default to true.
4377         (SUBTARGET_SWITCHES): Adjust.
4378         (WCHAR_UNSIGNED, WCHAR_TYPE_SIZE, WCHAR_TYPE): Undefine before
4379         defining.
4380         (WINT_TYPE, SIZE_TYPE, PTRDIFF_TYPE): Define.
4382 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
4384         * c-common.h (flag_isoc94): Declare.
4385         * c-decl.c (flag_isoc94): Define.
4386         (c_decode_option): Set flag_isoc94 as appropriate.
4387         * c-common.c (T_PD, T_IM, T_UIM): Define.
4388         (format_char_info): Add tlen and jlen.
4389         (print_char_table): Add entries for %t and %j.  Allow %zn.  Allow
4390         %F.  Allow %lf.
4391         (scan_char_table): Add entries for %t and %j.  Allow %F.  Allow
4392         %l[.
4393         (time_char_table): Add NULL entries for %t and %j.
4394         (check_format_info): Allow for %t and %j.  Warn for %F if pedantic
4395         and not C99.  Warn for %lc, %ls and %l[ if pedantic and not C94.
4396         Warn for printf %lf if pedantic and not C99.  Don't warn for empty
4397         precision.  Allow precision argument to be unsigned int.  If
4398         pedantic, warn for %p passed an argument not a pointer to possibly
4399         qualified void or a possibly qualified character type, and for
4400         pointer targets of the wrong sign, except for character pointers.
4402 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
4404         * ginclude/stddef.h: Don't declare wint_t unless __need_wint_t.
4405         * c-common.h (enum c_tree_index): Add CTI_WINT_TYPE.
4406         (wint_type_node): Define.
4407         * c-decl.c (WINT_TYPE): Define.
4408         (init_decl_processing): Create the wint_type_node type.
4409         * c-common.c (T_WI): Define.
4410         (print_char_table): Use T_WI for %lc format.
4412 2000-08-04  Bruce Korb  <bkorb@gnu.org>
4414         * fixinc/:  Verified that the MSDOS patch does not break
4415         the UNIX functionality and applied the next three patches
4416         from July:
4418 2000-07-28  Eli Zaretskii  <eliz@is.elta.co.il>
4420         * fixinc/fixfixes.c (main) [__MSDOS__]: Avoid overwriting the
4421         output file with the temporary one by appending ".X" to generate
4422         the temporary fuile's name.  If the output file already has an
4423         extension, replace it with ".X".
4425         * fixinc/fixincl.c (fix_with_system) [__MSDOS__]: Use $ORIGDIR,
4426         not $DESTDIR, to find applyfix.  Use sprintf instead of snprintf;
4427         reallocate the command buffer while copying the command-line
4428         argument.  Redirect the output directly to the temporary file,
4429         instead of going through another temporary file.
4430         (process): Close the temporary file before unlinking it.
4431         (machine_matches) [__MSDOS__]: If the machine doesn't match, set
4432         the FD_SKIP_TEST flag.  Pay attention to the FD_MACH_IFNOT flag.
4433         (run_compiles): Pass p_fixd argument to machine_matches, as it
4434         expects.
4436         * fixinc/fixincl.sh: Export ORIGDIR.  If $DJDIR is set in the
4437         environment, assume there are no symlinks in the include
4438         directory.  When cleaning up the DONE files, look for them
4439         case-insensitively.  Don't try to remove symlinks if they aren't
4440         there.
4442         * fixinc/fixlib.c (make_raw_shell_str): Accept new argument smax;
4443         all callers changed.  Declare pz "const char *", to avoid compiler
4444         warnings.
4446         * fixinc/fixlib.h (ENV_TABLE): Get ORIGDIR from the environment.
4447         Change prototype of make_raw_shell_str.
4449 2000-07-27  Eli Zaretskii  <eliz@is.elta.co.il>
4451         * fixinc/fixincl.c [__MSDOS__]: Don't include "server.h".
4452         (initialize) [__MSDOS__]: Use tempnam.
4453         (initialize): Don't use SIGPIPE if it is not defined.
4455         * fixinc/fixfixes.c (main) [__MSDOS__]: freopen for stdout should
4456         return stdout.
4458 2000-07-25  Bruce Korb  <bkorb@gnu.org>
4460         * fixinc/fix*.[ch]: substantially reworked to make it possible
4461         to run this program without using fork(2) or pipe(2) (i.e. in
4462         a DOS environment).
4464 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
4466         * cppdefault.h (WINT_TYPE): Define.
4467         * cppinit.c (builtin_array): Define __WINT_TYPE__.
4468         * tradcpp.c (initialize_builtins): Define __WINT_TYPE__.
4469         * tm.texi (NO_BUILTIN_WINT_TYPE, WINT_TYPE): Document.
4471 Fri Aug  4 06:53:46 2000  Clinton Popetz  <cpopetz@cygnus.com>
4473         * (mips_legitimate_address_p): Don't allow register+offset
4474         if the offset is large and negative, and we are compiling
4475         for 64 bit registers.
4477 2000-08-04 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
4479         * gencodes.c (main): Define CODE_FOR_nothing as the last possible
4480         insn_code_number + 1.
4482 2000-08-04  Kazu Hirata  <kazu@hxi.com>
4484         * h8300.c (function_prologue): Rearrange code for conciseness.
4485         (function_epilogue): Likewise.
4486         * h8300.h (OK_FOR_U): Fix formatting.
4488         * cse.c: Fix a comment typo. Fix formatting.
4490 2000-08-03  Richard Henderson  <rth@cygnus.com>
4492         * config/i386/i386.md (return_indirect_internal): New.
4493         * config/i386/i386.c (ix86_expand_epilogue): Use it.
4495 2000-08-03  Zack Weinberg  <zack@wolery.cumb.org>
4497         * cpplex.c (parse_name): Might have to glue a CPP_OTHER token
4498         before the name.
4499         (lex_line): Glue @ onto the beginning of identifiers and
4500         string constants, in Objective-C mode.
4501         (output_token, spell_token): Handle CPP_OSTRING.
4502         (can_paste, maybe_paste_with_next): Handle pasting @ onto the
4503         beginning of a NAME or a STRING, in objc mode.
4505         * cpplib.c (get_define_node): Do not permit identifiers that
4506         begin with @ to be #defined.
4507         * cppmacro.c (CAN_PASTE_AFTER): Add CPP_OTHER.
4508         * cpplib.h (TTYPE_TABLE): Add CPP_OSTRING.
4510         * c-lang.c, objc/objc-act.c (build_objc_string): Delete.
4511         * c-tree.h (build_objc_string): Delete prototype.
4512         * objc/objc-tree.def: Delete OBJC_STRING_CST.
4513         * c-lex.c (yylex): Use build_string for all three kinds of strings.
4515         * c-parse.in, objc/objc-act.c: Update commentary.
4517 2000-08-03  Mark Mitchell  <mark@codesourcery.com>
4519         * extend.texi: Fix typo in last change.
4521         * extend.texi: Add commentary on statement-expressions and their
4522         interactions with C++.
4524 2000-08-03  Nick Clifton  <nickc@cygnus.com>
4526         * dwarf2.h (DW_LANG_Java): Change value to 0x000b.
4527         * dwarf.h (LANG_JAVA): Change value to 0x000b.
4529 2000-08-03  Anthony Green  <green@cygnus.com>
4531         * dwarf2out.c (gen_compile_unit_die): Add java language support.
4532         (add_bound_info): Check for java language.
4533         (is_java): New function.
4534         * dwarfout.c (output_compile_unit_die): Ditto.
4535         * dwarf.h (dwarf_source_language): Add java source language type.
4536         * dwarf2.h (dwarf_source_language): Ditto.
4538 Thu Aug  3 20:32:25 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4540         * reg-stack.c (subst_stack_regs_pat):  Use replace_reg to swap
4541         operands.
4543         * i386.c (ix86_expand_branch): Mode of comparison in
4544         IF_THEN_ELSE is VOIDmode.
4546 Thu Aug  3 10:05:53 2000  Akiko Matsushita <matusita@sra.co.jp>
4548         * gengenrtl.c, rtl.c: Avoid #elif.
4550 2000-08-03  Michael Poole  <poole@troilus.org>
4552         * tm.texi (Register Classes): Clarify order of sub-initializers
4553         in REG_CLASS_CONTENTS.
4555 Thu Aug  3 15:53:03 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4557         From SAITOH Masanobu:
4558         * sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.
4560 2000-08-03  David Billinghurst  <David.Billinghurst@riotinto.com.au>
4562         * config/i386/cygwin.h: Remove -remap from CPP_SPEC since this option
4563         is not supported by tradcpp and isn't actually needed for cygwin.
4565 2000-08-03  Kazu Hirata  <kazu@hxi.com>
4567         * h8300.c: Fix a comment typo.
4568         * h8300.h (OK_FOR_U): Accept a 32-bit constant address on H8/S.
4570         * jump.c: Fix formatting.
4572         * toplev.c: Fix formatting.
4574 Thu Aug  3 01:05:32 2000  Jeffrey A Law  (law@cygnus.com)
4576         * flow.c (find_auto_inc): Verify that we've got a REG before
4577         peeking at its regno.  Fail, don't abort if we can't find
4578         the increment of the desired register.
4580         * pa.md (shadd height reduction patterns/splitters): Remove.
4582 2000-08-02  Jim Wilson  <wilson@cygnus.com>
4584         * config/ia64/ia64-protos.h (flag_ssa): Declare.
4585         * config/ia64/ia64.md (movti_internal, movti_internal+1): New.
4587 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
4589         * dce.c: Remove all uses of assert.
4590         * dwarf2out.c: Likewise.
4591         * dwarfout.c: Likewise.
4592         * ssa.c: Likewise.
4594 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
4596         * gcc.h (lang_specific_driver): Constify second argument.
4597         * gcc.c (translate_options, process_command, main): Likewise.
4598         Constify variables to match.  Cast second argument to
4599         pexecute.
4601         * cppspec.c, gccspec.c: Adjust type of second argument to
4602         lang_specific_driver, and update code as necessary.
4604 2000-08-02  Jakub Jelinek  <jakub@redhat.com>
4606         * loop.c (scan_loop): Ensure update_end label does not
4607         go away until reg_scan_update is run.
4609 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
4611         * c-common.h: Prototype min_precision and c_build_qualified_type here...
4612         * c-tree.h: ... not here.
4613         * errors.h: Prototype fancy_abort.
4615         * emit-rtl.c (gen_lowpart_common): Move variable 'c' into
4616         HOST_BITS_PER_WIDE_INT == 64 ifdef block.
4617         * regrename.c (regrename_optimize): Make control flow explicit.
4618         (replace_reg_in_block): Initialize reg_use to 0.
4620         * i386.c (legitimate_address_p): Rename error label to
4621         report_error to avoid namespace clash.
4623 2000-08-02  Kazu Hirata  <kazu@hxi.com>
4625         * fold-const.c: Fix formatting.
4627 Wed Aug  2 16:26:15 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4629         * i386.c (legitimate_address_p): Accept other bases than
4630         pic_offset_table_rtx for GOTOFF constructs.
4632 Wed Aug  2 15:59:34 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4634         * i386.md (shift to lea splitter): Use const_int_operand.
4636 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
4638         * cppexp.c, cppinit.c, cpplex.c, cpplib.c, cppmacro.c,
4639         cppspec.c: Do not use 'legal' or 'illegal' in error messages
4640         and comments.
4642         * cppmain.c (cb_define, cb_undef): Don't generate any output
4643         if not done_initializing.
4644         * cpplex.c (maybe_paste_with_next): When the token after a ##
4645         is an omitted rest argument, only delete the token before it
4646         if that token is a comma.  Do not warn about bogus token
4647         pastes for , ## rest_arg.
4649         * cpp.texi: Update.
4650         * cpp.1: Regenerate.
4652 2000-08-02  Fred Fish  <fnf@be.com>
4654         * config/i386/beos-elf.h (STARTFILE_SPEC): Add i386-mcount.o
4655         when user gives -p option.  Add init_term_dyn.o for BeOS 5.0
4656         and later.
4658         * config/i386/beos-elf.h (INCLUDE_DEFAULTS): Add additional
4659         Be directories to search path.
4661         Remove support for __declspec(dllimport) and __declspec(dllexport).
4662         This is leftover cruft from the earlier BeOS gcc port when BeOS
4663         used Microsoft's PE object file format.
4664         * configure.in (i*86-*-beoself): Remove extra_objs=winnt.o.
4665         * config/i386/t-beos (winnt.o): Remove Makefile frag.
4666         * config/i386/beos-elf.h (TARGET_NOP_FUN_DLLIMPORT): Remove.
4667         (VALID_MACHINE_DECL_ATTRIBUTE): Remove.
4668         (VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
4669         (MERGE_MACHINE_DECL_ATTRIBUTES): Remove.
4670         (REDO_SECTION_INFO_P): Remove.
4671         (ASM_EXPORT_DECL): Remove.
4672         (ASM_DECLARE_FUNCTION_NAME): Remove.
4673         (ASM_DECLARE_OBJECT_NAME): Remove.
4674         (ASM_OUTPUT_ALIGNED_COMMON): Remove.
4675         (ASM_OUTPUT_ALIGNED_DECL_COMMON): Remove.
4676         (ASM_OUTPUT_ALIGNED_LOCAL): Remove.
4677         (STRIP_NAME_ENCODING): Remove.
4679         Remove support for obsolete version of BeOS that is no longer
4680         supported by Be.
4681         * configure.in (i*86-*-beospe*): Remove.
4682         * config/i386/beos-pe.h: Remove.
4684 2000-08-01  Jeffrey Oldham  <oldham@codesourcery.com>
4685             Mark Mitchell <mark@codesourcery.com>
4687         * Makefile.in (OBJS): Added dce.o.
4688         (ssa.o): Updated target to include ssa.h.
4689         (flow.o): Likewise.
4690         (toplev.o): Likewise.
4691         (dce.o): Created target.
4692         * basic-block.h: Added comments.
4693         (INVALID_BLOCK): Added definition.
4694         (connect_infinite_loops_to_exit): Added declaration.
4695         Moved SSA declarations to ssa.h.
4696         * flow.c: Added inclusion of ssa.h.
4697         (struct depth_first_search_dsS, depth_first_search_ds):
4698         Added definitions.
4699         (compute_immediate_postdominators): Added definition.
4700         (connect_infinite_loops_to_exit): Likewise.
4701         (flow_dfs_compute_reverse_init): Likewise.
4702         (flow_dfs_compute_reverse_add_bb): Likewise.
4703         (flow_dfs_compute_reverse_execute): Likewise.
4704         (flow_dfs_compute_reverse_finish): Likewise.
4705         * rtl.h (rtx/in_struct): Added use to determine insn necessity.
4706         (LABEL_P): Added definition.
4707         (JUMP_P): Likewise.
4708         (NOTE_P): Likewise.
4709         (BARRIER_P): Likewise.
4710         (JUMP_TABLE_DATA_P): Likewise.
4711         (INSN_DEAD_CODE_P): Likewise.
4712         * ssa.c: Replaced inclusions with ssa.h inclusion.
4713         (CONVERT_HARD_REGISTER_TO_SSA_P): Moved to ssa.h.
4714         (rename_registers): Removed unnecessary variables.
4715         * ssa.h: Created by moving declarations from ssa.c and
4716         basic-block.h.
4717         * timevar.def: Defined TV_DEAD_CODE_ELIM.
4718         * toplev.c: Added ssa.h inclusion.
4719         (dump_file_index): Added DFI_dce.
4720         (dump_file): Added "dce" entry.
4721         Defined flag_ssa.
4722         (f_options): Added dce entry.
4723         * invoke.texi: Document -fdce.  Emphasize experimental status of
4724         -fssa.
4725         * dce.c: New file.
4727 2000-08-01  Zack Weinberg  <zack@wolery.cumb.org>
4729         * cpperror.c (v_message): Split into _cpp_begin_message and
4730         v_message macro.  All callers updated.
4731         (_cpp_begin_message): Do inhibit_errors/inhibit_warnings
4732         checks here.
4734         * cppfiles.c (cpp_syshdr_flags): New function.
4735         (read_include_file): Don't call cpp_output_tokens.  Call
4736         enter_file hook.
4737         * cppinit.c (dump_macros_helper): Moved to cppmain.c.
4738         (cpp_reader_init): Don't initialize token_buffer.  Call
4739         _cpp_init_internal_pragmas.
4740         (cpp_cleanup): Don't clear token_buffer.
4741         (cpp_start_read): Don't worry about output from -D processing.
4742         Don't call cpp_output_tokens.
4743         (cpp_finish): Don't dump macros here.  Don't call
4744         cpp_output_tokens.
4745         * cppmacro.c (_cpp_dump_definition): Rename
4746         cpp_dump_definition.  Write directly to a FILE *.
4747         (dump_funlike_macro): Delete.
4748         (dump_macro_args): New.
4750         * cpplex.c (TOKEN_LEN): Convert to inline function.
4751         (_cpp_grow_token_buffer, safe_fwrite, cpp_output_tokens,
4752         cpp_scan_line, _cpp_dump_list): Delete.
4753         (cpp_printf, cpp_output_list): New.
4754         (output_line_command): Don't worry about entering or leaving files.
4755         (cpp_scan_buffer): Just output each token as we hit it.
4756         (process_directive): Don't call cpp_output_tokens.
4757         (_cpp_glue_header_name): Don't use token_buffer.
4758         (output_token, dump_param_spelling): Write directly to a FILE *.
4760         * cpplib.c (pass_thru_directive, dump_macro_name,
4761         pragma_dispatch, do_pragma_gcc): Delete.
4762         (do_define, do_undef, parse_include, do_line, do_ident, do_pragma,
4763         do_pragma_poison, cpp_pop_buffer): Call the appropriate hook
4764         functions.
4765         (do_error, do_warning, pragma_dependency): Call
4766         _cpp_begin_message, then cpp_output_list.
4767         (cpp_register_pragma, cpp_register_pragma_space,
4768         _cpp_init_internal_pragmas): New.
4769         (do_pragma): Walk the pragmas table here.
4770         (do_pragma_once, do_pragma_poison, do_pragma_system_header,
4771         do_pragma_dependency): Return void.
4772         (do_pragma_implementation): Moved to cppmain.c.
4774         * cpplib.h: Update prototypes.
4775          (struct cpp_reader): Remove printer, token_buffer,
4776         token_buffer_size, and limit.  Add struct cb, and pragmas.
4777         (struct cpp_printer): Remove last_id and written.
4778         (CPP_WRITTEN, CPP_PWRITTEN, CPP_SET_WRITTEN,
4779         CPP_ADJUST_WRITTEN): Delete.
4780         * cpphash.h: Update prototypes.
4781         (ufputs): New wrapper.
4783         * cppmain.c (cb_define, cb_undef, cb_include, cb_ident,
4784         cb_enter_file, cb_leave_file, cb_def_pragma): New functions.
4785         (main): Set up callbacks.  Register #pragma implementation.
4786         Dump macros from here.
4788 2000-08-01  Geoff Keating  <geoffk@cygnus.com>
4790         * rtl.h (enum reg_note): Add REG_MAYBE_DEAD.
4791         * rtl.c (reg_note_name): Add REG_MAYBE_DEAD.
4792         * flow.c (propagate_one_insn): Allow deletion of prologue/epilogue
4793         insns if they have a REG_MAYBE_DEAD note attached.
4794         * config/rs6000/rs6000.c (rs6000_maybe_dead): New function.
4795         (rs6000_emit_load_toc_table): TOC loads may go dead.
4797 2000-08-01  Jim Wilson  <wilson@cygnus.com>
4799         * config/ia64/ia64.c (ia64_function_arg): Fix last change.  Verify
4800         type exists before using it.  Use number of words as alignment
4801         otherwise.
4802         (ia64_function_arg_partial_nregs, ia64_function_arg_advance,
4803         ia64_va_arg): Propagate ia64_function_args changes here.
4805 2000-08-01  Richard Henderson  <rth@cygnus.com>
4807         * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Care for null DECL.
4808         * config/ia64/sysv4.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
4810 2000-08-01  Bernd Schmidt  <bernds@cygnus.co.uk>
4812         From Joern Rennecke:
4813         * sh.h (CPP_SPEC, TARGET_SWITCHES): Add m4-nofpu.
4814         * sh.md (udivsi3, divsi3): Don't use libcalls that use the FPU
4815         unless TARGET_SH3E is set.
4816         * t-sh (MULTILIB_MATCHES): Add m2=m4-nofpu.
4818         * sh.md (ashlsi3_d, ashlsi3_k): Remove, replace with
4819         (ashlsi3_std): New pattern.
4820         (ashlsi3 expander): Use it for TARGET_SH3.
4821         * sh.c (gen_ashift): Use it instead of ashlsi3_k.
4823 Tue Aug  1 12:34:21 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4825         * loop.c (canonicalize_condition):  Use destination, not source to
4826         determine SET's mode.
4828 2000-07-31  Mark Mitchell  <mark@codesourcery.com>
4830         * flow.c (clear_log_links): Fix typo.
4832 Mon Jul 31 22:19:24 2000  Jeffrey A Law  (law@cygnus.com)
4834         * loop.c (check_dbra_loop): Make change from July 17, 2000 work
4835         on targets which need more than one insn for a compare/cbranch
4836         operation.
4838 2000-07-31  Jim Wilson  <wilson@cygnus.com>
4840         * config/ia64/ia64.c (ia64_function_arg): Use alignment not size
4841         when computing offset.
4843 Mon Jul 31 20:35:50 2000  Denis Chertykov  <denisc@overta.ru>
4845         * genpeep.c (main): Handle DEFINE_PEEPHOLE2.
4847 2000-07-31  Geoff Keating  <geoffk@cygnus.com>
4849         * flow.c (clear_log_links): Nuke global_live_at_start and
4850         global_live_at_end data, since if the log_links stuff is invalid
4851         so is global_live_at_*.
4853 2000-07-31  Richard Henderson  <rth@cygnus.com>
4855         * tm.texi (Addressing Modes): Clarify PRE/POST_MODIFY descriptions.
4857 2000-07-31  Jakub Jelinek  <jakub@redhat.com>
4859         * cpplex.c (_cpp_get_line): If index is 0, return line 0 col 0.
4860         (_cpp_get_token): Don't macro expand a just pasted token if it
4861         was pasted at no_expand_level.
4863 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
4865         * cppmacro.c (find_param, count_params, save_expansion):
4866         Permit 'defined' as a macro parameter name.
4868 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
4870         * Makefile.in: Rename cpp to cpp0, tradcpp to tradcpp0, and
4871         xcpp to cpp throughout.
4872         (native): Remove unnecessary dependency on cpp.
4874         * gcc.c (trad_capable_cpp, C specs): Rename cpp to cpp,
4875         tradcpp to tradcpp0.
4876         (.i spec): Add missing output-file spec to cc1 command line.
4877         * objc/lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
4879 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
4881         * c-decl.c (mesg_implicit_function_declaration): Init to -1.
4882         (implicit_decl_warning): New function.
4883         (implicitly_declare): Use it.
4884         * c-typeck.c (build_external_ref): Use implicit_decl_warning
4885         to complain about implicit decls of builtins.
4887         * c-lang.c (lang_init): Set mesg_implicit_function_declaration
4888         based on pedantic && flag_isoc99, if not already set.
4889         * c-tree.h: Declare mesg_implicit_function_declaration.
4890         Prototype implicit_decl_warning.
4892 2000-07-30  Jeffrey D. Oldham  <oldham@codesourcery.com>
4894         * Makefile.in (ssa.o): Updated header files in dependences.
4895         * basic-block.h: Added compute_immediate_postdominators declaration.
4896         * config/i386/i386.h (CONVERT_HARD_REGISTER_TO_SSA_P): Added
4897         definition.
4898         * flow.c (compute_immediate_dominators): Updated comment.
4899         (compute_immediate_postdominators): Added definition.
4900         * rtl.h (HARD_REGISTER_P): Added definition.
4901         * ssa.c: Include additional header files.
4902         (assert): Added definition.
4903         (ssa_rename_to_lookup): Added to reimplement ssa_rename_to to
4904         include select hard registers.
4905         (ssa_rename_to_insert): Likewise.
4906         (ssa_rename_from_initialize): Likewise.
4907         (ssa_rename_from_lookup): Likewise.
4908         (original_register): Likewise.
4909         (ssa_rename_from_insert): Added to reimplement ssa_rename_from to
4910         include select hard reigsters.
4911         (ssa_rename_from_traverse): Likewise.
4912         (ssa_rename_from_free): Likewise.
4913         (ssa_rename_from_print): Likewise.
4914         (ssa_rename_from_print_1): Likewise.
4915         (ssa_rename_from_hash_function): Likewise.
4916         (ssa_rename_from_equal): Likewise.
4917         (ssa_rename_from_delete): Likewise.
4918         (simplify_to_immediate_dominators): Removed in favor of
4919         flow.c:compute_immediate_dominators.
4920         (find_evaluations_1): Modified to work with hard registers.
4921         (insert_phi_node): Likewise.
4922         (insert_phi_nodes): Likewise.
4923         (struct rename_set_data): Updated prev_reg comment.
4924         (create_delayed_rename): Modified to work with hard registers.
4925         (RENAME_NO_RTX): Updated comment.
4926         (apply_delayed_renames): Modified to work with hard registers.
4927         (rename_insn_1): Likewise and added handling of CLOBBER rtls.
4928         (rename_block): Updated to use revised ssa_rename_to interface.
4929         (rename_registers): Updated to use revised ssa_rename_to and
4930         ssa_rename_from interface.
4931         (convert_to_ssa): Revised to use compute_immediate_dominators and
4932         deal with hard registers.
4933         (make_regs_equivalent_over_bad_edges): Modified to work with hard
4934         registers.  Added check for illegal unification of hard register.
4935         (make_equivalent_phi_alternatives_equivalent): Modified to work
4936         with hard registers.
4937         (compute_conservative_reg_partition): Likewise.
4938         (coalesce_if_unconflicting): Modified to work with hard registers
4939         and check for conflicting hard registers.
4940         (mark_phi_and_copy_regs): Revised loop to work only on pseudo
4941         registers.
4942         (rename_equivalent_regs_in_insn): Modified to work with hard
4943         registers.
4944         (record_canonical_element_1): Added definition.
4945         (check_hard_regs_in_partition): Added definition.
4946         (convert_from_ssa): Added data structure deallocation and check
4947         for illegal hard register unification.
4948         (conflict_hard_regs_p): Added definition.
4949         * toplev.c (rest_of_compilation): Added comment.
4951 2000-07-31  Anthony Green  <green@redhat.com>
4953         * config/ia64/crtbegin.asm (__EH_FRAME_BEGIN__): Align correctly.
4955 2000-07-31  Jason McMullan  <jmcmullan@linuxcare.com>
4957         * builtins.c (expand_builtin_apply): Don't defer pop during
4958         argument setup.
4960 2000-07-31 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
4962         * calls.c (combine_pending_stack_adjustment_and_call): Only use
4963         preferred_unit_stack_boundary when it is > 1.
4965 2000-07-31  Joseph S. Myers  <jsm28@cam.ac.uk>
4967         * c-common.c (init_function_format_info): Add C99 format functions
4968         in C99 mode.
4970         * c-decl.c (get_parm_info): Don't treat 'const void', 'volatile
4971         void' or 'register void' as being the special case of 'void' alone
4972         in a parameter list.
4974         * c-typeck.c (build_c_cast): Change -Wcast-qual pedwarn for
4975         discarding qualifiers into a plain warning.
4977 2000-07-31  Kazu Hirata  <kazu@hxi.com>
4979         * combine.c: Fix formatting.
4981         * h8300.md: Fix formatting.
4983         * local-alloc.c: Fix formatting.
4985         * h8300.c (get_shift_alg): Remove the variable alg.
4986         (emit_a_shift): Rearrange code to improve readability.
4988         * h8300.md (movsi_h8300hs): Rearrange code to improve readability.
4990         * h8300.h (MODES_TIEABLE_P): Accept a combination of QImode and
4991         HImode on all architectures and a combination of HImode and SImode
4992         on H8/300H and H8/S.
4994         * h8300.c (split_adds_subs): Rearrange code for conciseness.
4996 Mon Jul 31 12:27:55 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4998         * i386.md (addsi to lea splitter, ashlqi3_1_lea): Fix bugs
4999         in my last checkin.
5001 Mon Jul 31 10:41:01 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5003         * recog.c (extract_insn): Set operand_mode according to
5004         operand if match_operand is VOIDmode.
5006 Mon Jul 31 10:36:38 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5008         * recog.c (validate_replace_rtx_1): Do not abort for (nil) expression.
5010 2000-07-31  Geoff Keating  <geoffk@cygnus.com>
5012         * c-parse.in (extdefs): Call ggc_collect between external
5013         definitions.
5015 2000-07-30  Michael Hayes  <mhayes@cygnus.com>
5016             Richard Henderson  <rth@cygnus.com>
5018         * Makefile.in (OBJS): Add doloop.o.
5019         * doloop.c: New file.
5021         * final.c (insn_current_reference_address): Return 0 before final.
5022         * flags.h (flag_branch_on_count_reg): Fix typos in commentary.
5023         * jump.c (any_uncondjump_p): Likewise.
5024         * loop.c (indirect_jump_in_function): Make static.
5025         (strength_reduce): Call doloop_optimize.
5026         (insert_bct, instrument_loop_bct): Remove.
5027         * loop.h (doloop_optimize): Prototype.
5028         * recog.c (split_all_insns): Split all INSN_P.
5029         * toplev.c (flag_branch_on_count_reg): Default on.
5031         * config/c4x/c4x.c (c4x_optimization_options): Don't set
5032         flag_branch_on_count_reg.
5033         * config/i386/i386.c (override_options): Likewise.
5034         * config/rs6000/rs6000.c (optimization_options): Likewise.
5036         * config/i386/i386.md (decrement_and_branch_on_count): Remove.
5037         (doloop_end): New.
5038         (dbra_ge): Remove, as well as all it's splitters.
5040         * config/rs6000/rs6000.md (decrement_and_branch_on_count): Remove.
5041         (doloop_end): New.
5043         * config/ia64/ia64-protos.h (ar_lc_reg_operand): Declare.
5044         (ia64_register_move_cost): Declare.
5045         * config/ia64/ia64.c (ar_lc_reg_operand): New.
5046         (struct ia64_frame_info): Add ar_size.
5047         (ia64_compute_frame_size): Set it.
5048         (save_restore_insns): Save and restore ar.lc.
5049         (ia64_register_move_cost): New, moved from header file.  Handle
5050         application registers.
5051         (REG_AR_PFS, REG_AR_EC): Remove.  Replace with AR_*_REGNUM numbers.
5052         (emit_insn_group_barriers): Special case doloop_end_internal.
5053         (ia64_epilogue_uses): Mark ar.lc live at end.
5054         * config/ia64/ia64.h (AR_CCV_REGNUM, AR_LC_REGNUM): New registers.
5055         (AR_EC_REGNUM, AR_PFS_REGNUM): New registers.
5056         (FIRST_PSEUDO_REGISTER): Make room.
5057         (AR_M_REGNO_P, AR_I_REGNO_P, AR_REGNO_P): New.
5058         (FIXED_REGISTERS, CALL_USED_REGISTERS): Update.
5059         (REG_ALLOC_ORDER): Update.
5060         (HARD_REGNO_MODE_OK): Update.
5061         (REGISTER_NAMES): Update.
5062         (enum reg_class): Add AR_M_REGS and AR_I_REGS.
5063         (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update.
5064         (REGNO_REG_CLASS): Update.
5065         (LEGITIMATE_ADDRESS_DISP): Displacement range is 9 bits, not 10.
5066         (REGISTER_MOVE_COST): Move out of line.
5067         (PREDICATE_CODES): Update.
5068         * config/ia64/ia64.md (movdi patterns): Handle ar register classes.
5069         (addsi3_plus1_alt, adddi3_plus1_alt): New.
5070         (shladd_elim splitter): Allow constants in the predicate.
5071         (doloop_end, doloop_end_internal): New.
5073 2000-07-30  Richard Henderson  <rth@cygnus.com>
5075         * genattrtab.c (struct insn_def): Add lineno member.
5076         (struct insn_ent): Likewise.
5077         (struct attr_desc): Likewise.
5078         (struct delay_desc): Likewise.
5079         (struct function_unit_op): Likewise.
5080         (struct function_unit): Likewise.
5081         (check_attr_value): Use message_with_line.
5082         (check_defs): Likewise.
5083         (expand_units): Likewise.
5084         (check_attr_test): Take a lineno argument.
5085         (gen_attr): Likewise.
5086         (gen_insn): Likewise.
5087         (gen_delay): Likewise.
5088         (gen_unit): Likewise.
5089         (main): Give it to them.
5090         (convert_set_attr_alternative): Take an insn_def argument
5091         instead of num_alt and insn_index.
5092         (convert_set_attr): Likewise.
5093         (write_test_expr): Protect INSN_ADDRESSES load
5094         with INSN_ADDRESSES_SET_P.
5096 2000-07-30  Richard Henderson  <rth@cygnus.com>
5098         * flow.c (init_propagate_block_info): Use pc_set.
5100 Sun Jul 30 20:58:34 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5102         * i386.md (*lea_general_[123]) New insns and splits.
5103         (addsi3 to lea splitter): Handle other modes too.
5104         (shlsi3 to lea splitter): Likewise.
5105         (addhi_1_lea, shlhi_1_lea): New patterns.
5106         (addhi_1, shlhi_1): Conditionize by PARTIAL_REG_STALL.
5108 Sun Jul 30 20:51:25 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5110         * recog.c (general_operand, nonimmediate_operand): Accept
5111         any mode for VOIDmode CONSTANT_P operands.
5113 Sun Jul 30 20:42:21 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5115         * gcse.c (try_replace_reg): Use validate_replace_rtx_subexp
5116         instead of replace_rtx.
5117         * recog.c (validate_replace_rtx_subexp): New function.
5118         * recog.h (validate_replace_rtx_subexp): Declare.
5120 Sun Jul 30 20:38:26 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5122         * combine.c (simplify_set, make_extraction, make_compound_operation
5123         make_field_assignment): Use full mask instead of GET_MODE_MASK (mode)
5124         as force_to_mode argument.
5126 Sun Jul 30 20:30:41 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5128         * combine.c (if_then_else_cond): Be sure that mode fits in
5129         HOST_WIDE_INT.
5131 Sun Jul 30 20:27:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5133         * combine.c (record_promoted_value):  Allow bitsize of mode
5134         to be equivalent to HOST_BITS_PER_WISE_INT.
5136 Sun Jul 30 20:25:21 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5138         * function.c (assign_stack_local_1, assign_stack_temp_for_type):
5139         Do not call gen_mode_alignment when mode is BLKmode.
5141 Sun Jul 30 20:21:54 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5143         * loop.c (express_from_1): Fix call of simplify_gen_binary.
5145 Sun Jul 30 20:08:37 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5147         * simplify-rtx.c (simplify_relational_operation): Verify that mode ==
5148         VOIDmode implies both operands to be VOIDmode.
5149         (simplify_ternary_operation): Compute properly the mode of comparison.
5150         * combine.c (combine_simplify_rtx): Likewise.
5152 2000-07-25  Michael Hayes  <mph@paradise.net.nz>
5154         * basic-block.h (struct loops): New field rc_order.
5155         * flow.c (flow_loops_cfg_dump): Dump rc_order if computed.
5156         (flow_loops_free): Free rc_order.
5157         (flow_depth_first_order_compute): New parameter rc_order.
5158         (flow_loops_find): Allocate rc_order and swap usage with
5159         dfs_order.
5161 2000-07-30 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
5162            Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5164         * config/c4x/c4x.md (set_ldp_prologue): Add for RTL prologue/epilogue.
5165         (push_st, push_dp, pop_st, pop_dp, popqi_unspec): Likewise.
5166         (nodb_call, return_from_epilogue): Likewise.
5167         (return_from_interrupt_epilogue, prologue, epilogue): Likewise.
5168         * config/c4x/c4x.c (c4x_expand_prologue, c4x_expand_eplilogue): Add.
5169         * config/c4x/c4x-protos.h (c4x_interrupt_function_p): Add.
5170         (c4x_expand_prologue, c4x_expand_epilogue): Likewise.
5171         (c4x_valid_type_attribute_p): Likewise.
5172         * config/c4x/c4x.h (FUNCTION_PROLOGUE, FUNCTION_EPILOGUE): Delete.
5173         (FUNCTION_BLOCK_PROFILER_EXIT): Convert to emit RTL.
5175 2000-07-30  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5177         * config/c4x/c4x.c (c4x_emit_move_sequence): Use loadqi_big_constant
5178         and loadhi_big_constant if applicable.
5179         * config/c4x/c4x.md (loadqi_big_constant, loadhi_big_constant): Tweak
5180         and add new splitter.s
5182 2000-07-30  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5184         * config/c4x/c4x.c (c4x_rptb_insert): Make more robust.
5186 2000-07-30  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5188         * config/c4x/c4x.h (ASM_FORMAT_PRIVATE_NAME): Output $ in label.
5190 2000-07-30  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5192         * config/c4x/c4x.h (IS_XXX_REGNO): Rewrite to avoid unsigned warnings.
5194 2000-07-30  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5196         * config/c4x/libgcc.S (divqf3): Improve accuracy.
5198 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
5200         Put phi nodes after NOTE_INSN_BASIC_BLOCK.
5201         * rtl.h (NOTE_INSN_BASIC_BLOCK_P): New macro.
5202         * bb-reorder.c (get_next_bb_note): Use NOTE_INSN_BASIC_BLOCK_P.
5203         (get_prev_bb_note): Likewise.
5204         (remove_scope_notes): Likewise.
5205         * flow.c (commit_one_edge_insertion): Likewise.
5206         (merge_blocks_nomove): Likewise.
5207         (verify_flow_info): Likewise.
5208         * gcse.c (insert_insn_end_bb): Likewise.
5209         * reg-stack.c (emit_swap_insn): Likewise.
5210         * ssa.c (first_insn_after_basic_block_note): New function.
5211         (insert_phi_node): Use it.
5212         (rename_block): Likewise.
5213         (eliminate_phi): Likewise.
5214         (make_regs_equivalent_over_bad_edges): Likewise.
5215         (make_equivalent_phi_alternatives_equivalent): Likewise.
5216         (for_each_successor_phi): Likewise.
5217         (convert_from_ssa): Modify phi-node deletion algorithm.
5219 2000-07-29  Andreas Jaeger  <aj@suse.de>
5221         * configure.in (mips*-*-linux*): Use mips*el to check for little
5222         endian MIPS, add tmake_file.
5224         * config/mips/linux.h (TARGET_VERSION): Use GNU/Linux.
5225         (SUBTARGET_CPP_SPEC): Default MIPS_ISA is 1.
5226         Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
5228 2000-07-28  Richard Henderson  <rth@cygnus.com>
5230         * config/ia64/ia64.c (ia64_print_operand): Fix typos.
5231         Sign extend mode size before negating.
5233 2000-07-28  Richard Henderson  <rth@cygnus.com>
5235         * emit-rtl.c (gen_lowpart_common): Add missing 'c' variable.
5237 2000-07-28  Bernd Schmidt  <bernds@cygnus.co.uk>
5239         * cse.c (canon_hash): Handle PRE_MODIFY/POST_MODIFY.
5240         (cse_insn): Likewise.
5241         (addr_affects_sp_p): Likewise.
5242         * expr.c (move_by_pieces): Likewise.
5243         (clear_by_pieces): Likewise.
5244         * gcse.c (oprs_unchanged_p): Likewise.
5245         * haifa-sched.c (sched_analyze_2): Likewise.
5246         * recog.c (offsettable_address_p): Likewise.
5247         * regclass.c (record_address_regs): Likewise.
5248         * reload.c (find_reusable_reload): Likewise.
5249         (push_reload): Likewise.
5250         (operands_match_p): Likewise.
5251         (decompose): Likewise.
5252         (find_reloads_address_1): Likewise.
5253         (find_inc_amount): Likewise.
5254         * reload1.c (elimination_effects): Likewise.
5255         * resource.c (mark_set_resources): Likewise.
5256         * flow.c (attempt_auto_inc): New function; mostly broken out
5257         of find_auto_inc.
5258         (find_auto_inc): Split into two functions and enhanced to
5259         generate POST_MODIFY.
5260         * rtl.def (PRE_MODIFY, POST_MODIFY): Adjust comment.
5261         * rtl.h (count_all_occurrences):  Declare.
5262         (HAVE_{PRE,POST}_MODIFY_{DISP,REG}): Provide default of 0 if not
5263         defined.
5264         * rtlanal.c (count_all_occurrences): New function.
5265         * tm.texi (HAVE_POST_MODIFY_DISP, HAVE_PRE_MODIFY_DISP,
5266         HAVE_POST_MODIFY_REG, HAVE_PRE_MODIFY_REG): Document.
5268         * config/ia64/ia64-protos.h (destination_operand): Declare.
5269         * config/ia64/ia64.c (destination_operand): New function.
5270         (ia64_print_operand): Handle POST_MODIFY.
5271         (rtx_needs_barrier): Likewise.
5272         * config/ia64/ia64.h (HAVE_POST_MODIFY_DISP): Define to 1.
5273         (HAVE_POST_MODIFY_REG): Define to 1.
5274         (MAX_REGS_PER_ADDRESS): Change to 2.
5275         (GO_IF_LEGITIMATE_ADDRESS): Accept POST_MODIFY too.
5276         (LEGITIMATE_ADDRESS_REG): New helper macro.
5277         (LEGITIMATE_ADDRESS_DISP): Likewise.
5278         (PREDICATE_CODES): Add entry for destination_operand.
5279         * config/ia64/ia64.md (all mov patterns): Use destination_operand
5280         predicate for operand 0.
5282 2000-07-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5284         * dwarf2out.c: Indent #error directive.
5286         * gbl-ctors.h: Fix typo in comment.
5287         (__do_global_ctors): Prototype.
5289         * gcse.c (record_one_set, pre_delete): Remove unused variables.
5291         * rs6000.c (rs6000_maybe_dead): Delete unused prototype.
5292         (print_operand): Initialize variable `t'.
5294 2000-07-27  Aldy Hernandez  <aldyh@redhat.com>
5296         * config/arm/arm.md ("call_value"): removed constraints.
5297         Constraints are ignored in expanders.
5298         (*call_value_reg): split =rf into various constraints.
5299         (*call_value_mem): same
5300         (*call_value_symbol): same
5301         (*sibcall_value_insn): same
5303 2000-07-28  Philipp Thomas  <pthomas@suse.de>
5305         * install.texi (--enable-nls): Change the description of the NLS
5306         related configure options to match the current state.
5307         (--with-included-gettext): Likewise.
5308         (--enable-maintainer-mode): New description added.
5309         * extend.texi (-fstrict-prototype): Add missing '.'.
5311 2000-07-27  Jim Wilson  <wilson@cygnus.com>
5313         * dwarf2out.c (gen_decl_die): Don't call gen_abstract_function if
5314         DECL_INITIAL (decl) == NULL_TREE.
5316 2000-07-27  Alexandre Oliva  <aoliva@redhat.com>
5318         * Makefile.in (INSN_ATTR_H): New macro.  Replace all dependencies
5319         on insn-attr.h with it.
5320         * genattr.c: Generate `#include "insn-addr.h"' if HAVE_ATTR_length.
5321         * insn-addr.h: New header.
5322         (insn_addresses_): Renamed from insn_addresses.
5323         (INSN_ADDRESSES_DEFN, INSN_ADDRESSES, INSN_ADDRESSES_ALLOC,
5324         INSN_ADDRESSES_FREE, INSN_ADDRESSES_SET_P, INSN_ADDRESSES_SIZE,
5325         INSN_ADDRESSES_NEW): New macros.
5326         * genattrtab.c (write_test_expr): Use new macros.
5327         * final.c (insn_addresses, init_insn_lengths): Likewise.
5328         (align_fuzz, shorten_branches): Likewise.
5329         (final): Likewise.  Do not reject new insns if their addresses
5330         have been added to INSN_ADDRESSES.
5331         * config/arm/arm.c, config/avr/avr.c: Use new macros.
5332         * config/h8300/h8300.c, config/i370/i370.c: Likewise.
5333         * config/m88k/m88k.c, config/pa/pa.c, config/pa/pa.md: Likewise.
5334         * config/sparc/sparc.c, config/sparc/sparc.md: Likewise.
5335         * config/sh/sh.c: Likewise.
5336         (output_branchy_insn): Use INSN_ADDRESSES_NEW.
5338         * Makefile.in (bootstrap): Move -BstageN/ back to the beginning.
5340 2000-07-27  Andrew Cagney  <cagney@b1.cygnus.com>
5342         * gcc.c (struct prefix_list): Add member priority.
5343         (enum path_prefix_priority): Declare.
5344         (add_prefix): Replace ``first'' with ``priority''.  Append new
5345         entry but keep list in priority order.
5346         (process_command): Update.  Pass PREFIX_PRIORITY_B_OPT or
5347         PREFIX_PRIORITY_LAST to add_prefix.
5348         (process_command): Move include kludge - foo/stageN - to before
5349         foo/include.
5351 2000-07-27  Jason Merrill  <jason@redhat.com>
5353         * dwarf2out.c (gen_typedef_die): Abort if we get identical
5354         TREE_TYPE and DECL_ORIGINAL_TYPE on a typedef.
5356 2000-07-27  RodneyBrown  <RodneyBrown@pmsc.com>
5358         * expr.h (get_alias_set, lang_get_alias_set): Delete prototypes.
5359         * tree.h (get_alias_set, lang_get_alias_set): Prototype.
5361 2000-07-27  Joseph S. Myers  <jsm28@cam.ac.uk>
5363         * c-decl.c (finish_function): Don't treat 'main' specially unless
5364         flag_hosted.  In C99 mode, return 0 from 'main' unless
5365         DEFAULT_MAIN_RETURN is otherwise defined.
5367         * c-decl.c (store_parm_decls): In C99 mode, pedwarn for function
5368         parameters defaulting to int in an old-style function definition.
5370 2000-07-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5372         * c-parse.in (string): For -Wtraditional, warn about string
5373         concatenation only once per line.
5375 Thu Jul 27 09:25:17 2000  Akiko Matsushita  <matusita@sra.co.jp>
5377         * pa/x-pa-hpux: Add -D_HIUX_SOURCE to FIXPROTO_DEFINES
5378         for HI-UX/WE2 systems.
5380 2000-07-24  Bruce Korb  <bkorb@gnu.org>
5382         * fixincl/fixfixes.c(emit_gnu_type): rewrote to *rely* on GCC
5383         defining the __xxx_TYPE__ macros.
5384         * fixincl/fixincl.tpl(gnu_type_map): now obsolete
5385         * fixincl/fixlib.h: don't need to include "tm.h" anymore
5386         * fixincl/inclhack.def(type_map): now obsolete
5388 Thu Jul 27 11:54:17 2000  Andrew Cagney  <cagney@b1.cygnus.com>
5390         * cpp.texi: Append a trailing full-stop to xrefs where needed.
5392 2000-07-26  Dave Pitts  <dpitts@cozx.com>
5394         * i370.c: Remove LONGEXTERNAL ifdef from alias_number. Added hash
5395         routine constants.
5396         (mvs_hash_alias): New function.
5397         (mvs_add_alias): Change argument spacing.
5398         (mvs_need_alias): Change aliasing criteria. Added documentation.
5399         (mvs_get_alias): Change to use hashed name. The hashed name prevents
5400         CSECT name collisions.
5401         (mvs_check_alias): Likewise.
5402         (handle_pragma): Change documentation.
5403         * i370.md (mulsi3, divsi3, udivsi3, modsi3, umodsi3): Changed gen_rtx
5404         mode from SImode to DImode.
5405         (iorhi3): Changed LTORG size for insn.
5407 Wed Jul 26 19:44:05 2000   Hans-Peter Nilsson  <hp@axis.com>
5409         * reload.c (find_reloads_toplev): Reload a paradoxical subreg of a
5410         mem if the address is a mode_dependent_address_p.
5412 2000-07-26  Kazu Hirata  <kazu@hxi.com>
5414         * h8300.c (print_operand): Print ":8" when the 'R' operand is
5415         suitable for 8-bit absolute.
5416         * h8300.h (EIGHTBIT_CONSTANT_ADDRESS_P): New.
5417         (OK_FOR_U): Add a case for the 8-bit constant address on the
5418         H8/300H.
5420 Wed Jul 26 19:26:21 2000  Hans-Peter Nilsson  <hp@axis.com>
5422         * varasm.c (assemble_variable) [! defined(ASM_OUTPUT_ALIGNED_COMMON)
5423         && ! defined (ASM_OUTPUT_ALIGNED_BSS]): Also test
5424         ! defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) before complaining about
5425         lack of implemented alignment.
5427 2000-07-26  Geoffrey Keating  <geoffk@cygnus.com>
5429         * emit-rtl.c (gen_lowpart_common) [REAL_ARITHMETIC]: Handle
5430         cross-compiling between 64-bit and 32-bit machines.
5432 2000-07-27  Richard Henderson  <rth@cygnus.com>
5434         * config/ia64/ia64.md (movqicc_astep, movqi_internal_astep): New.
5435         (movhicc_astep, movhi_internal_astep): New.
5436         (movsicc_astep, movsi_internal_astep): New.
5437         (movdicc_astep, movdi_internal_astep): New.
5438         (movsfcc_astep, movsf_internal_astep): New.
5439         (movdfcc_astep, movdf_internal_astep): New.
5440         (movxfcc_astep, movxf_internal_astep): New.
5441         (cmovdi_internal_astep, cmovsi_internal_astep): New.
5442         Unify the cmov[ds]i splitters.
5444 2000-07-27  Rodney Brown  <RodneyBrown@pmsc.com>
5446         * real.c (asctoeg): Rename `error' label to unexpected_char_error
5448 2000-07-26  Nick Clifton  <nickc@cygnus.com>
5450         * config/arm/vxarm.h (CPP_PREDEFINES): Remove definition of
5451         __arm__.  Allow it to be defined by CPP_ISA_SPEC in arm.h
5453         * dwarf2out.c (dwarf2out_frame_debug_expr): Accept SEQUENCE as
5454         well as PARALLEL blocks in FRAME_RELATED_EXPR notes.
5456 2000-07-26  Alexandre Oliva  <aoliva@redhat.com>
5458         * c-decl.c (finish_enum): Convert enumerations that fit in an
5459         `int' to `int'.
5460         (build_enumerator): In pedantic mode, cast to `int' those that
5461         don't.
5463 2000-07-25  Rodney Brown  <RodneyBrown@pmsc.com>
5465         * config/alpha/osf.h (SIZE_TYPE, PTRDIFF_TYPE): New.
5467 Tue Jul 25 23:08:33 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
5469         * sh.md (cmpgtdi_t): Must be split.
5470         (cmpgtdi_t+1): New splitter.
5472 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
5474         * cpplib.c (_cpp_check_directive): Issue -Wtraditional
5475         warnings for indented directives even if we are skipping.
5477 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
5479         * invoke.texi (strict-prototypes): Remove.
5480         * extend.texi (Deprecated Features): Add strict-prototypes.
5481         (Backwards Compatibility): New node.
5483 2000-07-25  Jakub Jelinek  <jakub@redhat.com>
5485         * config/i386/i386.md (andsi_1+1): Allow HImode.
5486         (andsi_1+2): Require q_regs_operand.
5488 2000-07-25  Jakub Jelinek  <jakub@redhat.com>
5490         * config/i386/i386.md (call_pop): Check operands[0],
5491         not operands[1]. Only check SYMBOL_REF_FLAG for a SYMBOL_REF.
5492         (call): Likewise.
5493         (call_value_pop): Only check SYMBOL_REF_FLAG for a SYMBOL_REF.
5494         (call_value): Likewise.
5496 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
5498         * toplev.c (pipe_closed): Delete.
5499         (crash_signal): New.  Generate ICE for a fatal signal.
5500         (float_signal): Call crash_signal outside a float-handler
5501         block, not abort.
5502         (main): Install crash_signal as handler for core-dumping signals.
5504 2000-07-25  David Edelsohn  <edelsohn@gnu.org>
5506         * rs6000.c (print_operand, case 'T'): New case.
5508         * rs6000.md (call_indirect_aix32): Convert to expander of
5509         scheduled instructions.
5510         (call_indirect_aix64): Likewise.
5511         (call_value_indirect_aix{32,64}): Likewise.
5512         (call, call_value): Invoke expanders for AIX.  Fall through to
5513         matchers for SysV.
5514         (call_indirect_nonlocal_aix{32,64}): New patterns (ctr and lr).
5515         (call_value_indirect_nonlocal_aix{32,64}): New patterns.
5516         (call_nonlocal_aix32): Remove CALL_LONG alternative.  Operand 1
5517         only "g" constraint.
5518         (call_nonlocal_aix64): Likewise.
5519         (call_value_nonlocal_aix{32,64}): Likewise.
5520         (call_nonlocal_sysv): New pattern for ctr, lr, and symbolic
5521         operands.
5522         (call_value_nonlocal_sysv): New pattern.
5523         (indirect_jump{si,di}): Use new 'T' modifier.
5524         (tablejump{si,di} matchers): Likewise.
5525         (return_internal_{si,di}): Likewise.
5526         (return_eh_{si,di}): Likewise.
5528 2000-07-24  Richard Henderson  <rth@cygnus.com>
5530         * config/ia64/ia64.c (ia64_print_operand): Handle "%,".
5531         * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): Likewise.
5532         * config/ia64/ia64.md (movdi_internal): Use it.
5534 2000-07-24  Zack Weinberg  <zack@wolery.cumb.org>
5536         * cppexp.c: Warn about unary + if -Wtraditional.
5537         * cpplex.c (lex_line): Always set BOL on the first token of a line.
5539 2000-07-24  Michael Meissner  <meissner@redhat.com>
5541         * d30v.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Delete references to
5542         unsupported macro.
5544 2000-07-24  Nick Clifton  <nickc@cygnus.com>
5546         * config/arm/arm.c (emit_multi_reg_push): Generate a
5547         REG_FRAME_RELEATED_NOTE that is compatable with the code in
5548         dwarf2out_debug_frame_expr.
5550 2000-07-24  Jason Merrill  <jason@redhat.com>
5552         * dwarf2out.c: Complain if DWARF2_DEBUGGING_INFO is defined without
5553         UNALIGNED_INT_ASM_OP.
5554         (def_cfa_1): Don't emit def_cfa_register or def_cfa_offset to adjust
5555         a location expression.
5556         (dwarf2out_frame_debug_expr): Lose cfa_old_reg stuff.  Don't
5557         assume indirect access if we're saving the CFA address exactly.
5559         * Makefile.in (bootstrap): Move -BstageN/ to the end.
5561 2000-07-24  Jakub Jelinek  <jakub@redhat.com>
5563         * tradcpp.c (main): Update max_include_len for cpp_include_defaults
5564         as well.
5566 2000-07-24  Michael Meissner  <meissner@redhat.com>
5568         * invoke.texi (D30V Options): Add d30v options.
5570 Mon Jul 24 02:04:52 2000  Jeffrey A Law  (law@cygnus.com)
5572         * gcse.c (alloc_pre_mem): Do not alloc TRANSPOUT, it is not
5573         needed by our gcse pass anymore.
5574         (free_pre_mem): Corresponding changes.
5575         (compute_pre_data): Do not call compute_transpout anymore.
5577         * gcse.c (alloc_avail_expr_mem): Kill unused 'u_bitmap'.
5578         (free_avail_expr_mem, alloc_pre_mem, free_pre_mem): Corresponding
5579         changes.
5581         * gcse.c (free_pre_mem): Do not free ANTLOC and AE_KILL here.
5582         (compute_pre_data): Do it here instead.
5584         * gcse.c (alloc_pre_mem, free_pre_mem): Delete unused bitmap
5585         'temp_bitmap'.
5586         (pre_delete): Corresponding changes.
5588 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
5590         * c-semantics.c (make_rtl_for_local_static): Use TREE_ASM_WRITTEN
5591         to figure out whether or not a variable has already been emitted.
5593 Sun Jul 23 14:49:12 2000  Jason Eckhardt  <jle@cygnus.com>
5595         * config/i860/i860.md (untyped_call expander): Use GEN_CALL
5596         instead of gen_call.
5598 Sun Jul 23 11:52:03 2000  George Helffrich (george@gly.bris.ac.uk)
5600         * dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab.
5602 2000-07-23  Kazu Hirata  <kazu@hxi.com>
5604         * h8300.c: Fix formatting.
5606 2000-07-23  Joseph S. Myers  <jsm28@cam.ac.uk>
5608         * c-typeck.c (c_expand_start_case): Change -Wtraditional pedwarn
5609         for `long' switch expression into a plain warning.
5611         * c-lex.c (init_lex): Keep the "inline" keyword in C99 mode.
5612         (yylex): Don't pedwarn for "inline" in C99 mode.
5614         * bitmap.c (debug_bitmap_file): Cast pointers to PTR for printing
5615         with %p.
5616         * ggc-page.c (debug_print_page_list, alloc_page, free_page,
5617         ggc_alloc): Likewise.
5618         * bb-reorder.c (dump_scope_forest_1): Likewise.
5620 2000-07-22  Aldy Hernandez  <aldyh@redhat.com>
5622         * reload.c (find_reloads_toplev): Add new parameter
5623         "address_reloaded".
5624         (find_reloads): Add new parameter to find_reloads_toplev calls.
5626 2000-07-22  Jeffrey Oldham  <oldham@codesourcery.com>
5628         * collect2.c (main): Typo fixed.
5629         * diagnostic.c: Typo fixed.
5630         * dwarf2out.c (dwarf2out_frame_debug_expr): Typo fixed.
5631         * eh-common.h: Typo fixed.
5632         * emit-rtl.c (start_sequence): Typo fixed.
5633         * flow.c (find_label_refs): Typo fixed.
5634         (calculate_global_regs_live): Typo fixed.
5635         (mark_regno_cond_dead): Typo fixed.
5636         (create_edge_list): Typos fixed.
5637         (verify_edge_list): Typo fixed.
5638         * ggc-common.c (ggc_mark_rtx_children): Typo fixed.
5639         * loop.c (strength_reduce): Typo in function name fixed.
5640         * rtl.h: Added comments.  Typo in function name fixed.
5641         * rtlanal.c: Typo in function name fixed.
5642         (insn_dependant_p): Rename to ...
5643         (insn_dependent_p): ... this.
5644         (computed_jumo_p): Typo fixed.
5646 2000-07-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5648         * system.h (__FUNCTION__): Wrap definition in #ifndef.
5650 2000-07-21  David Edelsohn  <edelsohn@gnu.org>
5652         * rs6000.h (SIZE_TYPE): Define.
5654 2000-07-21  Mark Mitchell  <mark@codesourcery.com>
5656         * ssa.c (rename_insn_1): Don't rename registers that are
5657         CLOBBERed.
5659 2000-07-21  Zack Weinberg  <zack@wolery.cumb.org>
5661         * diagnostic.c (trim_filename, fancy_abort): Moved here from
5662         rtl.c.
5663         (fatal_function, set_fatal_function): Removed.
5664         (fatal): Don't prepare for or call the fatal_function.
5665         (diagnostic_lock, error_recursion): New.
5666         (diagnostic_for_decl, report_diagnostic): Guard against
5667         re-entering the error reporting routines.
5668         (fancy_abort): Assume function is not NULL.
5670         * errors.c (fancy_abort): New.  Assume function is not NULL.
5671         * tradcpp.c (fancy_abort): Assume function is not NULL.
5673         * system.h: Provide default definition of __FUNCTION__.
5674         * rtl.h: Use __FUNCTION__ not __PRETTY_FUNCTION__ throughout.
5675         Always use __FUNCTION__ in definition of abort.
5676         * tree.h: Likewise.
5677         * varray.h: Likewise.
5678         * toplev.h: Likewise.  Don't prototype set_fatal_function.
5680 2000-07-20  Geoff Keating  <geoffk@cygnus.com>
5682         * config/rs6000/aix43.h (CPP_SPEC): Define __LONG_MAX__ correctly
5683         in 64-bit mode.
5684         * glimits.h: Don't do #if defined for ARCH_PPC.
5686         * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): All
5687         constants of size no larger than a pointer should go in the TOC.
5688         Add 'MODE' parameter.
5689         (LEGITIMIZE_RELOAD_ADDRESS): Add MODE parameter to
5690         ASM_OUTPUT_SPECIAL_POOL_ENTRY_P.
5691         (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Likewise.
5692         * config/rs6000/aix.h (SELECT_RTX_SECTION): Likewise.
5693         * config/rs6000/netware.h (SELECT_RTX_SECTION): Likewise.
5694         * config/rs6000/rs6000.c (constant_pool_expr_1): Likewise.
5695         (rs6000_legitimize_address): Likewise.
5696         (rs6000_emit_move): Likewise.
5697         (rs6000_select_rtx_section): Likewise.
5698         (output_toc): Deal properly with outputting small constants like
5699         HImode, and SFmode in 32-bit mode, and DFmode in 64-bit mode.
5700         * config/rs6000/sysv4.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Add
5701         MODE parameter.  Put small constants in the TOC.
5703         * config/rs6000/rs6000.c (easy_fp_constant_p): All constants are
5704         easy in SImode.
5705         (rs6000_emit_move): When reload calls us with an illegitimate
5706         address, exit early.  Move the change_address calls to one place
5707         at the end of the routine.  Merge the SImode and DImode expanders.
5708         When called by reload to put an integer into a FP register, force
5709         it to memory.
5711         * config/rs6000/rs6000.c (struct toc_hash_struct): Add 'key_mode'
5712         field.
5713         (rs6000_hash_constant): Hash mode too.
5714         (toc_hash_function): Allow for key_mode.
5715         (toc_hash_eq): Structures are different if key_mode differs.
5716         (output_toc): Add 'mode' parameter.  Save key_mode.
5717         * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY):
5718         Pass 'mode' parameter.
5719         * config/rs6000/rs6000-protos.h (output_toc): Add 'mode' param.
5721         * config/rs6000/rs6000.c (output_toc): Use RS6000_OUTPUT_BASENAME
5722         for vtable references.
5724         * config/rs6000/rs6000.h (PREFERRED_RELOAD_CLASS): If we have a
5725         choice, don't put integer values in FP regs.
5727 Thu Jul 20 18:13:52 2000  Jeffrey A Law  (law@cygnus.com)
5729         * flow.c (verify_flow_info): Revamp code to verify that the
5730         head and end of each basic block are in the insn chain.
5732 Thu Jul 20 18:02:35 2000  Michael Matz <matzmich@cs.tu-berlin.de>
5734         * gcse.c (record_one_set): Prepend instead of append onto
5735         reg_set_table, making it O(n) instead O(n^2).
5736         * lcm.c (compute_antinout_edge,compute_laterin,compute_available):
5737         Use a queue instead of a stack as worklist.
5739 2000-07-20  Kazu Hirata  <kazu@hxi.com>
5741         * h8300.c (two_insn_adds_subs_operand): Fix a typo.
5742         * h8300.h (OK_FOR_T): New.
5743         (EXTRA_CONSTRAINT): Support OK_FOR_T.
5744         * h8300.md: Use inc/dec.[wl] for increment/decrement
5745         by 1 and 2 in HI and SI modes.
5747 2000-07-20  Jim Wilson  <wilson@cygnus.com>
5749         * config/ia64/ia64.h (ASM_OUTPUT_MI_THUNK): Handle DELTA values
5750         larger than 14 bits.
5752 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
5754         * cppmacro.c (CAN_PASTE_AFTER): New macro.
5755         (count_params): Don't set GNU_REST_ARGS on anything.
5756         (save_expansion): Set PASTE_LEFT only on tokens for which
5757         CAN_PASTE_AFTER is true, or which are named operators.
5759         * cpplex.c (parse_args): Distinguish between a rest argument
5760         given one empty argument, and a rest argument given zero arguments.
5761         (maybe_paste_with_next): Look for VOID_REST tag, and trigger
5762         deletion of previous token based on that.
5763         (get_raw_token): Flatten some control structure.
5765         * cpplib.h (CPP_LAST_EQ): Correct.
5766         (VOID_REST): New token flag.
5767         (GNU_REST_ARGS): Delete.
5769         * tradcpp.c (main): Don't munge -D options.
5770         (make_definition): Bring -D handling in line with cpplib.
5771         (do_define): Strip all leading whitespace from macro definitions.
5773 2000-07-20  David Billinghurst <David.Billinghurst@riotinto.com.au>
5775         * Makefile.in (tradcpp): Depend on intl.o and version.o.
5777 2000-07-20  Bruce Korb  <bkorb@gnu.org>
5779         * fixincl/check.tpl: strip the platform specific types before testing
5780         * fixincl/fixfixes.c(gnu_type_fix): use platform specific types
5781         * fixincl/fixincl.tpl: use platform specific types
5782         * fixincl/fixlib.h: include the platform specific types
5783         * fixincl/inclhack.def(gnu_types): don't supply the types
5784         * fixincl/fixincl.x: regen
5786 2000-07-19  Jim Wilson  <wilson@cygnus.com>
5788         * config/ia64/ia64.h (HARD_REGNO_MODE_OK): Don't allow XFmode in
5789         GR_REGS.
5791 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
5793         * tradcpp.c (rescan): Do not recognize directives when the #
5794         is indented.
5796 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
5798         Implement C++ named operators.
5800         * cpplib.h (TTYPE_TABLE): Move CPP_MIN and CPP_MAX into block
5801         of operators allowed in #if and having an _EQ variant.  Add
5802         CPP_MIN_EQ, CPP_MAX_EQ, and CPP_DEFINED.
5803         (cpp_token flags): Add NAMED_OP.
5804         (enum node_type): Add T_OPERATOR.
5805         (struct cpp_hashnode): Add code slot to value union.
5806         * cpphash.h (spec_nodes): Remove n_defined.
5808         * cpplex.c (lex_line): Convert T_OPERATOR nodes to their proper types.
5809         (spell_token, can_paste, maybe_paste_with_next): Handle named operators.
5810         (is_macro_disabled): Tweak error messages.
5812         * cpplib.c (get_define_node): Disallow all named operators as
5813         macro names.  Tweak error messages.
5814         (_cpp_init_stacks): Don't set up spec_nodes->n_defined.
5816         * cppinit.c (builtin_array): Add entries for the named operators.
5817         * cppexp.c (lex): Check for CPP_DEFINED token.
5818         (priority table): Add entries for CPP_MIN and CPP_MAX.
5819         (_cpp_parse_expr): Handle CPP_MIN and CPP_MAX.
5821 2000-07-19  Bernd Schmidt  <bernds@cygnus.co.uk>
5823         * gcse.c (INSN_CUID): If ENABLE_CHECKING, abort if the uid is
5824         larger than the array of cuids.
5825         (alloc_gcse_mem): Use uid_cuid rather than INSN_CUID when computing
5826         cuids.
5828 2000-07-19  Bruce Korb  <bkorb@gnu.org>
5830         * fixinc/fixincl.c:  Convert to using a table of environment variables
5831         and activate the auto-edit marker on the fixed output files.
5832         * fixinc/fixlib.h:  Define the environment table
5833         * fixinc/fixincl.sh: export the ${INPUT} dir
5834         * fixinc/check.tpl: likewise
5836 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
5838         * gcc.c (.h spec): Fix typo.
5840 Wed Jul 19 01:22:15 CEST 2000  Marc Espie  <espie@cvs.openbsd.org>
5842         * Makefile.in: Fix tradcif.c path.
5844 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
5846         * cpplib.h (TTYPE_TABLE): Rearrange to use only two per-entry
5847           macros, not five.
5849         * cpphash.h (TOKEN_NAME): New macro.
5850         (_cpp_spell_operator): Deleted.
5851         (token_spellings): Now _cpp_token_spellings.
5853         * cppexp.c: Use TOKEN_NAME or TYPE_NAME, not _cpp_spell_operator.
5854         * cpplex.c: Use OP and TK macros when expanding the
5855         TTYPE_TABLE.  Eliminate token_names.  For non-OPERATOR tokens,
5856         store the stringification of the enumeration name (CPP_CHAR,
5857         etc.) in the name slot of token_spellings.
5858         Use TOKEN_NAME and/or TOKEN_SPELL, do not reference
5859         token_spellings directly.
5860         * cpplib.c: Use TOKEN_SPELL.
5862         * cpplex.c (_cpp_push_token): If the token being pushed back
5863         is the previous token in this context, just subtract one from
5864         context->posn.
5865         * cppmacro.c (save_expansion): Clear aux field when storing a
5866         placemarker.
5868 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
5870         * cpplex.c (cpp_scan_buffer): Output line command even at the stop
5871         buffer, provided it is not NULL.
5873 2000-07-18  Alexandre Oliva  <aoliva@redhat.com>
5875         * c-decl.c (duplicate_decls): Do not call make_var_volatile() in
5876         case of invalid volatile re-declaration.
5878 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
5880         * calls.c (store_arg): Return non-zero if sibcall_failure is desired.
5881         (expand_call): Adjust caller.
5883 2000-07-17  Gabriel Dos Reis  <gdr@codesourcery.com>
5885         * diagnostic.h (report_diagnostic): Change prototype.
5887         * diagnostic.c (output_do_verbatim, diagnostic_for_asm,
5888         diagnostic_for_decl):  Change prototype.
5889         (error_with_decl, warning_with_decl, pedwarn_with_decl, warning,
5890         error, warning, error_with_file_and_line,
5891         warning_with_file_and_line, pedwarn_with_file_and_line, fatal):
5892         Adjust call to report_diagnostic, diagnostic_for_decl.
5893         (error_for_asm, warning_for_asm): Adjust call to diagnostic_for_asm.
5894         (output_verbatim, verbatim): Adjust call to output_do_verbatim.
5896         * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic. End
5897         varaible argument list.
5899 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
5901         * cpphash.c: Don't include hashtab.h.  Most macro-handling code
5902         moved to cppmacro.c.
5903         (hash_HASHNODE, eq_HASHNODE, _cpp_dump_macro_hash,
5904         dump_hash_helper): Delete.
5905         (expand_hash, higher_prime_number, _cpp_lookup_with_hash,
5906         cpp_forall_identifiers): New. Implement specialized version of
5907         Vlad's expandable hash table.
5908         (cpp_lookup): Use new functions.
5909         (_cpp_init_macros, _cpp_cleanup_macros): Adjust for new
5910         implementation.
5911         * cppmacro.c: New file.
5912         * cppinit.c (dump_macros_helper): New.
5913         (cpp_finish): Iterate over the identifier table directly.
5914         * cpplex.c (parse_name): Calculate the hash of the identifier
5915         while we scan it.  Use _cpp_lookup_with_hash when we can.
5917         * cpphash.h: Update prototypes.
5918         (xcnewvec, HASHSTEP): New helper macros.
5919         * cpplib.h: Update prototypes.
5920         * Makefile.in (LIBCPP_OBJS): Add cppmacro.o.
5921         (cppmacro.o): New rule.
5922         (cpphash.o): Update deps.
5924         * cppmain.c: Do not set pfile->printer if no_output is on.
5926 2000-07-15  Neil Booth  <neilb@earthling.net>
5928         * cpplib.c: Change all directive-handler functions to return
5929         void, not int.
5930         * cpphash.h: Update typedefs.
5932 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
5934         * configure: Regenerate.
5936         * extend.texi (Extended Asm): Mention that a memory clobber
5937         does not count as a side-effect.
5939         * unroll.c (copy_loop_body): Fix one instance of using host
5940         arithmetic on the target; fixes loop-4 on a 32-bit -> 64-bit
5941         cross-compile.
5943         * tlink.c (scan_linker_output): Tweak for output of AIX ld.
5945 2000-07-17  Richard Henderson  <rth@cygnus.com>
5947         * config/ia64/ia64.md (movdi): Split out load address code.
5948         New post-reload splitter for symbolic operands.
5949         (movdi_internal): Abort if we didn't split symbolic operands
5950         when we should have.
5951         * config/ia64/ia64.c (ia64_expand_load_address): New, from movdi bits.
5952         (ia64_reorg): Split insns when not optimizing.
5953         * config/ia64/ia64-protos.h (ia64_expand_load_address): Declare.
5955 Mon Jul 17 23:43:26 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5957         * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Use LONG_DOUBLE_TYPE_SIZE
5958         instead of MAX_LONG_DOUBLE_TYPE_SIZE to decide output format.
5960 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
5962         * loop.c (check_dbra_loop) : Changed loop_continue to loop->cont.
5964 2000-07-17  Jason Merrill  <jason@redhat.com>
5966         * Makefile.in (clean): Remove libgcc directory.
5968         * configure.in (-Wno-long-long check): Use higher-level macros.
5970 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
5972         * simplify-rtx.c (simplify_binary_operation): Recognize
5973            (compare (gt[u] (cc) 0) (lt[u] (cc) 0)).
5974         (simplify_ternary_operation):  Do not examine MODE_BITSIZE of
5975            a CONST_INT, it will always be zero.
5977 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
5979         * loop.c (check_dbra_loop) : Return if more than one condition is
5980         present to control the loop.
5982 Mon Jul 17 08:26:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
5984         * mips.c (mips_expand_prologue): Don't calculate the last argument
5985         register unless we need it.  When we are calculating this, make
5986         sure FUNCTION_ARG is giving us a REG.
5988 2000-07-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
5990         * flow.c (libcall_dead_p): Use single_set to verify the insn
5991         has only one set and get for analysis.
5992         (propagate_one_insn): Don't pass the PATTERN of the insn.
5994 2000-07-17  Mark Klein <mklein@dis.com>
5996          * pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3.
5998 2000-07-17  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
6000         * Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
6001         * configure.in (TARGET_GETGROUPS_T): Evaluate.
6002         * sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
6003         of second argument of getgroups.
6004         * configure, config.in: Rebuilt.
6006 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
6008         * simplify-rtx.c (simplify_relational_operation): Two signed
6009         values with equal high words are less/greater than each other if
6010         their low words are less/greater when considered as unsigned.
6012 Mon Jul 17 02:37:06 2000  Marc Espie <espie@openbsd.org>
6014         * configure.in (vax-*-openbsd):  Change to new style configuration,
6015         add collect2/float_format information.
6016         * configure:  Rebuilt.
6017         * config/vax/openbsd1.h:  New.
6018         * config/vax/openbsd.h:  New.
6019         * config/vax/t-openbsd:  New.
6021 2000-07-17  Chip Salzenberg  <chip@valinux.com>
6023         * c-common.c (shorten_compare): Quiet warnings about unsigned
6024         comparisons with zero when they occur in a system header.
6026 2000-07-17  Joseph S. Myers  <jsm28@cam.ac.uk>
6028         * invoke.texi (-pedantic): Refer to ISO C instead of ANSI C, and
6029         update to describe current practice.
6031         * glimits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Define for C99.
6033         * contrib.texi, cpp.texi, extend.texi, invoke.texi: Update
6034         references to C9X.  Change references to -fstd and -flang-isoc9x
6035         to refer to -std.
6037         * c-common.c (scan_char_table): Allow "z" length modifiers on
6038         diouxXn formats.
6039         (check_format_info): Use TYPE_DOMAIN on the type matched against
6040         for "z" formats, to retrieve the language size_t rather than the
6041         internal one.
6043         * c-common.c (check_format_info): Do not make a pedantic objection
6044         to the 'L' length modifier if used with a floating point type
6045         character.
6047         * c-lex.c (yylex): Don't pedwarn for hexadecimal floating point
6048         constants in C99 mode.
6050 2000-07-17  Kazu Hirata  <kazu@hxi.com>
6052         * h8300.md: Fix the format of mac.
6053         (movsi_h8300hs): Output a tab after stmac instead of a space.
6055         * h8300.c (two_insn_adds_subs_operand): Improve code for detecting
6056         profitable adds/subs sequences.
6058         * fold-const.c: Fix comment typos.
6060 2000-07-16  Laurynas Biveinis  <lauras@softhome.net>
6062         * cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
6064 2000-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6066         * fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation.
6068 2000-07-16  Neil Booth  <NeilB@earthling.net>
6070         * cpplex.c: Update comments.
6071         * README.Portability: Small update.
6073 2000-07-16  Neil Booth  <NeilB@earthling.net>
6075         * README.Portability:  Small update.
6077 2000-07-15  Richard Henderson  <rth@cygnus.com>
6079         * config/ia64/ia64-protos.h (ia64_move_ok): Prototype.
6080         * config/ia64/ia64.c (ia64_move_ok): New function.
6081         * config/ia64/ia64.md (movqi, movqi_internal): Use it.
6082         (movhi, movsi, movdi, movsf, movdf, movxf): Likewise.
6084 2000-07-15  Zack Weinberg  <zack@wolery.cumb.org>
6086         * cpphash.c (save_expansion): Clear PREV_WHITE on tokens
6087         immediately following a paste operator.
6088         * cppinit.c (sort_options): New function (only for HOST_EBCDIC).
6089         (cpp_reader_init): Call it, if HOST_EBCDIC.
6090         (cpp_handle_options): Do not sort option list here.
6091         (handle_option): Rename to cpp_handle_option and export.
6092         * cpplex.c (cpp_scan_buffer_nooutput, cpp_scan_buffer): Use
6093         _cpp_get_token directly.
6094         (cpp_scan_line): Return 0 at EOF, 1 otherwise.
6095         * cpplib.c (cpp_push_buffer): Don't set new->lineno to 1.
6096         * cpplib.h: Prototype cpp_handle_option.  Update prototype of
6097         cpp_scan_line.
6099 2000-07-15  Richard Henderson  <rth@cygnus.com>
6101         * fold-const.c (extract_muldiv): Don't optimize past an unsigned
6102         cast around an expression.  Tidy other unsigned tests.
6104 2000-07-15  Gabriel Dos Reis  <gdr@codesourcery.com>
6106         * diagnostic.c (doing_line_wrapping, line_wrapper_printf, notice,
6107         v_error_with_decl, v_warning_with_decl, v_pedwarn_with_decl): Remove.
6108         (v_message_with_decl): Rename to ...
6109         (format_with_decl): ... this. Tweak
6110         (diagnostic_for_decl): New function.
6111         (fatal_io_error): Use verbatim in lieu of notice.
6112         (announce_function): Use verbatim.
6113         (default_print_error_function): Likewise.
6114         (error_with_decl, warning_with_decl, pedwarn_with_decl): Use new
6115         infratructure.
6117 2000-07-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6119         * mips.c (function_arg_pass_by_reference): Don't do automatic
6120         aggregate initialization.
6121         (machine_dependent_reorg): Initialize variable `mode'.
6123         * mips.md (absdi2): Change variable `regno1' to unsigned int.
6124         (reload_indi): Rename loword/hiword to lo_word/hi_word to avoid
6125         conflicts with sys/param.h macro of the same name.
6126         (reload_outdi): Likewise.
6128 2000-07-15  Michael Meissner  <meissner@redhat.com>
6130         * fold-const.c (fold): When optimizing FOO++ == CONST into ++FOO
6131         == CONST + INCREMENT, don't overwrite the tree node for FOO++,
6132         create a new node instead.
6134 2000-07-15  Neil Booth  <NeilB@earthling.net>
6136         * README.Portability: Correct example about calling a function
6137         through a pointer to function.  Format wide paragraphs.
6139 2000-07-15  Michael Meissner  <meissner@redhat.com>
6141         * README.Portability: Update integer suffixes and function
6142         prototype sections.
6144 2000-07-15  Neil Booth  <NeilB@earthling.net>
6146         * README.Portability: Small update.
6148 2000-07-15  Neil Booth  <NeilB@earthling.net>
6150         * README.Portability: New file.
6152 Fri Jul 14 18:13:53 2000  Mark P Mitchell  <mark@codesourcery.com>
6154         * INSTALL: Give special instructions for building GCC on Irix 6.
6155         * config/mips/x-iris6 (CC): Don't set it.
6156         (OLDCC): Likewise.
6158 2000-07-14  Jason Merrill  <jason@redhat.com>
6160         * dwarf2out.c (dwarf2out_frame_debug_expr): If we store the CFA
6161         register in the stack and later in another register, use the new
6162         register.
6164 Fri Jul 14 10:25:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
6166         * config/mips/mips.md: (absdi2): Handle sign_extend for
6167         second operand.
6169 2000-07-14  Nathan Sidwell  <nathan@codesourcery.com>
6171         * cpplib.c (do_pragma_dependency): Tidy warning messages.
6173 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
6175         * .cvsignore: Correct typo.
6177 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
6179         * .cvsignore: Add generated YACC files.
6180         * objc/.cvsignore: New file.
6182 2000-07-14  Neil Booth  <NeilB@earthling.net>
6184         * cpplex.c (adjust_column): New funcion.
6185         (skip_whitespace): Use it.
6186         (skip_block_comment): Use it, and warn about /*/* with
6187         -Wcomments.
6189 2000-07-14  Neil Booth  <NeilB@earthling.net>
6191         * cpphash.c (struct macro_info): Add new members.
6192         (_cpp_free_definition): Delete the macro directly.
6193         (count_params): Return void, with first token of
6194         expansion in struct macro_info on success.
6195         (parse_define): Return int.  Hoist syntax checking from
6196         save_macro_expansion.  Leave call to save_expansion to
6197         _cpp_create_definition.
6198         (alloc_macro): Needs just 2 arguments.
6199         (free_macro): Delete.
6200         (save_expansion): Don't perform syntax check.
6201         (_cpp_create_definition): Call save_expansion.
6203 2000-07-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6205         * genrecog.c (write_header): Split long string.
6207         * cpphash.c (macro_info): Don't use the `signed' keyword.
6209         * system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.
6211 2000-07-13  Jakub Jelinek  <jakub@redhat.com>
6213         * calls.c (stored_args_map): New variable.
6214         (check_sibcall_argument_overlap_1): New.
6215         (check_sibcall_argument_overlap): New.
6216         (expand_call): Initialize stored_args_map.
6217         Call check_sibcall_argument_overlap.
6219 2000-07-13  Bruce Korb  <bkorb@gnu.org>
6221         * fixinc/fixfixes.c: move EXIT_BROKEN to header, add sub-expr max count
6222         (emit_gnu_type): utility procedure for gnu_type_fix
6223         (gnu_type_fix): implement various pre-processor guards around
6224         standard types so these types can be defined over and over
6225         * fixinc/fixincl.tpl: add a "gnu_type_map" that forces the standard
6226         types alluded to above will have GNU-compliant base types
6227         * fixinc/fixlib.h: add EXIT_BROKEN define and the gnu_type_map struct
6228         * fixinc/inclhack.def: add test_text entries and utilize the new
6229         "gnu_types" fix for the ptrdiff_t, size_t and wchar_t types.
6230         * fixinc/fixincl.x: regenerate
6232 2000-07-12  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
6234         * diagnostic.c (vline_wrapper_message_with_location,
6235         v_message_with_file_and_line, v_error_with_file_and_file,
6236         v_error_for_asm, v_warning_for_asm, vfatal,
6237         v_warning_with_file_and_line, v_pedwarn_with_file_and_line,
6238         vsorry, verror, vwarning, vpedwarn): Remove.
6239         (diagnostic_for_asm): New function.
6240         (pedwarn, error, warning, pedwarn_with_file_and_line,
6241         error_with_file_and_line, warning_with_file_and_line, sorry,
6242         error_for_asm, warning_for_asm, fatal): Reimplement.
6243         (finish_diagnostic): Clear diagnostic info as well.
6245 2000-07-13  Neil Booth  <NeilB@earthling.net>
6247         * c-common.h (flag_digraphs): New.
6248         * c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
6249         * c-lex.c (yylex): Use flag_digraphs to decide whether to
6250         honour digraphs.
6252 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
6254         * gcc.c (do_spec_1): Add new %B operator.
6255         (set_input): Prepare for %B.
6257         (link_command_spec): Move up with the other tm.h-
6258         overrideable specs.  Factor out the portion conditional on
6259         LINK_LIBGCC_SPECIAL into a new spec, %(link_libgcc).
6260         (struct compiler): Just have a single spec string.  All users
6261         updated.
6262         (default_compilers): Remove unnecessary braces.
6263         (static_specs): Update.
6265         (trad_capable_cpp, cpp_options, cc1_options, asm_options): New
6266         named specs.
6267         (C and assembly specs): Use the new named specs, as appropriate.
6269         * objc/lang-specs.h: Use the new named specs.
6270         Remove unnecessary braces.
6272 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
6274         * gcc.c (execute): If a subprocess gets a fatal signal, report
6275         strsignal() of the signal number, and ask for a bug report.
6276         Do not do this for SIGPIPE if there's already been an error.
6278         * tradcpp.c: Don't include signal.h.  Don't catch SIGPIPE.
6279         Delete pipe_closed.
6281         * tradcif.c: Remove.
6283 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
6285         * final.c (profile_function): Do not emit profile counters in
6286         the data section, if NO_PROFILE_COUNTERS is defined.
6287         * tm.texi: Document NO_PROFILE_COUNTERS.  Update doc for
6288         FUNCTION_PROFILER.
6290         * config/i386/linux.h (NO_PROFILE_COUNTERS): Define.
6291         (FUNCTION_PROFILER): Just emit a call to mcount.
6293 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
6295         * tradcpp.c (main): Rename 'perror' label to 'sys_error'.
6297         * cppexp.c, cpphash.c, cpphash.h, cppinit.c, cpplex.c,
6298         cpplib.c, cpplib.h: Eradicate all traces of code dependent on
6299         traditional, lang_chill, or lang_fortran.
6301         * cppfiles.c: #undef strcmp to suppress warning about macros
6302         used without arguments.
6303         (_cpp_execute_include): Use f, not fname, in "No include path"
6304         error.
6305         (_cpp_pop_file_buffer): New function.
6306         * cpplib.c: Don't include <sys/mman.h>.
6307         (cpp_push_buffer): Set line_base and lineno in new buffer.
6308         (cpp_pop_buffer): Use _cpp_pop_file_buffer.
6310         * cpplex.c: Move all prototypes and structure declarations to the
6311         top of the file.  Properly parenthesise some macro arguments.
6312         (cpp_scan_line): New function.
6313         (special_symbol [case T_INCLUDE_DEPTH]): Use pfile->include_depth,
6314         don't need to walk up the stack counting.
6316 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6318         * c-common.c (combine_strings): Emit a pedantic warning when a
6319         string length is greater than the minimum ANSI C is required
6320         to support.
6322 Wed Jul 12 13:24:30 2000  Jeffrey A Law  (law@cygnus.com)
6324         * pa/xm-pa64.h (NO_SYS_SIGLIST): Kill.
6325         * d30v/xm-d30v.h (NO_SYS_SIGLIST): Kill.
6327 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6329         * c-decl.c (define_label): Warn about identifier conflicts with
6330         labels in traditional C.
6332         * c-parse.in (unop +): Warn about the unary plus operator for
6333         traditional C.
6335         * c-typeck.c (store_init_value): Warn about automatic aggregate
6336         initialization for traditional C.
6338         * invoke.texi (-Wtraditional): Document new warnings.
6340 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
6342         * Makefile.in (c-errors.o): Fix thinko in dependency.
6344 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
6346         * gcc.c (C specs [!USE_CPPLIB]): Invoke tradcpp if any of
6347         -traditional, -ftraditional, or -traditional-cpp was given.
6348         Do not pass -traditional to the preprocessor.
6349         (.S spec): Likewise.  Don't bother defining __ASSEMBLER__, the
6350         preprocessor does it automatically.
6351         * objc/lang-specs.h: Likewise.  Don't bother defining __OBJC__.
6353         * ch/lang-specs.h: Always use tradcpp.  Do not pass
6354         -traditional, -trigraphs, or -pedantic to the preprocessor.
6355         * f/lang-specs.h (.F spec): Likewise.  Don't bother defining
6356         _LANGUAGE_FORTRAN.
6358 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
6360         * cppexp.c (LOGICAL): Delete macro.
6361         (_cpp_parse_expr): Do not use UNARY for unary +.  Implement ||
6362         and && directly.
6364         * cpphash.c (HASHSIZE): Increase to 4096.
6365         (struct hashdummy): Add hash field.
6366         (eq_HASHNODE): Compare unreduced hashes, then lengths, then
6367         the string values using memcmp.
6368         (cpp_lookup): Set dummy.hash.
6370 Wed Jul 12 13:15:16 2000  Marc Espie <espie@openbsd.org>
6372         * configure.in (m88k-openbsd): Express configuration using new fragment
6373         style.
6374         * configure: Rebuilt.
6375         * m88k/aout-dbx.h: New.
6376         * m88k/openbsd.h: New.
6377         * m88k/xm-openbsd.h: New.
6379 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6381         * expr.c (expand_expr): Return const0_rtx, not error_mark_node.
6383 2000-07-12  Richard Henderson  <rth@cygnus.com>
6385         * reload.c (push_secondary_reload): Make sure to add the new
6386         reload at the end, after acquiring secondary memory.
6388 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6390         * cpplex.c (is_macro_disabled): Use CPP_WTRADITIONAL.
6392         * c-decl.c (set_current_function_name_declared, anon_aggr_type_p,
6393         lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED.
6395         * c-parse.in (stmt): Delete unused variables.
6397         * convert.c (convert_to_vector): Likewise.
6399         * gensupport.c (process_rtx): Declare attr as `rtvec' not `rtx'.
6401         * tree.c (finish_vector_type): Prototype.
6403 2000-07-12  Bruce Korb  <bkorb@gnu.org>
6405         * fixinc/fixfixes.c: use xmalloc
6406         * fixinc/fixincl.c(initialize): set program name for xmalloc
6407         * fixinc/fixlib.c(must_malloc): obsolete
6408         (is_cxx_header): no longer used - disabled
6409         (skip_quote): inserted and disabled for future use
6410         * fixinc/fixlib.h: reflects above
6411         * fixinc/fixtests.c: removed dinkleberries
6413 2000-07-12  Neil Booth  <NeilB@earthling.net>
6415         * cpphash.h: (TOKEN_SPELL) Pulled from cpplex.c.
6416         * cpplex.c (TOKEN_SPELL) Move to cpphash.h.
6418         * cpphash.c: (struct macro_info, alloc_macro, free_macro,
6419         struct toklist_dummy): New.
6420         (cpp_free_definition): Free macros with free_macro.
6421         (count_params): Don't save paramter spellings.  Save macro
6422         information in a struct macro_info.
6423         (parse_define): Don't allocate a token list.
6424         (save_expansion): Allocate the macro's token list, and
6425         save parameter spellings if necessary.  Use TOKEN_SPELL.
6426         (cpp_create_definition): Make list const.
6428 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
6430         * c-typeck.c (pedwarn_c99): Move to
6431         * c-errors.c: ... Here.
6432         * toplev.h (verror, vwarning, vpedwarn): Remove prototypes.
6433         * diagnostic.c (verror, vwarning, vpedwarn): Make static.
6434         * Makefile.in (C_AND_OBJC_OBJS): Include c-errors.o
6435         (c-errors.o): List dependency.
6437 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
6439         * c-parse.c: Remove.
6440         * c-parse.h: Likewise.
6441         * c-parse.y: Likewise.
6442         * objc/objc-parse.c: Likewise.
6443         * objc/objc-pasre.y: Likewise.
6445 2000-07-11  Rodney Brown  <RodneyBrown@pmsc.com>
6447         * gcc.texi: Fix minor typos
6448         * extend.texi: Fix minor typos
6450 2000-07-11  Marc Espie <espie@openbsd.org>
6452         * collect2.c (main): Recognize .lo as object files.
6454 2000-07-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
6456         * pa.c (hppa_encode_label): Store labels in gc memory when ggc_p is
6457         true.
6459         * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE): Extend test to detect systems
6460         with MAP_ANONYMOUS and MAP_ANON.
6461         * configure, config.in: Rebuilt.
6463 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
6465         * diagnostic.c (save_output_state): Remove.
6466         (restore_output_state): Likewise.
6467         (clear_text_info): New function.
6468         (clear_diagnostic_info): Likewise.
6469         (output_text_length, is_starting_newline, output_prefix,
6470         line_wrap_cutoff, ideal_line_wrap_cutoff, prefix_was_emitted_for,
6471         prefixing_policy, output_buffer_ptr_to_format_args): New macros
6472         (set_real_maximum_length, output_set_maximum_length,
6473         output_set_prefix, output_get_prefix, output_set_maximum_length,
6474         output_destroy_prefix, init_output_buffer,
6475         reshape_diagnostic_buffer, output_space_left, output_emit_prefix,
6476         output_add_newline, output_add_character, output_add_space,
6477         output_append_r, output_append, wrap_text, output_format,
6478         output_do_printf, output_printf, output_do_verbatim,
6479         output_verbatim, verbatim): Use them.
6480         (output_clear): Split into cleat_text_info and
6481         clear_diagnostic_info.
6482         (struct output_state): Move to...
6484         * diagnostic.h: ...Here
6485         (struct output_buffer): Adjust.
6487 2000-07-11  Zack Weinberg  <zack@wolery.cumb.org>
6489         * cpplex.c (parse_name): No longer inline (premature optimization).
6490         (do_pop_context): Fold into pop_context.
6491         (pop_context): Returns int.
6492         (lex_next): Hoist test for end of directive into pop_context.
6493         (push_macro_context): Returns int; takes just reader and token.
6494         Hoist test for excessive nesting to caller.
6495         (push_arg_context): Returns void; takes just reader and token.
6496         Do not call stringify_arg or get_raw_token.
6497         (get_raw_token): Convert tail recursion through push_arg_context
6498         to a loop at this level.  Call stringify_arg here if appropriate.
6499         (maybe_paste_with_next): Convert tail recursion to a while loop.
6500         Hoist test of paste_level to caller.
6502         (stringify_arg): Push arg context at beginning.
6503         (cpp_get_token): Split out core into _cpp_get_token.  Call
6504         process_directive here.  Throw away CPP_PLACEMARKER tokens.
6505         (_cpp_get_token): Convert tail recursion through
6506         push_macro_context to a loop at this level.
6507         (_cpp_glue_header_name, is_macro_disabled, stringify_arg,
6508         _cpp_get_raw_token): Use _cpp_get_token.
6509         (_cpp_skip_rest_of_line): Drop the context stack directly; do
6510         not call pop_context.
6511         (_cpp_run_directive): Call lex_next directly.
6513         * cpphash.h: Prototype _cpp_get_token.
6514         * cppexp.c (lex): Use it.
6515         * cpphash.c (parse_define): Use it.
6516         * cpplib.c (get_define_node, do_undef, parse_include,
6517         read_line_number, do_line, do_ident, do_pragma, do_pragma_gcc,
6518         do_pragma_implementation, do_pragma_poison, do_pragma_dependency,
6519         parse_ifdef, validate_else): Use it.
6520         (cpp_push_buffer): Tweak error message; abort if anyone tries
6521         to push a buffer while macro expansions are stacked.
6523 2000-07-11  Donn Terry  <donnte@microsoft.com>
6525         * cpplex.c (free_macro_args, save_token): Cast arg of free
6526         and/or xrealloc to PTR.
6527         (_cpp_init_input_buffer): Clear all fields of the base context.
6529 Tue Jul 11 15:28:21 CDT 2000  Clinton Popetz  <cpopetz@cygnus.com>
6531         * gensupport.c (process_rtx): Make rtl checking stop
6532         complaining about the define_insn while it is being
6533         converted from a define_insn_and_split.
6535 Tue Jul 11 16:26:17 2000  Clinton Popetz  <cpopetz@cygnus.com>
6537         * config/mips/mips.c (simple_memory_operand): Access the
6538         INTVAL of the address, not it's containing MEM.
6540 2000-07-11  Bruce Korb  <bkorb@gnu.org>
6542         * fixinc/fixtests.c(double_slash): obsolete
6543         (else_endif_label): likewise
6544         * fixinc/inclhack.def(irix_multiline_cmnt): obsolete
6545         (libc1_ifdefd_memx): correct initial comment
6546         and omit the #if/#endif pair from the memxxx declarations
6547         * fixinc/fixincl.x: regen
6549 2000-07-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6551         * cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
6553 2000-07-11  Neil Booth  <NeilB@earthling.net>
6555         * cpp.texi: Update.
6557 2000-07-11  Neil Booth  <NeilB@earthling.net>
6559         * cppinit.c: (cpp_reader_init): Allow digraphs by default.
6560         (handle_option): Set digraphs according to standard.
6561         Merge OPT_lang_c89 handler with OPT_std_c89.
6563         * cpplex.c: (lex_line, can_paste): Honour digraphs in
6564         accordance with the digraphs flag.
6566         * cpplib.h: (struct cpp_options): New option digraphs.
6568 2000-07-10  Hans-Peter Nilsson  <hp@axis.com>
6569             Bruce Korb  <bkorb@gnu.org>
6571         * fixinc/inclhack.def (libc1_ifdefd_memx): New fix.
6572         * fixinc/fixincl.x: Regenerate.
6573         * fixinc/tests/base/testing.h: Add testcase.
6575 2000-07-10  Richard Henderson  <rth@cygnus.com>
6577         * config/ia64/ia64.c (got_symbolic_operand): New.
6578         (symbolic_operand, move_operand): Revert 0701 change.
6579         * config/ia64/ia64.h (PREDICATE_CODES): Update.
6580         * config/ia64/ia64-protos.h (got_symbolic_operand): Declare.
6581         * config/ia64/ia64.md (movdi): Revert 0701 wrt symbolic_operand;
6582         split the offset into a 14-bit low part instead of a 13-bit low part.
6583         (load_fptr): Mark the mem as unchanging.
6584         (load_symptr): Use got_symbolic_operand.
6586 2000-07-10  Nick Clifton  <nickc@cygnus.com>
6588         * libgcc2.c (next_stack_level): Cast result of computation to
6589         (void **) so that the assignment does not generate a warning.
6591 2000-07-10  Chandrakala Chavva  <cchavva@redhat.com>
6593         * flags.h : Add new variable flag_single_precision_constant.
6594         * toplev.c (display_help) : Add -fsingle-precision-constant option.
6595         (flag_single_precision_constant): New.
6596         * c-lex.c (yylex): Convert floating point constant to single
6597         precision constant.
6598         * invoke.texi : Add documentation for this new option.
6600 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
6602         * diagnostic.c (output_octal): Second parameter is unsigned.
6603         (output_long_octal): Likewise.
6604         (output_hexadecimal): Likewise.
6605         (output_long_hexadecimal): Likewise.
6606         (output_format): Adjust arguments extraction. Tweak.
6607         (output_verbatim, verbatim): End variable argument list.
6608         (report_diagnostic): Improve documentation.
6610 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
6612         * c-common.h (build_stmt): Declare.
6613         (build_continue_stmt): Likewise.
6614         (build_break_stmt): Likewise.
6615         (build_return_stmt): Likewise.
6617         * c-decl.c (do_case): Rewrite to do what previously done in
6618         c-parse.in.
6620         * c-semantics.c (build_stmt): Define.
6621         (build_return_stmt): Likewise.
6622         (build_break_stmt): Likewise.
6623         (build_continue_stmt): Likewise.
6624         (build_case_label): Likewise.
6626         * c-parse.in (BREAK): Change to build tree, then generate RTL.
6627         (CONTINUE): Likewise.
6628         (RETURN): Likewise.
6629         (CASE): Likewise.
6630         (DEFAULT): Likewise.
6632         * c-parse.y: Regenerate.
6633         * c-pasre.c: Likewise.
6635 2000-07-09  Jason Merrill  <jason@redhat.com>
6637         * expr.c (expand_expr): Bail earlier if we get an error_mark_node.
6639         * tree.h (STRIP_NOPS): Check for error_mark_node.
6640         (STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
6641         (dwarf2out_*): Remove duplicate declarations.
6643         * c-decl.c (duplicate_decls): Copy DECL_ABSTRACT_ORIGIN from
6644         DECL_ABSTRACT_ORIGIN, not DECL_ORIGIN.
6646 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
6648         * diagnostic.c (wrap_text): New function.
6649         (maybe_wrap_text): Likewise.
6650         (output_add_string): Use it.
6651         (output_format): Likewise.
6652         (count_error): Use verbatim instead of notice.
6653         (report_error_function): Likewise. Don't use plain fprintf.
6654         (finish_diagnostic): New function.
6655         (output_do_verbatim): Tweak.  Commonalize functionalities in
6656         output_verbatim and verbatim.
6657         (output_verbatim): Adjust.
6658         (verbatim): Likewise.
6659         (report_diagnostic): Define.
6661         * diagnostic.h (report_diagnostic): Prototype.
6663 2000-07-09  Zack Weinberg  <zack@wolery.cumb.org>
6665         * cppexp.c (_cpp_parse_expr): Don't use unary plus.
6667 2000-07-09  Neil Booth  <NeilB@earthling.net>
6669         * cpphash.h: ISvspace, is_vspace, is_nvspace: New.
6670         IShspace, ISspace: Update.
6672         * cppinit.c: ISTABLE: Update.
6673         V: New.
6675         * cpplex.c (IS_HSPACE, S_NEWLINE): Remove.
6676         (IS_DIRECTIVE): Rename KNOWN_DIRECTIVE.
6677         (skip_block_comment, skip_line_comment, parse_string,
6678         lex_line): Use is_vspace rather than IS_NEWLINE.
6679         (skip_whitespace, lex_line): Clean up to use is_nvspace.
6680         (lex_line): Use KNOWN_DIRECTIVE.  Any kind of directive
6681         gets a BOL flag.
6682         (lex_next): Unconditionally stop if within a directive.
6683         Treat directives within macro invocations as directives
6684         (after parse_args emits error), not as the argument.
6686 2000-07-09  Gabriel Dos Reis  <gdr@codesourcery.com>
6688         * diagnostic.c (diagnostic_args): New macro.
6689         (diagnostic_msg): Likewise.
6690         (output_formatted_integer): Likewise.
6691         (output_state): New data type.
6692         (digit_buffer): Make global.
6693         (output_add_integer): Rename to output_decimal. Squeeze
6694         digit_buffer.
6695         (output_long_decimal, output_unsigned_decimal,
6696         output_long_unsigned_decimal, output_octal, output_long_octal,
6697         output_hexadecimal, output_long_hexadecimal): New functions.
6698         (output_append_r): New function.
6699         (output_append): Tweak.
6700         (output_flush_on): Rename to output_to_stream.
6701         (output_format): Change prototype.  Improve documentation. Handle
6702         more format specifiers.
6703         (build_location_prefix): Rename to context_as_prefix.
6704         (output_notice): Rename to output_do_printf.
6705         (output_printf): Tweak.
6706         (line_wrapper_printf): Likewise.
6707         (vline_wrapper_message_with_location): Adjust call to renamed
6708         functions.
6709         (v_message_with_decl): Likewise.
6710         (default_print_error_function): Likewise.
6711         (save_output_state): New function.
6712         (restore_output_state): Likewise.
6713         (output_do_verbatim): Likewise.
6714         (output_verbatim): Define.
6715         (verbatim): Likewise.
6717         * diagnostic.h (printer_fn): Change return type from void to int.
6718         Improve documentation.
6719         (output_add_integer): Rename to output_decimal.
6720         (output_flush_on, output_format): Don't export.
6721         (output_verbatim, verbatim): Declare.
6723 2000-07-08  Toon Moene  <toon@moene.indiv.nluug.nl>
6725         * fold-const.c (extract_muldiv) case PLUS_EXPR, MINUS_EXPR:
6726         Check whether c divides op1 exactly if operation is not
6727         multiplication.
6729 2000-07-08  Richard Henderson  <rth@cygnus.com>
6731         * final.c (final): Do not abort when reg-stack introduces
6732         a new insn.
6734 2000-07-08  Zack Weinberg  <zack@wolery.cumb.org>
6736         * cpplib.h (struct cpp_name): Now struct cpp_string.
6737         (CPP_INT, CPP_FLOAT, CPP_NUMBER, CPP_COMMENT,
6738         CPP_HEADER_NAME): Change to type S.
6739         (struct cpp_token): Rename 'name' field to 'str'.  Add 'node'
6740         field, a cpp_hashnode *.  All references to val.name updated
6741         to use val.str or val.node as appropriate.
6742         (struct cpp_reader): Add spec_nodes field.
6743         (cpp_idcmp): Now cpp_ideq; takes a token * and a char *.
6745         * cpphash.h (struct spec_nodes): New.
6746         (enum spell_type): Reorder.  Only SPELL_STRING tokens use
6747         val.str.  All references to 'spelling > SPELL_NONE' updated to
6748         match.
6750         (CPP_IN_SYSTEM_HEADER): Check pfile->buffer and
6751         pfile->buffer->inc are not NULL before dereferencing them.
6753         * cpplex.c (parse_name): Take a pointer to the current token,
6754         plus current position and limit as args; return the new
6755         position; don't copy the text of a name into the string
6756         buffer, instead call cpp_lookup and store the node pointer.
6757         If extending a token, copy out the text of the old into a
6758         scratch buffer, append the new, look that up and store the new
6759         node pointer.  Inline.
6760         (maybe_paste_with_next): If the result of paste is a NAME,
6761         then look up the pasted text and store its node pointer.
6762         (lex_line): Adjust for new parse_name interface.
6763         Check for L"str", L'str' using spec_nodes->n_L.
6764         (spell_token): SPELL_IDENT tokens have their spelling in
6765         val.node->name.  Handle SPELL_STRING tokens that don't have
6766         string delimiters.
6767         (_cpp_expand_name_space,
6768         (can_paste): Check for L ## "str" using spec_nodes->n_L.
6769         (cpp_get_token, special_symbol): No need to call cpp_lookup.
6770         (cpp_idcmp): Now cpp_ideq; take a token * and a const char *;
6771         return 1=equal 0=not, not a tristate.
6773         * cpphash.c (var_args_str): Delete.
6774         (find_param): Compare node fields directly.
6775         (is__va_args__): Use CPP_PEDANTIC.  Just compare
6776         token->val.node with spec_nodes->n__VA_ARGS__.
6777         (dump_funlike_macro): Don't use var_args_str.
6779         * cpplib.c (_cpp_check_directive): Just walk through
6780         spec_nodes->dirs comparing pointers.
6781         (get_define_node, do_pragma_poison, detect_if_not_defined,
6782         parse_ifdef): The identifier has already been looked up.
6783         (do_ifdef, do_ifndef): parse_ifdef won't return a poisoned
6784         node.
6785         (do_if): Only call detect_if_not_defined at beginning of file.
6786         (_cpp_parse_assertion): Only copy string pointers for
6787         SPELL_STRING tokens.
6788         (pragma_dispatch): Take a node pointer and examine its name
6789         field.
6790         (_cpp_init_stacks): Also initialize the spec_nodes structure.
6792         * cppinit.c (cpp_reader_init): Call _cpp_init_stacks after
6793         _cpp_init_macros.
6794         (cpp_cleanup): Free pfile->spec_nodes.  Call _cpp_cleanup_* in
6795         reverse order from the corresponding _cpp_init_* routines.
6797         * cppexp.c (parse_number, parse_charconst, parse_defined,
6798         lex): Check val.node->type instead of calling cpp_defined.
6799         Use spec_nodes entries where appropriate.
6801         * fix-header.c, scan-decls.c: Update for interface changes.
6803 2000-07-08  Geoffrey Keating  <geoffk@cygnus.com>
6805         * config/rs6000/rs6000.c (rs6000_emit_move): Fix conditions for
6806         emitting aux_truncdfsf2.
6808 2000-07-03  Donn Terry  (donnte@microsoft.com)
6810         * cppinit.c (print_help): split overlong line into ISO C89
6811         maximum chunks.
6813 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
6815         * cppexp.c: Update all code for new lexer interface.
6816         (op_t, operator codes, struct token, tokentab2, op_to_str): Remove.
6817         (struct suffix, vsuf_1, vsuf_2, vsuf_3, op_to_prio): New.
6818         * cpplex.c (token_names): Trim leading CPP_ from names; make
6819         the strings unsigned.
6820         (_cpp_spell_operator): New.
6821         (is_macro_disabled): Disable all macros if rescanning
6822         preprocessed text.
6823         (_cpp_get_directive_token): Remove.
6825         * cppinit.c: Don't set no_macro_expand.
6826         * cpplib.c (read_line_number, do_line): Check only for EOF,
6827         not VSPACE.
6828         * cpphash.h: Update prototypes.
6829         * cpplib.h (CPP_VSPACE): Remove.
6830         (struct cpp_reader): Remove no_macro_expand.
6832 2000-07-08  Neil Booth  <NeilB@earthling.net>
6834         * cpphash.c (is__va_args__): New function.
6835         (count_params): Fix line reported in error messages.  Use
6836         is__va_args__.  Don't return ')' on error.  Flag GNU style
6837         rest args macro definitions.
6838         (parse_define): Check macro name is not __VA_ARGS__.
6839         (save_expansion): Check identifier in non-varargs-macro is
6840         not __VA_ARGS__.  Don't flag GNU_VARARGS.
6841         * cpplex.c (parse_args): Accept no argument iff GNU_REST_ARGS.
6842         (maybe_paste_with_next): Use per-macro GNU_REST_ARGS rather
6843          than per-token GNU_VARARGS.
6844         * cpplib.h (GNU_VARARGS): Remove.
6845         (GNU_REST_ARGS): New.
6847 Sat Jul  8 01:38:25 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6849         * i386.md (call_pop, call, call_value_pop): Do not set
6850         current_function_uses_pic_offset_table for calls to static
6851         functions or indirect calls.
6853 2000-07-07  Jim Wilson  <wilson@cygnus.com>
6855         * config/ia64/ia64.c (rws_access_reg): New local write_count.  If
6856         is_predicate_reg, then take max write_count of register pair.
6858 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6860         * tradcpp.c (main): Rename label `include' to `add_include' to
6861         avoid conflicts with variable `include' in traditional C.
6863 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
6865         * integrate.c (copy_insn_list): Remove REG_LABEL notes.
6867 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
6869         * sibcall.c (uses_addressof): Add INMEM argument, check for
6870         current_function_internal_arg_pointer outside of MEM rtxs in addition
6871         to ADDRESSOFs.
6872         (sequence_uses_addressof): Update caller.
6874 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
6876         * tradcpp.c (initialize_builtins): Honor NO_BUILTIN_SIZE_TYPE
6877         and friends.
6879 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6881         * system.h (UNION_INIT_ZERO): New macro for initializing union
6882         members in structs.
6884         * cpplex.c (placemarker_token, eof_token): Use UNION_INIT_ZERO.
6886 2000-07-07  Neil Booth  <NeilB@earthling.net>
6888         * cpp.texi: Update.
6890 Fri Jul  7 07:47:35 2000  Jeffrey A Law  (law@cygnus.com)
6892         * final.c (final): Detect out of bounds array access to
6893         the insn_lengths array.
6895 2000-07-07  Kazu Hirata  <kazu@hxi.com>
6897         * fold-const.c (fold): Fix a comment typo.
6899 2000-07-07  Neil Booth  <NeilB@earthling.net>
6901         * cpp.texi: Update to new lexer.
6903 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
6905         * tradcpp.c: New file.
6906         * tradcif.y: New file.
6907         * tradcif.c: New generated file.
6909         * Makefile.in: Add rules to build tradcpp.o, tradcif.o,
6910         $(srcdir)/tradcif.c.  Add tradcpp to STAGESTUFF and
6911         dependencies of C.  Install tradcpp from install-common, in
6912         $(libsubdir).
6914 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
6916         * cppinit.c: Include cppdefault.h.  Refer to
6917         cpp_GCC_INCLUDE_DIR and cpp_GCC_INCLUDE_DIR_len, not directly
6918         to GCC_INCLUDE_DIR and its length.
6919         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
6920         USER_LABEL_PREFIX, REGISTER_PREFIX, struct default_include,
6921         STANDARD_INCLUDE_DIR, STANDARD_INCLUDE_COMPONENT):  Move to
6922         cppdefault.h.
6923         (include_defaults_array): Move to cppdefault.c.
6925         * cppdefault.h: New file.
6926         * cppdefault.c: New file.
6928         * Makefile.in (LIBCPP_OBJS): Add cppdefault.o.
6929         (cppinit.o): Don't apply $(PREPROCESSOR_DEFINES) to this file.
6930         (cppdefault.o): New rule; apply $(PREPROCESSOR_DEFINES) to
6931         this file.
6933 Thu Jul  6 18:30:36 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6935         * reload.c (push_reload): When seeing if can reuse a register,
6936         check extra registers against widest of INMODE and OUTMODE.
6938 2000-07-06  Neil Booth  <NeilB@earthling.net>
6940         * cpplib.c: (_cpp_parse_assertion):  Perform hash lookups
6941         based on full length of predicate.
6943 2000-07-06  Hans-Peter Nilsson  <hp@axis.com>
6945         * timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.
6946         [NEED_DECLARATION_GETRUSAGE]: Declare getrusage.
6948 2000-07-05  Kazu Hirata  <kazu@hxi.com>
6950         * h8300-proto.h: Fix formatting.
6951         * h8300.c: Likewise.
6952         * h8300.h: Likewise.
6954 2000-07-05  Jim Wilson  <wilson@cygnus.com>
6956         * config/ia64/ia64.h (HARD_REGNO_MODE_OK): If FR_REGNO_P, disallow
6957         CCmode.
6959 2000-07-05  Rodney Brown  <RodneyBrown@pmsc.com>
6961         * invoke.texi: Fix minor typos
6962         * md.texi: Fix minor typos
6964 2000-07-05  Zack Weinberg  <zack@wolery.cumb.org>
6966         * cpplib.c (_cpp_parse_assertion): Fix buffer overrun.
6968 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
6970         * cpplex.c: Don't include sys/mman.h.
6971         (cpp_push_buffer, cpp_pop_buffer): Moved to cpplib.c.
6973         * cpplib.c: Include sys/mman.h and obstack.h.
6974         (cpp_push_buffer): Moved from cpplex.c; allocate buffers on an
6975         obstack.
6976         (cpp_pop_buffer): Moved from cpplex.c; free buffers from an obstack.
6977         (_cpp_unwind_if_stack): Now static, unwind_if_stack.  Don't
6978         bother freeing if stack entries (they will be freed with their buffer).
6979         (do_endif): Free if stack entries from the buffer obstack.
6980         (push_conditional): Allocate if stack entries from the buffer obstack.
6982         (find_answer): Rename to _cpp_find_answer.
6983         (do_assert, do_unassert): Update.
6985         * cpphash.h: Update prototypes.
6986         (xobnew): New convenience macro.
6987         * cpplib.h (struct cpp_reader): Add hash_ob and buffer_ob fields.
6988         Update comments.
6989         (struct cpp_hashnode): Remove disabled field.
6991         * cppinit.c: Don't include hashtab.h or splay-tree.h.
6992         (report_missing_guard): Moved to cppfiles.c.
6993         (cpp_reader_init): Call cpp_init_stacks, cpp_init_macros,
6994         cpp_init_includes.
6995         (cpp_cleanup): Call cpp_cleanup_stacks, cpp_cleanup_macros,
6996         cpp_cleanup_includes.  Don't destroy hashtab or
6997         all_include_files here.
6998         (cpp_finish): Use _cpp_report_missing_guards.
7000         * cppfiles.c (report_missing_guard): Moved from cppinit.c.
7001         (_cpp_init_include_table): Rename _cpp_init_includes.
7002         (_cpp_cleanup_includes, _cpp_report_missing_guards): New.
7004         * cppexp.c (parse_assertion): Update for new name of
7005         find_answer.
7007         * Makefile.in (cpplib.o, cpphash.o, cppinit.o): Update deps.
7009 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
7011         * cpplib.c (do_ident): s/VSPACE/EOF/
7013 2000-07-05  Neil Booth  <NeilB@earthling.net>
7015         * cpplex.c: Fix trigraph replacement within strings.
7017 2000-07-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7019         * rs6000/aix.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier.
7021         * xcoffout.c (assign_type_number): Constify.
7022         (xcoffout_source_file): Add static prototype.  Don't needlessly
7023         cast away const-ness.
7025 2000-07-04  Jason Merrill  <jason@redhat.com>
7027         * frame.h (frame_state): Move base_offset to end.
7029 Mon Jul  3 21:31:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
7031         * calls.c (emit_library_call_value_1): Revert previous change.
7033 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
7035         * fix-header.c (struct partial_proto): Remove unnecessary fields.
7036         (recognized_extern, recognized_function, read_scan_file):
7037         Update for new scheme.
7038         (check_protection): It's still a multiple include guard even
7039         if it doesn't always trigger.
7040         * scan-decls.c (skip_to_closing_brace, scan_decls): Update for
7041         new scheme.
7042         * scan.h: Declare struct cpp_token.  Update prototypes.
7044 2000-07-03  Neil Booth  <neilb@earthling.net>
7045             Zack Weinberg  <zack@wolery.cumb.org>
7047         Complete overhaul of the lexer and macro expander.
7049         * cpphash.c (object_defn, funct_defn, push_macro_expansion,
7050         arg, arglist, argdata, reflist, collect_objlike_expansion,
7051         collect_funlike_expansion, collect_params,
7052         warn_trad_stringify, trad_stringify, duplicate_arg_p, add_pat,
7053         unsafe_chars, macarg, compare_defs, special_symbol,
7054         scan_arguments, stringify, funlike_macroexpand,
7055         _cpp_quote_string, monthnames): Delete.
7056         (cpp_lookup, _cpp_free_definition, dump_funlike_macro,
7057         _cpp_create_definition, _cpp_dump_definition,
7058         dump_hash_helper): Adjust.
7059         (find_param, count_params, parse_define, var_args_str,
7060         check_macro_redefinition, save_expansion): New.
7062         * cpplex.c (skip_block_comment, skip_line_comment, parse_name,
7063         parse_string, output_line_command, trigraph_replace,
7064         lex_line, cpp_push_buffer, cpp_pop_buffer, cpp_output_tokens,
7065         cpp_scan_buffer_nooutput, cpp_scan_buffer, cpp_free_toklist,
7066         cpp_idcmp, _cpp_get_directive_token, _cpp_init_input_buffer,
7067         _cpp_skip_rest_of_line): Modify.
7069         (maybe_macroexpand, skip_comment, copy_comment, skip_string,
7070         find_position, null_warning, bump_column, expand_name_space,
7071         pedantic_whitespace, _cpp_output_list, _cpp_slice_toklist,
7072         _cpp_squeeze_toklist, _cpp_scan_until, _cpp_skip_hspace,
7073         _cpp_parse_name, _cpp_lex_token, cpp_get_non_space_token,
7074         _cpp_prescan): Delete.
7076         (dump_param_spelling, process_directive, lex_next,
7077         is_macro_disabled, stringify_arg, expand_context_stack,
7078         output_token, make_string_token, alloc_number_token,
7079         special_symbol, duplicate_token, maybe_paste_with_next,
7080         can_paste, prevent_macro_expansion, restore_macro_expansion,
7081         get_temp_token, release_temp_tokens, quote_string,
7082         token_names, token_spellings, _cpp_expand_name_space,
7083         _cpp_glue_header_name, _cpp_reserve_name_space,
7084         digraph_spellings, trigraph_ok, skip_whitespace, save_comment,
7085         placemarker_token, eof_token, cpp_context, macro_args,
7086         get_raw_token, parse_arg, parse_args, save_token,
7087         push_arg_context, push_macro_context, pop_context,
7088         do_pop_context, free_macro_args, _cpp_get_line,
7089         _cpp_run_directive): New.
7091         * cpplib.c (validate_else, parse_include, push_conditional,
7092         pass_thru_directive, read_line_number, parse_ifdef,
7093         detect_if_not_defined, _cpp_check_directive, do_define,
7094         do_undef, do_include, do_import, do_include_next, do_error,
7095         do_warning, do_ident, do_pragma, pragma_dispatch, gcc_pragmas,
7096         top_pragmas, do_pragma_gcc, do_pragma_implementation,
7097         do_pragma_poison, do_pragma_system_header,
7098         do_pragma_dependency, do_sccs, do_ifdef, do_ifndef, do_else,
7099         dl_elif, do_endif, _cpp_unwind_if_stack, do_assert,
7100         do_unassert, cpp_define, cpp_undef, cpp_assert, cpp_unassert,
7101         cpp_defined): Update for new scheme.
7102         (strtoul_for_line, get_define_node, dump_macro_name,
7103         _cpp_check_linemarker, _cpp_parse_assertion): New.
7104         (_cpp_handle_directive, do_pragma_default): Delete.
7106         * cpphash.h (struct predicate): Now struct answer.
7107         (enum spell_type, struct token_spelling, struct directive,
7108         directive_handler): New.
7109         Update prototypes.  Remove unused macros.
7110         * cpplib.h: Update prototypes.  Remove unused macros,
7111         structure definitions, and fields.
7113         * cpperror.c (print_containing_files, v_message): Adjust.
7114         * cppexp.c (parse_assertion, lex, parse_escape,
7115         _cpp_parse_expr): Adjust.
7116         * cppfiles.c (open_include_file, _cpp_execute_include,
7117         _cpp_compare_file_date, cpp_read_file, read_include_file):
7118         Adjust.
7119         * cppinit.c (dump_special_to_buffer): Delete.
7120         (append_include_chain, merge_include_chains, cpp_reader_init,
7121         cpp_cleanup, initialize_builtins, builtin_array, cpp_start_read,
7122         cpp_finish, handle_option, print_help): Adjust.
7123         * cppmain.c (main): Adjust.
7125 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
7127         * cppspec.c (lang_specific_driver): Use double quotes in error
7128         message.
7130 Mon Jul  3 16:53:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
7132         * calls.c (emit_library_call_value_1): Use valreg instead
7133         of hard_libcall_value.
7135 2000-07-03  Geoff Keating  <geoffk@cygnus.com>
7137         * config/rs6000/rs6000.c (rs6000_emit_move): New function.
7138         * config/rs6000/rs6000-proto.h: Prototype rs6000_emit_move.
7139         * config/rs6000/rs6000.md (movsi): Use rs6000_emit_move.
7140         (movhi): Likewise.
7141         (movqi): Likewise.
7142         (movdf): Likewise.
7143         (movsf): Likewise.
7144         (movdi): Likewise.
7145         (movti): Likewise.
7147         * expmed.c (expand_mult_highpart): Use op1 instead of wide_op1 when
7148         mode instead of wider_mode is being used.
7150 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
7152         * config/i386/i386.md (movstrictqi_xor): Use 'q' constraint instead
7153         of 'r'. Use q_regs_operand.
7154         (andsi_1+2): Use q_regs_operand.
7156 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
7158         * builtins.c (get_memory_rtx): Always put into alias set 0.
7160 2000-07-03  Nick Clifton  <nickc@cygnus.com>
7162         * config/arm/arm.md: Fix post increment and pre increment
7163         peepholes so that they do not generate UNPREDICATBLE opcodes.
7164         (ie ones where the increment clobbers the source/destination).
7166 2000-07-01  Marek Michalkiewicz  <marekm@linux.org.pl>
7168         * config/avr/avr.c (out_adj_frame_ptr): Make "frame pointer
7169         change too big for -mtiny-stack" a warning, if larger than 63.
7170         (out_set_stack_ptr): Change the logic so -mno-interrupts is
7171         always safe to use on possible future devices.
7172         (function_prologue): Write SPH before SPL, for consistency.
7173         If interrupt_func_p true, we know we have enabled interrupts.
7174         (avr_num_arg_regs): New function.  Round up to even number of
7175         bytes if no -mpack-args or if calling a libgcc function.
7176         (function_arg, function_arg_advance): Use it.
7177         (output_movsisf, ashlsi3_out, ashrsi3_out, lshrsi3_out):
7178         Output "movw" if available.
7179         (out_tsthi, out_tstsi, ashlqi3_out, lshrqi3_out): Change uses
7180         of TEST_HARD_REG_CLASS macro to test_hard_reg_class function.
7181         (asm_output_section_name): Add blanks for consistent output.
7182         (encode_section_info): Set TREE_READONLY for progmem data to
7183         avoid gas warnings about changed section attributes.
7184         (avr_hard_regno_mode_ok): Force non-QImode data to start in
7185         even numbered registers on devices with "movw".
7186         * config/avr/avr.h (MASK_*): Define bits for target_flags.
7187         (TARGET_SWITCHES): Mark help strings for translation.
7188         Add new -mpack-args and -menhanced switches.
7189         (TARGET_OPTIONS): Mark help strings for translation.
7190         (progmem_section): Add section attributes.
7191         * config/avr/avr.md (*movhi, call_insn, call_value_insn):
7192         Output "movw" if available.
7193         (mulqi3, mulqihi3, umulqihi3, mulhi3, *tablejump_enh):
7194         New patterns.
7195         * config/avr/libgcc.S (_mulqi3, _divqi3): Update to the new
7196         call convention (arguments aligned on even registers).
7197         (_cleanup, _exit): Make weak symbols libc can override.
7199 2000-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7201         * fp-bit.h: New file.
7203         * fp-bit.c: Move common code, prototypes, etc into fp-bit.h.
7204         Comment #endif statements.
7205         (__thenan_sf, __thenan_df): Add missing braces around initializer.
7207 Mon Jul  3 00:32:47 2000  Jeffrey A Law  (law@cygnus.com)
7209         * gcse.c (compute_pre_data): Compute ae_kill using other local
7210         properties instead of calling compute_ae_kill.
7212         * alias.c (init_alias_analysis): Do not call
7213         prologue_epilogue_contains until after reload has completed.
7215 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
7217         * c-common.h (genrtl_begin_compound_stmt): Remove declaration.
7218         (genrtl_finish_compound_stmt): Likewise.
7219         (genrtl_compound_stmt): Change to return void.
7221         * c-semantics.c (genrtl_begin_compound_stmt): Remove function and
7222         move code from here to ...
7223         (genrtl_compound_stmt): ... here.
7224         (genrtl_finish_compound_stmt): Remove.
7225         (expand_stmt): Add comment.
7227 2000-07-02  Zack Weinberg  <zack@wolery.cumb.org>
7229         * c-typeck.c (build_indirect_ref): Use COMPLETE_OR_VOID_TYPE_P
7230         and VOID_TYPE_P.
7232 2000-07-02  Jakub Jelinek  <jakub@redhat.com>
7234         * cpplib.h (struct cpp_reader): New field include_depth.
7235         (struct cpp_printer): Rename last_bsd to last_id.
7236         * cppfiles.c (read_include_file): Bump include_depth.
7237         * cpplex.c (cpp_pop_buffer): Decrement include_depth.
7238         (output_line_command): Output correct #line if a header
7239         is including itself and is not protected against multiple inclusion.
7240         Use include_depth instead of buffer_stack_depth, last_id instead of
7241         last_bsd.
7242         * cppinit.c (cpp_start_read): Initialize last_id instead of
7243         last_bsd.
7245 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
7247         * Makefile.in (C_AND_OBJC_OBJS): Added c-semantics.o.
7248         (c-semantics.o): New target.
7250         * c-common.h (TREE_LANG_FLAG_?): Added documentation.
7251         (genrtl_do_pushlevel): Moved from cp/cp-tree.h.
7252         (genrtl_clear_out_block): Likewise.
7253         (genrtl_goto_stmt): Likewise.
7254         (genrtl_expr_stmt): Likewise.
7255         (genrtl_decl_stmt): Likewise.
7256         (genrtl_if_stmt): Likewise.
7257         (genrtl_while_stmt): Likewise.
7258         (genrtl_do_stmt): Likewise.
7259         (genrtl_return_stmt): Likewise.
7260         (genrtl_for_stmt): Likewise.
7261         (genrtl_break_stmt): Likewise.
7262         (genrtl_continue_stmt): Likewise.
7263         (genrtl_scope_stmt): Likewise.
7264         (genrtl_switch_stmt): Likewise.
7265         (genrtl_case_label): Likewise.
7266         (genrtl_begin_compound_stmt): Likewise.
7267         (gerntl_finish_compound_stmt): Likewise.
7268         (genrtl_compound_stmt): Likewise.
7269         (genrtl_asm_stmt): Likewise.
7270         (genrtl_decl_cleanup): Likewise.
7271         (DECL_ANON_UNION_ELEMS): Likewise.
7272         (emit_local_var): Likewise.
7273         (make_rtl_for_local_static): Likewise.
7274         (expand_cond): Likewise.
7275         (expand_stmt): Likewise.
7276         (c_expand_return): Likewise.
7277         (c_expand_start_case): Likewise.
7278         (do_case): Likewise.
7279         (COMPOUND_STMT_NO_SCOPE): Likewise.
7280         (c_expand_asm_operands): Likewise.
7281         (NEW_FOR_SCOPE_P): New macro.
7282         (expand_expr_stmt_fn): New type.
7284         (set_current_function_name_declared): Likewise.
7285         (current_function_name_declared): Likewise.
7286         (lang_expand_stmt): Likewise.
7287         (stmts_are_full_exprs_p): Likewise.
7288         (anon_aggr_type_p): Likewise.
7289         (lang_expand_expr_stmt): Likewise.
7290         (build_case_label): Likewise.
7292         * c-decl.c (lang_expand_expr_stmt): Initialize.
7293         (stmts_are_full_exprs_p): Define.
7294         (current_function_name_declared): Likewise.
7295         (do_case): Likewise.
7296         (lang_expand_stmt): Likewise.
7297         (set_current_function_name_declared): Likewise.
7298         (anon_aggr_type_p): Likewise.
7300         * c-semantics.c: New file.
7301         (expand_cond): Moved from cp/semantics.c.
7302         (genrtl_do_pushlevel): Likewise.
7303         (genrtl_clear_out_block): Likewise.
7304         (genrtl_goto_stmt): Likewise.
7305         (genrtl_expr_stmt): Likewise.
7306         (genrtl_decl_stmt): Likewise.
7307         (genrtl_if_stmt): Likewise.
7308         (genrtl_while_stmt): Likewise.
7309         (genrtl_do_stmt): Likewise.
7310         (genrtl_return_stmt): Likewise.
7311         (genrtl_for_stmt): Likewise.
7312         (genrtl_break_stmt): Likewise.
7313         (genrtl_continue_stmt): Likewise.
7314         (genrtl_scope_stmt): Likewise.
7315         (genrtl_switch_stmt): Likewise.
7316         (genrtl_case_label): Likewise.
7317         (genrtl_begin_compound_stmt): Likewise.
7318         (genrtl_finish_compound_stmt): Likewise.
7319         (genrtl_compound_stmt): Likewise.
7320         (genrtl_asm_stmt): Likewise.
7321         (genrtl_decl_cleanup): Likewise.
7322         (make_rtl_for_local_static): Moved from cp/decl.c.
7323         (emit_local_var): Likewise.
7324         (expand_stmt): Define.
7326         * c-tree.h: (c_expand_asm_operands): Moved to c-common.h.
7327         (c_expand_return): Likewise.
7328         (c_expand_start_case): Likewise.
7330 2000-07-01  Richard Henderson  <rth@cygnus.com>
7332         * config/ia64/ia64.c (symbolic_operand): Reject CONST expressions
7333         with the low 13 bits set.
7334         (move_operand): Check for CONST|SYMBOL_REF|LABEL_REF directly.
7335         * config/ia64/ia64.md (movdi): Likewise.  Expand a CONST with one
7336         of the low 13 bits into a CONST plus an adddi3.
7337         (load_symptr): Set RTX_UNCHANGING_P.
7339 See ChangeLog.3 for earlier changes.