* tradcpp.c (rescan): Do not recognize directives when the #
[official-gcc.git] / gcc / ChangeLog
blobfb8c21b5aab40f35b4423ac97596577f31816dcc
1 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
3         * tradcpp.c (rescan): Do not recognize directives when the #
4         is indented.
6 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
8         Implement C++ named operators.
10         * cpplib.h (TTYPE_TABLE): Move CPP_MIN and CPP_MAX into block
11         of operators allowed in #if and having an _EQ variant.  Add
12         CPP_MIN_EQ, CPP_MAX_EQ, and CPP_DEFINED.
13         (cpp_token flags): Add NAMED_OP.
14         (enum node_type): Add T_OPERATOR.
15         (struct cpp_hashnode): Add code slot to value union.
16         * cpphash.h (spec_nodes): Remove n_defined.
18         * cpplex.c (lex_line): Convert T_OPERATOR nodes to their proper types.
19         (spell_token, can_paste, maybe_paste_with_next): Handle named operators.
20         (is_macro_disabled): Tweak error messages.
22         * cpplib.c (get_define_node): Disallow all named operators as
23         macro names.  Tweak error messages.
24         (_cpp_init_stacks): Don't set up spec_nodes->n_defined.
26         * cppinit.c (builtin_array): Add entries for the named operators.
27         * cppexp.c (lex): Check for CPP_DEFINED token.
28         (priority table): Add entries for CPP_MIN and CPP_MAX.
29         (_cpp_parse_expr): Handle CPP_MIN and CPP_MAX.
31 2000-07-19  Bernd Schmidt  <bernds@cygnus.co.uk>
33         * gcse.c (INSN_CUID): If ENABLE_CHECKING, abort if the uid is
34         larger than the array of cuids.
35         (alloc_gcse_mem): Use uid_cuid rather than INSN_CUID when computing
36         cuids.
38 2000-07-19  Bruce Korb  <bkorb@gnu.org>
40         * fixinc/fixincl.c:  Convert to using a table of environment variables
41         and activate the auto-edit marker on the fixed output files.
42         * fixinc/fixlib.h:  Define the environment table
43         * fixinc/fixincl.sh: export the ${INPUT} dir
44         * fixinc/check.tpl: likewise
46 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
48         * gcc.c (.h spec): Fix typo.
50 Wed Jul 19 01:22:15 CEST 2000  Marc Espie  <espie@cvs.openbsd.org>
52         * Makefile.in: Fix tradcif.c path.
54 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
56         * cpplib.h (TTYPE_TABLE): Rearrange to use only two per-entry
57           macros, not five.
59         * cpphash.h (TOKEN_NAME): New macro.
60         (_cpp_spell_operator): Deleted.
61         (token_spellings): Now _cpp_token_spellings.
63         * cppexp.c: Use TOKEN_NAME or TYPE_NAME, not _cpp_spell_operator.
64         * cpplex.c: Use OP and TK macros when expanding the
65         TTYPE_TABLE.  Eliminate token_names.  For non-OPERATOR tokens,
66         store the stringification of the enumeration name (CPP_CHAR,
67         etc.) in the name slot of token_spellings.
68         Use TOKEN_NAME and/or TOKEN_SPELL, do not reference
69         token_spellings directly.
70         * cpplib.c: Use TOKEN_SPELL.
72         * cpplex.c (_cpp_push_token): If the token being pushed back
73         is the previous token in this context, just subtract one from
74         context->posn.
75         * cppmacro.c (save_expansion): Clear aux field when storing a
76         placemarker.
78 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
80         * cpplex.c (cpp_scan_buffer): Output line command even at the stop
81         buffer, provided it is not NULL.
83 2000-07-18  Alexandre Oliva  <aoliva@redhat.com>
85         * c-decl.c (duplicate_decls): Do not call make_var_volatile() in
86         case of invalid volatile re-declaration.
88 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
90         * calls.c (store_arg): Return non-zero if sibcall_failure is desired.
91         (expand_call): Adjust caller.
93 2000-07-17  Gabriel Dos Reis  <gdr@codesourcery.com>
95         * diagnostic.h (report_diagnostic): Change prototype.
97         * diagnostic.c (output_do_verbatim, diagnostic_for_asm,
98         diagnostic_for_decl):  Change prototype.
99         (error_with_decl, warning_with_decl, pedwarn_with_decl, warning,
100         error, warning, error_with_file_and_line,
101         warning_with_file_and_line, pedwarn_with_file_and_line, fatal):
102         Adjust call to report_diagnostic, diagnostic_for_decl.
103         (error_for_asm, warning_for_asm): Adjust call to diagnostic_for_asm.
104         (output_verbatim, verbatim): Adjust call to output_do_verbatim.
106         * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic. End
107         varaible argument list.
109 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
111         * cpphash.c: Don't include hashtab.h.  Most macro-handling code
112         moved to cppmacro.c.
113         (hash_HASHNODE, eq_HASHNODE, _cpp_dump_macro_hash,
114         dump_hash_helper): Delete.
115         (expand_hash, higher_prime_number, _cpp_lookup_with_hash,
116         cpp_forall_identifiers): New. Implement specialized version of
117         Vlad's expandable hash table.
118         (cpp_lookup): Use new functions.
119         (_cpp_init_macros, _cpp_cleanup_macros): Adjust for new
120         implementation.
121         * cppmacro.c: New file.
122         * cppinit.c (dump_macros_helper): New.
123         (cpp_finish): Iterate over the identifier table directly.
124         * cpplex.c (parse_name): Calculate the hash of the identifier
125         while we scan it.  Use _cpp_lookup_with_hash when we can.
127         * cpphash.h: Update prototypes.
128         (xcnewvec, HASHSTEP): New helper macros.
129         * cpplib.h: Update prototypes.
130         * Makefile.in (LIBCPP_OBJS): Add cppmacro.o.
131         (cppmacro.o): New rule.
132         (cpphash.o): Update deps.
134         * cppmain.c: Do not set pfile->printer if no_output is on.
136 2000-07-15  Neil Booth  <neilb@earthling.net>
138         * cpplib.c: Change all directive-handler functions to return
139         void, not int.
140         * cpphash.h: Update typedefs.
142 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
144         * configure: Regenerate.
146         * extend.texi (Extended Asm): Mention that a memory clobber
147         does not count as a side-effect.
149         * unroll.c (copy_loop_body): Fix one instance of using host
150         arithmetic on the target; fixes loop-4 on a 32-bit -> 64-bit
151         cross-compile.
153         * tlink.c (scan_linker_output): Tweak for output of AIX ld.
155 2000-07-17  Richard Henderson  <rth@cygnus.com>
157         * config/ia64/ia64.md (movdi): Split out load address code.
158         New post-reload splitter for symbolic operands.
159         (movdi_internal): Abort if we didn't split symbolic operands
160         when we should have.
161         * config/ia64/ia64.c (ia64_expand_load_address): New, from movdi bits.
162         (ia64_reorg): Split insns when not optimizing.
163         * config/ia64/ia64-protos.h (ia64_expand_load_address): Declare.
165 Mon Jul 17 23:43:26 MET DST 2000  Jan Hubicka  <jh@suse.cz>
167         * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Use LONG_DOUBLE_TYPE_SIZE
168         instead of MAX_LONG_DOUBLE_TYPE_SIZE to decide output format.
170 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
172         * loop.c (check_dbra_loop) : Changed loop_continue to loop->cont.
174 2000-07-17  Jason Merrill  <jason@redhat.com>
176         * Makefile.in (clean): Remove libgcc directory.
178         * configure.in (-Wno-long-long check): Use higher-level macros.
180 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
182         * simplify-rtx.c (simplify_binary_operation): Recognize
183            (compare (gt[u] (cc) 0) (lt[u] (cc) 0)).
184         (simplify_ternary_operation):  Do not examine MODE_BITSIZE of
185            a CONST_INT, it will always be zero.
187 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
189         * loop.c (check_dbra_loop) : Return if more than one condition is
190         present to control the loop.
192 Mon Jul 17 08:26:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
194         * mips.c (mips_expand_prologue): Don't calculate the last argument
195         register unless we need it.  When we are calculating this, make
196         sure FUNCTION_ARG is giving us a REG.
198 2000-07-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
200         * flow.c (libcall_dead_p): Use single_set to verify the insn
201         has only one set and get for analysis.
202         (propagate_one_insn): Don't pass the PATTERN of the insn.
204 2000-07-17  Mark Klein <mklein@dis.com>
206          * pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3.
208 2000-07-17  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
210         * Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
211         * configure.in (TARGET_GETGROUPS_T): Evaluate.
212         * sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
213         of second argument of getgroups.
214         * configure, config.in: Rebuilt.
216 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
218         * simplify-rtx.c (simplify_relational_operation): Two signed
219         values with equal high words are less/greater than each other if
220         their low words are less/greater when considered as unsigned.
222 Mon Jul 17 02:37:06 2000  Marc Espie <espie@openbsd.org>
224         * configure.in (vax-*-openbsd):  Change to new style configuration,
225         add collect2/float_format information.
226         * configure:  Rebuilt.
227         * config/vax/openbsd1.h:  New.
228         * config/vax/openbsd.h:  New.
229         * config/vax/t-openbsd:  New.
231 2000-07-17  Chip Salzenberg  <chip@valinux.com>
233         * c-common.c (shorten_compare): Quiet warnings about unsigned
234         comparisons with zero when they occur in a system header.
236 2000-07-17  Joseph S. Myers  <jsm28@cam.ac.uk>
238         * invoke.texi (-pedantic): Refer to ISO C instead of ANSI C, and
239         update to describe current practice.
241         * glimits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Define for C99.
243         * contrib.texi, cpp.texi, extend.texi, invoke.texi: Update
244         references to C9X.  Change references to -fstd and -flang-isoc9x
245         to refer to -std.
247         * c-common.c (scan_char_table): Allow "z" length modifiers on
248         diouxXn formats.
249         (check_format_info): Use TYPE_DOMAIN on the type matched against
250         for "z" formats, to retrieve the language size_t rather than the
251         internal one.
253         * c-common.c (check_format_info): Do not make a pedantic objection
254         to the 'L' length modifier if used with a floating point type
255         character.
257         * c-lex.c (yylex): Don't pedwarn for hexadecimal floating point
258         constants in C99 mode.
260 2000-07-17  Kazu Hirata  <kazu@hxi.com>
262         * h8300.md: Fix the format of mac.
263         (movsi_h8300hs): Output a tab after stmac instead of a space.
265         * h8300.c (two_insn_adds_subs_operand): Improve code for detecting
266         profitable adds/subs sequences.
268         * fold-const.c: Fix comment typos.
270 2000-07-16  Laurynas Biveinis  <lauras@softhome.net>
272         * cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
274 2000-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
276         * fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation.
278 2000-07-16  Neil Booth  <NeilB@earthling.net>
280         * cpplex.c: Update comments.
281         * README.Portability: Small update.
283 2000-07-16  Neil Booth  <NeilB@earthling.net>
285         * README.Portability:  Small update.
287 2000-07-15  Richard Henderson  <rth@cygnus.com>
289         * config/ia64/ia64-protos.h (ia64_move_ok): Prototype.
290         * config/ia64/ia64.c (ia64_move_ok): New function.
291         * config/ia64/ia64.md (movqi, movqi_internal): Use it.
292         (movhi, movsi, movdi, movsf, movdf, movxf): Likewise.
294 2000-07-15  Zack Weinberg  <zack@wolery.cumb.org>
296         * cpphash.c (save_expansion): Clear PREV_WHITE on tokens
297         immediately following a paste operator.
298         * cppinit.c (sort_options): New function (only for HOST_EBCDIC).
299         (cpp_reader_init): Call it, if HOST_EBCDIC.
300         (cpp_handle_options): Do not sort option list here.
301         (handle_option): Rename to cpp_handle_option and export.
302         * cpplex.c (cpp_scan_buffer_nooutput, cpp_scan_buffer): Use
303         _cpp_get_token directly.
304         (cpp_scan_line): Return 0 at EOF, 1 otherwise.
305         * cpplib.c (cpp_push_buffer): Don't set new->lineno to 1.
306         * cpplib.h: Prototype cpp_handle_option.  Update prototype of
307         cpp_scan_line.
309 2000-07-15  Richard Henderson  <rth@cygnus.com>
311         * fold-const.c (extract_muldiv): Don't optimize past an unsigned
312         cast around an expression.  Tidy other unsigned tests.
314 2000-07-15  Gabriel Dos Reis  <gdr@codesourcery.com>
316         * diagnostic.c (doing_line_wrapping, line_wrapper_printf, notice,
317         v_error_with_decl, v_warning_with_decl, v_pedwarn_with_decl): Remove.
318         (v_message_with_decl): Rename to ...
319         (format_with_decl): ... this. Tweak
320         (diagnostic_for_decl): New function.
321         (fatal_io_error): Use verbatim in lieu of notice.
322         (announce_function): Use verbatim.
323         (default_print_error_function): Likewise.
324         (error_with_decl, warning_with_decl, pedwarn_with_decl): Use new
325         infratructure.
327 2000-07-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
329         * mips.c (function_arg_pass_by_reference): Don't do automatic
330         aggregate initialization.
331         (machine_dependent_reorg): Initialize variable `mode'.
333         * mips.md (absdi2): Change variable `regno1' to unsigned int.
334         (reload_indi): Rename loword/hiword to lo_word/hi_word to avoid
335         conflicts with sys/param.h macro of the same name.
336         (reload_outdi): Likewise.
338 2000-07-15  Michael Meissner  <meissner@redhat.com>
340         * fold-const.c (fold): When optimizing FOO++ == CONST into ++FOO
341         == CONST + INCREMENT, don't overwrite the tree node for FOO++,
342         create a new node instead.
344 2000-07-15  Neil Booth  <NeilB@earthling.net>
346         * README.Portability: Correct example about calling a function
347         through a pointer to function.  Format wide paragraphs.
349 2000-07-15  Michael Meissner  <meissner@redhat.com>
351         * README.Portability: Update integer suffixes and function
352         prototype sections.
354 2000-07-15  Neil Booth  <NeilB@earthling.net>
356         * README.Portability: Small update.
358 2000-07-15  Neil Booth  <NeilB@earthling.net>
360         * README.Portability: New file.
362 Fri Jul 14 18:13:53 2000  Mark P Mitchell  <mark@codesourcery.com>
364         * INSTALL: Give special instructions for building GCC on Irix 6.
365         * config/mips/x-iris6 (CC): Don't set it.
366         (OLDCC): Likewise.
368 2000-07-14  Jason Merrill  <jason@redhat.com>
370         * dwarf2out.c (dwarf2out_frame_debug_expr): If we store the CFA
371         register in the stack and later in another register, use the new
372         register.
374 Fri Jul 14 10:25:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
376         * config/mips/mips.md: (absdi2): Handle sign_extend for
377         second operand.
379 2000-07-14  Nathan Sidwell  <nathan@codesourcery.com>
381         * cpplib.c (do_pragma_dependency): Tidy warning messages.
383 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
385         * .cvsignore: Correct typo.
387 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
389         * .cvsignore: Add generated YACC files.
390         * objc/.cvsignore: New file.
392 2000-07-14  Neil Booth  <NeilB@earthling.net>
394         * cpplex.c (adjust_column): New funcion.
395         (skip_whitespace): Use it.
396         (skip_block_comment): Use it, and warn about /*/* with
397         -Wcomments.
399 2000-07-14  Neil Booth  <NeilB@earthling.net>
401         * cpphash.c (struct macro_info): Add new members.
402         (_cpp_free_definition): Delete the macro directly.
403         (count_params): Return void, with first token of
404         expansion in struct macro_info on success.
405         (parse_define): Return int.  Hoist syntax checking from
406         save_macro_expansion.  Leave call to save_expansion to
407         _cpp_create_definition.
408         (alloc_macro): Needs just 2 arguments.
409         (free_macro): Delete.
410         (save_expansion): Don't perform syntax check.
411         (_cpp_create_definition): Call save_expansion.
413 2000-07-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
415         * genrecog.c (write_header): Split long string.
417         * cpphash.c (macro_info): Don't use the `signed' keyword.
419         * system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.
421 2000-07-13  Jakub Jelinek  <jakub@redhat.com>
423         * calls.c (stored_args_map): New variable.
424         (check_sibcall_argument_overlap_1): New.
425         (check_sibcall_argument_overlap): New.
426         (expand_call): Initialize stored_args_map.
427         Call check_sibcall_argument_overlap.
429 2000-07-13  Bruce Korb  <bkorb@gnu.org>
431         * fixinc/fixfixes.c: move EXIT_BROKEN to header, add sub-expr max count
432         (emit_gnu_type): utility procedure for gnu_type_fix
433         (gnu_type_fix): implement various pre-processor guards around
434         standard types so these types can be defined over and over
435         * fixinc/fixincl.tpl: add a "gnu_type_map" that forces the standard
436         types alluded to above will have GNU-compliant base types
437         * fixinc/fixlib.h: add EXIT_BROKEN define and the gnu_type_map struct
438         * fixinc/inclhack.def: add test_text entries and utilize the new
439         "gnu_types" fix for the ptrdiff_t, size_t and wchar_t types.
440         * fixinc/fixincl.x: regenerate
442 2000-07-12  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
444         * diagnostic.c (vline_wrapper_message_with_location,
445         v_message_with_file_and_line, v_error_with_file_and_file,
446         v_error_for_asm, v_warning_for_asm, vfatal,
447         v_warning_with_file_and_line, v_pedwarn_with_file_and_line,
448         vsorry, verror, vwarning, vpedwarn): Remove.
449         (diagnostic_for_asm): New function.
450         (pedwarn, error, warning, pedwarn_with_file_and_line,
451         error_with_file_and_line, warning_with_file_and_line, sorry,
452         error_for_asm, warning_for_asm, fatal): Reimplement.
453         (finish_diagnostic): Clear diagnostic info as well.
455 2000-07-13  Neil Booth  <NeilB@earthling.net>
457         * c-common.h (flag_digraphs): New.
458         * c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
459         * c-lex.c (yylex): Use flag_digraphs to decide whether to
460         honour digraphs.
462 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
464         * gcc.c (do_spec_1): Add new %B operator.
465         (set_input): Prepare for %B.
467         (link_command_spec): Move up with the other tm.h-
468         overrideable specs.  Factor out the portion conditional on
469         LINK_LIBGCC_SPECIAL into a new spec, %(link_libgcc).
470         (struct compiler): Just have a single spec string.  All users
471         updated.
472         (default_compilers): Remove unnecessary braces.
473         (static_specs): Update.
475         (trad_capable_cpp, cpp_options, cc1_options, asm_options): New
476         named specs.
477         (C and assembly specs): Use the new named specs, as appropriate.
479         * objc/lang-specs.h: Use the new named specs.
480         Remove unnecessary braces.
482 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
484         * gcc.c (execute): If a subprocess gets a fatal signal, report
485         strsignal() of the signal number, and ask for a bug report.
486         Do not do this for SIGPIPE if there's already been an error.
488         * tradcpp.c: Don't include signal.h.  Don't catch SIGPIPE.
489         Delete pipe_closed.
491         * tradcif.c: Remove.
493 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
495         * final.c (profile_function): Do not emit profile counters in
496         the data section, if NO_PROFILE_COUNTERS is defined.
497         * tm.texi: Document NO_PROFILE_COUNTERS.  Update doc for
498         FUNCTION_PROFILER.
500         * config/i386/linux.h (NO_PROFILE_COUNTERS): Define.
501         (FUNCTION_PROFILER): Just emit a call to mcount.
503 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
505         * tradcpp.c (main): Rename 'perror' label to 'sys_error'.
507         * cppexp.c, cpphash.c, cpphash.h, cppinit.c, cpplex.c,
508         cpplib.c, cpplib.h: Eradicate all traces of code dependent on
509         traditional, lang_chill, or lang_fortran.
511         * cppfiles.c: #undef strcmp to suppress warning about macros
512         used without arguments.
513         (_cpp_execute_include): Use f, not fname, in "No include path"
514         error.
515         (_cpp_pop_file_buffer): New function.
516         * cpplib.c: Don't include <sys/mman.h>.
517         (cpp_push_buffer): Set line_base and lineno in new buffer.
518         (cpp_pop_buffer): Use _cpp_pop_file_buffer.
520         * cpplex.c: Move all prototypes and structure declarations to the
521         top of the file.  Properly parenthesise some macro arguments.
522         (cpp_scan_line): New function.
523         (special_symbol [case T_INCLUDE_DEPTH]): Use pfile->include_depth,
524         don't need to walk up the stack counting.
526 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
528         * c-common.c (combine_strings): Emit a pedantic warning when a
529         string length is greater than the minimum ANSI C is required
530         to support.
532 Wed Jul 12 13:24:30 2000  Jeffrey A Law  (law@cygnus.com)
534         * pa/xm-pa64.h (NO_SYS_SIGLIST): Kill.
535         * d30v/xm-d30v.h (NO_SYS_SIGLIST): Kill.
537 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
539         * c-decl.c (define_label): Warn about identifier conflicts with
540         labels in traditional C.
542         * c-parse.in (unop +): Warn about the unary plus operator for
543         traditional C.
545         * c-typeck.c (store_init_value): Warn about automatic aggregate
546         initialization for traditional C.
548         * invoke.texi (-Wtraditional): Document new warnings.
550 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
552         * Makefile.in (c-errors.o): Fix thinko in dependency.
554 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
556         * gcc.c (C specs [!USE_CPPLIB]): Invoke tradcpp if any of
557         -traditional, -ftraditional, or -traditional-cpp was given.
558         Do not pass -traditional to the preprocessor.
559         (.S spec): Likewise.  Don't bother defining __ASSEMBLER__, the
560         preprocessor does it automatically.
561         * objc/lang-specs.h: Likewise.  Don't bother defining __OBJC__.
563         * ch/lang-specs.h: Always use tradcpp.  Do not pass
564         -traditional, -trigraphs, or -pedantic to the preprocessor.
565         * f/lang-specs.h (.F spec): Likewise.  Don't bother defining
566         _LANGUAGE_FORTRAN.
568 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
570         * cppexp.c (LOGICAL): Delete macro.
571         (_cpp_parse_expr): Do not use UNARY for unary +.  Implement ||
572         and && directly.
574         * cpphash.c (HASHSIZE): Increase to 4096.
575         (struct hashdummy): Add hash field.
576         (eq_HASHNODE): Compare unreduced hashes, then lengths, then
577         the string values using memcmp.
578         (cpp_lookup): Set dummy.hash.
580 Wed Jul 12 13:15:16 2000  Marc Espie <espie@openbsd.org>
582         * configure.in (m88k-openbsd): Express configuration using new fragment
583         style.
584         * configure: Rebuilt.
585         * m88k/aout-dbx.h: New.
586         * m88k/openbsd.h: New.
587         * m88k/xm-openbsd.h: New.
589 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
591         * expr.c (expand_expr): Return const0_rtx, not error_mark_node.
593 2000-07-12  Richard Henderson  <rth@cygnus.com>
595         * reload.c (push_secondary_reload): Make sure to add the new
596         reload at the end, after acquiring secondary memory.
598 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
600         * cpplex.c (is_macro_disabled): Use CPP_WTRADITIONAL.
602         * c-decl.c (set_current_function_name_declared, anon_aggr_type_p,
603         lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED.
605         * c-parse.in (stmt): Delete unused variables.
607         * convert.c (convert_to_vector): Likewise.
609         * gensupport.c (process_rtx): Declare attr as `rtvec' not `rtx'.
611         * tree.c (finish_vector_type): Prototype.
613 2000-07-12  Bruce Korb  <bkorb@gnu.org>
615         * fixinc/fixfixes.c: use xmalloc
616         * fixinc/fixincl.c(initialize): set program name for xmalloc
617         * fixinc/fixlib.c(must_malloc): obsolete
618         (is_cxx_header): no longer used - disabled
619         (skip_quote): inserted and disabled for future use
620         * fixinc/fixlib.h: reflects above
621         * fixinc/fixtests.c: removed dinkleberries
623 2000-07-12  Neil Booth  <NeilB@earthling.net>
625         * cpphash.h: (TOKEN_SPELL) Pulled from cpplex.c.
626         * cpplex.c (TOKEN_SPELL) Move to cpphash.h.
628         * cpphash.c: (struct macro_info, alloc_macro, free_macro,
629         struct toklist_dummy): New.
630         (cpp_free_definition): Free macros with free_macro.
631         (count_params): Don't save paramter spellings.  Save macro
632         information in a struct macro_info.
633         (parse_define): Don't allocate a token list.
634         (save_expansion): Allocate the macro's token list, and
635         save parameter spellings if necessary.  Use TOKEN_SPELL.
636         (cpp_create_definition): Make list const.
638 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
640         * c-typeck.c (pedwarn_c99): Move to
641         * c-errors.c: ... Here.
642         * toplev.h (verror, vwarning, vpedwarn): Remove prototypes.
643         * diagnostic.c (verror, vwarning, vpedwarn): Make static.
644         * Makefile.in (C_AND_OBJC_OBJS): Include c-errors.o
645         (c-errors.o): List dependency.
647 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
649         * c-parse.c: Remove.
650         * c-parse.h: Likewise.
651         * c-parse.y: Likewise.
652         * objc/objc-parse.c: Likewise.
653         * objc/objc-pasre.y: Likewise.
655 2000-07-11  Rodney Brown  <RodneyBrown@pmsc.com>
657         * gcc.texi: Fix minor typos
658         * extend.texi: Fix minor typos
660 2000-07-11  Marc Espie <espie@openbsd.org>
662         * collect2.c (main): Recognize .lo as object files.
664 2000-07-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
666         * pa.c (hppa_encode_label): Store labels in gc memory when ggc_p is
667         true.
669         * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE): Extend test to detect systems
670         with MAP_ANONYMOUS and MAP_ANON.
671         * configure, config.in: Rebuilt.
673 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
675         * diagnostic.c (save_output_state): Remove.
676         (restore_output_state): Likewise.
677         (clear_text_info): New function.
678         (clear_diagnostic_info): Likewise.
679         (output_text_length, is_starting_newline, output_prefix,
680         line_wrap_cutoff, ideal_line_wrap_cutoff, prefix_was_emitted_for,
681         prefixing_policy, output_buffer_ptr_to_format_args): New macros
682         (set_real_maximum_length, output_set_maximum_length,
683         output_set_prefix, output_get_prefix, output_set_maximum_length,
684         output_destroy_prefix, init_output_buffer,
685         reshape_diagnostic_buffer, output_space_left, output_emit_prefix,
686         output_add_newline, output_add_character, output_add_space,
687         output_append_r, output_append, wrap_text, output_format,
688         output_do_printf, output_printf, output_do_verbatim,
689         output_verbatim, verbatim): Use them.
690         (output_clear): Split into cleat_text_info and
691         clear_diagnostic_info.
692         (struct output_state): Move to...
694         * diagnostic.h: ...Here
695         (struct output_buffer): Adjust.
697 2000-07-11  Zack Weinberg  <zack@wolery.cumb.org>
699         * cpplex.c (parse_name): No longer inline (premature optimization).
700         (do_pop_context): Fold into pop_context.
701         (pop_context): Returns int.
702         (lex_next): Hoist test for end of directive into pop_context.
703         (push_macro_context): Returns int; takes just reader and token.
704         Hoist test for excessive nesting to caller.
705         (push_arg_context): Returns void; takes just reader and token.
706         Do not call stringify_arg or get_raw_token.
707         (get_raw_token): Convert tail recursion through push_arg_context
708         to a loop at this level.  Call stringify_arg here if appropriate.
709         (maybe_paste_with_next): Convert tail recursion to a while loop.
710         Hoist test of paste_level to caller.
712         (stringify_arg): Push arg context at beginning.
713         (cpp_get_token): Split out core into _cpp_get_token.  Call
714         process_directive here.  Throw away CPP_PLACEMARKER tokens.
715         (_cpp_get_token): Convert tail recursion through
716         push_macro_context to a loop at this level.
717         (_cpp_glue_header_name, is_macro_disabled, stringify_arg,
718         _cpp_get_raw_token): Use _cpp_get_token.
719         (_cpp_skip_rest_of_line): Drop the context stack directly; do
720         not call pop_context.
721         (_cpp_run_directive): Call lex_next directly.
723         * cpphash.h: Prototype _cpp_get_token.
724         * cppexp.c (lex): Use it.
725         * cpphash.c (parse_define): Use it.
726         * cpplib.c (get_define_node, do_undef, parse_include,
727         read_line_number, do_line, do_ident, do_pragma, do_pragma_gcc,
728         do_pragma_implementation, do_pragma_poison, do_pragma_dependency,
729         parse_ifdef, validate_else): Use it.
730         (cpp_push_buffer): Tweak error message; abort if anyone tries
731         to push a buffer while macro expansions are stacked.
733 2000-07-11  Donn Terry  <donnte@microsoft.com>
735         * cpplex.c (free_macro_args, save_token): Cast arg of free
736         and/or xrealloc to PTR.
737         (_cpp_init_input_buffer): Clear all fields of the base context.
739 Tue Jul 11 15:28:21 CDT 2000  Clinton Popetz  <cpopetz@cygnus.com>
741         * gensupport.c (process_rtx): Make rtl checking stop
742         complaining about the define_insn while it is being
743         converted from a define_insn_and_split.
745 Tue Jul 11 16:26:17 2000  Clinton Popetz  <cpopetz@cygnus.com>
747         * config/mips/mips.c (simple_memory_operand): Access the
748         INTVAL of the address, not it's containing MEM.
750 2000-07-11  Bruce Korb  <bkorb@gnu.org>
752         * fixinc/fixtests.c(double_slash): obsolete
753         (else_endif_label): likewise
754         * fixinc/inclhack.def(irix_multiline_cmnt): obsolete
755         (libc1_ifdefd_memx): correct initial comment
756         and omit the #if/#endif pair from the memxxx declarations
757         * fixinc/fixincl.x: regen
759 2000-07-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
761         * cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
763 2000-07-11  Neil Booth  <NeilB@earthling.net>
765         * cpp.texi: Update.
767 2000-07-11  Neil Booth  <NeilB@earthling.net>
769         * cppinit.c: (cpp_reader_init): Allow digraphs by default.
770         (handle_option): Set digraphs according to standard.
771         Merge OPT_lang_c89 handler with OPT_std_c89.
773         * cpplex.c: (lex_line, can_paste): Honour digraphs in
774         accordance with the digraphs flag.
776         * cpplib.h: (struct cpp_options): New option digraphs.
778 2000-07-10  Hans-Peter Nilsson  <hp@axis.com>
779             Bruce Korb  <bkorb@gnu.org>
781         * fixinc/inclhack.def (libc1_ifdefd_memx): New fix.
782         * fixinc/fixincl.x: Regenerate.
783         * fixinc/tests/base/testing.h: Add testcase.
785 2000-07-10  Richard Henderson  <rth@cygnus.com>
787         * config/ia64/ia64.c (got_symbolic_operand): New.
788         (symbolic_operand, move_operand): Revert 0701 change.
789         * config/ia64/ia64.h (PREDICATE_CODES): Update.
790         * config/ia64/ia64-protos.h (got_symbolic_operand): Declare.
791         * config/ia64/ia64.md (movdi): Revert 0701 wrt symbolic_operand;
792         split the offset into a 14-bit low part instead of a 13-bit low part.
793         (load_fptr): Mark the mem as unchanging.
794         (load_symptr): Use got_symbolic_operand.
796 2000-07-10  Nick Clifton  <nickc@cygnus.com>
798         * libgcc2.c (next_stack_level): Cast result of computation to
799         (void **) so that the assignment does not generate a warning.
801 2000-07-10  Chandrakala Chavva  <cchavva@redhat.com>
803         * flags.h : Add new variable flag_single_precision_constant.
804         * toplev.c (display_help) : Add -fsingle-precision-constant option.
805         (flag_single_precision_constant): New.
806         * c-lex.c (yylex): Convert floating point constant to single
807         precision constant.
808         * invoke.texi : Add documentation for this new option.
810 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
812         * diagnostic.c (output_octal): Second parameter is unsigned.
813         (output_long_octal): Likewise.
814         (output_hexadecimal): Likewise.
815         (output_long_hexadecimal): Likewise.
816         (output_format): Adjust arguments extraction. Tweak.
817         (output_verbatim, verbatim): End variable argument list.
818         (report_diagnostic): Improve documentation.
820 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
822         * c-common.h (build_stmt): Declare.
823         (build_continue_stmt): Likewise.
824         (build_break_stmt): Likewise.
825         (build_return_stmt): Likewise.
827         * c-decl.c (do_case): Rewrite to do what previously done in
828         c-parse.in.
830         * c-semantics.c (build_stmt): Define.
831         (build_return_stmt): Likewise.
832         (build_break_stmt): Likewise.
833         (build_continue_stmt): Likewise.
834         (build_case_label): Likewise.
836         * c-parse.in (BREAK): Change to build tree, then generate RTL.
837         (CONTINUE): Likewise.
838         (RETURN): Likewise.
839         (CASE): Likewise.
840         (DEFAULT): Likewise.
842         * c-parse.y: Regenerate.
843         * c-pasre.c: Likewise.
845 2000-07-09  Jason Merrill  <jason@redhat.com>
847         * expr.c (expand_expr): Bail earlier if we get an error_mark_node.
849         * tree.h (STRIP_NOPS): Check for error_mark_node.
850         (STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
851         (dwarf2out_*): Remove duplicate declarations.
853         * c-decl.c (duplicate_decls): Copy DECL_ABSTRACT_ORIGIN from
854         DECL_ABSTRACT_ORIGIN, not DECL_ORIGIN.
856 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
858         * diagnostic.c (wrap_text): New function.
859         (maybe_wrap_text): Likewise.
860         (output_add_string): Use it.
861         (output_format): Likewise.
862         (count_error): Use verbatim instead of notice.
863         (report_error_function): Likewise. Don't use plain fprintf.
864         (finish_diagnostic): New function.
865         (output_do_verbatim): Tweak.  Commonalize functionalities in
866         output_verbatim and verbatim.
867         (output_verbatim): Adjust.
868         (verbatim): Likewise.
869         (report_diagnostic): Define.
871         * diagnostic.h (report_diagnostic): Prototype.
873 2000-07-09  Zack Weinberg  <zack@wolery.cumb.org>
875         * cppexp.c (_cpp_parse_expr): Don't use unary plus.
877 2000-07-09  Neil Booth  <NeilB@earthling.net>
879         * cpphash.h: ISvspace, is_vspace, is_nvspace: New.
880         IShspace, ISspace: Update.
882         * cppinit.c: ISTABLE: Update.
883         V: New.
885         * cpplex.c (IS_HSPACE, S_NEWLINE): Remove.
886         (IS_DIRECTIVE): Rename KNOWN_DIRECTIVE.
887         (skip_block_comment, skip_line_comment, parse_string,
888         lex_line): Use is_vspace rather than IS_NEWLINE.
889         (skip_whitespace, lex_line): Clean up to use is_nvspace.
890         (lex_line): Use KNOWN_DIRECTIVE.  Any kind of directive
891         gets a BOL flag.
892         (lex_next): Unconditionally stop if within a directive.
893         Treat directives within macro invocations as directives
894         (after parse_args emits error), not as the argument.
896 2000-07-09  Gabriel Dos Reis  <gdr@codesourcery.com>
898         * diagnostic.c (diagnostic_args): New macro.
899         (diagnostic_msg): Likewise.
900         (output_formatted_integer): Likewise.
901         (output_state): New data type.
902         (digit_buffer): Make global.
903         (output_add_integer): Rename to output_decimal. Squeeze
904         digit_buffer.
905         (output_long_decimal, output_unsigned_decimal,
906         output_long_unsigned_decimal, output_octal, output_long_octal,
907         output_hexadecimal, output_long_hexadecimal): New functions.
908         (output_append_r): New function.
909         (output_append): Tweak.
910         (output_flush_on): Rename to output_to_stream.
911         (output_format): Change prototype.  Improve documentation. Handle
912         more format specifiers.
913         (build_location_prefix): Rename to context_as_prefix.
914         (output_notice): Rename to output_do_printf.
915         (output_printf): Tweak.
916         (line_wrapper_printf): Likewise.
917         (vline_wrapper_message_with_location): Adjust call to renamed
918         functions.
919         (v_message_with_decl): Likewise.
920         (default_print_error_function): Likewise.
921         (save_output_state): New function.
922         (restore_output_state): Likewise.
923         (output_do_verbatim): Likewise.
924         (output_verbatim): Define.
925         (verbatim): Likewise.
927         * diagnostic.h (printer_fn): Change return type from void to int.
928         Improve documentation.
929         (output_add_integer): Rename to output_decimal.
930         (output_flush_on, output_format): Don't export.
931         (output_verbatim, verbatim): Declare.
933 2000-07-08  Toon Moene  <toon@moene.indiv.nluug.nl>
935         * fold-const.c (extract_muldiv) case PLUS_EXPR, MINUS_EXPR:
936         Check whether c divides op1 exactly if operation is not
937         multiplication.
939 2000-07-08  Richard Henderson  <rth@cygnus.com>
941         * final.c (final): Do not abort when reg-stack introduces
942         a new insn.
944 2000-07-08  Zack Weinberg  <zack@wolery.cumb.org>
946         * cpplib.h (struct cpp_name): Now struct cpp_string.
947         (CPP_INT, CPP_FLOAT, CPP_NUMBER, CPP_COMMENT,
948         CPP_HEADER_NAME): Change to type S.
949         (struct cpp_token): Rename 'name' field to 'str'.  Add 'node'
950         field, a cpp_hashnode *.  All references to val.name updated
951         to use val.str or val.node as appropriate.
952         (struct cpp_reader): Add spec_nodes field.
953         (cpp_idcmp): Now cpp_ideq; takes a token * and a char *.
955         * cpphash.h (struct spec_nodes): New.
956         (enum spell_type): Reorder.  Only SPELL_STRING tokens use
957         val.str.  All references to 'spelling > SPELL_NONE' updated to
958         match.
960         (CPP_IN_SYSTEM_HEADER): Check pfile->buffer and
961         pfile->buffer->inc are not NULL before dereferencing them.
963         * cpplex.c (parse_name): Take a pointer to the current token,
964         plus current position and limit as args; return the new
965         position; don't copy the text of a name into the string
966         buffer, instead call cpp_lookup and store the node pointer.
967         If extending a token, copy out the text of the old into a
968         scratch buffer, append the new, look that up and store the new
969         node pointer.  Inline.
970         (maybe_paste_with_next): If the result of paste is a NAME,
971         then look up the pasted text and store its node pointer.
972         (lex_line): Adjust for new parse_name interface.
973         Check for L"str", L'str' using spec_nodes->n_L.
974         (spell_token): SPELL_IDENT tokens have their spelling in
975         val.node->name.  Handle SPELL_STRING tokens that don't have
976         string delimiters.
977         (_cpp_expand_name_space,
978         (can_paste): Check for L ## "str" using spec_nodes->n_L.
979         (cpp_get_token, special_symbol): No need to call cpp_lookup.
980         (cpp_idcmp): Now cpp_ideq; take a token * and a const char *;
981         return 1=equal 0=not, not a tristate.
983         * cpphash.c (var_args_str): Delete.
984         (find_param): Compare node fields directly.
985         (is__va_args__): Use CPP_PEDANTIC.  Just compare
986         token->val.node with spec_nodes->n__VA_ARGS__.
987         (dump_funlike_macro): Don't use var_args_str.
989         * cpplib.c (_cpp_check_directive): Just walk through
990         spec_nodes->dirs comparing pointers.
991         (get_define_node, do_pragma_poison, detect_if_not_defined,
992         parse_ifdef): The identifier has already been looked up.
993         (do_ifdef, do_ifndef): parse_ifdef won't return a poisoned
994         node.
995         (do_if): Only call detect_if_not_defined at beginning of file.
996         (_cpp_parse_assertion): Only copy string pointers for
997         SPELL_STRING tokens.
998         (pragma_dispatch): Take a node pointer and examine its name
999         field.
1000         (_cpp_init_stacks): Also initialize the spec_nodes structure.
1002         * cppinit.c (cpp_reader_init): Call _cpp_init_stacks after
1003         _cpp_init_macros.
1004         (cpp_cleanup): Free pfile->spec_nodes.  Call _cpp_cleanup_* in
1005         reverse order from the corresponding _cpp_init_* routines.
1007         * cppexp.c (parse_number, parse_charconst, parse_defined,
1008         lex): Check val.node->type instead of calling cpp_defined.
1009         Use spec_nodes entries where appropriate.
1011         * fix-header.c, scan-decls.c: Update for interface changes.
1013 2000-07-08  Geoffrey Keating  <geoffk@cygnus.com>
1015         * config/rs6000/rs6000.c (rs6000_emit_move): Fix conditions for
1016         emitting aux_truncdfsf2.
1018 2000-07-03  Donn Terry  (donnte@microsoft.com)
1020         * cppinit.c (print_help): split overlong line into ISO C89
1021         maximum chunks.
1023 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
1025         * cppexp.c: Update all code for new lexer interface.
1026         (op_t, operator codes, struct token, tokentab2, op_to_str): Remove.
1027         (struct suffix, vsuf_1, vsuf_2, vsuf_3, op_to_prio): New.
1028         * cpplex.c (token_names): Trim leading CPP_ from names; make
1029         the strings unsigned.
1030         (_cpp_spell_operator): New.
1031         (is_macro_disabled): Disable all macros if rescanning
1032         preprocessed text.
1033         (_cpp_get_directive_token): Remove.
1035         * cppinit.c: Don't set no_macro_expand.
1036         * cpplib.c (read_line_number, do_line): Check only for EOF,
1037         not VSPACE.
1038         * cpphash.h: Update prototypes.
1039         * cpplib.h (CPP_VSPACE): Remove.
1040         (struct cpp_reader): Remove no_macro_expand.
1042 2000-07-08  Neil Booth  <NeilB@earthling.net>
1044         * cpphash.c (is__va_args__): New function.
1045         (count_params): Fix line reported in error messages.  Use
1046         is__va_args__.  Don't return ')' on error.  Flag GNU style
1047         rest args macro definitions.
1048         (parse_define): Check macro name is not __VA_ARGS__.
1049         (save_expansion): Check identifier in non-varargs-macro is
1050         not __VA_ARGS__.  Don't flag GNU_VARARGS.
1051         * cpplex.c (parse_args): Accept no argument iff GNU_REST_ARGS.
1052         (maybe_paste_with_next): Use per-macro GNU_REST_ARGS rather
1053          than per-token GNU_VARARGS.
1054         * cpplib.h (GNU_VARARGS): Remove.
1055         (GNU_REST_ARGS): New.
1057 Sat Jul  8 01:38:25 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1059         * i386.md (call_pop, call, call_value_pop): Do not set
1060         current_function_uses_pic_offset_table for calls to static
1061         functions or indirect calls.
1063 2000-07-07  Jim Wilson  <wilson@cygnus.com>
1065         * config/ia64/ia64.c (rws_access_reg): New local write_count.  If
1066         is_predicate_reg, then take max write_count of register pair.
1068 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1070         * tradcpp.c (main): Rename label `include' to `add_include' to
1071         avoid conflicts with variable `include' in traditional C.
1073 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
1075         * integrate.c (copy_insn_list): Remove REG_LABEL notes.
1077 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
1079         * sibcall.c (uses_addressof): Add INMEM argument, check for
1080         current_function_internal_arg_pointer outside of MEM rtxs in addition
1081         to ADDRESSOFs.
1082         (sequence_uses_addressof): Update caller.
1084 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
1086         * tradcpp.c (initialize_builtins): Honor NO_BUILTIN_SIZE_TYPE
1087         and friends.
1089 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1091         * system.h (UNION_INIT_ZERO): New macro for initializing union
1092         members in structs.
1094         * cpplex.c (placemarker_token, eof_token): Use UNION_INIT_ZERO.
1096 2000-07-07  Neil Booth  <NeilB@earthling.net>
1098         * cpp.texi: Update.
1100 Fri Jul  7 07:47:35 2000  Jeffrey A Law  (law@cygnus.com)
1102         * final.c (final): Detect out of bounds array access to
1103         the insn_lengths array.
1105 2000-07-07  Kazu Hirata  <kazu@hxi.com>
1107         * fold-const.c (fold): Fix a comment typo.
1109 2000-07-07  Neil Booth  <NeilB@earthling.net>
1111         * cpp.texi: Update to new lexer.
1113 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
1115         * tradcpp.c: New file.
1116         * tradcif.y: New file.
1117         * tradcif.c: New generated file.
1119         * Makefile.in: Add rules to build tradcpp.o, tradcif.o,
1120         $(srcdir)/tradcif.c.  Add tradcpp to STAGESTUFF and
1121         dependencies of C.  Install tradcpp from install-common, in
1122         $(libsubdir).
1124 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
1126         * cppinit.c: Include cppdefault.h.  Refer to
1127         cpp_GCC_INCLUDE_DIR and cpp_GCC_INCLUDE_DIR_len, not directly
1128         to GCC_INCLUDE_DIR and its length.
1129         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
1130         USER_LABEL_PREFIX, REGISTER_PREFIX, struct default_include,
1131         STANDARD_INCLUDE_DIR, STANDARD_INCLUDE_COMPONENT):  Move to
1132         cppdefault.h.
1133         (include_defaults_array): Move to cppdefault.c.
1135         * cppdefault.h: New file.
1136         * cppdefault.c: New file.
1138         * Makefile.in (LIBCPP_OBJS): Add cppdefault.o.
1139         (cppinit.o): Don't apply $(PREPROCESSOR_DEFINES) to this file.
1140         (cppdefault.o): New rule; apply $(PREPROCESSOR_DEFINES) to
1141         this file.
1143 Thu Jul  6 18:30:36 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1145         * reload.c (push_reload): When seeing if can reuse a register,
1146         check extra registers against widest of INMODE and OUTMODE.
1148 2000-07-06  Neil Booth  <NeilB@earthling.net>
1150         * cpplib.c: (_cpp_parse_assertion):  Perform hash lookups
1151         based on full length of predicate.
1153 2000-07-06  Hans-Peter Nilsson  <hp@axis.com>
1155         * timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.
1156         [NEED_DECLARATION_GETRUSAGE]: Declare getrusage.
1158 2000-07-05  Kazu Hirata  <kazu@hxi.com>
1160         * h8300-proto.h: Fix formatting.
1161         * h8300.c: Likewise.
1162         * h8300.h: Likewise.
1164 2000-07-05  Jim Wilson  <wilson@cygnus.com>
1166         * config/ia64/ia64.h (HARD_REGNO_MODE_OK): If FR_REGNO_P, disallow
1167         CCmode.
1169 2000-07-05  Rodney Brown  <RodneyBrown@pmsc.com>
1171         * invoke.texi: Fix minor typos
1172         * md.texi: Fix minor typos
1174 2000-07-05  Zack Weinberg  <zack@wolery.cumb.org>
1176         * cpplib.c (_cpp_parse_assertion): Fix buffer overrun.
1178 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
1180         * cpplex.c: Don't include sys/mman.h.
1181         (cpp_push_buffer, cpp_pop_buffer): Moved to cpplib.c.
1183         * cpplib.c: Include sys/mman.h and obstack.h.
1184         (cpp_push_buffer): Moved from cpplex.c; allocate buffers on an
1185         obstack.
1186         (cpp_pop_buffer): Moved from cpplex.c; free buffers from an obstack.
1187         (_cpp_unwind_if_stack): Now static, unwind_if_stack.  Don't
1188         bother freeing if stack entries (they will be freed with their buffer).
1189         (do_endif): Free if stack entries from the buffer obstack.
1190         (push_conditional): Allocate if stack entries from the buffer obstack.
1192         (find_answer): Rename to _cpp_find_answer.
1193         (do_assert, do_unassert): Update.
1195         * cpphash.h: Update prototypes.
1196         (xobnew): New convenience macro.
1197         * cpplib.h (struct cpp_reader): Add hash_ob and buffer_ob fields.
1198         Update comments.
1199         (struct cpp_hashnode): Remove disabled field.
1201         * cppinit.c: Don't include hashtab.h or splay-tree.h.
1202         (report_missing_guard): Moved to cppfiles.c.
1203         (cpp_reader_init): Call cpp_init_stacks, cpp_init_macros,
1204         cpp_init_includes.
1205         (cpp_cleanup): Call cpp_cleanup_stacks, cpp_cleanup_macros,
1206         cpp_cleanup_includes.  Don't destroy hashtab or
1207         all_include_files here.
1208         (cpp_finish): Use _cpp_report_missing_guards.
1210         * cppfiles.c (report_missing_guard): Moved from cppinit.c.
1211         (_cpp_init_include_table): Rename _cpp_init_includes.
1212         (_cpp_cleanup_includes, _cpp_report_missing_guards): New.
1214         * cppexp.c (parse_assertion): Update for new name of
1215         find_answer.
1217         * Makefile.in (cpplib.o, cpphash.o, cppinit.o): Update deps.
1219 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
1221         * cpplib.c (do_ident): s/VSPACE/EOF/
1223 2000-07-05  Neil Booth  <NeilB@earthling.net>
1225         * cpplex.c: Fix trigraph replacement within strings.
1227 2000-07-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1229         * rs6000/aix.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier.
1231         * xcoffout.c (assign_type_number): Constify.
1232         (xcoffout_source_file): Add static prototype.  Don't needlessly
1233         cast away const-ness.
1235 2000-07-04  Jason Merrill  <jason@redhat.com>
1237         * frame.h (frame_state): Move base_offset to end.
1239 Mon Jul  3 21:31:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
1241         * calls.c (emit_library_call_value_1): Revert previous change.
1243 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
1245         * fix-header.c (struct partial_proto): Remove unnecessary fields.
1246         (recognized_extern, recognized_function, read_scan_file):
1247         Update for new scheme.
1248         (check_protection): It's still a multiple include guard even
1249         if it doesn't always trigger.
1250         * scan-decls.c (skip_to_closing_brace, scan_decls): Update for
1251         new scheme.
1252         * scan.h: Declare struct cpp_token.  Update prototypes.
1254 2000-07-03  Neil Booth  <neilb@earthling.net>
1255             Zack Weinberg  <zack@wolery.cumb.org>
1257         Complete overhaul of the lexer and macro expander.
1259         * cpphash.c (object_defn, funct_defn, push_macro_expansion,
1260         arg, arglist, argdata, reflist, collect_objlike_expansion,
1261         collect_funlike_expansion, collect_params,
1262         warn_trad_stringify, trad_stringify, duplicate_arg_p, add_pat,
1263         unsafe_chars, macarg, compare_defs, special_symbol,
1264         scan_arguments, stringify, funlike_macroexpand,
1265         _cpp_quote_string, monthnames): Delete.
1266         (cpp_lookup, _cpp_free_definition, dump_funlike_macro,
1267         _cpp_create_definition, _cpp_dump_definition,
1268         dump_hash_helper): Adjust.
1269         (find_param, count_params, parse_define, var_args_str,
1270         check_macro_redefinition, save_expansion): New.
1272         * cpplex.c (skip_block_comment, skip_line_comment, parse_name,
1273         parse_string, output_line_command, trigraph_replace,
1274         lex_line, cpp_push_buffer, cpp_pop_buffer, cpp_output_tokens,
1275         cpp_scan_buffer_nooutput, cpp_scan_buffer, cpp_free_toklist,
1276         cpp_idcmp, _cpp_get_directive_token, _cpp_init_input_buffer,
1277         _cpp_skip_rest_of_line): Modify.
1279         (maybe_macroexpand, skip_comment, copy_comment, skip_string,
1280         find_position, null_warning, bump_column, expand_name_space,
1281         pedantic_whitespace, _cpp_output_list, _cpp_slice_toklist,
1282         _cpp_squeeze_toklist, _cpp_scan_until, _cpp_skip_hspace,
1283         _cpp_parse_name, _cpp_lex_token, cpp_get_non_space_token,
1284         _cpp_prescan): Delete.
1286         (dump_param_spelling, process_directive, lex_next,
1287         is_macro_disabled, stringify_arg, expand_context_stack,
1288         output_token, make_string_token, alloc_number_token,
1289         special_symbol, duplicate_token, maybe_paste_with_next,
1290         can_paste, prevent_macro_expansion, restore_macro_expansion,
1291         get_temp_token, release_temp_tokens, quote_string,
1292         token_names, token_spellings, _cpp_expand_name_space,
1293         _cpp_glue_header_name, _cpp_reserve_name_space,
1294         digraph_spellings, trigraph_ok, skip_whitespace, save_comment,
1295         placemarker_token, eof_token, cpp_context, macro_args,
1296         get_raw_token, parse_arg, parse_args, save_token,
1297         push_arg_context, push_macro_context, pop_context,
1298         do_pop_context, free_macro_args, _cpp_get_line,
1299         _cpp_run_directive): New.
1301         * cpplib.c (validate_else, parse_include, push_conditional,
1302         pass_thru_directive, read_line_number, parse_ifdef,
1303         detect_if_not_defined, _cpp_check_directive, do_define,
1304         do_undef, do_include, do_import, do_include_next, do_error,
1305         do_warning, do_ident, do_pragma, pragma_dispatch, gcc_pragmas,
1306         top_pragmas, do_pragma_gcc, do_pragma_implementation,
1307         do_pragma_poison, do_pragma_system_header,
1308         do_pragma_dependency, do_sccs, do_ifdef, do_ifndef, do_else,
1309         dl_elif, do_endif, _cpp_unwind_if_stack, do_assert,
1310         do_unassert, cpp_define, cpp_undef, cpp_assert, cpp_unassert,
1311         cpp_defined): Update for new scheme.
1312         (strtoul_for_line, get_define_node, dump_macro_name,
1313         _cpp_check_linemarker, _cpp_parse_assertion): New.
1314         (_cpp_handle_directive, do_pragma_default): Delete.
1316         * cpphash.h (struct predicate): Now struct answer.
1317         (enum spell_type, struct token_spelling, struct directive,
1318         directive_handler): New.
1319         Update prototypes.  Remove unused macros.
1320         * cpplib.h: Update prototypes.  Remove unused macros,
1321         structure definitions, and fields.
1323         * cpperror.c (print_containing_files, v_message): Adjust.
1324         * cppexp.c (parse_assertion, lex, parse_escape,
1325         _cpp_parse_expr): Adjust.
1326         * cppfiles.c (open_include_file, _cpp_execute_include,
1327         _cpp_compare_file_date, cpp_read_file, read_include_file):
1328         Adjust.
1329         * cppinit.c (dump_special_to_buffer): Delete.
1330         (append_include_chain, merge_include_chains, cpp_reader_init,
1331         cpp_cleanup, initialize_builtins, builtin_array, cpp_start_read,
1332         cpp_finish, handle_option, print_help): Adjust.
1333         * cppmain.c (main): Adjust.
1335 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
1337         * cppspec.c (lang_specific_driver): Use double quotes in error
1338         message.
1340 Mon Jul  3 16:53:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
1342         * calls.c (emit_library_call_value_1): Use valreg instead
1343         of hard_libcall_value.
1345 2000-07-03  Geoff Keating  <geoffk@cygnus.com>
1347         * config/rs6000/rs6000.c (rs6000_emit_move): New function.
1348         * config/rs6000/rs6000-proto.h: Prototype rs6000_emit_move.
1349         * config/rs6000/rs6000.md (movsi): Use rs6000_emit_move.
1350         (movhi): Likewise.
1351         (movqi): Likewise.
1352         (movdf): Likewise.
1353         (movsf): Likewise.
1354         (movdi): Likewise.
1355         (movti): Likewise.
1357         * expmed.c (expand_mult_highpart): Use op1 instead of wide_op1 when
1358         mode instead of wider_mode is being used.
1360 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
1362         * config/i386/i386.md (movstrictqi_xor): Use 'q' constraint instead
1363         of 'r'. Use q_regs_operand.
1364         (andsi_1+2): Use q_regs_operand.
1366 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
1368         * builtins.c (get_memory_rtx): Always put into alias set 0.
1370 2000-07-03  Nick Clifton  <nickc@cygnus.com>
1372         * config/arm/arm.md: Fix post increment and pre increment
1373         peepholes so that they do not generate UNPREDICATBLE opcodes.
1374         (ie ones where the increment clobbers the source/destination).
1376 2000-07-01  Marek Michalkiewicz  <marekm@linux.org.pl>
1378         * config/avr/avr.c (out_adj_frame_ptr): Make "frame pointer
1379         change too big for -mtiny-stack" a warning, if larger than 63.
1380         (out_set_stack_ptr): Change the logic so -mno-interrupts is
1381         always safe to use on possible future devices.
1382         (function_prologue): Write SPH before SPL, for consistency.
1383         If interrupt_func_p true, we know we have enabled interrupts.
1384         (avr_num_arg_regs): New function.  Round up to even number of
1385         bytes if no -mpack-args or if calling a libgcc function.
1386         (function_arg, function_arg_advance): Use it.
1387         (output_movsisf, ashlsi3_out, ashrsi3_out, lshrsi3_out):
1388         Output "movw" if available.
1389         (out_tsthi, out_tstsi, ashlqi3_out, lshrqi3_out): Change uses
1390         of TEST_HARD_REG_CLASS macro to test_hard_reg_class function.
1391         (asm_output_section_name): Add blanks for consistent output.
1392         (encode_section_info): Set TREE_READONLY for progmem data to
1393         avoid gas warnings about changed section attributes.
1394         (avr_hard_regno_mode_ok): Force non-QImode data to start in
1395         even numbered registers on devices with "movw".
1396         * config/avr/avr.h (MASK_*): Define bits for target_flags.
1397         (TARGET_SWITCHES): Mark help strings for translation.
1398         Add new -mpack-args and -menhanced switches.
1399         (TARGET_OPTIONS): Mark help strings for translation.
1400         (progmem_section): Add section attributes.
1401         * config/avr/avr.md (*movhi, call_insn, call_value_insn):
1402         Output "movw" if available.
1403         (mulqi3, mulqihi3, umulqihi3, mulhi3, *tablejump_enh):
1404         New patterns.
1405         * config/avr/libgcc.S (_mulqi3, _divqi3): Update to the new
1406         call convention (arguments aligned on even registers).
1407         (_cleanup, _exit): Make weak symbols libc can override.
1409 2000-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1411         * fp-bit.h: New file.
1413         * fp-bit.c: Move common code, prototypes, etc into fp-bit.h.
1414         Comment #endif statements.
1415         (__thenan_sf, __thenan_df): Add missing braces around initializer.
1417 Mon Jul  3 00:32:47 2000  Jeffrey A Law  (law@cygnus.com)
1419         * gcse.c (compute_pre_data): Compute ae_kill using other local
1420         properties instead of calling compute_ae_kill.
1422         * alias.c (init_alias_analysis): Do not call
1423         prologue_epilogue_contains until after reload has completed.
1425 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
1427         * c-common.h (genrtl_begin_compound_stmt): Remove declaration.
1428         (genrtl_finish_compound_stmt): Likewise.
1429         (genrtl_compound_stmt): Change to return void.
1431         * c-semantics.c (genrtl_begin_compound_stmt): Remove function and
1432         move code from here to ...
1433         (genrtl_compound_stmt): ... here.
1434         (genrtl_finish_compound_stmt): Remove.
1435         (expand_stmt): Add comment.
1437 2000-07-02  Zack Weinberg  <zack@wolery.cumb.org>
1439         * c-typeck.c (build_indirect_ref): Use COMPLETE_OR_VOID_TYPE_P
1440         and VOID_TYPE_P.
1442 2000-07-02  Jakub Jelinek  <jakub@redhat.com>
1444         * cpplib.h (struct cpp_reader): New field include_depth.
1445         (struct cpp_printer): Rename last_bsd to last_id.
1446         * cppfiles.c (read_include_file): Bump include_depth.
1447         * cpplex.c (cpp_pop_buffer): Decrement include_depth.
1448         (output_line_command): Output correct #line if a header
1449         is including itself and is not protected against multiple inclusion.
1450         Use include_depth instead of buffer_stack_depth, last_id instead of
1451         last_bsd.
1452         * cppinit.c (cpp_start_read): Initialize last_id instead of
1453         last_bsd.
1455 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
1457         * Makefile.in (C_AND_OBJC_OBJS): Added c-semantics.o.
1458         (c-semantics.o): New target.
1460         * c-common.h (TREE_LANG_FLAG_?): Added documentation.
1461         (genrtl_do_pushlevel): Moved from cp/cp-tree.h.
1462         (genrtl_clear_out_block): Likewise.
1463         (genrtl_goto_stmt): Likewise.
1464         (genrtl_expr_stmt): Likewise.
1465         (genrtl_decl_stmt): Likewise.
1466         (genrtl_if_stmt): Likewise.
1467         (genrtl_while_stmt): Likewise.
1468         (genrtl_do_stmt): Likewise.
1469         (genrtl_return_stmt): Likewise.
1470         (genrtl_for_stmt): Likewise.
1471         (genrtl_break_stmt): Likewise.
1472         (genrtl_continue_stmt): Likewise.
1473         (genrtl_scope_stmt): Likewise.
1474         (genrtl_switch_stmt): Likewise.
1475         (genrtl_case_label): Likewise.
1476         (genrtl_begin_compound_stmt): Likewise.
1477         (gerntl_finish_compound_stmt): Likewise.
1478         (genrtl_compound_stmt): Likewise.
1479         (genrtl_asm_stmt): Likewise.
1480         (genrtl_decl_cleanup): Likewise.
1481         (DECL_ANON_UNION_ELEMS): Likewise.
1482         (emit_local_var): Likewise.
1483         (make_rtl_for_local_static): Likewise.
1484         (expand_cond): Likewise.
1485         (expand_stmt): Likewise.
1486         (c_expand_return): Likewise.
1487         (c_expand_start_case): Likewise.
1488         (do_case): Likewise.
1489         (COMPOUND_STMT_NO_SCOPE): Likewise.
1490         (c_expand_asm_operands): Likewise.
1491         (NEW_FOR_SCOPE_P): New macro.
1492         (expand_expr_stmt_fn): New type.
1494         (set_current_function_name_declared): Likewise.
1495         (current_function_name_declared): Likewise.
1496         (lang_expand_stmt): Likewise.
1497         (stmts_are_full_exprs_p): Likewise.
1498         (anon_aggr_type_p): Likewise.
1499         (lang_expand_expr_stmt): Likewise.
1500         (build_case_label): Likewise.
1502         * c-decl.c (lang_expand_expr_stmt): Initialize.
1503         (stmts_are_full_exprs_p): Define.
1504         (current_function_name_declared): Likewise.
1505         (do_case): Likewise.
1506         (lang_expand_stmt): Likewise.
1507         (set_current_function_name_declared): Likewise.
1508         (anon_aggr_type_p): Likewise.
1510         * c-semantics.c: New file.
1511         (expand_cond): Moved from cp/semantics.c.
1512         (genrtl_do_pushlevel): Likewise.
1513         (genrtl_clear_out_block): Likewise.
1514         (genrtl_goto_stmt): Likewise.
1515         (genrtl_expr_stmt): Likewise.
1516         (genrtl_decl_stmt): Likewise.
1517         (genrtl_if_stmt): Likewise.
1518         (genrtl_while_stmt): Likewise.
1519         (genrtl_do_stmt): Likewise.
1520         (genrtl_return_stmt): Likewise.
1521         (genrtl_for_stmt): Likewise.
1522         (genrtl_break_stmt): Likewise.
1523         (genrtl_continue_stmt): Likewise.
1524         (genrtl_scope_stmt): Likewise.
1525         (genrtl_switch_stmt): Likewise.
1526         (genrtl_case_label): Likewise.
1527         (genrtl_begin_compound_stmt): Likewise.
1528         (genrtl_finish_compound_stmt): Likewise.
1529         (genrtl_compound_stmt): Likewise.
1530         (genrtl_asm_stmt): Likewise.
1531         (genrtl_decl_cleanup): Likewise.
1532         (make_rtl_for_local_static): Moved from cp/decl.c.
1533         (emit_local_var): Likewise.
1534         (expand_stmt): Define.
1536         * c-tree.h: (c_expand_asm_operands): Moved to c-common.h.
1537         (c_expand_return): Likewise.
1538         (c_expand_start_case): Likewise.
1540 2000-07-01  Richard Henderson  <rth@cygnus.com>
1542         * config/ia64/ia64.c (symbolic_operand): Reject CONST expressions
1543         with the low 13 bits set.
1544         (move_operand): Check for CONST|SYMBOL_REF|LABEL_REF directly.
1545         * config/ia64/ia64.md (movdi): Likewise.  Expand a CONST with one
1546         of the low 13 bits into a CONST plus an adddi3.
1547         (load_symptr): Set RTX_UNCHANGING_P.
1549 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
1551         * Makefile.in (c-common.o): Don't depend on c-tree.h or c-lex.h.
1552         * c-common.c (ridpointers): Declare.
1553         * c-common.h (enum rid): Declare.
1554         (NORID): Likewise.
1555         (ridpointers): Likewise.
1556         * c-lex.c (ridpointers): Don't declare.
1557         (init_lex): Initialize ridpointers.
1558         * c-lex.h (enum rid): Don't declare.
1559         (NORID): Likewise.
1560         (RID_FIRST_MODIFIER): Likewise.
1561         (ridpointers): Likewise.
1563 2000-06-30  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1565         * pa/som.h (ASM_WEAKEN_LABEL): Export weak data symbols so that they
1566         have global scope.
1568 2000-06-30  Martin von Loewis  <loewis@informatik.hu-berlin.de>
1570         * invoke.texi (-Wreturn-type): In C++, a missing return type is
1571         always an error.
1573 2000-06-30  Catherine Moore  <clm@cygnus.com>
1575         * c-common.c (decl_attributes):  Differentiate between
1576         types and type decls for alignment.
1578 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
1580         * cpp.texi: Document #pragma GCC dependency
1581         * cppfiles.c (open_include_file): Set date to unknown.
1582         (_cpp_compare_file_date): New function.
1583         (read_include_file): Set file date.
1584         * cpphash.h (struct include_file): Add date member.
1585         (_cpp_compare_file_date): Prototype.
1586         * cpplib.c (parse_include): Add trail parameter. Adjust.
1587         (do_include): Adjust parse_include call.
1588         (do_import): Likewise.
1589         (do_include_next): Likewise.
1590         (gcc_pragmas): Add dependency pragma.
1591         (do_pragma_dependancy): New pragma.
1593 2000-06-29  Jason Merrill  <jason@redhat.com>
1595         * dwarf2out.c (output_loc_operands): Don't abort on codes that have
1596         no operands.
1598 2000-06-29  Jim Wilson  <wilson@cygnus.com>
1600         * config/ia64/ia64.h (PREFERRED_RELOAD_CLASS): Return NO_REGS for
1601         a volatile mem and FR_REGS.
1603 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
1605         * c-common.c: Include c-common.h, not c-lex.h or c-tree.h.
1606         * c-common.h (flag_const_strings): Declare.
1607         (warn_format): Likewise.
1608         (flag_traditional): Likewise.
1609         (flag_isoc99): Likewise.
1610         (warn_parentheses): Likewise.
1611         (warn_conversion): Likewise.
1612         (C_TYPE_OBJECT_P): Likewise.
1613         (C_TYPE_INCOMPLETE_P): Likewise.
1614         (C_TYPE_FUNCTION_P): Likewise.
1615         (C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
1616         (C_EXP_ORIGINAL_CODE): Likewise.
1617         (build_unary_op): Likewise.
1618         (build_binary_op): Likewise.
1619         (lvalue_p): Likewise.
1620         (default_conversion): Likewise.
1621         (common_type): Likewise.
1622         * c-tree.h (C_TYPE_OBJECT_P): Remove.
1623         (C_TYPE_INCOMPLETE_P): Likewise.
1624         (C_TYPE_FUNCTION_P): Likewise.
1625         (C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
1626         (C_EXP_ORIGINAL_CODE): Likewise.
1627         (common_type): Likewise.
1628         (default_conversion): Likewise.
1629         (build_binary_op): Likewise.
1630         (build_unary_op): Likewise.
1631         (lvalue_p): Likewise.
1632         (flag_const_strings): Likewise.
1633         (warn_format): Likewise.
1634         (warn_conversion): Likewise.
1635         (flag_traditional): Likewise.
1636         (flag_isoc99): Likewise.
1637         (warn_parentheses): Likewise.
1639 2000-06-29  James E. Wilson  <wilson@cygnus.com>
1641         * config/ia64/linux.h (LINK_SPEC): Change so.1 to so.2.
1643         * config/ia64/ia64.h (MODES_TIEABLE_P): Only tie if mode class is the
1644         same.  Only tie XFmode with XFmode.
1646 2000-06-29  Zack Weinberg  <zack@wolery.cumb.org>
1648         * c-decl.c, timevar.c, tlink.c: Include intl.h.
1649         * Makefile.in: Update deps.
1651 2000-06-29  Andrew Haley  <aph@cygnus.com>
1653         * toplev.c (main): On an IA-64, make flag_unwind_tables defauit
1654         to true.
1656 2000-06-29  Andrew Haley  <aph@cygnus.com>
1658         * config/ia64/linux.h (JMP_BUF_SIZE): Size is in Pmode units, not
1659         bytes: remove the multiply by 8.
1661 2000-06-29  Philipp Thomas  <pthomas@suse.de>
1663         * rtl.c : Revert NLS changes.
1664         * gcc.c : Fix bug in display_help introced by my last changes.
1666 Wed Jun 28 21:09:33 2000   Raja R Harinath <harinath@cs.umn.edu>
1668         * dbxout.c (dbxout_symbol, case RESULT_DECL, VAR_DECL): Use
1669         DECL_CONTEXT, not DECL_FIELD_CONTEXT.
1671 2000-06-29  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1673         * flow.c (flow_depth_first_order_compute): Fix algorithm.
1675 2000-06-28  Philipp Thomas  <pthomas@suse.de>
1677         * c-decl.c : Mark strings for translation.
1678         (parmlist_tags_warning): Use distinct messages instead
1679         of conditional expressions.
1680         * diagnostic.c (v_message_with_decl): Mark string for translation.
1681         * gcc.c: Mark messages for translation.
1682         (display_help): Combine messages into one string where necessary.
1683         * mips-tfile: Add intl.h. Mark messages for translation.
1684         * rtl.c (fatal_with_file_and_line): Modify function for NLS. Mark
1685         messages for translation.
1686         * timevar.c: Mark messages for translation.
1687         * tlink.c: Likewise.
1688         * toplev.c: Likewise.
1690 Wed Jun 28 15:39:26 2000  Donn Terry (donnte@microsoft.com)
1692         * i386-interix.h (STRIP_NAME_ENCODING): Declare _new_name properly.
1694         * alpha/alpha-interix.h: Delete redundant -Asystem(interix),
1695         use -isystem instead of -idirafter.
1696         * i386/i386-interix.h: Likewise.
1698 2000-06-28  Jason Merrill  <jason@redhat.com>
1700         * dwarf2out.c (output_loc_operands): Don't support >1 byte output
1701         unless DWARF2_DEBUGGING_INFO is defined.
1702         (ASM_OUTPUT_DWARF_*): Wrap normal output defs with #ifndefs.
1704 2000-06-28  Richard Henderson  <rth@cygnus.com>
1706         * config/alpha/alpha.c (summarize_insn): Ignore SCRATCH.
1708 2000-06-28  Jakub Jelinek  <jakub@redhat.com>
1710         * cpplex.c (output_line_command): Output correct #line if a header
1711         is including itself and is not protected against multiple inclusion.
1713 2000-06-28  Zack Weinberg  <zack@wolery.cumb.org>
1715         * cppfiles.c (open_include_file): If open(2) returns EMFILE or
1716         ENFILE, close all cached file descriptors and try again.
1717         (_cpp_execute_include): Keep a count of the number of times
1718         each header is included.
1719         (close_cached_fd): New function.
1720         * cpphash.h (struct include_file): Rename before to
1721         include_count; all users updated.  Make include_count and sysp
1722         unsigned short.
1723         * cppinit.c (cpp_finish): If -H, report headers that could use
1724         reinclude guards.
1725         (report_missing_guard): New function.
1727 Wed Jun 28 14:46:58 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1729         * i386.md (prologue_set_got): Set length_immediate field.
1730         (testqi_ccno_1):  Add missing '@' character.
1732 2000-06-27  Jason Merrill  <jason@redhat.com>
1734         * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Use
1735         DWARF_FRAME_REGNUM.
1737 2000-06-27  Andrew Macleod <amacleod@cygnus.com>
1739         * dwarf2out.c (ASM_OUTPUT_DWARF_DATA2): Provide default when no
1740         unsigned macros available.
1742 2000-06-27  Richard Henderson  <rth@cygnus.com>
1744         * config/ia64/ia64.c (emit_insn_group_barriers): Special case
1745         epilogue_deallocate_stack.
1747         * config/ia64/ia64.c (ia64_print_operand) [case D]: Emit
1748         completers for UNORDERED and ORDERED as well.
1749         * config/ia64/ia64.md (bunordered, bordered): New.
1750         (sunordered, sordered): New.
1752 Tue Jun 27 12:14:12 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1754         * genattrtab.c (write_attr_value): Do not abort for CONST_INT operands.
1755         * i386.c (ix86_attr_length_default): Kill.
1756         (ix86_attr_length_immediate_default, ix86_attr_length_address_default):
1757         New.
1758         * i386-protos.h (ix86_attr_length_default): Kill
1759         (ix86_attr_length_immediate_default, ix86_attr_length_address_default):
1760         Add prototype
1761         * i386.md (attribute type): Add "test".
1762         (attribute length_prefix): Kill.
1763         (attribute length_opcode): Kill.
1764         (attribute i387, mode, length_immediate, length_address, prefix_data16,
1765         prefix_rep, prefix_0f, modrm): New.
1766         (attribute length): Compute using the new attributes.
1767         (attribute pent_prefix): New.
1768         (attribute pent_pair): Compute using pent_prefix.
1769         (all insn patterns): Set mode,modrm and immediate_length attributes where
1770         needed.
1771         (cmpsi patterns): Compute sizes propertly for test instruction.
1772         (movsi, movhi patterns): Compute sizes propertly for eax shortcuts.
1773         (movstricthi_xor, movstrictqi_xor): New patterns.
1774         (andsi/andhi): Use splitters to generate xor instructions.
1775         (xorqi_ext_1): New pattern.
1776         (movstricthi->movstricthi_xor peep2): New.
1778 Tue Jun 27 12:03:03 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1780         * i386.md (addqi_low_1): Remove.
1782 2000-06-27  Philipp Thomas  <pthomas@suse.de>
1784         * 1750a.h: Mark help strings for options/switches for translation.
1785         * a29k.h: Likewise.
1786         * alpha.h: Likewise.
1787         * arm.h: Likewise.
1788         * pe.h: Likewise.
1789         * riscix.h: Likewise.
1790         * c4x.h: Likewise.
1791         * clipper.h: Likewise.
1792         * convex.h: Likewise.
1793         * elxsi.h: Likewise.
1794         * fr30.h: Likewise.
1795         * fx80.h: Likewise.
1796         * h8300.h: Likewise.
1797         * i370.h: Likewise.
1798         * cygwin.h: Likewise.
1799         * dgux.h: Likewise.
1800         * djgpp.h: Likewise.
1801         * i386.h: Likewise.
1802         * osf1elf.h: Likewise.
1803         * osfrose.h: Likewise.
1804         * sco5.h: Likewise.
1805         * win32.h: Likewise.
1806         * i860.h: Likewise.
1807         * paragon.h: Likewise.
1808         * i960.h: Likewise.
1809         * ia64.h: Likewise.
1810         * m32r.h: Likewise.
1811         * mcore.h: Likewise.
1812         * mips.h: Likewise.
1813         * mn10300.h: Likewise.
1814         * ns32k.h: Likewise.
1815         * pdp11.h: Likewise.
1816         * pj.h: Likewise.
1817         * aix.h: Likewise.
1818         * aix41.h: Likewise.
1819         * aix43.h: Likewise.
1820         * beos.h: Likewise.
1821         * rs6000.h: Likewise.
1822         * sysv4.h: Likewise.
1823         * linux.h: Likewise.
1824         * linux64.h: Likewise.
1825         * sp64-elf.h: Likewise.
1826         * sparc.h: Likewise.
1827         * splet.h: Likewise.
1828         * v850.h: Likewise.
1829         * convex.h (TARGET_SWITCHES): Provide descriptions and mark them
1830         for translation.
1831         * sp86x-aout.h: Remove bogus first definition of SUBTARGET_SWITCHES.
1832         Properly document option and mark for translation.
1833         * sp86x-elf.h: Likewise.
1835 2000-06-27  Bernd Schmidt  <bernds@cygnus.co.uk>
1837         Add MMX and SSE registers to i386 machine description.
1838         * i386-protos.h (ix86_constant_alignment, ix86_data_alignment,
1839         ix86_local_alignment): Declare.
1841         * i386.h (TARGET_MMX, TARGET_SSE): New.
1842         (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS, CALL_USED_REGISTERS,
1843         REG_ALLOC_ORDER, HARD_REGNO_NREGS, HARD_REGNO_MODE_OK,
1844         REG_CLASS_NAMES, REG_CLASS_CONTENTS,REG_CLASS_FROM_LETTER,
1845         enum reg_class, HI_REGISTER_NAMES): Added MMX/SSE registers.
1846         (FIRST_SSE_REG, LAST_SSE_REG, SSE_REGNO_P): New.
1847         (FIRST_MMX_REG, LAST_MMX_REG, MMX_REGNO_P, MMX_REG_P): New macros.
1848         (RETURN_IN_MEMORY): Handle MMX/SSE.
1849         (REG_PARM_STACK_SPACE): Added so the first three TImode parameters
1850         also get stack space.
1851         (MUST_PASS_IN_STACK): Added TImode to the default definition.
1852         (CUMULATIVE_ARGS): Added sse_nregs, sse_regno and sse_words.
1853         (MMX_REGISTER_NAMES): New.
1854         (ALIGN_MODE_128): New macro.
1855         (CONSTANT_ALIGNMENT): Code moved out-of-line; just call the function.
1856         (DATA_ALIGNMENT): Likewise.
1857         (LOCAL_ALIGNMENT): Likewise.
1858         (CONDITIONAL_REGISTER_USAGE): Make MMX/SSE regs fixed if not
1859         TARGET_MMX/TARGET_SSE.
1860         (VALID_SSE_REG_MODE, VALID_MMX_REG_MODE): New macros.
1861         (REG_CLASS_FROM_LETTER): 'y' for MMX regs.
1862         (SECONDARY_MEMORY_NEEDED): Be conservative about copying between
1863         SSE/MMX regs and something else.
1864         (CLASS_MAX_NREGS): 1 for SSE and MMX regs.
1865         (REGISTER_MOVE_COST): 10 if trying to move between MMX and SSE regs,
1866         3 if moving between MMX regs and something else.
1868         * i386.c (reg_class): Add SSE_REGS, MMX_REGS.
1869         (regclass_map): Add MMX/SSE registers.
1870         (print_operand): Add code to print XMMWORD as appropriate.
1871         (ix86_split_movdi): Abort for MMX regs.
1872         (init_cumulative_args): Also allow SSE_REGS
1873         (function_arg_advance, function_arg): Likewise
1874         (print_reg): Support 'm'.  Add case for TImode.
1875         (override_options): TARGET_SSE implies TARGET_MMX.
1876         (ix86_constant_alignment, ix86_data_alignment, ix86_local_alignment):
1877         New functions.
1879         * config/i386/unix.h (VALUE_REGNO): VECTOR_MODE values go to
1880         FIRST_SSE_REG.
1881         * config/i386/ptx4-i.h (RETURN_IN_MEMORY): Return MMX values in
1882         memory.
1883         * config/i386/sysv4.h (RETURN_IN_MEMORY): Likewise.
1884         * config/i386/i386elf.h (RETURN_IN_MEMORY): Likewise.
1886 2000-06-26  Geoff Keating  <geoffk@cygnus.com>
1888         * ssa.c (struct rename_set_data): Change the name of field
1889         'set_dest' to 'old_reg'.  Add comments.
1890         (struct rename_context): Change the name of 'set_data' to
1891         'new_renames'.  Add new field 'done_renames'.
1892         (create_delayed_rename): New function.
1893         (apply_delayed_renames): New function.
1894         (rename_insn_1): Use the new functions.  Handle CLOBBERS.  Handle
1895         SUBREGs and similar by emitting a move.
1896         (new_registers_for_updates): Delete, functionality moved to
1897         apply_delayed_renames.
1898         (rename_block): Handle moves emitted by rename_insn_1 by putting
1899         them into a SEQUENCE with the original insn.  Add sanity checks
1900         and comments.
1901         (rename_equivalent_regs_in_insn): Don't handle SUBREGs specially.
1902         (rename_equivalent_regs): Expand SEQUENCEs out to individual insns.
1904 2000-06-26  Andrew Macleod <amacleod@cygnus.com>
1905             Jason Merrill <jason@redhat.com>
1907         * dwarf2.h (enum dwarf_call_frame_info): Add
1908         DW_CFA_def_cfa_expression.
1909         * dwarf2out.c (union dw_cfi_oprnd_struct): Add a pointer to a
1910         dw_loc_descr_struct entry.
1911         (struct cfa_loc): New structure to track a CFA location.
1912         (lookup_cfa): Take a cfa_loc parameter instead of a reg and an offset.
1913         (lookup_cfa_1): Take a cfa_loc parameter instead of a reg and an
1914         offset, plus handle DW_CFA_def_cfa_expression.
1915         (def_cfa_1): Use to be dwarf2out_def_cfa, only now it uses a
1916         cfa_loc record.
1917         (dwarf2out_def_cfa): Entry point maintained for compatability.
1918         (dwarf_cfi_name): Add DW_CFA_def_cfa_expression.
1919         (cfa_reg, cfa_offset): Replace with cfa_loc record 'cfa'.
1920         (cfa_store_reg, cfa_store_offset): Replace with cfa_loc 'cfa_store'.
1921         (initial_return_save, dwarf2out_stack_adjust): Use cfa.reg, not
1922         cfa_reg.
1923         (dwarf2out_frame_debug_expr): Use new cfa_loc records. Recognize rtl
1924         sequences for the new DW_CFA_def_cfa_expression record.
1925         (dwarf2out_frame_debug): Use new variables/fields.A
1926         (output_cfi): Handle DW_CFA_def_cfa_expression.
1927         (output_cfa_loc): New function to generate a CFI record for
1928         DW_CFA_def_cfa_expression.
1929         (get_cfa_from_loc_descr): New function to get a cfa_loc record from
1930         a dw_loc_descr sequeunce.
1931         (build_loc_descr): Build a dw_loc_descr from a cfa_loc record.
1932         (dwarf_stack_op_name, new_loc_descr, add_loc_descr, size_of_loc_descr,
1933         size_of_locs, output_loc_operands, output_loc_sequence): Move into
1934         unwind info section.
1935         * frame.h (frame_state): Add base_offset and indirect fields.
1936         * frame-dwarf2.c (decode_stack_op): New function to interpret a
1937         dw_loc_descr operation.
1938         (execute_cfa_insn): Add support for DW_CFA_def_cfa_expression.
1939         (struct frame_state): Add base offset and indirect fields.
1940         * libgcc2.c (next_stack_level): Support indirect loading for CFA.
1942 2000-06-26  Joseph S. Myers  <jsm28@cam.ac.uk>
1944         * c-decl.c (grokdeclarator): Don't warn about `long long' in C99.
1945         Make warnings about implicit int be pedwarns in C99.  Don't warn
1946         about duplicate type qualifiers in C99.
1947         (start_function): Make warning about implict int return type be a
1948         pedwarn in C99.
1949         * c-lex.c (yylex): Don't warn about `long long' in C99.
1950         * c-typeck.c (c_expand_return): In C99, always pedwarn about
1951         `return' with no value in function returning non-void.
1953 2000-06-26  Richard Henderson  <rth@cygnus.com>
1955         * c-typeck.c (pedwarn_c99): New.
1956         * diagnostic.c (verror, vwarning, vpedwarn): Export.
1957         * toplev.h: Prototype them.
1959 2000-06-26  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1961         * c-typeck.c (digest_init): Return error_mark_node node when
1962         TREE_TYPE (init)  == error_mark_node.
1964 2000-06-26  Philipp Thomas  <pthomas@suse.de>
1966         * aclocal.m4 (AM_WITH_NLS): Don't set MSGFMT or GMSGFMT to no,
1967         test for msgfmt without path instead.
1968         * configure: Rebuilt.
1970 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
1972         * gengenrtl.c (special_rtx): Fix typo in comment.
1974 2000-06-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1976         * mklibgcc.in (LIB2FUNCS): Add missing space.
1978 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
1980         * tree.h (enum tree_index): Add vector type nodes.
1981         Add accessor macros for them.
1982         (TYPE_REPRESENATION_TYPE): New macro.
1983         * tree.c (build_common_tree_nodes_2): Build these nodes.
1984         (finish_vector_type): New function.
1985         * c-common.c (type_for_mode): Handle vector modes.
1986         * tm.texi (VECTOR_MODE_SUPPORTED_P): Document.
1988         * dbxout.c (dbxout_type): Handle VECTOR_TYPEs.
1989         * dwarf.h (enum dwarf_fundamental_type): Add 128 bit integers.
1990         * dwarf2out.c (lookup_type_die): Handle VECTOR_TYPEs.
1991         (gen_type_die): Likewise.
1992         * dwarfout.c (dwarf_fund_type_name): Handle 128 bit integers.
1993         (fundamental_type_code): Likewise.
1994         (type_is_fundamental): VECTOR_TYPEs aren't.
1995         (output_type): Handle VECTOR_TYPEs.
1997 2000-06-25  Kazu Hirata  <kazu@hxi.com>
1999         * config/arm.c: Fix a comment typo.
2000         * config/arm.h: Likewise.
2002 2000-06-25  Philipp Thomas  <pthomas@suse.de>
2004         * aclocal.m4 (AM_WITH_NLS): Set create_catalogs=no if no catalog
2005         compiler found.
2006         AM_GNU_GETTEXT: Don't set CATALOGS if create_catalogs=no.
2007         * configure: Rebuilt.
2009 2000-06-25  John David Anglin  <dave.anglin@nrc.ca>
2011         * config/vax/vax.h (TARGET_SWITCHES): Provide descriptions.
2013 2000-06-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
2015         * mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2FUNCS when generating
2016         libgcc.a.
2018 2000-06-24  Marc Espie <espie@cvs.openbsd.org>
2020         * collect2.c (resolve_lib_name): Move '/' check out of loop.
2022 2000-06-24  Dirk Duellmann  <Dirk.Duellmann@cern.ch>
2024         * ginclude/stddef.h (NULL): define for non-gnu C++ parsers as 0.
2026 2000-06-24  Jakub Jelinek  <jakub@redhat.com>
2028         * stmt.c (expand_decl_cleanup): Emit a dummy insn after
2029         last_unconditional_cleanup.
2031 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
2033         * tree.def (VECTOR_TYPE): New node type.
2034         * tree.h: Adjust some comments to reflect addition of vector types.
2035         (TYPE_VECTOR_SUBPARTS): New macro.
2036         * stor-layout.c (layout_type): Handle VECTOR_TYPE.
2037         * c-convert.c (convert): Likewise.
2038         * convert.c (convert_to_integer): Handle vector modes.
2039         (convert_to_vector): New function.
2040         * convert.h (convert_to_vector): Declare.
2041         * expr.c (convert_move): Handle vector modes.
2042         * expmed.c (extract_bit_field): Don't abort for vector modes.
2044 2000-06-24  Marek Michalkiewicz  <marekm@linux.org.pl>
2046         * config/avr/avr-protos.h (avr_hard_regno_mode_ok): New prototype.
2047         * config/avr/avr.c (out_adj_frame_ptr, out_set_stack_ptr):
2048         New functions, common code moved from function_{prologue,epilogue}
2049         and extended to support the -mtiny-stack option.
2050         (function_prologue, function_epilogue): Use them.
2051         Use lo8/hi8 consistently for asm output readability.
2052         (avr_hard_regno_mode_ok): New function.
2053         * config/avr/avr.h (TARGET_SWITCHES): Fix typo.  Add -mtiny-stack.
2054         (UNITS_PER_WORD): Define as 4 (not 1) when compiling libgcc2.c.
2055         (HARD_REGNO_MODE_OK): Call the avr_hard_regno_mode_ok function.
2056         * config/avr/avr.md (*mov_sp_r): Add support for -mtiny-stack.
2057         Write SPH before SPL.
2058         (*movqi): No need to disable interrupts for just one "out"
2059         in alternative 5.  Change length attribute from 4 to 1.
2060         * config/avr/libgcc.S (__prologue_saves__, __epilogue_restores__):
2061         Write SPH before SPL.
2063 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
2065         * rtl.texi (Vector Operations): New node.
2066         (Arithmetic): Add ss_plus, us_plus, ss_minus, us_minus.
2067         (Conversions): Add ss_truncate, us_truncate.
2068         * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_REORDER,
2069         VEC_CONST, VEC_DUPLICATE, SS_PLUS, SS_MINUS, SS_TRUNCATE,
2070         US_TRUNCATE): New rtx codes.
2071         * machmode.def: Add vector modes.
2072         * machmode.h (enum mode_class): Add MODE_VECTOR_INT and
2073         MODE_VECTOR_FLOAT.
2074         (INTEGER_MODE_P): Check for MODE_VECTOR_INT.
2075         (FLOAT_MODE_P): Check for MODE_VECTOR_FLOAT.
2076         (VECTOR_MODE_P): New.
2078 2000-06-24  Nathan Sidwell  <nathan@codesourcery.com>
2080         * cpp.texi: Clarify #pragma GCC namespace.
2082 2000-06-24  Philipp Thomas  <pthomas@suse.de>
2084         * aclocal.m4(AM_GNU_GETTEXT): If LINGUAS isn't set, build
2085         all catalogs specified in ALL_LINGUAS.
2086         * configure: Rebuilt.
2088 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
2090         * config/sparc/sparc.md (reload_outdi+1): Handle
2091         HOST_BITS_PER_WIDE_INT == 64 case correctly.
2092         (adddi3_insn_sp32+1, adddi3_insn_sp32+2, andsi3+2): Likewise.
2094 2000-06-23  Geoffrey Keating  <geoffk@cygnus.com>
2096         * alias.c (fixed_scalar_and_varying_struct_p): Don't examine
2097         struct vs. scalar-ness when -fno-strict-aliasing.
2099 2000-06-23  Nathan Sidwell  <nathan@codesourcery.com>
2101         * cpplib.c (struct pragma_entry): New structure.
2102         (pragma_dispatch): Pragma dispatcher.
2103         (top_pragmas, gcc_pragmas): New static variables.
2104         (do_pragma): Use pragma_dispatch.
2105         (do_pragma_gcc): New pragma handler.
2106         * cpp.texi: Update.
2108 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
2110         * calls.c (compute_argument_addresses): Force stack slots into
2111         alias set 0.
2112         * expr.c (emit_push_insn): Force pushes into alias set 0.
2114 2000-06-23  Richard Henderson  <rth@cygnus.com>
2116         * config/ia64/ia64.md (pred_rel_mutex): Only take one register.
2117         * config/ia64/ia64.c (emit_predicate_relation_info): Adjust to match.
2119 2000-06-22  Jason Merrill  <jason@redhat.com>
2121         * toplev.c (compile_file): Always call timevar_print.
2122         * Makefile.in (calls.o): Depend on TIMEVAR_H.
2124 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
2126         * varasm.c (constant_descriptor): Make contents unsigned char.
2127         (mark_const_hash_entry): Adjust.
2128         (const_hash): Just hash the code of unknown nodes.
2129         (compare_constant_1): Adjust for unsigned char.
2130         Use language specific expander on unknown nodes.
2131         (record_constant_1): Likewise.
2133 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
2135         * cppfiles.c (cpp_make_system_header): New function.
2136         * cpplib.h: Prototype it.
2137         * cpplib.c (do_line, do_pragma_system_header): Use it.
2138         * fix-header.c (read_scan_file): Use it.
2140         * fix-header.c (check_macro_names): Cast second arg of
2141         cpp_defined to const unsigned char *.
2142         (read_scan_file): Make getchar_call const unsigned char.
2144 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
2146         * cppfiles.c: Include splay-tree.h, not hashtab.h.
2147         (redundant_include_p, make_IHASH, hash_IHASH, eq_IHASH): Delete.
2148         (destroy_include_file_node): New.
2149         (_cpp_init_include_hash): Rename _cpp_init_include_table.
2150         Create a splay tree, not a hash table.
2151         (open_include_file): Look up the path in the include table,
2152         do the multiple include optimization here, etc.
2153         (cpp_included): Walk the path.
2154         (find_include_file): Just walk the path calling
2155         open_include_file, or call it directly for an absolute path.
2156         (_cpp_fake_ihash): Rename _cpp_fake_include and update for new
2157         scheme.
2158         (read_include_file): Update for new scheme.  Don't close the
2159         file unless reading fails.
2160         (_cpp_execute_include, cpp_read_file): Tweak for new scheme.
2162         * cpphash.h (struct ihash, NEVER_REINCLUDE): Delete.
2163         (struct include_file): New.
2164         (NEVER_REREAD, DO_NOT_REREAD, CPP_IN_SYSTEM_HEADER): New
2165         macros.
2166         (CPP_PEDANTIC, CPP_WTRADITIONAL): Update.
2167         Update prototypes.
2169         * cppinit.c: Include splay-tree.h.
2170         (cpp_reader_init, cpp_cleanup): Update.
2172         * cpplib.h (struct cpp_buffer): Change ihash field to
2173         'struct include_file *inc'.  Remove system_header_p.
2174         (struct cpp_reader): Change all_include_files to a
2175         struct splay_tree_s *.
2177         * cpplex.c: Update all references to cpp_buffer->ihash and/or
2178         cpp_buffer->system_header_p.
2179         (cpp_pop_buffer): Close file here, only if DO_NOT_REREAD.
2181         * Makefile.in (SPLAY_TREE_H): New macro.
2182         (cppfiles.o, cppinit.o): Update dependencies.
2184 Wed Jun 21 11:05:48 2000  Martin Buchholz <martin@xemacs.org>
2186         * invoke.texi (g++): "g++" is not a script anymore.
2188 2000-06-20  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2190         * function.c (round_down): Delete obsolete prototype.
2192         * pa.h (CPP_SPEC): Add whitespace after -D__STDC_EXT__.
2194 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
2196         * configure.in: Use 'test a = b' not 'test a == b'.
2197         * configure: Regen.
2199         * Makefile.in (fix-header): Link with $(LIBS) not $(HOST_LIBS).
2201         * Makefile.in: Remove all references to HOST_INTLLIBS.
2203         * cpplex.c (parse_name): Don't warn about $ in identifiers if
2204         skipping.
2206 2000-06-20  Philipp Thomas  <pthomas@suse.de>
2208         * config/pa/pa.h(TARGET_SWITCHES): Require binutils 2.10 or later
2209         for PA 2.0.
2211 Mon Jun 19 23:26:40 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2213         * Take REG_INC notes into account.
2215 2000-06-19  Zack Weinberg  <zack@wolery.cumb.org>
2217         * c-parse.in (undeclared_variable_notice): Moved to c-typeck.c.
2218         (primary: IDENTIFIER): Just call build_external_ref.
2219         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
2220         Regenerate.
2221         * c-lex.c (lastiddecl): Remove.
2222         (yylex): Replace all instances of lastiddecl with local
2223         variables.
2225         * c-typeck.c (build_external_ref): New function.  Treat decls
2226         with C_DECL_ANTICIPATED mostly the same as nonexistent decls.
2227         Look up the decl from the id here.  Call lookup_objc_ivar.
2228         * c-lang.c (lookup_objc_ivar): Stub.
2229         * objc/objc-act.c (lookup_objc_ivar): New function.
2231         * c-tree.h: Prototype lookup_objc_ivar and build_external_ref.
2232         * c-lex.h: Don't declare lastiddecl.
2234 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
2236         * c-common.h (IF_COND): Added documentation.
2237         (THEN_CLAUSE): Likewise.
2238         (ELSE_CLAUSE): Likewise.
2239         (WHILE_COND): Likewise.
2240         (WHILE_BODY): Likewise.
2241         (DO_COND): Likewise.
2242         (DO_BODY): Likewise.
2243         (RETURN_EXPR): Likewise.
2244         (EXPR_STMT_EXPR): Likewise.
2245         (FOR_INIT_STMT): Likewise.
2246         (FOR_COND): Likewise.
2247         (FOR_EXPR): Likewise.
2248         (FOR_BODY): Likewise.
2249         (SWITCH_COND): Likewise.
2250         (SWITCH_BODY): Likewise.
2251         (CASE_LOW): Likewise.
2252         (CASE_HIGH): Likewise.
2253         (GOTO_DESTINATION): Likewise.
2254         (COMPOUND_BODY): Likewise.
2255         (ASM_CV_QUAL): Likewise.
2256         (ASM_STRING): Likewise.
2257         (ASM_OUTPUTS): Likewise.
2258         (ASM_INPUTS): Likewise.
2259         (ASM_CLOBBERS): Likewise.
2260         (DECL_STMT_DECL): Likewise.
2261         (STMT_EXPR_STMT): Likewise.
2262         (LABEL_STMT_LABEL): Likewise.
2264         * c-common.def: Added documenetion for SRCLOC, EXPR_STMT,
2265         COMPOUND_STMT, DECL_STMT, IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT,
2266         RETURN_STMT, BREAK_STMT, CONTINUE_STMT, SWITCH_STMT, GOTO_STMT,
2267         LABEL_STMT, ASM_STMT, SCOPE_STMT, CASE_LABEL, STMT_EXPR.
2269 2000-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2271         * configure.in (--enable-checking): Update --help doc to reflect
2272         new defaults.  Ensure $ac_save_IFS is set before $IFS is changed.
2274 Sun Jun 18 21:42:15 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2276         * gcse.c (insert_insn_end_bb): Always put after NOTE_INSN_BASIC_BLOCK.
2278         * function.c (put_var_into_stack): Don't reference DECL_ fields
2279         if input is a SAVE_EXPR.
2280         Use set_mem_attributes in COMPLEX case.
2282 2000-06-18  Richard Henderson  <rth@cygnus.com>
2284         * config/ia64/ia64-protos.h (process_for_unwind_directive): Declare.
2285         (ia64_file_start): Declare.
2286         * config/ia64/ia64.h (ADDL_REGNO_P): Don't compare unsigned against 0.
2287         (GR_REGNO_P): Likewise.
2288         * config/ia64/ia64.c: Many prototypes.
2289         (ia64_reg_numbers): Constify.
2290         (ia64_input_reg_names, ia64_local_reg_names): Likewise.
2291         (ia64_section_threshold): Make unsigned.
2292         (ia64_print_operand): Constify.
2293         (fix_range): Constify.
2294         (ia64_init_builtins): Don't compare signed vs unsigned.
2295         (ia64_expand_builtin): Likewise.
2297         * config/ia64/ia64.h (EXTRA_CONSTRAINT): New.
2298         (CONSTRAINT_OK_FOR_Q): New.
2299         * config/ia64/ia64.md (movdi_internal): Use Q for fp<->mem.
2300         (movsf_internal, movdf_internal): Likewise.
2301         (cmovdi_internal): Rewrite so that constraints and predicates match;
2302         simplify splitters.
2303         (cmovsi_internal): Likewise.
2305         * config/ia64/ia64.h (ASM_SPEC): Add -x for gas.
2306         (ASM_FILE_START): New.
2307         * config/ia64/ia64.c (ia64_file_start): New.
2308         (rtx_needs_barrier): Handle pred.rel.mutex.
2309         (emit_predicate_relation_info): New.
2310         * config/ia64/ia64.md (pred_rel_mutex): New.
2311         * config/ia64/linux.h (ASM_SPEC): Define.
2312         * config/ia64/sysv4.h (ASM_FILE_START): Define.
2314         * config/ia64/ia64.c (ia64_encode_section_info): Fix thinko
2315         filtering global register variables.
2317 2000-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2319         * c-common.c (add_c_tree_codes): Fix definition for traditional C.
2321 2000-06-17  Michael Meissner  <meissner@redhat.com>
2323         * gcc.c (do_spec_1, '%v3' case): Do not abort if patch level is
2324         not present and there is a field after a '-'.
2326 2000-06-17  Bruce Korb  <bkorb@gnu.org>
2328         * fixinc/check.tpl:  finish the implementation of multiple tests
2329         for a single fix
2330         * fixinc/inclhack.def(ctrl_quotes_def): add a second test
2331         (io_quotes_def): add a second test
2332         (various): reorder `files' so that "limits.h" is never first
2333         * fixinc/tests/base/*: update the testing output
2335 Sat Jun 17 10:33:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2337         * gcc.texi: Remove reference to stupid.c.
2339 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
2341         * c-common.c (c_tree_code_type): New array.
2342         (c_tree_code_length): Likewise.
2343         (c_tree_code_name): Likewise.
2344         (add_c_tree_codes): New function.
2346         * c-common.h (add_c_tree_codes): Declare.
2347         (enum c_tree_code): New enum.
2349         * c-lex.c (init_parse): Added call to add_c_tree_codes.
2351 2000-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2353         * fixinc/inclhack.def (ctrl_quotes_def, io_quotes_def): Modify
2354         select pattern to also match macro defs with only one argument.
2356 Thu Jun 15 18:56:12 2000  Jeffrey A Law  (law@cygnus.com)
2358         * i386.md: Create new [right,left] rotate and right shift
2359         patterns to optimize shift by 1 bit for certain ia32 processors.
2360         Update patterns which perform left shifts to optimize shift by
2361         1 bit for certain ia32 processors.
2362         * i386.c (const_int_1_operand): New predicate.
2363         * i386.h (PREDICATE_CODES): Handle const_int_1_operand.
2364         * i386-protos.h (const_int_1_operand): Prototype.
2366 Wed Jun 14 23:46:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2368         * mips.c (machine_dependent_reorg): Fix braces for nested if.
2370 2000-06-14  Geoff Keating  <geoffk@cygnus.com>
2372         * rs6000.c (toc_hash_eq): Use CODE_LABEL_NUMBER to compare
2373         LABEL_REFs.
2375 2000-06-14  Richard Henderson  <rth@cygnus.com>
2377         * conflict.c (conflict_graph_compute): Don't look for REG_INC.
2379         * config/ia64/ia64.c (ia64_setup_incoming_varargs): Don't emit
2380         auto-inc code.
2382         * print-rtl.c (print_rtx): Emit space before mem alias set.
2384 2000-06-14  David Edelsohn  <edelsohn@gnu.org>
2386         * rs6000.c (expand_block_move): Fix typo in earlier change.
2387         (print_operand): Remove unused variables neg and op.
2388         (toc_hash_mark_entry): Fix prototype.
2390 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
2392         * c-common.h (IF_COND): Moved here from cp/cp-tree.h.
2393         (THEN_CLAUSE): Likewise.
2394         (ELSE_CLAUSE): Likewise.
2395         (WHILE_COND): Likewise.
2396         (WHILE_BODY): Likewise.
2397         (DO_COND): Likewise.
2398         (DO_BODY): Likewise.
2399         (RETURN_EXPR): Likewise.
2400         (EXPR_STMT_EXPR): Likewise.
2401         (FOR_INIT_STMT): Likewise.
2402         (FOR_COND): Likewise.
2403         (FOR_EXPR): Likewise.
2404         (FOR_BODY): Likewise.
2405         (SWITCH_COND): Likewise.
2406         (SWITCH_BODY): Likewise.
2407         (CASE_LOW): Likewise.
2408         (CASE_HIGH): Likewise.
2409         (GOTO_DESTINATION): Likewise.
2410         (COMPOUND_BODY): Likewise.
2411         (ASM_CV_QUAL): Likewise.
2412         (ASM_STRING): Likewise.
2413         (ASM_OUTPUTS): Likewise.
2414         (ASM_INPUTS): Likewise.
2415         (ASM_CLOBBERS): Likewise.
2416         (DECL_STMT_DECL): Likewise.
2417         (STMT_EXPR_STMT): Likewise.
2418         (LABEL_STMT_LABEL): Likewise.
2419         (SCOPE_BEGIN_P): Likewise.
2420         (SCOPE_END_P): Likewise.
2421         (SCOPE_STMT_BLOCK): Likewise.
2422         (SCOPE_NULLIFIED_P): Likewise.
2423         (SCOPE_NO_CLEANUPS_P): Likewise.
2424         (SCOPE_PARTIAL_P): Likewise.
2425         (ASM_VOLATILE_P): Likewise.
2426         (STMT_LINENO): Likewise.
2427         (STMT_LINENO_FOR_FN_P): Likewise.
2429         * c-common.def: New file. Added SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
2430         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
2431         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
2432         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
2433         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
2435         * gencheck.c (tree_codes[]): Added '#include "c-common.def"'.
2437 2000-06-14  David O'Brien  <obrien@FreeBSD.org>
2439         * gcc.c (main): Quiet compiler warnings.  argv is assumed to be
2440         writable in parts of the GCC code.
2442         * config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
2443         specification match cast.
2445 Wed Jun 14 09:25:57 2000  Jeffrey A Law  (law@cygnus.com)
2447         * configure.in: Revert AC_TYPE_GETGROUPS patch from June 13.
2448         * configure, config.in: Rebuilt.
2449         * sys-protos.h: Similarly.
2451 Wed Jun 14 03:39:58 EDT 2000  John Wehle  (john@feith.com)
2453         * ifcvt.c (EDGE_COMPLEX): Move definition ...
2454         * basic-block.h (EDGE_COMPLEX): ... here.
2456         * loop.c (check_dbra_loop): Specify the register when
2457         generating REG_NONNEG notes and don't generate duplicates.
2459 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
2461         * tree.h (TYPE_USER_ALIGN, DECL_USER_ALIGN): Define.
2462         (struct tree_type, struct tree_decl): Add user_align member.
2463         * stor-layout.c (layout_decl): Set DECL_USER_ALIGN.
2464         (place_union_field): If BIGGEST_FIELD_ALIGNMENT is defined
2465         and DECL_USER_ALIGN 0, cap alignment to this value.
2466         (place_field): Likewise.
2467         (finalize_type_size): Set TYPE_USER_ALIGN.
2468         (layout_type): Likewise.
2469         (initialize_sizetypes): Likewise.
2470         * c-common.c (decl_attributes): Set TYPE_USER_ALIGN resp.
2471         DECL_USER_ALIGN to 1.
2472         * c-decl.c (duplicate_decls): Set DECL_USER_ALIGN.
2473         (xfer_tag): Set TYPE_USER_ALIGN.
2474         (finish_struct): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
2475         (finish_enum): Likewise.
2476         * stmt.c (expand_decl): Set DECL_USER_ALIGN.
2477         (expand_anon_union_decl): Likewise.
2478         * tree.c (make_node): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
2479         (build_index_type): Set TYPE_USER_ALIGN.
2480         (build_range_type): Likewise.
2481         (build_common_tree_nodes_2): Likewise.
2482         * tm.texi (BIGGEST_FIELD_ALIGNMENT): Document the changed meaning.
2484 2000-06-13  Andreas Jaeger  <aj@suse.de>
2486         * configure.in: Use --enable-checking=misc,tree,gc by default if
2487         no --enable-checking option is given and for
2488         --enable-checking=yes.
2489         * configure: Rebuilt.
2491 2000-06-13  Richard Henderson  <rth@cygnus.com>
2493         * libgcc2.c (ia64_throw_helper): Use __builtin_return_address.
2494         (__throw): Don't pass the address of a label.
2496         * config/ia64/ia64.c (ia64_compute_frame_size): Use
2497         current_function_is_leaf.
2498         (ia64_expand_prologue): Likewise.  Modify return_address_pointer_rtx
2499         instead of reg_names[RETURN_ADDRESS_REGNUM].
2500         (ia64_init_machine_status): Reset return_address_pointer_rtx.
2501         * config/ia64/ia64.h (RETURN_ADDRESS_POINTER_REGNUM): Rename
2502         from RETURN_ADDRESS_REGNUM.  Update all uses.
2503         (RETURN_ADDR_RTX): Use return_address_pointer_rtx; return
2504         zero instead of null on failure.
2505         (ELIMINABLE_REGS): Add ra->b0 elimination.
2506         (CAN_ELIMINATE): Update accordingly.
2507         (INITIAL_ELIMINATION_OFFSET): Likewise.
2508         (REGISTER_NAMES): Use an illegal assembler name for
2509         RETURN_ADDRESS_POINTER_REGNUM.
2511 2000-06-13  Richard Henderson  <rth@cygnus.com>
2513         * config/ia64/ia64.h (enum reg_class): Remove FR_INT_REGS, FR_FP_REGS,
2514         GR_AND_FR_INT_REGS, GR_AND_FR_FP_REGS.
2515         (REG_CLASS_NAMES): Likewise.
2516         (REG_CLASS_CONTENTS): Likewise.
2517         (FR_FP_REGNO_P, FR_INT_REGNO_P): Remove.
2518         (HARD_REGNO_MODE_OK): Remove references to them.
2519         (REGNO_REG_CLASS): Likewise.
2520         (REG_CLASS_FROM_LETTER): Likewise.
2521         (CLASS_MAX_NREGS): Likewise.
2522         (REGISTER_MOVE_COST): Likewise.
2523         * config/ia64/ia64.c (ia64_secondary_reload_class): Likewise.
2524         * config/ia64/ia64.md (*): Replace "e" constraints with "f".
2525         (movqi_internal): Special case moves from zero.
2526         (movhi_internal, movsi_internal): Likewise.
2527         (movdi_internal): Likewise.  Fill out "f" constraints.
2528         (movsf_internal): Fill out "r" constraints.
2529         (movdf_internal): Likewise.
2531 2000-06-13  Richard Henderson  <rth@cygnus.com>
2533         * flow.c (insn_dead_p): Keep sets to PIC_OFFSET_TABLE_REGNUM
2534         alive before reload.
2536         * haifa-sched.c (struct deps): Add in_post_call_group_p.
2537         (add_dependence): Handle notes between SCHED_GROUP_P insns.
2538         (remove_dependence): Always define.
2539         (set_sched_group_p): New.
2540         (sched_analyze_2): Use it.
2541         (sched_analyze_insn): Don't special-case naked uses.  Look for
2542         and extend in_post_call_group_p.
2543         (sched_analyze): Clear stale SCHED_GROUP_P.  Set in_post_call_group_p.
2544         (init_deps): Clear in_post_call_group_p.
2546 2000-06-13  Richard Henderson  <rth@cygnus.com>
2548         * combine.c (subst): Use CLASS_CANNOT_CHANGE_MODE and
2549         CLASS_CANNOT_CHANGE_MODE_P instead of CLASS_CANNOT_CHANGE_SIZE
2550         and hard-coded tests.
2551         (simplify_set): Likewise.
2552         (gen_lowpart_for_combine): Likewise.
2553         * emit-rtl.c (gen_lowpart_common): Likewise.
2554         * global.c (find_reg): Likewise.
2555         * local-alloc.c (find_free_reg): Likewise.
2556         * recog.c (register_operand): Likewise.
2557         * regclass.c (init_reg_sets_1): Likewise.
2558         (record_operand_costs, regclass): Likewise.
2559         * reload.c (push_reload): Likewise.
2560         * reload1.c (choose_reload_regs): Likewise.
2561         * flow.c (mark_used_regs): Conditionally set REG_CHANGES_MODE.
2562         * local-alloc.c (struct qty): Rename changes_size to changes_mode.
2563         Update all references.
2564         * regs.h (struct reg_info_def): Likewise.
2565         (REG_CHANGES_MODE): Rename from REG_CHANGES_SIZE.
2566         * tm.texi (CLASS_CANNOT_CHANGE_MODE): Document.
2567         (CLASS_CANNOT_CHANGE_MODE_P): Likewise.
2569         * config/alpha/alpha.h (CLASS_CANNOT_CHANGE_MODE): Rename.
2570         (CLASS_CANNOT_CHANGE_MODE_P): New.
2571         * config/mips/mips.h: Likewise.
2572         * config/pa/pa32-regs.h: Likewise.
2573         * config/pa/pa64-regs.h: Likewise.
2574         * config/rs6000/rs6000.h: Likewise.
2575         * config/sh/sh.h: Likewise.
2576         * config/ia64/ia64.h (CLASS_CANNOT_CHANGE_MODE): New.
2577         (CLASS_CANNOT_CHANGE_MODE_P): New.
2578         * config/avr/avr.h (CLASS_CANNOT_CHANGE_SIZE): Remove dead code.
2579         * config/d30v/d30v.h: Likewise.
2581 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2583         * configure.in: Add AC_TYPE_GETGROUPS test.
2584         * sys-protos.h: Use GETGROUPS_T * for second arg of getgroups.
2585         * configure: Rebuilt.
2586         * config.in: Rebuilt.
2588 2000-06-13  Richard Henderson  <rth@cygnus.com>
2590         * explow.c (set_mem_attributes): Do nothing for NULL type.
2592 Tue Jun 13 14:45:10 2000  Jeffrey A Law  (law@cygnus.com)
2594         * config/m68k/openbsd.h (ASM_SPEC): pass down options to assembler
2595         correctly.
2597 2000-06-13  James E. Wilson  <wilson@cygnus.com>
2599         * config/ia64/ia64.md (movxf_internal): Add missing "e" to ldf/stf.
2601 Tue Jun 13 14:05:35 2000  Jeffrey A Law  (law@cygnus.com)
2603         * Makefile.in (gensupport.o): Remove bogus $(HOST_PREFIX) reference.
2605 2000-06-13  Philipp Thomas  <pthomas@suse.de>
2607         * configure.in(ALL_LINGUAS): Changed en_UK to en_GB.
2608         * configure: Rebuilt.
2610 2000-06-07  David O'Brien  <obrien@FreeBSD.org>
2612         * configure.in:  Adjust FreeBSD bits to match changes to config.guess.
2613         We now default to ELF for the i386, and a.out is the special case.
2614         * configure:  Rebuilt.
2616 Tue Jun 13 10:05:30 2000  Hans-Peter Nilsson  <hp@axis.com>
2618         * final.c (final_scan_insn): Delete notes between cc0 setter and
2619         user when restarting from setter.
2621 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2623         * vax.h (INDEX_TERM_P): Define evaluation order of &&'s in || and
2624         cast to squelch signed/unsigned warnings.
2626 2000-06-13  Zack Weinberg  <zack@wolery.cumb.org>
2628         * cpplib.c (handle_directive): Print non-NUL-terminated string
2629         with %.*s.
2631 2000-06-12  Michael Meissner  <meissner@redhat.com>
2633         * ifcvt.c (dead_or_predicable): Don't do conditional execution
2634         path if the machine needs extra support to do conditional
2635         execution.
2637 Mon Jun 12 17:04:17 2000  Jeffrey A Law  (law@cygnus.com)
2639         * print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
2640         to print the alias set.
2641         * print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.
2643 2000-06-12  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2645         * config/float-vax.h: Add GFLOAT defines.
2647 Mon Jun  12  9:44:00 2000  Mark Klein  <mklein@dis.com>
2649         * configure.in: Update tm dependencies for MPE.
2650         * configure: Rebuilt.
2652 2000-06-12  H.J. Lu  <hjl@gnu.org>
2654         * gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.
2656 2000-06-12  David Edelsohn  <edelsohn@gnu.org>
2658         * aix41.h (SUBTARGET_SWITCHES): Delete threads.
2659         (CPP_SPEC): Change mthreads to pthread.
2660         (LIB_SPEC): Likewise.
2661         (STARTFILE_SPEC): Likewise.
2662         * aix43.h (SUBTARGET_SWITCHES): Delete threads.
2663         (CPP_SPEC): Change mthreads to pthread.
2664         (LIB_SPEC): Likewise.
2665         (STARTFILE_SPEC): Likewise.
2666         * rs6000-protos.h (reg_or_arith_cint_operand): New.
2667         * rs6000.c (reg_or_arith_cint_operand): New.
2668         (num_insns_constant_wide): Decorate unsigned constant.
2669         * rs6000.h (PREDICATE_CODES): Add reg_or_arith_cint_operand.
2670         * rs6000.md (addsi3): Use new predicate.
2671         (subsi3, adddi3, subdi3): Likewise.
2673 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
2675         * c-common.c (lang_get_alias_set): Fix typo.
2677 2000-06-12  Richard Earnshaw <rearnsha@arm.com>
2679         * flow.c (mark_used_regs): Revert last change.
2680         (life_analysis): Remove PROP_AUTOINC if running after reload.
2681         (propagate_one_insn): PROP_AUTOINC is always off after reload.
2683 2000-06-11  Richard Earnshaw <rearnsha@arm.com>
2685         * flow.c (mark_used_regs): Don't call find_auto_inc after reload
2686         has run.
2688 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2690         * bb-reorder.c (build_scope_forest): Initialize variable
2691         `curr_scope'.
2693         * calls.c (expand_call): Likewise for variables
2694         `save_pending_stack_adjust' and `save_stack_pointer_delta'.
2696         * i386.c (function_arg_advance, function_arg): Cast to avoid
2697         signed/unsigned warnings.
2699         * i386.h (MEMORY_MOVE_COST): Likewise.
2701         * ifcvt.c (cond_exec_process_if_block): Initialize variables
2702         `else_start' and `else_end'.
2704         * libgcc2.h (__eh_alloc, __eh_free): Prototype.
2706         * regrename.c (rr_replace_reg): Initialize variable `dest_subregno'.
2708 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
2710         * Makefile.in (libintl.a): Depend on intl.all.
2712 2000-06-09  H.J. Lu  (hjl@gnu.org)
2714         * Makefile.in (c-parse.o): Also depend on output.h.
2716 2000-06-09  Rodney Brown  <RodneyBrown@mynd.com>
2718         * mcore-protos.h: discards const warning removal.
2719         * mcore.c: discards const warning removal.
2721 2000-06-09  Kazu Hirata  <kazu@hxi.com>
2723         * config/h8300/lib1funcs.asm: Declare the machine architecture at
2724         the beginning of the file.
2726 2000-06-09  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2728         * real.h:  Add prototype for ldexp.
2730 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
2732         * ggc-none.c, ggc-simple.c, ggc-page.c (ggc_alloc_obj): Rename
2733         it ggc_alloc, drop second argument, never clear returned memory.
2734         * ggc-common.c (ggc_alloc_string): Use ggc_alloc.
2735         (ggc_alloc_cleared): New.
2736         * ggc.h: Prototype ggc_alloc and ggc_alloc_cleared, not
2737         ggc_alloc_obj.  Remove ggc_alloc macro.
2738         (ggc_alloc_rtx, ggc_alloc_rtvec, ggc_alloc_tree): Use ggc_alloc.
2740         * rtl.c (rtvec_alloc): Clear the vector always.
2741         (rtx_alloc): Clear the first word always.  Remove dirty
2742         obstack tricks (this routine is no longer a bottleneck).
2743         * tree.c (make_node): Clear the new node always.
2744         (make_tree_vec): Likewise.
2745         (tree_cons): Clear the common structure always.
2746         (build1): Likewise; also, clear TREE_COMPLEXITY.
2747         * gengenrtl.c: Use puts wherever possible.  Remove extra
2748         newlines.
2749         (gendef): Clear the first word of an RTX in the generator
2750         function, irrespective of ggc_p.  Initialize '0' slots to
2751         NULL.
2752         (genlegend): Don't generate obstack_alloc_rtx routine, just a
2753         thin wrapper macro around obstack_alloc.
2755         * stmt.c (expand_fixup): Use ggc_alloc.
2756         * c-typeck.c (add_pending_init): Use ggc_alloc.
2757         * emit-rtl.c (init_emit_once): Clear CONST_DOUBLE_CHAIN(tem).
2758         * varasm.c (immed_double_const): Set CONST_DOUBLE_MEM(r) to
2759         const0_rtx when it is created.
2760         (immed_real_const_1): Set CONST_DOUBLE_CHAIN(r) to NULL_RTX if
2761         we are not in a function.
2763         * tree.c (tree_class_check_failed): Make second arg an int.
2764         * tree.h: Update prototype.
2766 2000-06-09  Geoff Keating  <geoffk@cygnus.com>
2768         * tree.h (VOID_TYPE_P): Don't look at the TYPE_MAIN_VARIANT
2769         of an error_mark_node.
2771 Fri Jun  9 20:35:13 2000  Denis Chertykov  <denisc@overta.ru>
2773         * config/avr/avr.c (asm_output_section_name): bugfix.
2775 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
2777         * timevar.def: Add TV_EXPAND.
2778         * timevar.c (timevar_print): Update timing information.
2779         * calls.c (try_to_integrate): Push to TV_INTEGRATION for inlining.
2781         * stmt.c (expand_return): Check for error_mark_node.
2783 2000-06-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2785         * configure.in: Also avoid wrapping auto-build.h with IN_GCC.
2787         * scan-types.sh (VALUE) Wrap use with double quotes to protect
2788         variable against filename expansion when it contains "char *".
2790         * system.h (SSIZE_MAX): Delete backup definition.
2792         * cppfiles.c (read_include_file): Use INTTYPE_MAXIMUM(ssize_t)
2793         instead of SSIZE_MAX.
2795 2000-06-09  Jakub Jelinek  <jakub@redhat.com>
2797         * configure.in: Check whether gas supports -relax.
2798         * configure, config.in: Rebuilt.
2799         * config/sparc/sparc.h (ASM_RELAX_SPEC): Define.
2800         (EXTRA_SPECS): Add asm_relax.
2801         (ASM_SPEC): Add %(asm_relax).
2802         (TARGET_SWITCHES): Add -mrelax and -mno-relax.
2803         * config/sparc/linux64.h (LINK_ARCH_SPEC): Rename to LINK_SPEC.
2804         (LINK_SPEC): Pass -relax to linker unless -mno-relax or -r.
2805         (ASM_SPEC): Add %(asm_relax).
2806         * config/sparc/linux.h (LINK_SPEC, ASM_SPEC): Likewise.
2807         * config/sparc/sparc.c (output_sibcall): If HAVE_AS_RELAX_OPTION,
2808         never use sethi/jmpl for leaf tail calls.  Use or with rs2 %g0
2809         instead of mov, so that gas can further optimize it.
2811 2000-06-08  James E. Wilson  <wilson@bletchleypark.cygnus.com>
2813         * dwarf2out.c (size_of_die, case dw_val_class_const): Use
2814         size_of_sleb128.
2815         (value_format, case dw_val_class_const): Use sdata format.
2816         (output_die): Call output_sleb128.
2818 2000-06-08  James E. Wilson  <wilson@cygnus.com>
2820         * dwarf2out.c (ASM_OUTPUT_DWARF_DATA8): Add new macro that uses
2821         UNALIGNED_DOUBLE_INT_ASM_OP.  Rename old macro to
2822         ASM_OUTPUT_DWARF_CONST_DOUBLE.
2823         (output_die, case dw_val_class_unsigned_const): Correct call to
2824         ASM_OUTPUT_DWARF_DATA8.
2825         (output_die, case dw_val_class_long_long): Use
2826         ASM_OUTPUT_DWARF_CONST_DOUBLE.
2827         * tree.c (host_integerp): Accept unsigned HOST_WIDE_INT values when
2828         pos is zero.
2830         * config/ia64/ia64-protos.h (ia64_output_end_prologue): Add.
2831         (output_function_prologue): Fix mispelling.
2832         (output_function_prologue, output_function_epilogue): Reorder to
2833         match ia64.c definition order.
2834         * config/ia64/ia64.c (ia64_expand_prologue): Add comment.
2835         (ia64_expand_epilogue): Set RTX_FRAME_RELATED_P on stack restore insns.
2836         Use r3 instead of r2 for large stack restores.
2837         (ia64_output_end_prologue): New function.
2838         (process_set): Emit ".restore sp" for epilogue stack restores.
2839         * config/ia64/ia64.h (FUNCTION_END_PROLOGUE): Define.
2841 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
2843         * dbxout.c (dbxout_type_fields): Don't segfault on fields with
2844         incomplete types.
2846 2000-06-08  Nathan Sidwell  <nathan@codesourcery.com>
2848         * frame.c (end_fde_sort): Remove extraneous erratic array test.
2850 2000-06-08  Denis Perchine <dyp@perchine.com>
2852         * frame.c (start_fde_sort): Don't malloc (0).
2854 2000-06-07  Zack Weinberg  <zack@wolery.cumb.org>
2856         * c-decl.c (pushdecl): Do not call COMPLETE_TYPE_P on
2857         error_mark_node.
2858         * print-tree.c (print_node): The transparent_union_flag means
2859         different things for unions and arrays.  Do not inspect it
2860         with TYPE_TRANSPARENT_UNION.
2862 2000-06-06  Jakub Jelinek  <jakub@redhat.com>
2864         * cpplib.c (do_ifdef, do_ifndef): Don't segfault if parse_ifdef
2865         returned NULL.
2867 Wed Jun  7 20:34:33 2000  Denis Chertykov  <denisc@overta.ru>
2869         * config/avr/avr.c (asm_output_section_name): output section
2870         attributes.
2871         * config/avr/libgcc.S (.text.libgcc): declare section attributes.
2873 2000-06-06  James E. Wilson  <wilson@cygnus.com>
2875         * frame.h (struct unwind_info_ptr): Collapse version, flags, and length
2876         fields into header field.
2877         (IA64_UNW_HDR_LENGTH, IA64_UNW_HDR_FLAGS, IA64_UNW_HDR_VERSION): New
2878         macros to access length, flags, and version info from header field.
2879         * config/ia64/crtbegin.asm (__do_frame_setup_aux): Delete here.
2880         * config/ia64/crtend.asm (__do_frame_setup_aux): Add here.
2881         (__do_global_ctors_aux): Fix caller.
2882         * config/ia64/frame-ia64.c (get_unwind_record): Change parameter
2883         prologue_flag to header.  Pass to read_P_record.
2884         (read_P_record): New argument header.  Implement P4 format.
2885         Multiply P7_T_SIZE by 16.
2886         (execute_one_ia64_descriptor): New static local region_header.  Pass to
2887         get_unwind_record.  Copy r to region_header if r is a header record.
2888         (print_all_records): Likewise.
2889         (__build_ia64_frame_state): Use IA64_UNW_HDR_LENGTH.
2890         (__get_personality, __get_except_table): Likewise.
2891         * config/ia64/ia64.c (process_set): Do not divide offsets by 4.
2893 2000-06-06  Philipp Thomas  <pthomas@suse.de>
2895         * configure.in (AC_C_INLINE): Added.
2896         * aclocal.m4 (AM_WITH_NLS): Enable --with-included-gettext by default.
2897         * configure: Regenerate.
2899 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
2901         * c-common.h (c_language_kind): New type.
2902         (c_language): New variab.e
2903         * c-common.c (lang_get_alias_set): Don't put structures in
2904         non-zero alias sets in C++.
2905         * c-decl.c (c_language): Define it.
2906         * c-lex.c (doing_objc_thang): Remove.
2907         * c-tree.h (doing_objc_thang): Make it a macro.
2908         * objc/objc-act.c (lang_decode_option): Set c_language, not
2909         doing_objc_thang.
2911 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
2913         * diagnostic.c (output_maximum_width): Remove.
2914         (doing_line_wrapping): Tweak.
2915         (diagnostic_buffer): New object.
2916         (global_output_buffer): New object.
2917         (output_destroy_prefix): New function.
2918         (default_initialize_buffer): Likewise.
2919         (reshape_diagnostic_buffer): Likewise.
2920         (initialize_diagnostics): Likewise.
2921         (output_clear): Tweak.
2922         (line_wrapper_printf): Adjust call to init_output_buffer.
2923         (vline_wrapper_message_with_location): Likewise.  Use
2924         output_destroy_prefix.
2925         (v_message_with_decl): Likewise.
2927         * diagnostic.h (struct output_buffer): Constify prefix.
2928         (init_output_buffer, output_get_prefix): Constify.
2929         (diagnostic_message_length_per_line): Likewise.
2930         (reshape_diagnostic_buffer): Declare.
2931         (default_initialize_buffer): Declare.
2932         (initialize_diagnostics): Declare.
2933         (diagnostic_buffer): Declare new obbject.
2935         * toplev.c: #include diagnostic.h
2936         (display_help): Document diagnostic formatting options.
2937         (decode_f_option): Handle diagnostic formatting options.
2938         (main): Setup initialization for diagnostic messages outputter.
2940         * toplev.h (set_message_length): Remove.
2942         * Makefile.in (toplev.o): Depends upon diagnostic.h
2944         * invoke.texi : Document diagnostics formatting options.
2946 Tue Jun  6 19:25:32 2000  Philippe De Muyter  <phdm@macqel.be>
2948         * configure.in (Make the links): Typo fix : the file that must be
2949         included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'.
2950         * configure: File rebuilt.
2952 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
2954         * eh-common.h (EH_ALLOC_SIZE, EH_ALLOC_ALIGN): New #defines.
2955         (eh_context): Add alloc_mask and alloc_buffer emergency fallback
2956         space.
2957         * libgcc2.c (__eh_alloc): Moved from cp/exception.cc. Fallback on
2958         emergency eh_context buffer, if malloc fails.
2959         (__eh_free): Moved from cp/exception.cc. Release to emergency
2960         eh_context buffer, if appropriate.
2962 2000-06-06  Jason Merrill  <jason@casey.soma.redhat.com>
2964         * expr.c (store_expr): Fix typo.
2966 2000-06-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2968         * m68k.c (legitimize_pic_address): Move prototype ...
2970         * m68k-protos.h (legitimize_pic_address): ... here.
2972         * m68k.md (legitimize_pic_address): Delete prototypes.
2973         (untyped_call): Invoke GEN_CALL(), not gen_call().
2975         * nextstep.c: Include system.h and toplev.h.
2976         (get_directive_line): Don't prototype.
2977         (handle_pragma): Mark parameters with ATTRIBUTE_UNUSED and constify.
2979         * nextstep.h (handle_pragma): Prototype.
2980         (SECTION_FUNCTION): Prototype FUNCTION().  Move prototype of
2981         objc_section_init ...
2982         (EXTRA_SECTION_FUNCTIONS): ... here.
2984 Tue Jun  6 08:17:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2986         * sdbout.c (struct sdb_file): NAME now const.
2987         (sdbout_init): input_file_name now const.
2988         (sdbout_start_new_source_file): FILENAME now const.
2989         * sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above.
2991 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
2993         * c-typeck.c (build_conditional_expr): Handle complex data types.
2995 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
2997         * explow.c (maybe_set_unchanging): New function, broken out from...
2998         (set_mem_attributes): Here.
2999         * expr.h: Declare it.
3000         * stmt.c (expand_decl): Call it.
3002 2000-06-05  Richard Henderson  <rth@cygnus.com>
3004         * reload1.c (choose_reload_regs): Mind CLASS_CANNOT_CHANGE_SIZE
3005         while looking for a register to inherit from.
3007 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
3009         * Makefile.in (libgcc.ready): Lose.
3010         (libgcc.mk): Just use mv, not move-if-change.
3011         (LIBGCC_DEPS): New macro.
3012         (libgcc.a): Use it.
3013         (stmp-multilib): Likewise.
3014         * mklibgcc.in (stmp-dirs): New target.  Make everything depend on
3015         it rather than the directories themselves.
3016         (LIB2ADD): Depend on the list file rather than 'force'.
3018         * fold-const.c (fold, case COND_EXPR): Elide conversion between
3019         cv-qualified versions of types.
3021 Mon Jun  5 14:06:18 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3023         * config/sparc/sparc.c (short_branch): Correct error in range
3024         computation.
3026 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3028         * fixinc/inclhack.def: New include hacks for ultrix.
3029         * (nested_ultrix): Replaced by ultrix_nested_svc.
3030         * (ultrix_atof_param): test_text string added.
3031         * (ultrix_ifdef): Modified select string.
3033 2000-06-05  Zack Weinberg  <zack@wolery.cumb.org>
3035         * objc/objc-act.c (generate_method_descriptors): Register
3036         objc_method_prototype_template as a GC root.
3037         (comp_method_with_proto): Register function_type as a GC root.
3038         (comp_proto_with_proto): Replace function_type1 and
3039         function_type2 with a two-element array; register it as a GC root.
3041         (generate_protocols, build_protocol_initializer,
3042         generate_protocol_list, build_category_initializer,
3043         build_shared_structure_initializer): Do not cache cast_type
3044         and/or cast_type2.
3046 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3048         * function.c (assign_parms): Add missing argument to set_mem_attributes
3049         call.
3051 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
3053         * tree.h (VOID_TYPE_P): New macro.
3054         (COMPLETE_OR_VOID_TYPE_P): Use VOID_TYPE_P.
3055         * c-decl.c (grokdeclarator): Use VOID_TYPE_P.
3056         (get_parm_info): Likewise.
3057         (store_parm_decls): Likewise.
3058         (combine_parm_decls): Likewise.
3059         (finish_function): Likewise.
3060         * c-typeck.c (build_function_call): Likewise.
3061         (build_binary_op): Likewise.
3062         (build_conditional_expr): Likewise.
3063         (internal_build_compound_expr): Likewise.
3064         (convert_for_assignment): Likewise.
3065         * stmt.c (expend_expr_stmt): Likewise.
3066         (warn_if_unused_value): Likewise.
3067         (expand_return): Likewise.
3068         * c-parse.in (primary): Likewise.
3069         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
3070         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
3072 Mon Jun  5 06:46:28 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3074         * alias.c (get_alias_set): If compnent is addressable, use alias
3075         set of component.
3076         * c-decl.c (init_decl_processing): Don't call record_component_aliases.
3077         (grokdeclarator): Likewise.
3078         * c-typeck.c (common_type): Likewise.
3080 2000-06-04  Alex Samuel  <samuel@codesourcery.com>
3082         * Makefile.in (OBJS): Remove dyn_string.o
3083         (dyn-string.o): Delete rule.
3084         * dyn-string.c: Delete file
3085         * dyn-string.h: Likewise.
3087 2000-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3089         * Makefile.in (intl.*): Honor non-zero exit codes in the intl
3090         subdir.
3092 2000-06-03  Geoff Keating  <geoffk@cygnus.com>
3094         * alias.c (record_component_aliases): Don't inspect
3095         DECL_NONADDRESSABLE_P of non-FIELD_DECL components of structures.
3097 Sat Jun  3 19:05:30 2000  Michael Meissner  <meissner@redhat.com>
3099         * ifcvt.c (process_insns): If IFCVT_MODIFY_INSN is defined, call
3100         it with the pattern to do machine dependent work.
3101         (cond_exec_process_if_block): If IFCVT_MODIFY_TESTS is defined,
3102         use it to modify the true/false tests used in conditional
3103         execution.  If IFCVT_MODIFY_FINAL and IFCVT_MODIFY_CANCEL are
3104         defined, invoke them if the conversion to conditional execution
3105         was successful or not.
3107         * tm.texi (IFCVT_MODIFY_TESTS): Document.
3108         (IFCVT_MODIFY_INSN): Ditto.
3109         (IFCVT_MODIFY_FINAL): Ditto.
3110         (IFCVT_MODIFY_CANCEL): Ditto.
3112 Sat Jun  3 15:26:13 2000  Matt Kraai <kraai@alumni.carnegiemellon.edu>
3114         * toplev.c (main): Fix misspellings of possibility and language.
3116 2000-06-03  Richard Henderson  <rth@cygnus.com>
3118         * alias.c (record_alias_subset): Initialize has_zero_child in the
3119         superset.
3121 2000-06-03  Richard Earnshaw (rearnsha@arm.com)
3123         * arm.md (untyped_call): Use GEN_CALL macro.
3125 2000-06-02  Pekka Nikander  <pnr@teldanex.tcm.hut.fi>
3127         * Makefile.in: Use $(MAKE) not "make"
3129 Fri Jun  2 19:31:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3131         * alias.c (struct alias_set_entry): New field has_zero_child.
3132         (mem_in_disjoint_alias_sets_p): Return 0 if set in either ase.
3133         (get_alias_set): If language-dependent routine set TYPE_ALIAS_SET,
3134         do nothing.
3135         Call record_component_aliases for aggregate types.
3136         (record_alias_subset): Set has_zero_child.
3137         (record_component_aliases, case ARRAY_TYPE): Do nothing if
3138         TYPE_NONALIASES_COMPONENT.
3139         (record_component_aliases, case RECORD_TYPE): Test
3140         DECL_NONADDRESSABLE_P.
3141         * c-decl.c (grokdeclarator): Set DECL_NONADDRESSABLE_P instead
3142         of TREE_ADDRESSABLE.
3143         * calls.c (initialize_argument_information): Only test
3144         TYPE_TRANSPARENT_UNION for UNION_TYPE.
3145         * function.c (assign_parms): Likewise.
3146         * integrate.c (function_cannot_inline_p): Likewise.
3147         * stor-layout.c (finish_record_layout): Don't call
3148         record_component_aliases.
3149         * tree.h (struct tree_int_cst): Use struct tree_common.
3150         (struct tree_real_cst, struct tree_string): Likewise.
3151         (struct tree_complex, struct tree_identifier): Likewise.
3152         (struct tree_list, struct tree_vec, struct tree_exp): Likewise.
3153         (struct tree_block, struct tree_type, struct tree_decl): Likewise.
3154         (TYPE_TRANSPARENT_UNION): Use UNION_TYPE_CHECK.
3155         (TYPE_NONALIASES_COMPONENT): New macro.
3156         (TYPE_AMBIENT_BOUNDEDNESS): Use FUNCTION_TYPE_CHECK.
3157         (DECL_NONADDRESSABLE_P): New macro.
3158         (struct tree_decl): Reorder bits for clarity of how many left;
3159         add non_adressable.
3161 2000-06-02  Jason Merrill  <jason@casey.soma.redhat.com>
3163         * Makefile.in (libgcc.a): Also depend on $(LIB2ADD).
3164         * mklibgcc.in (force): New target.
3165         Make LIB2ADD stuff depend on it.
3167 2000-06-02  Richard Henderson  <rth@cygnus.com>
3169         * alias.c (lang_get_alias_set): Remove.
3170         (get_alias_set): Call it directly, not indirectly.
3171         * c-common.c (lang_get_alias_set): Rename from c_get_alias_set.
3172         * c-common.h (c_get_alias_set): Don't declare.
3173         * c-decl.c (init_decl_processing): Don't set lang_get_alias_set.
3174         * expr.h (lang_get_alias_set): Declare as function, not pointer.
3176 2000-06-02  Bruce Korb  <bkorb@gnu.org>
3178         * fixinc/server.c(sig_handler):  resume closing server on SIGPIPE
3179         (server_setup):  define the server's master pid
3180         (close_server):  actually do the deed IFF we are the server's master
3182 2000-06-02  Jakub Jelinek  <jakub@redhat.com>
3184         * c-common.c (c_get_alias_set): Check whether signed_type did not
3185         return its argument before calling get_alias_set on the result.
3187 2000-06-02  Andrew MacLeod  <amacleod@cygnus.com>
3189         * expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.
3191 Fri Jun  2 00:22:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
3193         * sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
3194         (CONDITIONAL_REGISTER_USAGE): Mac registers are call used
3195         for TARGET_NOMACSAVE.
3196         (NOMACSAVE_BIT): Define.
3197         (TARGET_NOMACSAVE): Define.
3198         (TARGET_SWITCHES): Add "nomacsave".
3200 2000-06-02  Toshiyasu Morita  <toshi.morita@sega.com>
3202         * sh.md (untyped_call): Remove excess parameters
3204 2000-06-01  Loren J. Rittle  <ljrittle@acm.org>
3206         * fixinc/inclhack.def (osf_namespace_a): Relax expression to
3207         match that used before the conversion to c_fix style.
3208         * fixinc/fixincl.x: regenerate
3210 2000-06-01  Stan Cox  <scox@cygnus.com>
3212         * varray.h (VARRAY_PUSH_GENERIC_PTR, VARRAY_PUSH_CHAR_PTR): Fix
3213         macro argument typo.
3215 2000-06-01  Zack Weinberg  <zack@wolery.cumb.org>
3217         * cpplex.c (maybe_macroexpand): Use CPP_WTRADITIONAL.  Improve
3218         error message.
3219         * cpplib.c (parse_include): Remove support for VAX-C
3220         "#include starlet" misfeature.
3222 2000-05-31 Laurynas Biveinis <lauras@softhome.net>
3224         * cppfiles.c: conditionally define O_BINARY.
3225         (open_include_file): pass O_BINARY to open().
3227 2000-06-01  Richard Henderson  <rth@cygnus.com>
3229         * i960.c (i960_br_predict_opcode): Remove.
3230         (i960_print_operand) [+]: Emit branch prediction hints.
3231         (i960_function_arg): Return early for VOIDmode.
3232         (i960_round_align): Return early for incomplete types.
3233         * i960.h (PRINT_OPERAND_PUNCT_VALID_P): New.
3234         * i960.md (all conditional branches): Add "%+".
3236 Thu Jun  1 12:24:21 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3238         * alias.c (get_alias_set): Don't call language-specific routine more
3239         than is needed and clean up code a bit.
3240         * c-common.c (c_get_alias_set): All references whose type
3241         is char get alias set 0, but character types need not.
3242         * varasm.c (make_function_rtl): Don't call set_mem_attributes.
3243         (make_decl_rtl): Don't call it for FUNCTION_DECL.
3245 2000-06-01  Bruce Korb  <bkorb@gnu.org>
3247         * fixinc/tests/base/...: new base result files
3249 Thu Jun  1 09:37:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
3251         * config/i386/i386.c (ix86_use_fcomi_compare): Make global.
3252         * config/i386/i386-protos.h (ix86_use_fcomi_compare): Declare.
3253         * config/i386/i386.md (*fp_jcc_3, *fp_jcc_4): Disable if we
3254         will use FCOMI.
3256 2000-06-01  Richard Henderson  <rth@cygnus.com>
3258         * Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h.
3260         * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
3262 2000-05-31  Richard Henderson  <rth@cygnus.com>
3264         * config/ia64/ia64.c (sdata_symbolic_operand): Consider small
3265         CONSTANT_POOL_ADDRESS_P addresses for .sdata.
3266         * config/ia64/sysv4.h (SELECT_RTX_SECTION): New.
3268 2000-05-31  Richard Henderson  <rth@cygnus.com>
3270         * config/ia64/ia64-protos.h (ia64_expand_prediction): Remove.
3271         * config/ia64/ia64.c (ia64_expand_prediction): Move code ...
3272         (ia64_print_operand) [+]: ... here.  Use current_output_insn.
3273         * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): New.
3274         * config/ia64/ia64.md (all branch/call patterns): Use %+.
3276 2000-05-31  Richard Henderson  <rth@cygnus.com>
3278         * ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
3280 2000-05-31  Richard Henderson  <rth@cygnus.com>
3282         * ifcvt.c (merge_if_block): Be prepared for JOIN to have no
3283         remaining edges.
3284         (find_if_block): Allow THEN with no outgoing edges.
3285         * flow.c (merge_blocks_nomove): Remove a barrier not following
3286         a jump as well.
3288 2000-05-31  Richard Henderson  <rth@cygnus.com>
3290         * flow.c (propagate_block): Move initialization of mem_set_list ...
3291         (init_propagate_block_info): ... here.  Also track blocks with
3292         no successors; don't scan insns if ! PROP_SCAN_DEAD_CODE.
3294 2000-05-31  Richard Henderson  <rth@cygnus.com>
3296         * jump.c (jump_optimize_1): Revert 05-18 change.
3298 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
3300         * invoke.texi: Remove documentation for -fguiding-decls.
3302 2000-05-31  Richard Henderson  <rth@cygnus.com>
3304         * configure.in: Fix typo last change.
3306 2000-05-31  Philipp Thomas  <pthomas@suse.de>
3308         * configure.in (enable-nls): Enable if build == host, i.e. when
3309         not building a canadian cross compiler.
3310         (enable-maintainer-mode): Added for use with i18n.
3311         * aclocal.m4 (AM_GNU_GETTEXT): Only build catalogs that are a
3312         cross section of ALL_LINGUAS and LINGUAS.
3313         * configure: Rebuild.
3315 2000-05-31  Bruce Korb  <bkorb@gnu.org>
3317         * fixinc/check.tpl: rework to use test result tree
3318         * fixinc/Makefile.in: change invocation of check script
3319         * fixinc/check.diff: No longer needed
3320         * fixinc/fixincl.x: regenerate
3321         * fixinc/inclhack.def:  add new tests
3322         * fixinc/tests/base/arch/i960/archI960.h:  New test result
3323         * fixinc/tests/base/curses.h: modified test result
3324         * fixinc/tests/base/stdio.h: ditto
3325         * fixinc/tests/base/time.h: ditto
3326         * fixinc/tests/base/sys/asm.h: ditto
3327         * fixinc/tests/base/sys/stat.h: ditto
3328         * fixinc/tests/base/sys/wait.h: ditto
3330 Wed May 31 13:17:20 2000  Philippe De Muyter  <phdm@macqel.be>
3332         * except.c (clear_function_eh_region): Do not free NULL.
3334 Wed May 31 08:07:52 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3336         * Makefile.in (c-decl.o): Depend on rtl.h and expr.h.
3337         * alias.c (struct alias_entry): alias_set is HOST_WIDE_INT.
3338         (REG_BASE_VALUE): Remove unneeded cast to unsigned.
3339         (get_alias_set_entry): ALIAS_SET arg is HOST_WIDE_INT.
3340         (find_base_decl): New function, from c_find_base_decl in c-common.c.
3341         (new_alias_set): Moved from tree.c; return is HOST_WIDE_INT.
3342         (get_alias_set): Likewise.
3343         Major rework to do more things and allow language-specific code
3344         to just handle special-cases.
3345         (record_alias_subset): Args are HOST_WIDE_INT.
3346         (record_component_alias): Local vars are HOST_WIDE_INT.
3347         Don't handle COMPLEX_EXPR.
3348         (get_varargs_alias_set): Moved from builtins.c.
3349         (get_frame_alias_set): New function.
3350         * builtins.c (expand_builtin_return_address): Use frame alias set.
3351         (expand_builtin_setjmp, expand_builtin_longjmp): Use alias set
3352         for setjmp buffer.
3353         (get_memory_rtx): Rework to use set_mem_attributes.
3354         (get_varargs_alias_set): Deleted from here.
3355         * c-common.c (c_apply_type_quals_to_decl): Alias sets now HOST_WIDE_INT.
3356         (c_find_base_decl): Deleted from here.
3357         (c_get_alias_set): Remove many cases and rework to just handle
3358         C-specific cases.
3359         * c-common.h (c_get_alias_set): Returns HOST_WIDE_INT.
3360         * c-decl.c (rtl.h, expr.h): Now included.
3361         (init_decl_processing): Call record_component_aliases on array types.
3362         (grokdeclarator): Likewise.
3363         Set TREE_ADDRESSABLE for all fields that are not bitfields.
3364         * c-typeck.c (common_type): Call record_component_aliases for array.
3365         * caller-save.c (setup_save_areas): Rework register loop for unsigned.
3366         Set all save areas to the frame alias set.
3367         * calls.c (initialie_argument_information): Call set_mem_attributes.
3368         (compute_argument_addresses, expand_call): Likewise.
3369         * explow.c (set_mem_attributes): New function.
3370         (stabilize): Use MEM_COPY_ATTRIBUTES and force_reg.
3371         * expr.c (struct move_by_pieces): Remove {to,from}_{struct,readonly}.
3372         LEN and OFFSET now HOST_WIDE_INT.
3373         (clear_by_pieces): Similar changes.
3374         (move_by_pieces): LEN now HOST_WIDE_INT; don't set deleted fields.
3375         (move_by_pieces_ninsns): Now returns unsigned HOST_WIDE_INT.
3376         (move_by_pieces_1): Don't use deleted fields, use MEM_COPY_ATTRIBUTES.
3377         (clear_by_pieces_1): Likewise.
3378         (emit_push_insn): Call set_mem_attributes.
3379         (expand_expr, case INDIRECT_REF): Likewise.
3380         (expand_expr, case VAR_DECL): Call change_address.
3381         * expr.h (ADD_PARM_SIZE, SUB_PARM_SIZE): Use host_integerp and
3382         tree_low_cst.
3383         (get_varargs_alias_set, get_frame_alias_set): New decls.
3384         (record_base_value, record_alias_subset, lang_get_alias_set): Likewise.
3385         (new_alias_set, set_mem_attributes): Likewse.
3386         * function.c (struct temp_slot): ALIAS_SET is HOST_WIDE_INT.
3387         (assign_stack_temp_for_type): Likewise.
3388         Can split slot even if alias set since can copy.
3389         Set MEM_ALIAS_SET and MEM_SET_IN_STRUCT_P.
3390         (assign_temp): Use host_integerp and tree_low_cst.
3391         (put_var_into_stack): Properly handle SAVE_EXPR.
3392         (put_addressof_into_stack): Likewise.
3393         (assign_parms): Call set_mem_attributes.
3394         Delete #if 0 code.
3395         (fix_lexical_address): Put reference to chain into frame alias set.
3396         (expand_function_start): Call set_mem_attributes.
3397         * integrate.c (expand_inline_function): Likewise.
3398         * recog.c (adj_offsettable_operand): Use MEM_COPY_ATTRIBUTES.
3399         * regmove.c (try_apply_stack_adjustment): Likewise.
3400         * reload.c (push_reload, make_memloc): Likewise.
3401         * reload1.c (alter_reg): Make alias sets for spilled pseudos.
3402         * rtl.def (MEM): Update comment.
3403         * rtl.h (MEM_ALIAS_SET): Now uses XCWINT.
3404         (move_by_pieces): Change length to HOST_WIDE_INT.
3405         (record_base_value, record_alias_subset): Delete from here.
3406         * stmt.c (expand_decl): Call set_mem_attributes.
3407         * stor-layout.c (finish_record_layout): Call record_component_aliases.i
3408         * toplev.c (compile_file): Call init_alias_once earlier.
3409         * tree.c (lang_get_alias_set, get_alias_set, new_alias_set): Deleted
3410         from here: now in alias.c.
3411         * tree.h (struct tree_type): alias_set is HOST_WIDE_INT.
3412         (struct tree_decl): Likewise.
3413         (get_alias_set, new_alias_set, lang_get_alias_set): Deleted from here.
3414         * varasm.c (make_function_rtl, make_decl_rtl): Call set_mem_attributes.
3415         (output_constant_def, force_const_mem): Likewise.
3417         * flow.c (propagate_block): If block has no successors, stores to
3418         frame are dead if not used.
3420 2000-05-31  Nathan Sidwell  <nathan@codesourcery.com>
3422         * stmt (expand_end_case): Reorder conversion sequence for jump
3423         table to avoid extra truncations.
3425 Wed May 31 01:31:42 2000  Jeffrey A Law  (law@cygnus.com)
3427         * ifcvt.c (cond_exec_process_if_block): Do nothing if the last insn
3428         in the block is more than just a simple conditional branch.
3429         (noce_process_if_block): Similarly.
3431 Tue May 30 22:25:57 2000  Alexandre Oliva  <aoliva@cygnus.com>
3433         * optabs.c (prepare_float_lib_cmp): Protect *px and *py from
3434         queue.
3436 2000-05-30  Michael Meissner  <meissner@redhat.com>
3438         * dwarf2out.c (dwarf2out_frame_debug_expr): Ignore HIGH
3439         instructions.  Treat LO_SUM operations as loading the full integer
3440         constant.
3442 2000-05-30  Richard Henderson  <rth@cygnus.com>
3444         * combine.c (get_pos_from_mask): Test exact_log2 result as signed.
3446 2000-05-30  Richard Henderson  <rth@cygnus.com>
3448         * bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
3450 2000-05-30  Bruce Korb  <bkorb@gnu.org>
3452         * fixinc/tests/*:  Added expected result files for fixinc's make check
3453         * fixinc/fixfixes(char_macro_*_fix): Restore original algorithm
3455 2000-05-30  Richard Henderson  <rth@cygnus.com>
3457         * config/alpha/alpha.md (*setne_internal): Use match_operator
3458         instead of working down from insn.
3460 2000-05-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3462         * invoke.texi (-Wtraditional): Update WRT function macros.
3464 Tue May 30 09:57:32 2000  Philippe De Muyter  <phdm@macqel.be>
3466         * except.c (free_exception_table): Do not free NULL.
3468 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
3470         * cpplib.c (do_if): Don't save and restore only_seen_white here.
3471         * cppexp.c (_cpp_parse_expr): Save and restore only_seen_white
3472         and skipping here.
3474 2000-05-29  Richard Earnshaw (rearnsha@arm.com)
3476         * flow.c (mark_used_reg): If a register is unconditionally live,
3477         remove any conditional death information.
3479 2000-05-29  Richard Henderson  <rth@cygnus.com>
3481         * final.c (current_output_insn): New.
3482         (final_scan_insn): Set it.
3483         * output.h: Declare it.
3485 2000-05-29  Richard Henderson  <rth@cygnus.com>
3487         * stor-layout.c (finalize_record_size): Fix typo.
3489         * jump.c (redirect_jump): Don't emit NOTE_INSN_FUNCTION_END
3490         if nlabel is null.
3492 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
3494         * cpplib.h (cpp_reader): Remove if_stack.  Change
3495         potential_control_macro to a cpp_hashnode *.  Add skipping flag.
3496         * cpphash.h (struct ihash): Change control_macro to a
3497         cpp_hashnode * and shorten name to cmacro.
3498         Add NEVER_REINCLUDE constant.
3500         * cppfiles.c (redundant_include_p): Drop cpp_reader argument.
3501         Examine the cmacro node directly, no need to call cpp_defined.
3502         (_cpp_execute_include, read_include_file): Set cmacro to
3503         NEVER_REINCLUDE, not U"".
3504         * cpplex.c (cpp_push_buffer): Don't set new->if_stack.
3505         (cpp_get_token): If pfile->skipping is true, discard text and
3506         keep scanning until we hit a directive; don't expand macros.
3508         * cpplib.c (struct if_stack): Remove if_succeeded, add
3509         was_skipping. Change control_macro to a cpp_hashnode * and
3510         shorten name to cmacro.  Remove typedef IF_STACK.
3511         (parse_ifdef), detect_if_not_defined): Return a cpp_hashnode *.
3512         (conditional_skip, skip_if_group,
3513         consider_directive_while_skipping): Delete.
3514         (push_conditional): New.
3515         (_cpp_handle_directive): Don't process directives other than
3516         conditionals if we are skipping.
3518         (do_ifdef, do_ifndef, do_if, do_else, do_elif, do_endif):
3519         Update to new scheme.
3520         (validate_else): Skip rest of line here, unconditionally.
3521         (_cpp_unwind_if_stack): The stack is per-buffer.  Force
3522         pfile->skipping off.
3524         (all): Remove `scare quotes' from error messages.
3526 2000-05-29  Richard Henderson  <rth@cygnus.com>
3528         * function.c (emit_return_into_block): New line_note arg; emit it.
3529         (thread_prologue_and_epilogue_insns): Attempt to locate a line note
3530         for the close brace to accompany HAVE_return.  Move all line notes
3531         following the epilogue to before the NOTE_INSN_EPILOGUE_BEG.
3533 2000-05-29  Richard Henderson  <rth@cygnus.com>
3535         * longlong.h [__alpha] (count_leading_zeros): New.
3536         (count_trailing_zeros): New.
3537         (COUNT_LEADING_ZEROS_0): New.
3539         * config/alpha/alpha.c (alpha_zero_comparison_operator): New.
3540         (alpha_split_conditional_move): New.
3541         * config/alpha/alpha-protos.h: Prototype them.
3542         * config/alpha/alpha.h (PREDICATE_CODES): Update.
3543         (CPP_CPU_DEFAULT_SPEC): Fix typo for EV67.
3544         * config/alpha/alpha.md: Update ffs cix commentary.
3545         (*ze_and_ne): New.
3546         (*nabssf2, *nabsdf2): New.
3547         (*mov[qhsd]icc_internal): Use add_operand.
3548         (if_then_else constant splitters): New.
3549         (*cmp_sadd_di, *cmp_sadd_si, *cmp_sadd_sidi): New.
3550         (*cmp_ssub_di, *cmp_ssub_si, *cmp_ssub_sidi): New.
3552 2000-05-29  Richard Henderson  <rth@cygnus.com>
3554         * combine.c (force_to_mode) [MINUS]: Convert subtraction from
3555         a constant to NEG or NOT when conditions allow.
3557         * combine.c (combine_simplify_rtx): Don't create an if_then_else
3558         unless both args are general_operand.  Don't canonicalize plus
3559         to ior unless it helps.
3561         * toplev.c (rest_of_compilation): Set no_new_pseudos after flow1;
3562         instead track register_life_up_to_date.  Toggle no_new_pseudos
3563         around if_convert.
3565 2000-05-28  Geoff Keating  <geoffk@cygnus.com>
3567         * config/rs6000/rs6000.c (output_cbranch): Escape '%' characters
3568         so output_operand doesn't see them.
3570 Sun May 28 18:37:07 2000  Clinton Popetz  <cpopetz@cygnus.com>
3572         * lcm.c (make_preds_opaque): Fix comment.
3573         (optimize_mode_switching): Use NORMAL_MODE instead of
3574         MODE_USES_IN_EXIT_BLOCK.  Change leftover instance of
3575         FP_MODE_NONE to no_mode.  Rename MODE_AT_ENTRY to NORMAL_MODE.
3576         Handle insertions before an existing NOTE_INSN_BASIC_BLOCK.
3577         * tm.texi (OPTIMIZE_MODE_SWITCHING): Refer to NORMAL_MODE.
3578         (MODE_USES_IN_EXIT_BLOCK): Delete.
3579         (MODE_AT_ENTRY) Rename to NORMAL_MODE.
3580         * sh.h (MODE_USES_IN_EXIT_BLOCK): Delete.
3581         (MODE_AT_ENTRY): Rename to NORMAL_MODE.
3582         (MODE_NEEDED): Don't look for USE.
3583         (EPILOGUE_USES): Define.
3585 Sun May 28 23:26:59 2000  Philippe De Muyter <phdm@macqel.be>
3587         * mklibgcc.in (all): Variable initialised to `libgcc'.
3589 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
3591         * toplev.h (skip_leading_substring): New macro.
3592         * toplev.c (decode_f_option): Use skip_leading_substring instead
3593         of strncmp.
3594         (decode_W_option): Likewise.
3596 2000-05-28  Nick Clifton  <nickc@cygnus.com>
3598         * tm.texi (CONDITIONAL_REGISTER_USAGE): Document that it can
3599         modify reg_names.
3601 2000-05-28  Richard Henderson  <rth@cygnus.com>
3603         * regclass.c (record_operand_costs): Protect reg_changes_size
3604         with CLASS_CANNOT_CHANGE_SIZE.
3606         * loop.c (instrument_loop_bct): Set JUMP_LABEL on the new insn.
3608 2000-05-28  Richard Henderson  <rth@cygnus.com>
3610         * function.c (diddle_return_value): A pcc-style struct return
3611         returns a pointer.
3613 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
3615         * cppfiles.c: Read files in, using mmap if possible, then
3616         prescan them separately.
3617         (read_file, read_with_read): New functions.
3618         * cpplex.c: Don't define UCHAR_MAX.
3619         (_cpp_read_and_prescan): Rename to _cpp_prescan.  Don't read
3620         the file here.
3622         * cppinit.c (handle_option): Automatically define __cplusplus,
3623         __OBJC__, __ASEEMBLER__, _LANGUAGE_FORTRAN here when we see
3624         the respective -lang switch.
3626         * cpphash.h (enum node_type, struct hashnode, _cpp_lookup
3627         prototype): Move to...
3628         * cpplib.h: ... here.  Rename struct hashnode to struct
3629         cpp_hashnode and give it a typedef.  Rename _cpp_lookup to
3630         cpp_lookup.  Add 'fe_value' slot, a union tree_node *.
3632 2000-05-27  Geoffrey Keating  <geoffk@cygnus.com>
3634         * config/rs6000/rs6000.md (movsi): Constify 'name'.
3636         * regclass.c [CLASS_CANNOT_CHANGE_SIZE]
3637         (class_can_change_size): New variable.
3638         (reg_changes_size): New variable.
3639         (init_reg_sets_1): Initialise class_can_change_size.
3640         (record_operand_costs): Remove subreg_changes_size.
3641         Don't pass it around.  Instead update reg_changes_size.
3642         (regclass): Initialise and free reg_changes_size.  If a register
3643         changes size, don't preference it to a class that contains
3644         registers that can't change size.
3645         (record_reg_classes): Don't look at subreg_changes_size.
3647 2000-05-27  Richard Henderson  <rth@cygnus.com>
3649         * print-rtl.c (reg_names): Remove const.
3650         * regclass.c (reg_names): Likewise.
3651         * regs.h (reg_names): Likewise.
3652         * hard-reg-set.h (reg_names): Likewise.
3654 2000-05-27  Richard Henderson  <rth@cygnus.com>
3656         * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.
3658 2000-05-27  Richard Henderson  <rth@cygnus.com>
3660         * config/alpha/alpha.c (alpha_does_function_need_gp): Test
3661         TARGET_PROFILING_NEEDS_GP in the if, instead of with an ifdef.
3662         (alpha_expand_prologue): Emit prologue_mcount if needed.
3663         * config/alpha/alpha.h (TARGET_PROFILING_NEEDS_GP): Default to 0.
3664         * config/alpha/alpha.md (prologue_mcount): New.
3665         * config/alpha/linux.h (FUNCTION_PROFILER): Remove.
3666         (TARGET_PROFILING_NEEDS_GP): Undef before redefining.
3667         * config/alpha/netbsd.h: Likewise.
3669 2000-05-27  Richard Henderson  <rth@cygnus.com>
3671         * config/alpha/elf.h (SELECT_SECTION): Mirror Kenner's May 19
3672         change to config/elfos.h.
3674 2000-05-27  Richard Henderson  <rth@cygnus.com>
3676         * Makefile.in (resource.o): Depend on except.h.
3677         * except.h (output_exception_table_data): Prototype.
3678         * genconfig.c (gen_peephole2): Prototype.
3679         * genemit.c (main): Include ggc.h.
3680         * genoutput.c: Revert parts of last change: include errors.h
3681         (main): Set progname.
3682         * recog.c: Include hard-reg-set.h before recog.h.
3683         * resource.c: Include except.h.
3685         * config/alpha/alpha-protos.h (alpha_arg_info_reg_val): Protect
3686         with RTX_CODE.
3687         (alpha_write_linkage): Protect with BUFSIZ.
3688         (alpha_need_linkage): Update prototype.
3689         * config/alpha/alpha.c (function_arg): Move VMS code here.
3690         (alpha_links_base): Remove.
3691         (alpha_links): New.
3692         (mark_alpha_links_node, mark_alpha_links): New.
3693         (alpha_write_one_linkage): New.
3694         (alpha_need_linkage): Use a splay tree.  Build the linkage symbol.
3695         (alpha_write_linkage): Use splay_tree_foreach.
3696         * config/alpha/alpha.md (call_vms): Use alpha_need_linkage
3697         to get the linkage symbol.
3698         (call_value_vms): Likewise.
3699         * config/alpha/elf.h (output_file_directive): Remove decl.
3700         (ctors_section, dtors_section): Prototype.
3701         (sbss_section, sdata_section): Prototype.
3702         * config/alpha/vms.h (FUNCTION_ARG): Remove.
3703         (readonly_section, link_section, literals_section): Prototype.
3704         (ctors_section, dtors_section): Prototype.
3705         (vms_valid_decl_attribute_p): Remove decl.
3706         (alpha_arg_type, alpha_arg_info_reg_val): Likewise.
3708 2000-05-27  Geoff Keating  <geoffk@cygnus.com>
3710         * reload.c (get_secondary_mem): Don't widen floating-point modes.
3712         * combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
3713         substituting the REG in a (subreg:X (reg:Y ...)).
3715 2000-05-28  Neil Booth  <NeilB@earthling.net>
3717         * cpplex.c (_cpp_lex_line): Merge vertical space.  Flag
3718         first token of a line BOL.  Update EOF code for this.
3719         Remove illegal directive check - it appears in the (not
3720         yet committed) caller.
3721         * cpplib.h (BOL): New flag.
3723 2000-05-28  Neil Booth  <NeilB@earthling.net>
3725         * cpplex.c (_cpp_init_toklist): No comment space to initialise.
3726         (_cpp_free_toklist): No comment space to free.
3727         (expand_comment_space): Remove.
3728         (save_comment_space): Place the comment in the current token and
3729         not in a separate comment space.
3730         (_cpp_lex_line): Save comments during plain code and #define
3731         directives only.
3732         * cpplib.h (struct _cpp_toklist): Remove comment space.
3734 2000-05-28  Neil Booth  <NeilB@earthling.net>
3736         * cppexp.c (parse_assertion): Supply extra argument to
3737         _cpp_init_toklist.
3738         * cpplib.c (do_assert, do_unassert): Similarly.
3739         * cpphash.h (_cpp_init_toklist) Update.
3740         (_cpp_expand_token_space): New.
3741         (DUMMY_TOKEN, NO_DUMMY_TOKEN): New.
3742         * cpplex.c (_cpp_init_toklist): New argument.
3743         (parse_string2): New argument multiline_ok.
3744         (spell_token): Take a const cpp_token *.
3745         (INIT_NAME): Replace with INIT_TOKEN_NAME.  Update tokens_used.
3746         (SPELL_ macros): Replace with enum.
3747         (expand_token_space): Replace with _cpp_expand_token_space.
3748         Take COUNT argument.
3749         (IS_DIRECTIVE): Update.
3750         (_cpp_lex_line): Update token structure before parsing number.
3751         Don't assume start at beginning of token list.
3752         (save_comment): Use INIT_TOKEN_NAME.
3754 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
3756         * configure.in (stage1_warn_cflags): Add -Wstrict-prototypes
3757         -Wmissing-prototypes.
3758         * configure: Regenerate.
3759         * gcc.texi: Remove explanation of MD_CALL_PROTOTYPES.
3761         * builtins.c, calls.c: Change all instances of gen_call_* or
3762         gen_sibcall_* to GEN_CALL_* and GEN_SIBCALL_*.
3763         * calls.c (struct_value_size_rtx): Separate definition from
3764         initialization to avoid unused variable warning.
3766         * genflags.c (gen_macro): New function.
3767         (gen_proto): Call it for gen_call_* and gen_sibcall_*.
3768         (gen_nonproto): Delete.
3769         (gen_insn): Put all insns on the same obstack.
3770         (main): Generate prototypes for everything unconditionally.
3772         * configure.in: Add AC_CHECK_TYPE(ssize_t).  Remove commented
3773         out check for wchar_t.
3774         * acconfig.h: Add template for ssize_t.  Remove @TOP@.
3775         * system.h: Add infrastructure for defining missing
3776         TYPE_MAX/TYPE_MIN macros.  Use it to provide fallback
3777         definitions of UCHAR_MAX and SSIZE_MAX.
3778         * configure: Regenerate.
3779         * config.in: Regenerate.
3781         * Makefile.in (libgcc2.ready): Rename to libgcc.ready.
3782         Depend on $(LANGUAGES) as well as $(GCC_PATCHES) and fixed
3783         headers.
3784         (clean): No need to delete libgcc1.a, libgcc1-asm.a,
3785         libgcc2.a, or libgcc1.null.
3787 2000-05-27  Richard Henderson  <rth@cygnus.com>
3789         * Makefile.in (recog.o): Don't depend on resource.h.
3790         * recog.c: Don't include resource.h.
3791         (recog_last_allowed_insn): Remove.
3792         (recog_next_insn): Remove.
3793         (struct peep2_insn_data): New.
3794         (peep2_insn_data, peep2_current): New.
3795         (peep2_next_insn): New.
3796         (peep2_regno_dead_p, peep2_reg_dead_p): New.
3797         (peep2_find_free_register): New.
3798         (peephole2_optimize): Track life information by insn as we go.
3799         * recog.h: Update declarations.
3800         * resource.c (find_free_register, reg_dead_p): Remove.
3801         * resource.h: Remove their declarations.
3802         * toplev.c: Include hard-reg-set.h before recog.h.
3804         * genconfig.c (max_insns_per_peep2): New.
3805         (gen_peephole2): New.
3806         (main): Call it.
3807         * genemit.c (output_peephole2_scratches): Generate calls to
3808         peep2_find_free_register; adjust surrounding code.
3809         (main): Have insn-emit.c include hard-reg-set.h before recog.h.
3810         * genrecog.c (change_state): Don't track last_insn.
3811         (write_action): Write into *_pmatch_len before accepting.
3812         (write_tree): Adjust peephole2_insns and subroutines to match.
3814         * config/i386/i386.md (all peepholes): Use peep2_regno_dead_p.
3816         * config/alpha/alpha.c (hard_fp_register_operand): Mind the mode.
3817         (hard_int_register_operand): New.
3818         * config/alpha/alpha-protos.h: Declare it.
3819         * config/alpha/alpha.h (PREDICATE_CODES): Update.
3820         * config/alpha/alpha.md (peep2 patterns): Use hard_int_register_operand
3821         as needed; use peep2_reg_dead_p instead of dead_or_set_p.
3823 2000-05-27  Richard Henderson  <rth@cygnus.com>
3825         * function.c (thread_prologue_epilogue_insns): Don't move the
3826         line note at the head of the chain.  Only force a lineno note
3827         before the end of block 0.
3829 2000-05-27  Richard Henderson  <rth@cygnus.com>
3831         * gensupport.c (collect_insn_data): Record the maximum number
3832         of alternatives, not the last seen.
3834         * genoutput.c: Don't include errors.h.
3835         (struct data): Add lineno member.
3836         (have_error): New.
3837         (scan_operands): Use message_with_line instead of error.
3838         (validate_insn_alternatives): Likewise.
3839         (gen_insn): Accept and store the pattern's line number.
3840         (gen_peephole, gen_expand, gen_split): Likewise.
3841         (main): Don't set progname.  Pass line_no to gen_foo.
3843 2000-05-27  Richard Henderson  <rth@cygnus.com>
3845         * config/d30v/d30v.c (d30v_print_operand): Handle ':'.
3846         * config/d30v/d30v.h (PRINT_OPERAND_PUNCT_VALID_P): Accept ':'.
3847         * config/d30v/d30v.md (attr predicable): New.
3848         (all insn patterns): Mark non-predicable patterns; use %: on the rest.
3849         (andsi3*): Unify into one pattern.
3850         (iorsi3*, xorsi3*): Likewise.
3851         (peephole2 patterns): Use peep2_reg_dead_p; verify not a
3852         conditional return.
3853         (old cond_exec patterns): Remove.
3854         (define_cond_exec): New.
3856 Sat May 27 11:01:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3858         * tree.h (TREE_CODE_LENGTH): New macro.
3859         * c-common.c (c_find_base_decl): Use it.
3860         * expr.c (safe_from_p): Likewise.
3861         * print-tree.c (print_node): Likewise.
3862         * tree.c (make_node, copy_node, get_identifier): Likewie.
3863         (first_rtl_op, contains_placeholder_p, substitute_in_expr): Likewise.
3864         (build, build_nt, build_parse_node, simple_cst_equal): Likewise.
3865         * fold-const.c (make_range): Likewise.
3866         (fold): Likewise; also use first_rtl_op.
3867         * c-iterate.c (collect_iterators): Use first_rtl_op.
3868         * calls.c (calls_function_1): Likewise; also rename TYPE to CLASS.
3869         Use IS_EXPR_CODE_CLASS.
3870         (preexpand_calls): Likewise.
3871         * ggc-common.c (ggc_mark_trees): Rework to use first_rtl_op
3872         and TREE_CODE_LENGTH.
3873         * stmt.c (warn_if_unused_value): If no operands, no unused value.
3875 2000-05-26  Geoffrey Keating  <geoffk@cygnus.com>
3877         * config/rs6000/rs6000.md (movsi_internal1): Use '%a1' rather
3878         than '%1(%*)'.
3879         (movdi_internal64): Likewise.
3881         * config/rs6000/rs6000.md: Correct order of operands for DImode
3882         boolean patterns.
3884         * config/rs6000/rs6000.c (boolean_or_operator): New function.
3885         * config/rs6000/rs6000-protos.h (boolean_or_operator): Prototype it.
3886         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_or_operator.
3887         * config/rs6000/rs6000.md: Use boolean_or_operator instead of
3888         boolean_operator for the boolean patterns without NOTs.
3890         * config/rs6000/rs6000.c (reg_or_logical_cint_operand): Rename
3891         from reg_or_u_cint_operand.  Change comment and behaviour.
3892         (logical_operand): Clean up, add assertion.
3893         (non_logical_cint_operand): Also check for
3894         reg_or_logical_cint_operand.
3895         * config/rs6000/rs6000.h (PREDICATE_CODES): Update.
3896         * config/rs6000/rs6000.md (iorsi3): Use reg_or_logical_cint_operand
3897         in the expander.
3898         (xorsi3): Likewise.
3899         (iordi3): Likewise.
3900         (xordi3): Likewise.
3902 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
3904         * tree.h (struct record_layout_info): Rename to (struct
3905         record_layout_info_s).
3906         * stor-layout.c (start_record_layout): Replace
3907         `record_layout_info' with `record_layout_info_s'.
3909 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
3911         * flow.c (find_label_refs): New function.
3912         (find_basic_blocks_1): Call it for each alternative of a call
3913         placeholder.
3915 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
3917         * ifcvt.c (cond_exec_get_condition): Set test_if to the SET_SRC
3918         of get_pc.
3920 2000-05-25  Richard Henderson  <rth@cygnus.com>
3922         * config/alpha/alpha.c (alpha_comparison_operator): Don't be
3923         so strict about DImode.
3924         (alpha_swapped_comparison_operator): Likewise.
3925         * config/alpha/alpha.md (*setne_internal): Name it.  Allow
3926         any integer output mode.
3927         (*setcc_internal): Likewise.
3928         (*setcc_swapped_internal): Likewise.
3929         (*movdicc_internal, *movdicc_lbc, *movdicc_lbs): Name them.
3930         (*mov[qhs]icc_internal): New.
3931         (*mov[qhs]icc_lbc, *mov[qhs]icc_lbs): New.
3933 2000-05-25  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3935         * vax.h (CPP_SPEC): Define __GFLOAT and GFLOAT when -mg is specified.
3937 2000-05-25  Richard Henderson  <rth@cygnus.com>
3939         * bb-reorder.c (reorder_block_def): Reorder elements for size.
3940         Remove add_jump; add next; replace flags with visited.
3941         (rbd_init): Remove.
3942         (REORDER_BLOCK_HEAD, REORDER_BLOCK_VISITED): Remove.
3943         (REORDER_BLOCK_FLAGS, REORDER_BLOCK_INDEX): Remove.
3944         (REORDER_BLOCK_ADD_JUMP, REORDER_BLOCK_EFF_HEAD): Remove.
3945         (REORDER_BLOCK_EFF_END, REORDER_BLOCK_SCOPE): Remove.
3946         (RBI): New.
3947         (reorder_index, reorder_last_visited): Remove.
3948         (skip_insns_after_block): Rewrite to use a switch.
3949         (get_common_dest): Remove.
3950         (chain_reorder_blocks): Remove.
3951         (record_effective_endpoints): Split out from reorder_basic_blocks.
3952         (make_reorder_chain): Likewise.  Loop until all blocks are placed.
3953         (make_reorder_chain_1): Renamed from old make_reorder_chain.
3954         Only construct the reorder chain, do not move insns.  Try harder
3955         to tail recurse.
3956         (label_for_bb, emit_jump_to_block_after): New.
3957         (fixup_reorder_chain): Use them.  Do bulk block movement.  Examine
3958         and adjust the jump insns appropriately.  Fixup basic_block_info.
3959         (verify_insn_chain): Always define.
3960         (relate_bbs_with_scopes): Call xmalloc, not xcalloc.  Fix thinko
3961         in allocation size.
3962         (make_new_scope): Don't write zeros to calloc'd space.
3963         (build_scope_forest): Rely on xrealloc to DTRT.
3964         (reorder_basic_blocks): Don't build loop nest.  Don't fail if
3965         profile_arc_flag.  Streamline EH test.
3967         * flow.c (redirect_edge_succ, redirect_edge_pred): New.
3968         * basic-block.h: Declare them.
3970 2000-05-25  Alexandre Oliva  <aoliva@cygnus.com>
3972         * emit-rtl.c (reset_used_decls): New function.
3973         (unshare_all_rtl_again): Call it.
3975 2000-05-25  Zack Weinberg  <zack@wolery.cumb.org>
3977         * cpplex.c (maybe_macroexpand): Warn about function-like
3978         macros used in non-function context, if -Wtraditional.
3980 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
3982         * recog.c (peephole2_optimize): Use INSN_P.
3984 2000-05-25  Richard Henderson  <rth@cygnus.com>
3986         * ifcvt.c (seq_contains_jump): New.
3987         (noce_try_store_flag_constants): Use it to fail conversion.
3988         (noce_try_store_flag_inc, noce_try_store_flag_mask): Likewise.
3990 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
3992         * except.h (can_throw): Declare it.
3993         * except.c (can_throw): Give it external linkage.
3994         * resource.c (find_dead_or_set_registers): Use can_throw.
3996 2000-05-25  Richard Henderson  <rth@cygnus.com>
3998         * flow.c (mark_set_1): Don't record conditionally dead memory.
4000 2000-05-25  Jan Hubicka  <jh@suse.cz>
4002         * combine.c (try_combine): Use any_condjump_p, any_uncondjump_p
4003         and pc_set at the place of simplejump_p and condjump_p.
4004         * cse.c (record_jump_equiv): Likewise.
4005         * emit-rtl.c (emit): Likewise.
4006         * explow.c (find_next_ref): Likewise.
4007         * flow.c (tidy_fallthru_edge): Likewise.
4008         (init_propagate_block_info): Likewise.
4009         * gcse.c (delete_null_pointer_checks): Likewise.
4010         * ifcvt.c (cond_exec_get_condition, noce_get_condition,
4011         dead_or_predicable): Likewise.
4012         * integrate.c (copy_insn_list): Likewise.
4013         * loop.c (scan_loop, verify_dominator, find_and_verify_loops,
4014         for_each_insn_in_loop, check_dbra_loop, get_condition,
4015         insert_bct, load_mems): Likewise.
4016         * resource.c (find_dead_or_set_registers): Likewise.
4017         * sibcalls.c (simplejump_p): Likewise.
4018         * unroll.c (copy_loop_body, reg_dead_after_loop): Likewise.
4020 2000-05-25  David Edelsohn  <edelsohn@gnu.org>
4022         * rs6000.c (expand_block_move): Add 64-bit PowerPC doubleword move
4023         to STRING case.  Use doubleword STRING move for TARGET_POWERPC64
4024         when unaligned.
4025         * rs6000.h (CONST_OK_FOR_LETTER_P, 'J'): unsigned HOST_WIDE_INT.
4026         (RETURN_ADDR_RTX): Use COUNT and FRAME, not count and frame.
4027         (LEGITIMIZE_RELOAD_ADDRESS): unsigned HOST_WIDE_INT high.
4028         * rs6000.md: Name various internal patterns.
4030 2000-05-25  Jan Hubicka  <jh@suse.cz>
4032         * jump.c (invert_exp_1): Remove first argument, use pc_set
4033         to get the expression.
4034         (redirect_exp): Make static; redirect only the pc_set expression,
4035         remove first argument.
4036         (invert_exp): Remove first argument, make static.
4037         (jump_optimize): Use any_condjump_p, any_uncondjump_p and
4038         any_onlyjump at most places where we originaly did condjump_p
4039         and simplejump_p.
4040         (jump_back_p, follow_jumps, thread_jumps): Likewise.
4041         (delete_barrier_succesors): Use pc_set.
4042         (invert_jump_1, invert_jump, redirect_jump_1, redirect_jump): Update
4043         calls of invert_exp and redirect_exp.
4044         * rtl.h (redirect_exp, invert_exp): Remove.
4045         * unroll.c (copy_loop_body): Use invert_jump and redirect_jump.
4047 2000-05-25  Richard Henderson  <rth@cygnus.com>
4049         * stmt.c (expand_end_bindings): Fix thinko last change.
4051 2000-05-25  Andrew MacLeod  <amacleod@cygnus.com>
4052             Andrew Haley  <aph@cygnus.com>
4054         * except.c  (func_eh_entry): Add emitted field.
4055         (new_eh_region_entry): Set emitted field to 0;
4056         (output_exception_table_entry): Only emit previously un-emitted data,
4057         and send it to the eh_data section.
4058         (output_exception_table): Break out common parts. Output
4059         exception table for entire compilation unit to eh_data section.
4060         (output_exception_table_data): Common parts of output_exception_table.
4061         Send output to eh_data section.
4062         (output_function_exception_table): Output exception table data for
4063         a single function to eh_data section.
4064         (free_exception_table): New external to free the table.
4065         * except.h (free_exception_table): Add prototype.
4066         (output_function_exception_table): Add prototype.
4067         * final.c (final_end_function): Output function exception table
4068         for IA64_UNWIND_INFO.
4069         (final_scan_insn): Emit any unwind directives for an insn.
4071         * frame-dwarf2.c: New file containing all DWARF 2 specific code
4072         from frame.c.
4073         * frame.c: Remove all DWARF 2 specific code.
4074         * config/ia64/frame-ia64.c: New file.
4075         (gthread_stuff): Make all gthread available with
4076         IA64_UNWIND_INFO.
4077         (dwarf_fde): Define an IA64 struct for dwarf_fde.
4078         (__register_frame_info, __register_frame): Move to common area of file.
4079         (__register_frame_info_table, __register_frame_table): Move to common i
4080         area.
4081         (__deregister_frame_info, __deregister_frame): Move to common area.
4082         (__frame_init, find_fde): New versions for IA64_UNWIND_INFO.
4083         (read_uleb128): New version for ia64.
4084         (get_unwind_record): Read the next IA-64 unwind record.
4085         (read_R_record): Read a region header record.
4086         (process_a_b_reg_code): X record helper.
4087         (read_X_record): Read an X format record.
4088         (read_B_record): Read a B format record.
4089         (P3_record_types): List of record types matching the P3 format.
4090         (P7_record_types): List of record types matching the P7 format.
4091         (P8_record_types): List of record types matching the P8 format.
4092         (read_P_record): Read a P format record.
4093         (init_ia64_reg_loc): Set default fields for a register.
4094         (init_ia64_unwind_frame): Set defaults for all register records.
4095         (execute_one_ia64_descriptor): Execute one descriptor record.
4096         (rse_address_add): Calculate the position of a local reg in memory.
4097         (normalize_reg_loc): Turn a location descriptor into a memory address.
4098         (maybe_normalize_reg_loc): Only normalize a descriptor if it falls
4099         within a specified PC offset range.
4100         (get_real_reg_value): Given a register location, retrieve its value.
4101         (set_real_reg_value): Change the value of a register location.
4102         (copy_reg_value): Copy reg values, if needed.
4103         (copy_saved_reg_state): Copy all registers that need to be copied.
4104         (process_state_between): Normalize all frame register records that
4105         fall within the specified PC range.
4106         (frame_translate): Take a processed frame description, and turn
4107         everything into addresses.
4108         (build_ia64_frame_state ): Find and create frame state record for a PC.
4109         (get_personality): Get the personality routine for a given frame.
4110         (get_except_table): Get the exception table for a given frame.
4111         (record_name): Unwind record names for debugging.
4112         (print_record): Print and unwind record.
4113         (print_all_records): Print an entire unwind image.
4114         (__ia64_backtrace): Print a backtrace.
4115         (ia64_backtrace_helper): New function.
4116         (__register_frame_info_aux): New function.
4117         * config/ia64/crtend.asm (__do_frame_setup_aux): New function.
4119         * frame.h (enum unw_record_type): New unwind record types.
4120         (struct unw_p_record, unw_b_record, unw_x_record) : New unwind records.
4121         (struct unw_r_record, unwind_record): New unwind record structs.
4122         (struct unwind_info_ptr): Unwind information layout.
4123         (IA64_UNW_LOC_TYPE_*): Macros for different types for location
4124         descriptors.
4125         (struct ia64_reg_loc): Register location description.
4126         (struct ia64_frame_state): Location of all registers in a frame.
4127         (struct object): Add pc_base and fde_end for IA64_UNWIND_INFO.
4128         * libgcc2.c (__ia64_personality_v1): Personality routine.
4129         (__calc_caller_bsp): Calculate the bsp register for the caller's
4130         frame.
4131         (ia64_throw_helper): Figure out who to return to and set up the
4132         registers.
4133         (__throw): Throw routine.
4135         * output.h (assemble_eh_align, assemble_eh_label): New functions
4136         to generate EH info where we want it.
4137         (assemble_eh_integer): New function.
4138         * toplev.c (compile_file): Output module level exception table for
4139         non-ia64 targets.
4140         (main): Set exceptions_via_longjump and flag_new_exceptions based
4141         on IA64_UNWIND_INFO too.
4143         * varasm.c (assemble_eh_label): Generate a label via
4144         ASM_OUTPUT_EH_LABEL if it has been specified.
4145         (assemble_eh_align): Generate an alignment directive via
4146         ASM_OUTPUT_EH_ALIGN if it has been specified.
4147         (assemble_eh_label): Generate an integer value via
4148         ASM_OUTPUT_EH_type if they have been specified.
4149         * config/ia64/ia64.c (rtx_needs_barrier): Add flushrs.
4150         (ia64_init_builtins): Add __builtin_ia64_bsp
4151         and __builtin_ia64_flushrs.
4152         (ia64_expand_builtin): Add IA64_BUILTIN_BSP and
4153         IA64_BUILTIN_FLUSHRS.
4154         * config/ia64/ia64.h (ia64_builtins): Add IA64_BUILTIN_BSP and
4155         IA64_BUILTIN_FLUSHRS.
4157         * config/ia64/ia64.md (flushrs): New insn to flush the register
4158         stack.  Add to unspec list.
4160         * config/ia64/crtbegin.asm (frame_object): Change size.
4161         (__do_frame_setup_aux): New function.
4162         * config/ia64/crtend.asm: call __do_frame_setup_aux.
4163         * config/ia64/t-ia64 (LIB2ADDEH): Add.
4164         * Makefile.in (LIB2ADDEH): Add.
4165         (LIB2ADD): Use LIB2ADDEH.
4167 2000-05-24  Richard Henderson  <rth@cygnus.com>
4169         * recog.c (offsettable_address_p): If mode size is zero, assume
4170         BIGGEST_ALIGNMENT.
4172 2000-05-24  J. David Anglin  <dave@hiauly.hia.nrc.ca>
4174         * configure.in: Check for -Wno-long-long option support and improve
4175         handling of warning CFLAGS for stages 1 and 2.
4176         * Makefile.in (WARN_CFLAGS): Move definition to configure.in.
4177         * configure: Regenerate.
4179 Wed May 24 19:37:53 2000  Jeffrey A Law  (law@cygnus.com)
4181         * gcc.texi: Remove contributor list.  Instead include contrib.texi.
4182         * contrib.texi: New file.
4184 Thu May 25 02:27:22 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4186         * loop.c (basic_induction_var): Avoid double recording of an increment.
4188 Thu May 25 02:19:27 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4190         * Back out this patch:
4191         Tue Dec  7 19:22:06 1999  Richard Henderson  <rth@cygnus.com>
4192           * loop.h (struct induction): Add multi_insn_incr.
4193           * loop.c (basic_induction_var): New multi_insn_incr argument.
4194           Set it if we search back through previous insns for the biv.
4195           (record_biv): New multi_insn_incr argument; fill in struct induction.
4196           (strength_reduce): Discard an iv with multiple bivs, any of
4197           which require multiple insns to increment.
4199         * loop.c (check_insn_for_bivs): Remove bits copied from above patch.
4201 Thu May 25 02:09:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4203         * rtl.h (loc_mentioned_in_p): Declare.
4204         * reload.c (loc_mentioned_in_p): Moved from here...
4205         * rtlanal.c (loc_mentioned_in_p): to here.  No longer static.
4206         Fix loop increment for 'E' handling.
4207         * loop.c (strength_reduce): When doing biv->giv conversion,
4208         take multi-insn biv increments into account.
4210 2000-05-24  Jason Merrill  <jason@casey.soma.redhat.com>
4212         * stmt.c (expand_end_bindings): Look through NOTEs to find a
4213         BARRIER.
4215 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
4217         * calls.c (expand_call): Handle cleanups in tail-recursion
4218         arguments analagously to cleanups in sibling calls.
4220 2000-05-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4222         * simplify-rtx.c: Rename macro SIGN_EXTEND to HWI_SIGN_EXTEND.
4223         All callers changed.
4225 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
4227         * expr.c (expand_assignment, store_expr, expand_expr,
4228         expand_expr_unaligned): Set in_check_memory_usage while emitting
4229         chkr_check_addr libcall.
4231 2000-05-24  Nick Clifton  <nickc@cygnus.com>
4233         * fold-const.c (extract_muldiv): When constructing a
4234         multiplier/divisor, do not expect const_binop to correctly
4235         determine if overflow has occured, so check explicitly.
4237 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
4239         * c-decl.c (build_enumerator): Don't modify the value's type,
4240         convert it.
4242 2000-05-24  Andreas Jaeger  <aj@suse.de>
4244         * mips.h (LINKER_ENDIAN_SPEC): Pass -EL to linker by default.
4246 2000-05-24  Eric Christopher <echristo@cygnus.com>
4248         * configure.in: Redefine inhibit_libc conditions.
4249         * libgcc2.c: Remove inhibit_libc conditional define.
4250         * configure: Regenerate.
4252 2000-05-24  Phil Edwards  <pme@sourceware.cygnus.com>
4254         * configure.in:  For --enable-languages=LIST, check for empty LIST.
4255         * configure:  Regenerate.
4257 2000-05-24  Lars Brinkhoff  <lars@nocrew.org>
4259         * pdp11.h (STACK_BOUNDARY): Define.
4261 2000-05-24  Jakub Jelinek  <jakub@redhat.com>
4263         * ifcvt.c (if_convert): Update life info globally.
4265 2000-05-24  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
4267         * emit-rtl.c (unshare_all_decls): New function.
4268         (unshare_all_rtl): Call it.
4270 2000-05-23  Nick Clifton  <nickc@cygnus.com>
4272         * configure.in: Treat 'strongarm' as if it were 'arm' when
4273         determining cpu type.
4275         * configure: Regenerate.
4277         * config/arm/arm.c: Change 'char *' to 'const char *' for cases
4278         where constant strings are involved.
4280         * config/arm/arm.h (arm_condition_codes): Change type to 'const
4281         char *'.
4283         * config/arm/arm-protos.h: Change 'char *' to 'const char *' for
4284         cases where constant strings are involved.
4286 Tue May 23 15:08:31 2000  Clinton Popetz  <cpopetz@cygnus.com>
4288         * config/sh/sh.c (gen_far_branch, split_branches): Update
4289         to reflect new prototypes for redirect_jump and invert_jump.
4290         (sh_insn_length_adjustment): Get rid of const warnings.
4292 2000-05-23  Kazu Hirata  <kazu@hxi.com>
4294         * invoke.texi (Options for Debugging Your Program or GCC): Update
4295         the names of dump files.
4297 Tue May 23 13:58:52 2000  Philippe De Muyter  <phdm@macqel.be>
4299         * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
4300         * configure: Regenerated.
4302 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
4304         * simplify-rtx.c (SIGN_EXTEND): New macro.
4305         (simplify_unary_operation, simplify_binary_operation,
4306         simplify_relational_operation): Use SIGN_EXTEND.  Make low
4307         halves of (low, high) pairs unsigned if they weren't already.
4308         (simplify_ternary_operation): Cast INTVAL to unsigned before
4309         comparing to a MODE_BITSIZE.
4311 2000-05-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4313         * aclocal.m4 (gcc_AC_CHECK_DECL, gcc_AC_CHECK_DECLS): New macros
4314         rewritten from the internals of gcc_AC_NEED_DECLARATION{S}.
4316         * configure.in (gcc_AC_CHECK_DECLS): Call this instead of
4317         gcc_AC_NEED_DECLARATIONS.
4319         * dwarfout.c: Don't prototype time().
4321         * gcc.c: Check HAVE_DECL_* instead of NEED_DECLARATION_*.
4323         * system.h: Likewise.
4325         * toplev.c: Likewise.
4327 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
4329         * c-decl.c (pushdecl): Invert sense of test for non-global types.
4331 Tue May 23 18:11:42 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4333         * reload1.c (reload_cse_move2add): Honor TRULY_NOOP_TRUNCATION.
4335 2000-05-23  Jonathan Larmour  <jlarmour@redhat.co.uk>
4337         * config/mips/elf64.h (CTOR_LISTS_DEFINED_EXTERNALLY): Define
4339 Tue May 23 06:50:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4341         * config/alpha/alpha.c: Remove #ifdef HAIFA since now only scheduler.
4342         (alpha_start_function): Never write ..ng label if VMS or NT.
4343         (alpha_align_insns): Remove GP_IN_USE arg.
4344         Alignment now unsigned.
4345         (alpha_reorg): Don't pass GP_IN_USE arg to alpha_align_insns.
4346         * config/alpha/alpha.md (prologue_ldgp): Split into one define_expand
4347         and two define_insn's.
4349 2000-05-22  Richard Henderson  <rth@cygnus.com>
4351         * combine.c (simplify_comparison): Use trunc_int_for_mode.
4353 2000-05-22  Richard Henderson  <rth@cygnus.com>
4355         * stor-layout.c (place_field): Change rli->size to rli->offset.
4357 2000-05-22  Richard Henderson  <rth@cygnus.com>
4359         * function.c (thread_prologue_and_epilogue_insns): Make sure
4360         existing line number notes appear after the prologue.
4362 Mon May 22 21:49:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4364         * config/alpha/alpha.c (alpha_fnname): New static variable.
4365         (print_operand, case '~'): New case.
4366         (alpha_expand_prologue): Emit prologue_ldgp insn if needed.
4367         (alpha_start_function): Set alpha_fnname.
4368         Write "ng" label if no ldgp; don't write ldgp insn.
4369         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): New case '~'.
4370         * config/alpha/alpha.md (prologue_ldgp): New define_insn.
4372 Mon May 22 11:30:48 2000  Clinton Popetz  <cpopetz@cygnus.com>
4374         * jump.c (jump_optimize_1): Don't increment LABEL_NUSES
4375         on deleted labels.
4377 2000-05-22  Zack Weinberg  <zack@wolery.cumb.org>
4379         * varasm.c (eh_frame_section): Revert change to argument list.
4381 Mon May 22 13:14:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4383         * optabs.c (can_extend_p): Allow unsignedp to have any nonzero value.
4384         (gen_extend_insn, can_fix_p, can_float_p): Likewise.
4386         * final.c (final_scan_insn, case NOTE_INSN_FUNCTION_BEG): Remove
4387         dangling "else" that causes "break" to be conditional.
4388         Also remove unneeded code at start.
4390 Mon May 22 17:31:35 2000  Philippe De Muyter  <phdm@macqel.be>
4392         * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1.
4393         * fx80/fx80.h, i370/i370.h, m88k/m88k.h (STORE_FLAG_VALUE): Ditto.
4394         * gmicro/gmicro.h, we32k/we32k.h (STORE_FLAG_VALUE): Ditto.
4396 2000-05-22  Jakub Jelinek  <jakub@redhat.com>
4398         * config/sparc/sparc.md (movdf_insn_v9only_vis): fzero has
4399         just one argument.
4401 Mon May 22 06:57:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4403         * alias.c (record_component_aliases): New function.
4404         * tree.h: Clean up some declarations and comments.
4405         (record_component_aliases): New declaration.
4406         * tree.c (get_alias_set): If type and has alias set, use it.
4408 2000-05-22  Richard Henderson  <rth@cygnus.com>
4410         * simplify-rtx.c (simplify_ternary_operation): Try to simplify
4411         IF_THEN_ELSE to a setcc form.
4412         * jump.c (can_reverse_comparison_p): Be prepared for insn null.
4414 2000-05-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4416         * fixinc/inclhack.def (sun_malloc): Handle `calloc'.
4417         (sun_malloc, sysz_stdtypes_for_sun): Add test_text.
4419 Sun May 21 16:42:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4421         * combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is
4422         not a PARALLEL.
4424 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
4426         * config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
4427         * config/mn10300/mn10300.c (print_operand): Likewise.
4429         * final.c (split_double): Right shift of negative values is not
4430         portable.
4432         * ifcvt.c (if_convert): Scan and kill dead code.
4434         * emit-rtl.c (unshare_all_rtl): Store the copied rtx.
4436 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
4438         * diagnostic.c: Eliminate implicit int.
4439         * except.c, gcc.c: Add static prototypes.
4440         * final.c (final_end_function): Mark file arg ATTRIBUTE_UNUSED.
4441         * gensupport.c (process_rtx): Use XVEC to initialize vector
4442         slot of 'split'.
4444         * print-rtl.c: If DEBUG_REGISTER_NAMES, define static
4445         debug_reg_names instead of static reg_names.  If not, define
4446         global reg_names.
4447         * regclass.c: Don't define global reg_names unless
4448         DEBUG_REGISTER_NAMES is defined.
4450         * reload1.c (order_regs_for_reload): Remove unused variable.
4451         * varasm.c: Include output.h after defaults.h.  Define
4452         eh_frame_section as function of no args, not of unspecified args.
4454         * gcc.c: Constify argbuf; arguments to store_arg,
4455         process_command, main; elements of struct command and struct
4456         switchstr; local variables in execute, process_command, main.
4458 2000-05-20  Bruce Korb  <bkorb@gnu.org>
4460         * fixinc/inclhack.def:  many applications of c_fix=format + tests
4461         * fixinc/check.diff:  regenerated
4462         * fixinc/fixincl.x:  regenerated
4464 Sat May 20 09:30:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4466         * alias.c: Clarify some comments.
4467         (record_base_value): REGNO is unsigned.
4468         * rtl.h (record_base_value): Likewise.
4470         * alias.c (aliases_everything_p): Don't special-case QImode here.
4471         * c-common.c (c_get_alias_set): Do it here.
4472         Handle BIT_FIELD_REF by getting alias info for arg.
4473         Use POINTER_TYPE_P.
4475 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
4477         * mklibgcc.in: Restore rule to create ${dir}.
4479 Sat May 20 08:45:41 2000  H.J. Lu  <hjl@gnu.org>
4481         * Makefile.in (libgcc.mk): Depend on xgcc$(exeext) for
4482         GCC_FOR_TARGET used by MULTILIBS.
4483         * mklibgcc.in: Make sure each .o file depends on the
4484         directory it will be in.
4485         Make the multilib directory depends libgcc.
4487 Sat May 20 08:29:28 2000  H.J. Lu  <hjl@gnu.org>
4489         * Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1.
4491 Sat May 20 07:27:35 2000  Alexandre Oliva  <aoliva@cygnus.com>
4493         * fold-const.c (make_range): Handle degenerated intervals.
4494         Fixes c-torture/execute/991221-1.c
4496 Fri May 19 18:16:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4498         * cse.c (cse_basic_block): Only call find_reg_note if REG_NOTES not 0.
4499         * reload.c (find_equiv_reg): Likewise.
4500         * alias.c (init_alias_analysis): Likewise.
4501         Only call prologue_epilogue_contains on insns.
4502         * basic-block.h (REG_SET_TO_HARD_REG_SET): Call new function.
4503         * bb-reorder.c (hard-reg-set.h): Include earlier.
4504         * haifa-sched.c (hard-reg-set.h): Likewise.
4505         * ifcvt.c (hard-reg-set.h): Likewise.
4506         * local-alloc.c (hard-reg-set.h): Likewise.
4507         * loop.c (hard-reg-set.h): Likewise.
4508         * predict.c (hard-reg-set.h): Likewise.
4509         * regrename.c (hard-reg-set.h): Likewise.
4510         * flow.c (hard-reg-set.h): Likewise.
4511         (reg_set_to_hard_reg_set): New function.
4512         * bitmap.c (regs.h, basic-block.h): No longer include.
4513         (bitmap.h): Now include.
4514         * conflict.c (hard-reg-set.h): Include.
4515         * profile.c (hard-reg-set.h): Likewise.
4516         * print-rtl.c (hard-reg-set.h): Likewise.
4517         * sbitmap.c (hard-reg-set.h): Likewise.
4518         * toplev.c (hard-reg-set.h): Likewise.
4519         * unroll.c (hard-reg-set.h, basic-block.h): Likewise.
4520         * hard-reg-set.h (reg_names): Now constant.
4521         * regs.h (reg_names): Likewise.
4522         * regclass.c (reg_names): Likewise.
4523         * loop.h (basic-block.h): No longer include.
4524         (bitmap.h): Now include.
4525         * reload1.c (order_regs_for_reload): Avoid loop over reg sets.
4526         * Makefile.in (LOOP_H, sbitmap.o, profile.o): Reflect above changes.
4527         (toplev.o, print-rtl.o, conflict.o, unroll.o, bitmap.o): Likewise.
4529 2000-05-19  Jan Hubicka  <jh@suse.cz>
4530             Richard Henderson  <rth@cygnus.com>
4532         * basic-block.h (struct edge_def): New field "count".
4533         (struct basic_block_def): Likewise.
4534         * flow.c (entry_exit_blocks): Add count fileds.
4535         (split_edge): Keep count information up-to-date.
4536         (dump_edge_info, dump_flow_info): Dump count fields.
4538         * final.c (count_instrumented_edges): Rename to edge from arc.
4539         (end_final): Update users.
4540         * profile.c: Include expr.h, basic-block.h.
4541         (struct adj_list, ARC_TARGET, ARC_SOURCE, ARC_COUNT): Kill.
4542         (struct bb_info, label_to_bb, label_to_bb_size, bb_graph): Kill.
4543         (ignore_next_note, return_label_execution_count): Kill.
4544         (bbg_file_name, da_file_name): Kill.
4545         (edge_info, bb_info): New structures.
4546         (EDGE_INFO, BB_INFO, GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): New macros.
4547         (count_instrumented_edges, total_num_edges): Rename to edge from arc.
4548         (total_num_edges_instrumented): Likewise.
4549         (init_arc, expand_spanning_tree): Kill.
4550         (fill_spanning_tree, tablejump_entry_p): Kill.
4551         (instrument_edges):  Rewrite from instrument_arcs to use
4552         commit_edge_insertions infrastructure.
4553         (compute_branch_probabilities): Remove arguments; rewrite for
4554         CFG infrastructure; use rtl_dump_file directly.
4555         (branch_prob, find_spanning_tree): Likewise.
4556         (union_groups, find_group): New.
4557         (init_branch_prob): Make bbg_file_name and da_file_name local.
4558         (end_branch_prob): Use rtl_dump_file directly.
4559         (init_edge_profiler): Rename to edge from arc.
4560         (output_arc_profiler): Kill.
4561         (gen_edge_profiler): New.
4562         (output_func_start_profiler): Turn off profiling.  Make the
4563         constructor static when we can.
4564         * rtl.h (branch_prob, end_branch_prob): Update prototypes.
4566         * toplev.c (DFI_flow): Remove.
4567         (DFI_cfg, DFI_life): New.
4568         (dump_file): Update accordingly.
4569         (compile_file): Call end_branch_prob if profile_arc_flag too.
4570         (rest_of_compilation): Move flow1 cfg creation to DFI_cfg.  Do edge
4571         profiling after the CFG is built.  Move flow1 life analysis to
4572         DFI_life.  Always estimate remaining probabilities.
4574 2000-05-19  Richard Henderson  <rth@cygnus.com>
4576         * ifcvt.c (find_if_case_2): Don't allow THEN to be EXIT.
4578         * flow.c (make_edges): The sibling call edge to exit is abnormal.
4580 2000-05-19  Richard Henderson  <rth@cygnus.com>
4582         * jump.c (redirect_jump): Add delete_unused argument.  Don't
4583         remove labels and code following when LABEL_NUSES goes to zero.
4584         (invert_jump): Likewise.
4585         (jump_optimize_1): Fix redirect/invert arguments.
4586         (do_cross_jump, thread_jumps): Likewise.
4587         * flow.c (split_edge): Likewise.
4588         * reorg.c (optimize_skip): Likewise.
4589         (reorg_redirect_jump, relax_delay_slots, dbr_schedule): Likewise.
4590         * profile.c (instrument_arcs): Likewise.
4591         * loop.c (find_and_verify_loops): Likewise.  Fix indentation.
4592         * rtl.h: Update prototypes.
4594 Fri May 19 12:05:13 2000  Clinton Popetz  <cpopetz@cygnus.com>
4596         * ssa.c (convert_from_ssa): Tell life_analysis we need death
4597         notes.
4598         (make_regs_equivalent_over_bad_edges): Only look at abnormal
4599         critical edges.
4601 2000-05-19  Zack Weinberg  <zack@wolery.cumb.org>
4603         * cpphash.c (funlike_macroexpand): Make sure not to walk p1
4604         past l1 when deleting whitespace and markers.
4606         * cpplex.c (_cpp_scan_until): Clear AUX field of tokens.
4607         * cpplib.c (do_unassert): Put the list to compare against on
4608         the stack.
4610 2000-05-19  Bruce Korb  <bkorb@gnu.org>
4612         * fixinc/README:  cleaned up old documentation
4613         * fixinc/check.diff: regenerated & verified on OSR5 on ix86
4614         * fixinc/check.tpl: compute the list of needed directories
4615         emit "#if defined(name)" because of conflict
4616         omit machine name differences from output differences
4617         * fixinc/inclhack.def( m88k_multi_incl ):  Use `wrap' function
4618         (machine_name): change test text to use `sed' markers
4619         * fixinc/fixincl.x: regen
4621 Fri May 19 06:49:35 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4623         * config/elfos.h (SELECT_SECTION): Don't access DECL_INITIAL of
4624         a CONSTRUCTOR.
4626 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
4628         * gcc.texi (MULTILIB_EXCEPTIONS): Correct example and update
4629         it to match the current practice.
4631 2000-05-18  Mark Mitchell  <mark@codesourcery.com>
4633         * Makefile.in (STAGESTUFF): Fix typo in spelling of s-under.
4635 2000-05-18  Richard Henderson  <rth@cygnus.com>
4637         * rtlanal.c (insn_dependant_p, insn_dependant_p_1): New.
4638         * rtl.h (insn_dependant_p): Declare it.
4639         * loop.c (strength_reduce): Use it.
4641 2000-05-18  Alexandre Oliva  <aoliva@cygnus.com>
4643         * config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
4644         16-bit and 64-bit clean-up.
4646 2000-05-18 Mark Elbrecht <snowball3@bigfoot.com>
4648         * configure.in (*-pc-msdosdjgpp): Set float_format to none.
4649         * configure: Rebuilt.
4651 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
4653         * genopinit.c: Use $ for escape sequences in optab patterns.
4654         Remove backslashes from optab patterns.  Change $A, $B, $C to
4655         expand to (int) whatever instead of just whatever; remove
4656         explicit (int) from all optab patterns.
4658         * gensupport.c (xmalloc, xrealloc, xstrdup): Provide.
4659         * genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c,
4660         genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c,
4661         genrecog.c: Remove private copies of xmalloc, xrealloc, and
4662         xstrdup.
4664 2000-05-18  Richard Henderson  <rth@cygnus.com>
4666         * jump.c (jump_optimize_1): Base minimum insn count during
4667         find_cross_jump on BRANCH_COST.
4669 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
4671         * print-rtl.c (print_rtx): Only print note line number as string
4672         if between NOTE_INSN_BIAS and NOTE_INSN_MAX.
4673         * final.c (final_scan_insn): Do nothing for note line number 0.
4675 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
4677         * gcc-common.c (ggc_mark_rtx_children): Mark NOTE_EXPECTED_VALUE
4678         from NOTE_INSN_EXPECTED_VALUE notes and NOTE_SOURCE_FILE from
4679         NOTE_INSN_DELETED_LABEL.
4681 2000-05-18  Nick Clifton  <nickc@cygnus.com>
4683         * config/arm/unknown-elf.h (UNIQUE_SECTION): Place constant,
4684         uninitialised data in .rodata not .bss, and do not interpret an
4685         error in the initialisation value as meaning that the variable
4686         should be placed in the .bss section.
4688 Thu May 18 12:10:18 2000  Philippe De Muyter  <phdm@macqel.be>
4690         * configure.in (NO_MINUS_C_MINUS_O): Test `$ac_cv_prog_cc_${ac_cc}_c_o',
4691         not `$ac_cv_prog_cc_cc_c_o'.
4692         * configure: Regenerated.
4694 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
4695             Richard Henderson  <rth@cygnus.com>
4697         * c-common.h (enum c_tree_index): Add g77 type entries.
4698         (g77_integer_type_node, g77_uinteger_type_node): New.
4699         (g77_longint_type_node, g77_ulongint_type_node): New.
4700         * c-decl.c (init_decl_processing): Initialize them.
4702 2000-05-18  Richard Henderson  <rth@cygnus.com>
4704         * config/h8300/h8300.md (subs patterns): Use %G to negate.
4706         * config/h8300/h8300.c (ok_for_bclr): Take a HOST_WIDE_INT.
4707         (small_power_of_two): Likewise; use exact_log2.
4708         (adds_subs_operand, one_insn_adds_subs_operand): Remove.
4709         (output_adds_subs): Remove.
4710         (two_insn_adds_subs_operand): New.
4711         (split_adds_subs): New.
4712         * config/h8300/h8300-protos.h: Update.
4713         * config/h8300/h8300.h (CONST_OK_FOR_J): Cast to uns HOST_WIDE_INT.
4714         (CONST_OK_FOR_L): Match strict adds operands.
4715         (CONST_OK_FOR_N): Match struct subs operands.
4716         * config/h8300/h8300.md (adds_subs insns): Remove.
4717         (addhi patterns): Output adds/subs directly.
4718         (addsi_h8300h): Likewise.
4719         (addhi/addsi splitters): New.  Decompose two_insn_adds_subs_operand.
4721 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
4723         * cppexp.c (parse_assertion): New.
4724         (lex): Call it for CPP_HASH.  Remove CPP_ASSERTION case.
4725         (_cpp_parse_expr): Remove case '#'.  Don't set
4726         parsing_if_directive.
4727         * cpphash.c (collect_objlike_expansion,
4728         collect_funlike_expansion, collect_params,
4729         _cpp_create_definition): The list no longer has a trailing
4730         VSPACE token.
4731         * cpphash.h (enum node_type): Add T_ASSERTION.
4732         (struct hashnode): Remove aschain, add pred.
4733         (struct predicate): New.
4734         Update prototypes.
4736         * cpplex.c (expand_token_space): Handle both offset and
4737         nonoffset lists.
4738         (init_token_list, _cpp_free_token_list, _cpp_parse_assertion): Delete.
4739         (_cpp_init_toklist, _cpp_clear_toklist, _cpp_free_toklist,
4740         _cpp_slice_toklist, _cpp_squeeze_toklist, _cpp_equiv_tokens,
4741         _cpp_equiv_toklists): New.
4742         (_cpp_scan_line): Rename to _cpp_scan_until; add ability to
4743         stop at any single-character token, not just newline.
4744         (_cpp_lex_token): Remove special cases for #define and #if.
4745         (cpp_get_token): Expect # as a separate token type.  Remove
4746         DIRECTIVE case.
4747         (_cpp_get_directive_token): Remove DIRECTIVE case.
4748         (_cpp_lex_line, _cpp_lex_file, _cpp_init_input_buffer): Update.
4750         * cpplib.c (_cpp_check_directive): Set dirno and
4751         SYNTAX_INCLUDE bit of flags, not dir_handler and dir_flags.
4752         (_cpp_handle_directive): Run # <number> through the same logic
4753         as normal directives.
4754         (do_define): Don't set parsing_define_directive.  Use
4755         _cpp_scan_until.  The list does not have a VSPACE at the end.
4756         (do_if): Save, clear, and restore only_seen_white around
4757         _cpp_parse_expr.
4758         (skip_if_group): s/CPP_DIRECTIVE/CPP_HASH/
4759         (do_assert, do_unassert): Rewrite.
4761         * cpplib.h (TTYPE_TABLE): Remove CPP_ASSERTION.
4762         (LIST_OFFSET): New flag.
4763         (struct cpp_toklist): Replace dir_handler and dir_flags with
4764         dirno and flags.
4765         (struct cpp_reader): Remove parsing_if_directive and
4766         parsing_define_directive.
4768 2000-05-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4770         * fixinc/inclhack.def (broken_cabs): Update fix to handle comments
4771         following the cabs decl which terminate on the following line.
4772         Add the corresponding test_text case.
4774 2000-05-18  Neil Booth  <NeilB@earthling.net>
4776         * cppinit.c (cpp_reader_init): Initialise col_adjust and
4777         default tab stop size.
4778         (no_num, OPT_ftabstop): New.
4779         (handle_option): Handle "ftabstop=" command-line option.
4780         (print_help): Document it.
4781         * cpplex.c (COLUMN): Remove.
4782         (handle_newline): Reset col_adjust.
4783         (skip_whitespace): Update col_adjust as tabs encountered.
4784         (_cpp_lex_line): Update to use col_adjust.  Call
4785         skip_whitespace for all whitespace.
4786         * cpplib.h (struct cpp_options): New member tabstop.
4787         (struct cpp_reader): New member col_adjust.
4788         (CPP_BUF_COL): Update.
4789         (CPP_BUF_COLUMN): New.
4790         * cpp.texi: Document "-ftabstop=" command line option.
4792 Wed May 17 18:19:41 2000  Philippe De Muyter  <phdm@macqel.be>
4794         * configure.in (NO_MINUS_C_MINUS_O): Macro made availabe for AC_OUTPUT
4795         files.
4796         * configure: Rebuilt.
4798 Wed May 17 18:06:12 2000  John David Anglin <dave@hiauly1.hia.nrc.ca>
4800         * mklibgcc.in Add missing -DL$name when compiling modules in libgcc1.c.
4802         * tree.c (build_common_tree_nodes): Do not build TI nodes unless
4803         HOST_BITS_PER_WIDE_INT is >= 64.
4805 2000-05-17  Richard Henderson  <rth@cygnus.com>
4807         * jump.c (jump_optimize_1): Remove inactive but real insns
4808         in jump-to-next-insn optimization.
4810 2000-05-17  Richard Henderson  <rth@cygnus.com>
4812         * toplev.c (rest_of_compilation): Don't call optimize_mode_switching
4813         unless OPTIMIZE_MODE_SWITCHING.  Conditionally set no_new_pseudos.
4814         Don't call recompute_reg_usage if no_new_pseudos is true.
4815         * lcm.c (optimize_mode_switching): Move ifdefs outside function.
4816         Return true if we did work; update global life information.
4817         * basic-block.h (optimize_mode_switching): Update decl.
4819 2000-05-17  Neil Booth  <neilb@earthling.net>
4821         * cpplex.c (expand_name_space): Don't use ptrdiff_t.
4823 2000-05-17  Zack Weinberg  <zack@wolery.cumb.org>
4825         * cpplib.c: New feature, #pragma system_header.
4826         * cpp.texi: Document special treatment of system headers, and
4827         the various mechanisms to get a header that special treatment.
4829 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4831         * system.h (offsetof): Define at the very end, to ensure we prefer
4832         the platform's definition if available.
4834 2000-05-16  Bruce Korb  <bkorb@gnu.org>
4836         * fixinc/fixincl.c: improve the debug displays, ignore SIGPIPE
4837         * fixinc/server.c: likewise
4838         * fixinc/fixfixes.c( char_macro_def_fix ): fix regex
4839         + #ifdef debugging code + use #def constant for
4840         sub-pattern count
4841         * fixinc/inclhack.def( hpux11_fabsf ): Keep HP-UX 11 from stomping
4842         on C++ math namespace
4844 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4846         * fixinc/fixfixes.c (char_macro_use_fix, char_macro_def_fix):
4847         Don't check the return value of sprintf.  Use asprintf to avoid
4848         buffer overflows.
4850 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
4852         * flags.h (warn_unused_function, warn_unused_label,
4853         warn_unused_parameter, warn_unused_variable, warn_unused_value):
4854         Replace ``warn_unused''.
4855         (set_Wunused): Add declaration.
4856         * toplev.c (set_Wunused): New function.
4857         (warn_unused_function, warn_unused_label, warn_unused_parameter,
4858         warn_unused_variable, warn_unused_value): New variables.
4859         (W_options): Add -Wunused-function, -Wunused-function,
4860         -Wunused-label, -Wunused-parameter, -Wunused-variable and
4861         -Wunused-value.  Delete -Wunused.  Handled in decode_W_option.
4863         * toplev.c (decode_W_option): Update -Wunused flags by calling
4864         set_Wunused.
4865         * c-decl.c (c_decode_option): Ditto for -Wall.
4867         * stmt.c (expand_expr_stmt, expand_expr_stmt,
4868         warn_about_unused_variables): Replace warn_unused with more
4869         explicit warn_unused_value et.al.
4870         * function.c (expand_function_end): Ditto.
4871         * c-typeck.c (internal_build_compound_expr,
4872         internal_build_compound_expr): Ditto.
4873         * c-decl.c (poplevel, pop_label_level): Ditto.
4874         * toplev.c (check_global_declarations): Replace warn_unused with
4875         check for either warn_unused_function or warn_unused_variable.
4877         * gcc.1, invoke.texi (Warning Options): Document
4878         -Wunused-function, -Wunused-function, -Wunused-label,
4879         -Wunused-parameter, -Wunused-variable and -Wunused-value options.
4881 Wed May 17 10:28:12 2000  Philippe De Muyter  <phdm@macqel.be>
4883         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
4884         $(srcdir), not in the current directory.
4886 2000-05-16  Richard Henderson  <rth@cygnus.com>
4888         * config/ia64/crtbegin.asm (__dso_handle): Mark hidden if the
4889         assembler supports it.
4890         (.fini, .init): Use a gp-relative indirect call.
4891         (__do_global_dtors_aux): Preserve the gp; rebundle.
4892         (__do_frame_setup): Likewise.
4893         * config/ia64/crtend.asm (.IA_64.unwind): Don't terminate with -1.
4894         (.init): Use a gp-relative indirect call.
4895         (__do_global_ctors_aux): Preserve the gp.
4897 2000-05-16  Richard Henderson  <rth@cygnus.com>
4899         * flow.c (commit_one_edge_insertion): Be prepared for a return
4900         insn to be inserted on the edge with a normal jump.
4901         * jump.c (jump_optimize_1): Don't look to create return isns.
4903         * flow.c (flow_delete_insn): Don't adjust reference count of notes.
4904         * jump.c (jump_optimize_1): Likewise.
4905         (returnjump_p): Verify the argument is a JUMP_INSN.
4906         * rtl.def (NOTE): Add 5th element for NOTE_INSN_DELETED_LABEL.
4908 2000-05-16  Nick Clifton  <nickc@cygnus.com>
4910         * config/m32r/m32r.c (small_insn_p): Use INSN_P() to replace
4911         GET_RTX_CLASS (GET_CODE ()) == 'i'.
4912         (large_insn_p): Ditto.
4913         (m32r_is_insn): New function: Return true if the insn contains
4914         an executable instruction.
4915         (m32r_adjust_insn): Use m32r_is_insn.
4916         (m32r_sched_reorder): Use m32r_is_insn.
4917         (m32r_sched_variable_issue): Use m32r_is_insn.
4919 2000-05-16  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4921         * rs6000/rs6000.c (rs6000_select_section): Treat CONSTRUCTOR like
4922         VAR_DECL.
4924         * rs6000/sysv4.h (ASM_OUTPUT_DWARF_ADDR): Delete unused variable.
4926         * rs6000/sysv4.h (CPP_OS_LINUX_SPEC): Define __unix and __linux
4927         according to given options.
4929 Tue May 16 12:17:31 2000  Jeffrey A Law  (law@cygnus.com)
4931         * mn10200.h (PREFERRED_RELOAD_CLASS): Do not prefer DATA_REGS
4932         if X has VOIDmode either.
4933         (LIMIT_RELOAD_CLASS): Similarly.
4935         * mn10200.md (indirect_jump, tablejump): Use "register_operand",
4936         not "general_operand" to match the processor's capabilities.
4938 2000-05-16  Bruce Korb  <bkorb@gnu.org>
4940         * fixinc/README:  corrected return address
4941         * fixinc/check.diff:  regenerate, now that test works
4942         * fixinc/fixfixes.c(format_fix,format_write): reformatted
4943         (char_macro_def_fix,char_macro_use_fix): corrected and
4944         rewrote to use regex to parse the text
4945         * fixinc/inclhack.def: more testing
4946         * fixinc/fixincl.x:  regenerated
4948         * fixinc/inclhack.def: added several "test_text" attributes
4949         changed several fixes to use `c_fix = format'
4950         re-alphabetized the fixes
4952         * fixinc/check.diff: regenerate
4953         * fixinc/fixincl.x: regenerate
4954         * fixinc/check.tpl: added `sparc' and `netinet' to the list
4955         of created dirs
4958 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
4960         * config/mn10300/mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Remove.
4962 2000-05-15  Richard Henderson  <rth@cygnus.com>
4964         * toplev.c (rest_of_compilation): Run full jump pass before
4965         find_basic_blocks of flow2.
4967 2000-05-15  Richard Henderson  <rth@cygnus.com>
4969         * jump.c: Fix typos and clarify commentary from last change.
4970         (any_condjump_p): Verify SET_SRC is an IF_THEN_ELSE.
4971         (safe_to_remove_jump_p): Remove.
4972         (condjump_label): Use pc_set.
4974 2000-05-15  Richard Henderson  <rth@cygnus.com>
4976         * ifcvt.c (cond_exec_process_insns): Drop USE and CLOBBER insns
4977         that get in the way after reload.
4978         (cond_exec_process_if_block): Skip a label heading THEN block.
4980 2000-05-15  Richard Henderson  <rth@cygnus.com>
4982         * varasm.c (output_constant_pool): Abort instead of converting
4983         (improperly) deleted labels to zero.
4985 2000-05-16  Neil Booth  <NeilB@earthling.net>
4987         * cpplex.c (parse_string2): Update comment.
4988         (cpp_lex_line): No special assertion treatment for '('.
4989         * cpplib.c (DIRECTIVE_TABLE): Remove SYNTAX_ASSERT.
4990         * cpplib.h (SYNTAX_ASSERT): Remove.
4992 Mon May 15 21:45:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4994         * jump.c (condjump_p):  Mark as depreached.
4995         (any_condump_p): New.
4996         (any_uncondump_p): New.
4997         (pc_set): New.
4998         (safe_to_remove_jump_p): New.
4999         * rtl.h (any_condump_p, any_uncondjump_p, pc_set
5000         safe_to_remove_jump_p): Declare.
5002 Mon May 15 21:07:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5004         * calls.c: Re-install both patches reverted by last patch.
5005         (struct arg_data): New field tail_call_reg.
5006         (initialize_argument_information): Initialize tail_call_reg
5007         (load_register_parameters): New argument flags, use
5008         tail_call_reg when emiting tail call sequence.
5009         (expand_call): Update call of load_register_parameters;
5010         copy unadjusted_args_size to adjusted_args_size.
5012 Mon May 15 19:01:42 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5014         * loop.c (scan_loop, strength_reduce, loop_optimize): Change unroll_p
5015         and bct_p parameters to flags.
5016         * loop.h (LOOP_UNROLL, LOOP_BCT): New constants.
5017         * rtl.h (loop_optimize): Update prototype.
5018         * toplev.c (rest_of_compilation): Update call of loop_optimize.
5020 2000-05-15  Jakub Jelinek  <jakub@redhat.com>
5022         * calls.c (expand_call): Move expand_start_target_temps call after
5023         start_sequence().
5025 2000-05-15  Neil Booth  <NeilB@earthling.net>
5027         * cpphash.c (trad_stringify, warn_trad_stringify,
5028         collect_params): Make some pointers pointers to const.
5029         * cpplex.c (auto_expand_name_space) Guaranteed to always
5030         expand by at least one character.
5031         (SPELL_CHAR, SPELL_NONE): Temporarily reverse order.
5032         (struct token_spelling): Use const U_CHAR * rather than PTR.
5033         (expand_name_space): Fix up token pointers if name space
5034         is moved when expanding.
5035         (INIT_NAME, cpp_scan_line, parse_name, parse_number,
5036         parse_string2, save_comment, spell_token, cpp_output_list):
5037         Update so the routines handle tokens with a direct pointer to
5038         their text, rather than an offset into the token's list's namebuf.
5039         (_cpp_lex_line): Rearrange for clarity.
5041         * cpplib.c (_cpp_check_directive): Similarly.
5042         (do_define): Make SYM a pointer to const.
5043         * cpplib.h (struct cpp_name): Replace offset with direct pointer.
5044         (CPP_INT, CPP_FLOAT): Spelling type should be SPELL_IDENT.
5045         (TOK_OFFSET): Delete.
5046         (TOK_NAME): Update.
5048 2000-05-14  Geoffrey Keating  <geoffk@cygnus.com>
5050         * config/rs6000/rs6000.h (RETURN_ADDRESS_OFFSET): Correct for
5051         64-bit ABI.
5053         * config/rs6000/rs6000.c (logical_operand): Rewrite to take MODE
5054         into account.
5055         (logical_u_operand): Delete.
5056         (non_logical_cint_operand): Rewrite to take MODE into account.
5057         (non_logical_u_cint_operand): Delete.
5058         (boolean_operator): New function.
5059         (print_operand): Add new %q operand.
5060         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_operator,
5061         remove logical_u_operand and non_logical_u_cint_operand,
5062         update logical_operand and non_logical_cint_operand.
5063         * config/rs6000/rs6000.md: Rewrite the patterns for performing
5064         logical operations to use %q.
5066         * config/rs6000/rs6000.md (movsi): Don't modify RTL in-place.
5067         (movdi): Make similar to movsi.
5068         * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): There
5069         is no such thing as a DImode CONST_DOUBLE.
5070         * config/rs6000/rs6000.c (output_toc): Likewise.
5072         * config/rs6000/rs6000.c (output_cbranch): Don't output prediction
5073         codes when old mnemonics are in use.  Print register names
5074         for cc registers when requested.
5076         * optabs.c (expand_float): Don't allow mode widening that causes
5077         double rounding.
5079         * invoke.texi (RS/6000 and PowerPC Options): Update -m64/-m32
5080         flags to their current names -maix64 and -maix32.
5082 2000-05-14  Bruce Korb  <bkorb@gnu.org>
5084         * fixinc/fixfixes.c(wrap_fix): new fix - inserts text before
5085         and/or after current text of file
5086         * fixinc/fixlib.c(must_malloc):
5087         * fixinc/fixlib.h(must_malloc): + reformatting
5088         * fixinc/inclhack.def: replace the "1i" and "$a" sed commands
5089         with usages of ``c_fix = wrap;''
5090         Add several tests and use the ``c_fix = format'' fixer more.
5091         * fixinc/fixincl.x: regen
5092         * fixinc/check.diff: regen
5093         * fixinc/check.tpl: emit the associated header with the missing
5094         test message
5096 Sun May 14 17:58:59 2000  Hans-Peter Nilsson  <hp@axis.com>
5098         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Do not use unset
5099         variables $src and $dst.
5101 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
5103         * diagnostic.h (DIAGNOSTICS_SHOW_PREFIX_ONCE): New macro.
5104         (DIAGNOSTICS_SHOW_PREFIX_NEVER): Likewise.
5105         (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE): Likewise.
5106         (struct output_buffer: emitted_prefix_p, prefixing_rule): New
5107         fields.
5108         (set_message_prefixing_rule): Declare.
5110         * diagnostic.c: (current_prefixing_rule): New variable.
5111         (set_message_prefixing_rule): Define.
5112         (output_set_prefix): Adjust buffer->emitted_prefix_p.
5113         (init_output_buffer): Adjust Initialization.
5114         (output_emit_prefix): Rewrite.  Take prefixing rules into account.
5116 Sat May 13 11:05:47 2000  Philippe De Muyter  <phdm@macqel.be>
5118         * ifcvt.c (if_convert): Do not free NULL.
5120 2000-05-12  Nick Clifton  <nickc@cygnus.com>
5122         * config/fr30/fr30.c (fr30_move_double): New function:  Emit code
5123         to move a double word value.
5124         (di_operand): New function: Return true if the operand is suitbale
5125         for a double word move operation.
5126         (nonimmediate_di_operand): New function: Return true if the
5127         operand is a DImode register or MEM.
5129         * config/fr30/fr30.h (PREDICATE_CODES): Add di_operand and
5130         nonimmediate_di_operand.
5132         * config/fr30/fr30-protos.h Add fr30_move_double, di_operand, and
5133         nonimmediate_di_operand.
5135         * config/fr30/fr30.md (movdi): New pattern.  Required because
5136         other patterns generate DImode results.
5137         (movdi_insn): New pattern.
5139 2000-05-12  Richard Henderson  <rth@cygnus.com>
5141         * config/alpha/alpha.c (struct shadow_summary): Define
5142         bitfields as type unsigned int.
5144 Sat May 13 00:09:59 2000  Denis Chertykov  <denisc@overta.ru>
5146         * config/avr/t-avr: Added definition of FLOAT while generates
5147         fp-bit.c
5149         * config/avr/avr.md: `NEXT_INSN (insn)' substituted to `insn' in
5150         peepholes for tst+jump = sbrs/sbrc optimization.
5152 Fry May 12 20:03:00 CEST 2000  Jan Hubicka  <jh@suse.cz>
5154         * expr.c (emit_push_insn): Do not adjust stack pointer when
5155         preallocating.
5157 Fri May 12 19:03:58 2000  Philippe De Muyter  <phdm@macqel.be>
5159         * ggc-simple.c (offsetof): Macro fallback definition moved from here ..
5160         * system.h (offsetof): ... to here.
5162 2000-05-12  Richard Henderson  <rth@cygnus.com>
5164         * Makefile.in (final.o): Depend on BASIC_BLOCK_H.
5165         * final.c (final_end_function): Use app_disable.  Rearrange note
5166         handling into a switch.  Emit deleted labels.
5167         (output_asm_label): Generate label strings for deleted labels.
5168         * flow.c (tail_recursion_label_list): New.
5169         (find_basic_blocks_1): Set label_value_list directly.  Collect list
5170         of tail recursion labels from call_placeholders.  Don't add deleted
5171         labels to the label value list.
5172         (cleanup_cfg): Use free_EXPR_LIST_list.
5173         (flow_delete_insn_chain): Turn non-removable labels into notes.
5174         (flow_delete_block): Don't disable deleting the block because of
5175         a non-removable label.
5176         (tail_recursion_label_p): New.
5177         (merge_blocks_move_predecessor_nojumps): Don't disable the merge
5178         because of a label.
5179         (merge_blocks_move_successor_nojumps): Likewise.  Also move a
5180         jump table.
5181         (merge_blocks): Disable a merge because of tail recursion labels.
5182         * ifcvt.c (merge_if_block): Don't disable a merge because of a label.
5183         Use a more accurate measure of not merging the join block.
5184         (find_if_block): Don't disable conversion because of a label.
5185         (find_if_case_1, find_if_case_2): Likewise.
5186         * jump.c (duplicate_loop_exit_test): Preserve the kind of list
5187         element when copying.
5188         (squeeze_notes): Also leave EH notes.
5189         (mark_jump_label): Ignore deleted labels.  Use an INSN_LIST for
5190         REG_LABEL notes.
5191         (delete_insn): Preserve LABEL_NAME in NOTE_SOURCE_FILE when
5192         deleting a label.
5193         * print-rtl.c (print_rtx): Print NOTE_SOURCE_FILE for
5194         NOTE_INSN_DELETED_LABEL.  Print `[# deleted]' for a label_ref
5195         referring to a deleted label.  Convert tail handling to a switch.
5196         * rtl.def (CODE_LABEL): Rearrange elements to be compatible with NOTE
5197         for NOTE_INSN_DELETED_LABEL.
5198         (NOTE): Fix commentary.
5199         * rtl.h (REG_LABEL): Update commentary wrt INSN_LIST.
5200         (REG_CC_SETTER, REG_CC_USER, REG_LIBCALL): Likewise.
5201         (CODE_LABEL_NUMBER, LABEL_NAME): Update index.
5202         (LABEL_NUSES, LABEL_REFS): Likewise.
5203         * unroll.c (copy_loop_body): Don't copy NOTE_INSN_DELETED_LABEL.
5205 2000-05-12  Bruce Korb  <bkorb@gnu.org>
5207         * fixinc/fixfixes.c(format_write): buglet & relaxed rules
5208         * fixinc/check.diff: updated
5209         * fixinc/inclhack.def: corrected & added some test_text-s
5210         * fixinc/genfixes: removed unneeded options to autogen invocation
5211         * fixinc/fixincl.tpl: Specified the output file
5212         * fixinc/fixfixes.c: visual appearance
5213         * fixinc/fixincl.x: regenerate
5215 2000-05-12  Zack Weinberg <zack@wolery.cumb.org>
5217         * fixinc/fixfixes.c (IO_use_fix, IO_defn_fix, CTRL_use_fix,
5218         CTRL_defn_fix): Delete.
5219         (fix_char_macro_defines, fix_char_macro_uses): Rename to
5220         char_macro_def_fix and char_macro_use_fix, respectively.  Put
5221         them into the FIXUP_TABLE.  Get the string to search for from
5222         a c_fix_arg.
5224         (format_write): New function.
5225         (format_fix): Use it.
5227         (FIX_PROC_HEAD): Constify text parameter.
5228         (machine_name_fix): Constify all char *s.
5229         * fixtests.c (skip_quote): Remove double static.
5231         * inclhack.def (io_def_quotes, io_use_quotes, ctrl_def_quotes,
5232         ctrl_use_quotes): Update for new scheme.
5233         * fixincl.x: Regenerate.
5235 2000-05-12  Alexandre Oliva  <aoliva@cygnus.com>
5237         * config/mn10300/mn10300.h (PREFERRED_DEBUGGING_TYPE): Redefine as
5238         DWARF2_DEBUG.
5239         (DWARF2_ASM_LINE_DEBUG_INFO): Define.
5240         (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
5242 2000-05-11  Robert Lipe <robertlipe@usa.net>
5244         * fixinc/inclhack.def (hpux8_bogus_inlines): Delete bypass for SCO.
5245         * fixincl.x: Regenerate.
5247 2000-05-11  Richard Henderson  <rth@cygnus.com>
5249         * calls.c: Revert both 05-09 patches.
5251 2000-05-11  Alexandre Oliva  <aoliva@cygnus.com>
5253         * config/mn10300/mn10300.c (print_operand): Print FP constants in
5254         hexadecimal.
5255         * config/mn10300/mn10300.md (movsf, movdf): Use the `F' constraint
5256         for FP values.
5258         * mklibgcc.in (EQ): Define it to an equal sign in the Makefile,
5259         and replace any occurrences of `=' in multilib dirs with `$(EQ)'.
5261 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
5263         * fixinc/fixincl.c (run_compiles): Don't crash on null pz_machine.
5265 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
5267         * fixinc/fixfixes.c, fixinc/fixtests.c: Update commentary.
5269 Thu May 11 22:28:05 2000  Denis Chertykov  <denisc@overta.ru>
5271         * config/avr/avr-protos.c (jump_over_one_insn_p): New declaration.
5272         * config/avr/avr.c (jump_over_one_insn_p): New function.
5273         * config/avr/avr.md: New peepholes added. Output test and
5274         conditional jump to "sbrc" or "sbrs" command.
5276 2000-05-11  Mark Elbrecht  <snowball3@bigfoot.com>
5278         * cppmain.c (main): Use IS_DIR_SEPARATOR.
5280 2000-05-11  Jakub Jelinek  <jakub@redhat.com>
5282         * except.c (find_exception_handler_labels_1): New function.
5283         (find_exception_handler_labels): Split into two functions, dive
5284         into CALL_PLACEHOLDERs when looking for exception handler labels.
5286 2000-05-11 Stan Cox <scox@cygnus.com>
5288         * regrename.c (replace_reg_in_block): Improve REG_DEAD handling.
5289         * timevar.def (TV_RENAME_REGISTERS): Move before TV_SCHED2.
5290         * toplev.c (rest_of_compilation): Call regrename_optimize before sched2.
5292 2000-05-11  Bruce Korb  <bkorb@gnu.org>
5294         * fixinc/fixfixes.c (double_slash_fix):  obsolete
5295         (else_endif_label_fix): obsolete
5296         (format_fix):  new, unused as yet
5297         (main): obsolete
5298         * fixinc/fixlib.h: added fix description struct for use by format_fix
5299         * fixinc/fixincl.c: removed the struct & test for SIGIOT befure using
5300         * fixinc/Makefile.in:  compile fixfixes.c and fixtests.c as separate
5301         modules.  Removed the vestiges of the script version.
5302         Added support for "make check".
5303         * fixinc/check.diff: base diff file (needs work!!)
5304         * fixinc/check.tpl: quiet the fixup output
5305         * fixinc/fixtests.c (main): obsolete
5306         * fixinc/fixincl.sh:  don't bother copying fixincl to ..
5307         * fixinc/fixincl.tpl:  provide for arguments to c_fix routines
5309 Thu May 11 11:57:02 MET DST 2000  Jan Hubicka <jh@suse.cz>
5311         * toplev.c (rest_of_compilation): Remove dead code after
5312         combine.
5314 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
5316         * cpphash.c (collect_funlike_expansion): Make "# is not
5317         followed by a macro argument name" a pedwarn, not an error.
5318         Preserve the # in the output.  Suppress the warning if lang_asm.
5320 Thu May 11 01:19:31 2000  Jeffrey A Law  (law@cygnus.com)
5322         * configure.in (hppa*64*-*-hpux11*): New target for PA64 support.
5323         * configure: Rebuilt.
5325 2000-05-10 Laurynas Biveinis <lauras@softhome.net>
5327         * i386/xm-djgpp.h (XREF_FILE_NAME): Add mising brace.
5329 2000-05-10  Kazu Hirata  <kazu@hxi.com>
5331         * combine.c (try_combine): Fix a typo.
5333 Wed May 10 21:31:44 2000  Jim Wilson  <wilson@cygnus.com>
5335         * config/ia64/ia64.md (insv): Add comment.
5337 2000-05-10  Richard Henderson  <rth@cygnus.com>
5339         * Makefile.in (libgcc.a, stmp-multilib): Depend on FPBIT and DPBIT.
5340         * mklibgcc.in: Rewrite to not use functions.  Don't shortcut
5341         dependancies on FPBIT and DPBIT.
5343 2000-05-10  Nick Clifton  <nickc@redhat.com>
5345         * flow.c (find_auto_inc): Do not bias REG_N_REFS by loop_depth
5346         when optimising for size.
5347         (mark_used_regs:) Ditto.
5348         (try_pre_increment_1): Ditto.
5350 2000-05-10  Zack Weinberg  <zack@wolery.cumb.org>
5352         * cppexp.c (lex): Use %.*s to print non-NUL-terminated string.
5353         Make error message friendlier.
5355         * cpphash.h (struct hashnode): Use struct hack for name
5356         member.
5357         * cpphash.c (struct hashdummy): New.
5358         (eq_HASHNODE): Second argument is a hashdummy, not a HASHNODE.
5359         (make_HASHNODE): No need to set ->name pointer.  Correct
5360         setting of p.
5361         (cpp_lookup): Make 'dummy' a struct hashdummy.  Tidy up a bit.
5363 2000-05-10  Richard Henderson  <rth@cygnus.com>
5365         * flow.c (find_basic_blocks_1): Remove any spare bb_note
5366         after completion.
5368 2000-05-10  Bruce Korb  <bkorb@gnu.org>
5370         * fixinc/gnu-regex.c:  reg_syntax_t re_syntax_options must be static
5372 2000-05-10  Eric Schweitz  <schweitz@nortelnetworks.com>
5374         * dwarfout.c (dwarfout_finish): Call retry_incomplete_types
5375         after we enter .debug.
5377 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
5379         * dwarf2out.c (gen_subprogram_die): Fixup die_parent for the
5380         abstract instance of a nested inline function.
5382         * stor-layout.c (finish_record_layout): finalize_type_size
5383         before laying out the pending_statics.
5385 Wed 10 May 09:36:47 2000  Neil Booth  <NeilB@earthling.net>
5387         * cpplex.c (spell_token): New function.
5388         (spell_string, spell_comment, spell_name): fold into
5389         spell_token.
5390         (I, S): Add macros.
5391         (E, H): Remove macros.
5392         (save_comment): Save comment opening characters too.
5393         (_cpp_lex_file): Update to use spell_token.  Tidy up comment
5394         handling.
5395         * cpplib.h (I, S): Add macros.
5396         (E, H): Remove macros.
5397         (TTYPE_TABLE): Update entries for new speller.
5398         (SYNTAX_ASSERT): Remove.
5400 Wed 10 May 09:08:30 2000  Neil Booth  <NeilB@earthling.net>
5402         * cpplex.c (_cpp_lex_line): Maintain PREV_WHITESPACE flag
5403         when removing escaped newlines.  Reverse sense of test for
5404         escaped newline.
5406 2000-05-09  Richard Henderson  <rth@cygnus.com>
5408         * flow.c (find_basic_blocks_1): Do not delete the first
5409         bb_note we run across.
5410         (create_basic_block): Use reorder_insns to move an existing
5411         bb_note to the correct place.
5413 2000-05-09  Richard Henderson  <rth@cygnus.com>
5415         * calls.c (expand_call): Increment currently_expanding_call
5416         before calling optimize_tail_recursion.
5418 Tue May  9 18:54:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5420         * reload1.c (reload_combine): Fix errors in last change.
5422 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
5424         * gcc.c (used_arg): Skip over a semicolon at the end of the
5425         split-up loop; don't break out of it.
5427         * Makefile.in (WARN_CFLAGS): Add -Wwrite-strings.
5428         (tree.o): Depend on output.h.
5430         * c-decl.c (pending_invalid_xref_file,
5431         current_function_prototype_file): Constify.
5432         (pushdecl): Constify a local char *.
5433         (define_label): Constify filename parameter.
5434         * c-lex.c (init_parse): Constify parameter and return value.
5435         * c-typeck.c (c_expand_asm_operands): Constify filename parameter.
5436         * c-tree.h: Update prototypes.
5437         * c-parse.in: Constify filename member of %union, and if_stmt_file.
5438         * c-parse.y, c-parse.c, c-parse.h, objc/objc-parse.y,
5439         objc/objc-parse.c: Regenerate.
5441         * dwarfout.c (dwarfout_init): Constify main_input_filename parameter.
5442         * dwarfout.h: Update prototypes.
5443         * expr.c (expand_expr): Constify a local char *.
5444         * flags.h: Constify main_input_filename.
5445         * function.c (expand_function_end): Constify filename parameter.
5446         * genrecog.c (make_insn_sequence): Use a character array for
5447         c_test_pos.
5448         (main): Remove unused variables.
5449         * input.h: Constify input_filename, main_input_filename, and
5450         file_stack.name.  Update prototypes.
5451         * output.h: Declare first_global_object_name and
5452         weak_global_object_name here, as const char *.
5453         * stmt.c (expand_asm_operands): Constify filename parameter.
5454         * toplev.c (compile_file, push_srcloc, debug_start_source_file):
5455         Constify filename parameter.
5456         (input_filename, main_input_filename): Constify.
5457         * toplev.h: Update prototypes.
5458         * tree.c: Include output.h.  Don't declare
5459         first_global_object_name or weak_global_object_name.  Clean up string
5460         bashing in get_file_function_name_long.
5461         * tree.h (struct tree_decl): Constify filename member.
5462         (input_filename): Constify.
5463         Update prototypes.
5464         * varasm.c (first_global_object_name, weak_global_object_name):
5465         Constify.
5466         (assemble_start_function, assemble_variable): Clean up string bashing.
5468         * gcc.c: Constify all spec-related strings initialized,
5469         transitively, from string constants.  Constify all strings
5470         and string variables related to multilibs.
5471         (set_spec, read_specs): Cast argument to free to PTR.
5472         (used_arg): Do not modify multilib_matches.  Use strncmp plus
5473         length comparison to compare multilib switches.
5474         * genmultilib: Constify everything declared in multilib.h.
5476 Tue May  9 22:28:03 2000  Denis Chertykov  <denisc@overta.ru>
5478         * flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn
5479         as deleted.
5481 Tue May  9 20:52:43 2000  Denis Chertykov  <denisc@overta.ru>
5483         * config/avr/avr-protos.h (extra_constraint): change a type of
5484         second argument from char to int to avoid warnings.
5485         (asm_output_byte): Likewise.
5487         * config/avr/avr.c (MAX_LD_OFFSET) New macro.
5488         (initial_elimination_offset): Handle elimination from
5489         FRAME_POINTER_REGNUM to STACK_POINTER_REGNUM.
5490         (legitimate_address_p): Use MAX_LD_OFFSET.
5491         (legitimize_address): Likewise.
5492         (out_movqi_r_mr): Likewise.
5493         (out_movhi_r_mr): Likewise, use `fatal_insn' instead of `fatal'.
5494         (out_movsi_r_mr): Use MAX_LD_OFFSET.
5495         (out_movsi_mr_r): Likewise.
5496         (out_movqi_mr_r): Likewise.
5497         (out_movhi_mr_r): Likewise.
5498         (notice_update_cc): Correct CC for the ashrqi3 with the shift
5499         count as CONST_INT != 6.
5500         (ashlqi3_out): Coding style modifications. Run `fatal_insn' if
5501         shift count is a CONSTANT_P, but not a CONST_INT.
5502         (ashlhi3_out): Coding style modifications.
5503         (ashlsi3_out): Likewise.
5504         (ashrhi3_out): Likewise.
5505         (ashrsi3_out): Likewise.
5506         (lshrhi3_out): Likewise.
5507         (lshrsi3_out): Likewise.
5508         (ashrqi3_out): Generate shift for any known constant count without
5509         scratch register. Run `fatal_insn' if shift count is a CONSTANT_P,
5510         but not a CONST_INT.
5511         (lshrqi3_out): Coding style modifications. Run `fatal_insn' if
5512         shift count is a CONSTANT_P, but not a CONST_INT.
5513         (extra_constraint): change a type of
5514         second argument from char to int to avoid warnings.
5515         (asm_output_byte): Likewise.
5516         (asm_file_end): Output size generated commands count as a hex
5517         number too.
5519         * config/avr/avr.h (RETURN_ADDR_RTX): New macro.
5521         * config/avr/avr.md (addhi3): Fragment commented by &&0 is
5522         removed.
5523         (ashlqi3): Values of "length" attribute changed. Shift count
5524         uses constraints 'n' instead of 'i'.
5525         (ashrqi3): Likewise. Values of "cc" attribute changed. Generate
5526         shifts without clobber register.
5527         (lshrqi3): Shift count uses constraints 'n' instead of 'i'.
5528         (call_insn): Correct test for which_alternative == 1 (was 0).
5529         (call_value_insn): Likewise.
5531         * config/avr/t-avr: Remove definition of FLOAT while generates
5532         fp-bit.c
5534 2000-05-09  Bruce Korb  <bkorb@gnu.org>
5536         * fixinc/check.tpl:  Template for checking fixes
5537         * fixinc/inclhack.def:  Added 'test_text' for many fixes
5538         disable hpux8_bogus_inlines on SCO
5539         * fixinc/fixinc.sco:  Oh, yes, we don't need this any more.
5541 Tue May  9 16:30:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5543         * calls.c (expand_call): Reorganize somewhat in order
5544         to avoid unnecesary recalculation inside loop and make
5545         tail call failure code cleaner.
5547 Tue May  9 06:30:20 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5549         * alias.c (nonlocal_reference_p): Minor reformatting.
5550         * reload.c (find_equiv_reg): Simplify logic for
5551         CALL_INSN_FUNCTION_USAGE since can't have SUBREG or pseudos and
5552         some some reformatting.
5553         * reload1.c (reload_combine): Don't assume everything in
5554         CALL_INSN_FUNCTION_USAGE is a REG and clean up code a bit.
5556 2000-05-08  Richard Henderson  <rth@cygnus.com>
5558         * final.c (current_insn_predicate): New.
5559         (final_scan_insn): Set it.
5560         * output.h (current_insn_predicate): Declare.
5562         * ifcvt.c (cond_exec_process_insns): New argument prob_val.
5563         Attach it to call insns.
5564         (cond_exec_process_if_block): Track probability for true and
5565         false branches.
5566         (dead_or_predicable): Likewise.
5568         * predict.c (PROB_NEVER, PROB_VERY_UNLIKELY): New.
5569         (PROB_UNLIKELY, PROB_EVEN, PROB_LIKELY): New.
5570         (PROB_VERY_LIKELY, PROB_ALWAYS): New.
5571         (estimate_probability, expected_value_to_br_prob): Use them.
5573         * config/ia64/ia64-protos.h (ia64_expand_prediction): Declare.
5574         * config/ia64/ia64.c (ia64_print_operand_address): Handle 'j'.
5575         (ia64_expand_prediction): New.
5576         (emit_insn_group_barriers): Don't look at notes.  Emit barriers
5577         as needed after calls.
5578         (ia64_epilogue_uses): Mark b0 used.
5579         * config/ia64/ia64.md (beq_true, beq_false): Remove.
5580         (bne_true, bne_false): Remove.
5581         (eq_return, eq_not_return, ne_return, ne_not_return): Remove.
5582         (br_true, br_false): New.  Use predicate_operator and
5583         ia64_expand_prediction.
5584         (return_true, return_false): Likewise.
5585         (call_internal): Use ia64_expand_prediction.  Don't emit stop bit.
5586         (call_internal1, call_value_internal): Likewise.
5587         (call_value_internal1, call_multiple_values_internal1): Likewise.
5589         * config/ia64/ia64.c (ia64_direct_return): Require frame size zero.
5591         * config/ia64/ia64.md (extendsfdf2): Split only after reload.
5593 2000-05-08  Richard Henderson  <rth@cygnus.com>
5595         * rtlanal.c (may_trap_p): Consider old-style and volatile
5596         asms to trap.
5598 Mon May  8 17:16:48 2000  Jim Wilson  <wilson@cygnus.com>
5600         * config/ia64/ia64.h (RETURN_ADDR_RTX): Use COUNT not count.
5602 2000-05-08  Richard Henderson  <rth@cygnus.com>
5604         * config/ia64/ia64.h (predicate_operator): Declare.
5606         * config/ia64/ia64.md (extendsfdf2): Split the nop case out
5607         of existance.
5609         * gensupport.c (process_rtx): Copy and post-process each member
5610         of the define_insn rtvec individually.
5612 Mon  8 May 22:17:35 2000  Neil Booth  <NeilB@earthling.net>
5614         * cpplex.c (spell_token): New function.
5615         (TOKEN_LEN): Add 1 for whitespace.
5616         (_cpp_lex_file): Update to use spell_token.
5617         * cpplib.h (E): Remove.
5618         (TTYPE_TABLE): Update CPP_VSPACE entry.
5620 2000-05-08  Richard Henderson  <rth@cygnus.com>
5622         * flow.c (init_propagate_block_info): Watch out for conditional
5623         branch to next instruction, and thus one outgoing edge.
5625         * config/ia64/ia64.c (ia64_encode_section_info): Exit early
5626         for global register variables; don't special case __[CD]TOR_LIST__;
5627         mind ggc_p for string allocation.
5629 2000-05-08  Nick Clifton  <nickc@cygnus.com>
5631         * config/i386/i386.h (ELIMINABLE_REGS): Fix comment.
5633 2000-05-08  Bruce Korb  <bkorb@gnu.org>
5635         * fixinc/mkfixinc.sh:  fixinc.sco is no longer used
5636         i?86-*-msdosdjgpp* no longer uses fixincludes
5637         * fixinc/genfixes:  inclhack.sh and fixincl.sh are no longer generated
5638         * fixinc/inclhack.sh:  deleted
5639         * fixinc/hackshell.tpl:  deleted
5640         * fixinc/inclhack.tpl:  deleted
5641         * fixinc/Makefile.in:  Remove dependencies on above
5642         * fixinc/fixincl.sh:  "DO NOT EDIT" text modified
5644 2000-05-08  Andreas Jaeger  <aj@suse.de>
5646         * config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
5647         support.
5649 2000-05-07  Zack Weinberg  <zack@wolery.cumb.org>
5651         * Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
5652         substitutions.
5654 Sun  7 May 08:43:53 2000  Neil Booth  <NeilB@earthling.net>
5656         * cpplex.c: Move new lexer definitions and prototypes
5657         to top.  Conditional include these and the code if
5658         NEW_LEXER is defined.  Rename functions whose names
5659         clash if this code included.
5661 Sun May  7 00:54:57 EDT 2000  John Wehle  (john@feith.com)
5663         * rtl.def (COND_EXEC): Clarify.
5665         * i386.md (extendsidi2): Clobber (reg:CC 17) in the
5666         same fashion as zero_extendsidi2.
5668 2000-05-06  Richard Henderson  <rth@cygnus.com>
5670         * config/ia64/ia64.c (predicate_operator): New.
5671         (ia64_print_operand): Handle 'J'.
5672         (rtx_needs_barrier): Handle COND_EXEC.
5673         * config/ia64/ia64.h (BRANCH_COST): Define.
5674         (PREDICATE_CODES): Update.
5675         * config/ia64/ia64.md: Docuement used unspec values.
5676         (attr predicable): New.
5677         (movxf, movxf_internal): New.
5678         (extendsfdf2): Don't comment out nop.
5679         (floatdidf2): Remove.
5680         (truncxfsf2, truncxfdf2, floatdixf2): New.
5681         (abssi2, absdi2): Put the neg in the "true" slot.
5682         (conditional branch instructions): Mark not predicable.
5683         (cmov*_internal): Use predicate_operator.  Split to cond_exec.
5684         (abs*_internal): Likewise.
5685         (alloc, set_bsp): Mark not predicable.
5686         (barrier, insn_group_barrier, flush_cache): Likewise.
5687         (define_cond_exec): New.
5689 2000-05-06  Richard Henderson  <rth@cygnus.com>
5691         * c-decl.c: Include "tm_p.h".
5693         * config/ia64/ia64-protos.h: Rearrange decls to reduce ifdef madness.
5694         (fetchadd_operand, ia64_expand_fetch_and_op): Declare.
5695         (ia64_expand_op_and_fetch): Declare.
5696         * config/ia64/ia64.c: Include "toplev.h".  Kill trailing whitespace.
5697         (setjmp_operand): Constify variables for XSTR.
5698         (ia64_encode_section_info): Likewise.
5699         (ia64_print_operand): Use %d for exact_log2; cast 32-bit printed
5700         values to int.
5701         (ia64_asm_output_external): Constify name.
5702         (process_set): Use HOST_WIDE_INT_PRINT_DEC for frame size.
5703         (process_for_unwind_directive): Provide switch default.
5704         (ia64_expand_compare_and_swap): Remove unused variables.
5705         (ia64_expand_builtin): Likewise.
5706         * config/ia64/ia64.h (ASM_OUTPUT_BYTE): Mask and cast value to int
5707         for printing.
5709         * config/ia64/ia64.c (sdata_symbolic_operand): Mark unused args.
5710         (symbolic_operand, function_operand, setjmp_operand): Likewise.
5711         (shift_count_operand, shift_32bit_count_operand): Likewise.
5712         (shladd_operand, fetchadd_operand, ia64_function_prologue): Likewise.
5713         (ia64_function_epilogue, ia64_setup_incoming_varargs): Likewise.
5714         (ia64_function_arg_partial_nregs, ia64_function_value): Likewise.
5715         (ia64_print_operand_address, ia64_secondary_reload_class): Likewise.
5716         (ia64_expand_builtin): Likewise.
5717         (call_multiple_values_operation): Make dest_regno unsigned.
5719 2000-05-06  Richard Henderson  <rth@cygnus.com>
5721         * rtl.def (DEFINE_COND_EXEC): New.
5722         * md.texi: Document it.
5724         * gensupport.c (input_file): Remove.
5725         (struct queue_elem): Add lineno.
5726         (rtx_ready_queue): Remove.
5727         (errors): New.
5728         (predicable_default): New.
5729         (predicable_true, predicable_false): New.
5730         (define_attr_queue, define_attr_tail): New.
5731         (define_insn_queue, define_insn_tail): New.
5732         (define_cond_exec_queue, define_cond_exec_tail): New.
5733         (other_queue, other_tail): New.
5734         (queue_pattern): New.
5735         (process_rtx): Add patterns to the appropriate queues.
5736         (is_predicable, identify_predicable_attribute): New.
5737         (n_alternatives, collect_insn_data): New.
5738         (alter_predicate_for_insn, alter_test_for_insn): New.
5739         (shift_output_template, alter_output_for_insn): New.
5740         (process_one_cond_exec, process_define_cond_exec): New.
5741         (init_md_reader): Read the entire file.  Process define_cond_exec.
5742         (read_md_rtx): Return elements from the queues.
5744 2000-05-06  Richard Henderson  <rth@cygnus.com>
5746         * flow.c (mark_set_1): Don't update conditional life info
5747         if the register is not_dead.
5749 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
5751         * Makefile.in (STAGESTUFF): Add genrtl.c and genrtl.h.
5752         (mostlyclean): Also delete fixincl, fixinc.sh, and
5753         specs.ready, and make clean in the fixinc subdir.
5755 2000-05-06  Richard Henderson  <rth@cygnus.com>
5757         * Makefile.in (gensupport.o): Compile for the host.
5758         (host-prefix gensuuprt.o): Remove.
5759         (genflags.o): Depend on gensupport.h and OBSTACK_H.
5760         (genattrtab.o): Likewise.
5761         (gencodes.o): Depend on gensupport.h.
5762         (genemit.o, genopinit.o, genrecog.o, genextract.o): Likewise.
5763         (genpeep.o, genattr.o, genoutput.o): Likewise.
5765         * gensupport.c (obstack, rtl_obstack): New.
5766         (init_md_reader): Initialize rtl_obstack.
5767         * gensupport.h (rtl_obstack): Declare.
5768         (message_with_line): Declare.
5770         * genattr.c: Remove all traces of obstack manipulation.
5771         * gencodes.c, genconfig.c, genemit.c, genextract.c: Likewise.
5772         * genopinit.c, genoutput.c, genpeep.c, genrecog.c: Likewise.
5774         * genattrtab.c (obstack, rtl_obstack): Remove.
5775         (main): Don't init rtl_obstack.
5776         * genflags.c: Likewise.
5778         * genrecog.c (message_with_line): Move ...
5779         * gensupport.c: ... here.
5781 2000-05-06  Richard Henderson  <rth@cygnus.com>
5783         * c-typeck.c (build_c_cast): Remove dead code.
5785 2000-05-06  Richard Henderson  <rth@cygnus.com>
5787         * flow.c (split_edge): Don't allocate global_live_at_start for
5788         the new block unless the old blocks had them as well.
5790         * flow.c (mark_set_1): Respect not_dead when updating reg_live.
5792         * ifcvt.c (noce_process_if_block): Don't use an insn_b from
5793         test_bb if a or b uses x.
5795 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
5797         * cpphash.h: Remove conditional #define of __extension__.
5798         * rtl.h: Add __extension__ to RTL_CHECK1, RTL_CHECK2,
5799         RTL_CHECKC1, RTL_CHECKC2, and RTVEC_ELT macros
5800         (ENABLE_RTL_CHECKING only).
5801         * tree.h: Add __extension__ to TREE_CHECK, TREE_CLASS_CHECK,
5802         CST_OR_CONSTRUCTOR_CHECK, and EXPR_CHECK macros
5803         (ENABLE_TREE_CHECKING only).
5804         * varray.h: Add __extension__ to VARRAY_CHECK macro
5805         (ENABLE_CHECKING only).
5807 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5809         Use new tail-calling mechanism on ARM.
5810         * arm.md (sibcall, sibcall_value): New expands.
5811         (sibcall_insn, sibcall_value_insn, sibcall_epilogue): New insns.
5812         (tailcalling peepholes): Delete.
5813         (push_multi): Simplify.
5814         * arm.c (lr_save_eliminated): Delete definition.
5815         (pattern_really_clobbers_lr, function_really_clobbers_lr): Delete.
5816         (output_return_instruction): Remove checks on lr_save_eliminated.
5817         (output_arm_prologue): Remove old tail-calling code.
5818         (arm_output_epilogue): New parameter, really_return.  All callers
5819         changed.  Handle tail-calling epilogues.
5820         * arm.h (lr_save_eliminated): Delete declaration.
5821         (frame_pointer_needed): Delete declaration.
5822         * arm-protos.h (arm_output_epilogue): Adjust prototype.
5824         * arm.md (is_thumb): Examine symbol thumb_code, not expression
5825         TARGET_ARM.
5826         * arm.c (thumb_code): Define it.
5827         (arm_override_options): Set it.
5828         * arm.h (thumb_code): Declare it.
5830 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5832         * arm-protos.h (arm_dllexport_name_p, arm_dllimport_name_p): Constify.
5834 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5836         * arm.c (arm_gen_load_multiple, arm_gen_store_mulitple): Don't add
5837         bogus clobber to insns.
5838         (load_multiple_operation, store_mulitple_operation): Don't check
5839         for it.
5840         * arm.md (ldmsi_postinc, stmsi_postinc): Adjust accordingly.
5842         * arm.md (and_scc, ior_scc): Add missing mode.
5844         * arm.md (call_value_symbol): Remove predicate from op2.
5846         * arm.h (SPECIAL_MODE_PREDICATES): Define.
5848 Sat May  6 06:25:56 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5850         * expr.c (get_subtarget): New function.
5851         (force_operand, expand_expr, do_store_flag): Use it.
5853         * toplev.c (compile_file): Don't take strlen of NAME if null.
5855 2000-05-06  David Edelsohn  <edelsohn@gnu.org>
5857         * xcoffout.c (xcoff_current_include_file,
5858         xcoff_current_function_file, xcoff_lastfile): Constify char *.
5859         (xcoffout_source_file, xcoffout_source_line): Make filename 'const
5860         char *'.
5861         (xcoffout_declare_function): Make name 'const char *'.
5862         (xcoffout_end_epilogue): Make fname 'const char *'
5863         * xcoffout.h (xcoff_current_include_file, xcoff_lastfile,
5864         xcoffout_declare_function, xcoffout_source_line): Match above.
5866         * aix43.h (SUBTARGET_OVERRIDE_OPTIONS): -mpowerpc64 without
5867         -maix64 is error.
5868         * rs6000.c (print_operand): Fix lossage typo.
5869         (output_cbranch): Remove "cr" decoration for now.
5870         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): Make alias 'const char *'.
5872 Sat May  6 06:55:32 2000  Denis Chertykov  <denisc@overta.ru>
5874         * config/avr/avr.c (out_shift_with_cnt): Bugfix for shift by
5875         constant count.
5877 2000-05-05  Bruce Korb  <bkorb@gnu.org>
5879         * fixinc/genfixes: Improve the matching for make target names
5881 2000-05-05  Catherine Moore  <clm@cygnus.com>
5883         * c-common.c (decl_attributes):  For TYPE_DECLs attach the
5884         attribute to the decl.
5885         * c-decl.c (pushdecl): Propagate the USED attribute to the
5886         type copy.
5888 2000-05-05  Richard Henderson  <rth@cygnus.com>
5890         * rtlanal.c (reg_overlap_mentioned_p): Treat parallels in the
5891         same way emit_group_load does.
5893 2000-05-05 Mark Elbrecht <snowball3@bigfoot.com>
5895         * gcc.c (set_input) [HAVE_DOS_STYLE_FILE_SYSTEM]: Skip drive name.
5897         * toplev.c (output_file_directive): Use IS_DIR_SEPARATOR.
5898         (main): Likewise.
5900 2000-05-05 Rodney Brown <RodneyBrown@mynd.com>
5902         * pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
5904 Fri May  5 10:29:21 2000  Marc Espie <espie@cvs.openbsd.org>
5906         * config/openbsd.h (LINK_SPEC): pass correct flags to ld
5907         to support -shared, on platforms with dynamic libraries.
5909 Fri May  5 10:27:06 2000  Philippe De Muyter  <phdm@macqel.be>
5911         * system.h (S_ISBLK): Provide fallback definition.
5913 2000-05-05  Geoff Berry  <geoffb@bops.com>
5915         * extend.texi (Extended Asm): Document inability to give asm
5916         statements access to condition codes.
5918 2000-05-05  Marek Michalkiewicz  <marekm@linux.org.pl>
5920         * varasm.c (asm_emit_uninitialised): Use 0, not NULL
5921         as arg 2 of UNIQUE_SECTION.
5923 Fri May  5 10:11:41 2000  Jeffrey A Law  (law@cygnus.com)
5925         * predict.c: Remove May 4 change.
5926         * bb-reorder.c (make_reorder_chain): Do not perform block movement
5927         if we have predicted the branch at 50-50 probability.
5929 2000-05-05  Richard Henderson  <rth@cygnus.com>
5931         * flow.c (init_propagate_block_info): Fix merge error
5932         in HAVE_conditional_execution code.
5934 Fri May  5 07:43:50 2000  Denis Chertykov  <denisc@overta.ru>
5936         * config/avr/avr.c (out_shift_with_cnt): Genetare a more optimal
5937         shift cycle for unknown shift count. Also generates dec + brpl.
5938         (ashlqi3_out): Don't generate dec + brpl which now generates by
5939         `out_shift_with_cnt'.
5940         (ashlhi3_out): Likewise.
5941         (ashlsi3_out): Likewise.
5942         (ashrqi3_out): Likewise.
5943         (ashrhi3_out): Likewise.
5944         (ashrsi3_out): Likewise.
5945         (lshrqi3_out): Likewise.
5946         (lshrhi3_out): Likewise.
5947         (lshrsi3_out): Likewise.
5949 2000-05-04 Mark Elbrecht <snowball3@bigfoot.com>
5951         * gcc.c (free_split_directories): Correct typo in explanation
5952         of make_relative_prefix.
5954 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
5956         * config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point
5957         comparison codes to branch_comparison_operator.
5959 2000-05-04  Richard Henderson  <rth@cygnus.com>
5961         * ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
5963 2000-05-04  Richard Henderson  <rth@cygnus.com>
5965         * Makefile.in (FPBIT_FUNCS): Remove _df_to_usi.
5966         (DPBIT_FUNCS): Remove _sf_to_usi.
5967         (stmp-multilib): Pass LIB1ASMSRC to libgcc.mk.
5969         * ifcvt.c (noce_process_if_block): Fail if A or B modified
5970         between condition and jump.
5972         * libgcc2.c (near eh_context_specific): Comment #endif string.
5973         * longlong.h: Don't use strings with embedded newlines.
5975 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
5977         * config/rs6000/rs6000-protos.h: Add output_cbranch.
5978         * config/rs6000/rs6000.c (ccr_bit_negated_p): Delete.
5979         (print_operand): Delete %t and %T codes.
5980         (output_cbranch): New function.  Support branch prediction.
5981         * config/rs6000/rs6000.md: Use output_cbranch for
5982         conditional branches and returns.
5984 2000-05-04  Jason Merrill  <jason@casey.cygnus.com>
5986         * simplify-rtx.c (simplify_ternary_operation): Cast to unsigned.
5987         * stor-layout.c (place_field): Likewise.
5988         * integrate.h (struct inline_remap): Make regno_pointer_align unsigned.
5989         * expr.c (store_expr): Make align unsigned.
5990         * explow.c (plus_constant_wide): Make low words unsigned.
5991         * expmed.c (choose_multiplier): Likewise.
5992         * fold-const.c (fold):  Likewise.
5993         * tree.h (build_int_2): Likewise.
5994         * tree.c (build_int_2_wide, tree_int_cst_msb): Likewise.
5995         * emit-rtl.c (gen_reg_rtx): Add cast to unsigned char*.
5996         (init_emit): Change cast to unsigned char*.
5997         * varasm.c (compare_constant_1): Add cast to char*.
5998         * gcse.c (delete_null_pointer_checks): Change cast to unsigned int*.
5999         * reload1.c (reload): Likewise.
6001         * rtl.h (MEM_SET_IN_STRUCT_P): Use do { } while (0).
6003 Thu May  4 14:37:23 2000  Jeffrey A Law  (law@cygnus.com)
6005         * predict.c (estimate_probability): If no prediction was found, then
6006         predict the successor that is the next physical block (if such a
6007         successor exists).
6009 2000-05-04  Richard Henderson  <rth@cygnus.com>
6011         * config/alpha/t-alpha (LIB2FUNCS_EXTRA): Use qrrnd.asm in place.
6013 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6015         * system.h: Don't wrap <sys/types.h> with HAVE_SYS_TYPES_H.
6017 2000-05-04  Mumit Khan  <khan@xraylith.wisc.edu>
6019         * i386/cygwin.h (CPP_PREDEFINES): Don't define __STDC__. Move
6020         attribute macros from here ...
6021         (CPP_SPEC): to here.
6022         * i386/mingw32.h (CPP_PREDEFINES): Likewise.
6023         (CPP_SPEC): Likewise.
6024         * i386/crtdll.h (CPP_PREDEFINES): Delete attribute macros.
6026         * Makefile.in ($(HOST_PREFIX_1)gensupport.o): Add build rule.
6027         (libgcc.a): Pass LIB1ASMSRC to libgcc.mk.
6029 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6031         * bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
6033         * diagnostic (vbuild_message_string, build_message_string,
6034         build_location_prefix, output_get_prefix, init_output_buffer,
6035         output_notice, vline_wrapper_message_with_location,
6036         v_message_with_decl, default_print_error_function): De-constify.
6037         (set_real_maximum_length): Prototype.
6039         * diagnostic.h (struct output_buffer, init_output_buffer,
6040         output_get_prefix, output_set_prefix): De-constify.
6042         * function.c (init_function_start): Constify.
6044         * gensupport.c (remove_constraints, process_rtx): Prototype.
6046         * gthr-posix.h: Indent uses of #pragma.
6048         * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
6049         Prototype.
6051         * predict.c (find_expected_value): Delete prototype.
6052         (expected_value_to_br_prob): Initialize variable `ev_reg'.
6054         * sbitmap.h (debug_sbitmap): Prototype.
6056         * ssa.c (compute_coalesced_reg_partition): Prototype.
6058         * stor-layout.c (debug_rli): Prototype.
6060         * tree.h (round_down): Prototype.
6061         (init_function_start): Constify.
6063 2000-05-04  Zack Weinberg  <zack@wolery.cumb.org>
6065         * cpphash.h: #define __extension__ away if GCC_VERSION < 2095
6066         (overly conservative).  Change extern inline wrappers to
6067         static inline, define them always, use PARAMS properly.
6068         * cpplex.c (_cpp_get_directive_token): Don't issue pedantic
6069         whitespace warnings for \f and \v at the beginning of a line.
6071 Thu May  4 10:03:50 2000  Jeffrey A Law  (law@cygnus.com)
6073         * haifa-sched.c (schedule_insns): Free the flow edge list when it
6074         is no longer needed
6076 2000-05-04  Bruce Korb  <bkorb@gnu.org>
6078         * fixincl/inclhack.def: added broken_cabs -
6079         Remove `extern double cabs' declarations from math.h
6080         * fixincl/inclhack.sh: regen
6081         * fixincl/fixincl.x: regen
6082         * fixincl/fixincl.c: Remove BOGOSITY code
6083         * fixincl/mkfixinc.sh: Remove code for installing "shell" version
6085 Thu May  4 09:45:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6087         * rtl.h (MEM_COPY_ATTRIBUTES): Also copy RTX_UNCHANGING_P and
6088         MEM_ALIAS_SET.
6089         * alias.c (canon_rtx): Don't copy RTX_UNCHANGING_P or MEM_ALIAS_SET
6090         when calling MEM_COPY_ATTRIBUTES.
6091         * emit-rtl.c (operand_subword, change_address): Likewise.
6092         * explow.c (stabilize): Likewise.
6093         * expr.c (protect_from_queue, emit_move_insn_1): Likewise.
6094         * integrate.c (copy_rtx_and_substitute): Likewise.
6095         * combine.c (combine_simplify_rtx): Don't copy RTX_UNCHANGING_P
6096         when calling MEM_COPY_ATTRIBUTES.
6097         (make_extraction, simplify_shift_const, gen_lowpart_for_combine):
6098         Likewise.
6099         * cse.c (gen_lowpart_if_possible): Likewise.
6100         * function.c (fixup_var_refs_1, purge_addressof_1): Likewise.
6101         * optabs.c (gen_move_insn): Likewise.
6102         * recog.c (validate_replace_rtx_1): Likewise.
6103         * simplify-rtx.c (add_mem_for_addr): Likewise.
6104         * stmt.c (expand_anon_union_decl): Likewise.
6105         * config/arm/arm.md: Likewise.
6106         * config/h8300/h7300.c (fix_bit_operand): Likewise.
6107         * config/m88k/m88k.c (legitimize_address, block_move_loop): Likewise.
6108         (block_move_no_loop, block_move_sequence): Likewise.
6109         * config/rs6000/rs6000.c (expand_block_move_mem): Likewise.
6110         * config/alpha/alpha.c (get_aligned_mem): Likewise.
6111         Clear MEM_ALIAS_SET.
6112         * final.c (alter_subreg): Don't copy MEM_ALIAS_SET when calling
6113         MEM_COPY_ATTRIBUTES.
6115 2000-05-03  Robert Lipe <robertlipe@usa.net>
6117         * configure.in (i[34567]86-*-isc*) [tmake_file]: Add t-i386bare
6118         to suppress libgcc1.
6119         (i[34567]86-*-sco3.2v5*) Likewise.
6120         (i[34567]86-*-sco3.2v4*) Likewise.
6121         (i[34567]86-*-sco) Likewise.
6122         (i[34567]86-*-solaris2) Likewise.
6123         (i[34567]86-*-sysv5*) Likewise.
6124         (i[34567]86-*-sysv4*) Likewise.
6125         (i[34567]86-*-udk*) Likewise.
6126         (i[34567]86-*-sysv*) Likewise.
6128 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
6130         * cpphash.h (U): New define, to correct type of string constants.
6131         (ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr): New wrapper
6132         routines, to do casts when passing unsigned strings to libc.
6133         * cppexp.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c: Use them.
6135         * cppfiles.c (_cpp_execute_include): Make filename an U_CHAR *.
6136         * cpphash.c (_cpp_quote_string): Make string an U_CHAR *.
6137         * cppinit.c (dump_special_to_buffer): Make macro name an U_CHAR *.
6138         * cpplex.c (parse_ifdef, parse_include, validate_else): Make
6139         second argument an U_CHAR *.
6141         * cppinit.c (builtin_array): Make name and value U_CHAR *, add
6142         length field, clean up initializer.
6143         (ISTABLE): Add __extension__ to designated-
6144         initializers version.
6145         * cpplex.c (CHARTAB): Likewise.
6147         * mbchar.c: Add dummy external declaration to the !MULTIBYTE_CHARS
6148         case so the file won't be empty.
6150 Wed May  3 21:01:46 2000  Jason Eckhardt  <jle@cygnus.com>
6152         * bb-reorder.c (struct reorder_block_def): Member succ removed.
6153         (REORDER_BLOCK_SUCC): Removed.
6154         (enum reorder_skip_type): Removed.
6155         (skip_insns_between_block): Renamed to skip_insns_after_block.
6156         Removed second argument. Removed dead code and cleaned up.
6157         (make_reorder_chain): Removed use of REORDER_BLOCK_SUCC.
6158         (reorder_basic_blocks): Remove use of REORDER_SKIP_AFTER. Removed
6159         second parameter to skip_insns_after_block.
6161 Wed May  3 13:29:54 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6163         * tree.c (staticp, case LABEL_DECL): New case.
6165 2000-05-03  Richard Henderson  <rth@cygnus.com>
6167         * Makefile.in (start.encap): Do not depend on LIBGCC1.
6169         * mklibgcc1.in: Fix typo last change.
6171 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
6173         * Makefile.in (WARN_CFLAGS): Add -pedantic -Wno-long-long.
6174         (LOOSE_CFLAGS): New: CFLAGS without -pedantic and -Wtraditional.
6175         (GCC_CFLAGS): Use it.
6176         (LANG_FLAGS_TO_PASS): New: SUBDIR_FLAGS_TO_PASS with LOOSE_CFLAGS.
6177         * cp/Make-lang.in, java/Make-lang.in, f/Make-lang.in, ch/Make-lang.in,
6178         objc/Make-lang.in: Use it.
6180 2000-05-03  Jason R Thorpe  <thorpej@zembu.com>
6182         * config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint.
6184 2000-05-03  Richard Henderson  <rth@cygnus.com>
6186         * mklibgcc.in: Restrict OLDCC=GCC test to native.  Equate
6187         LIBGCC1 empty with libgcc1.null.
6189 Wed May  3 12:55:46 2000  Jim Wilson  <wilson@cygnus.com>
6191         * fold-const.c (extract_muldiv, case MAX_EXPR): Don't allow signedness
6192         change.
6194 2000-05-03  Greg McGary  <gkm@gnu.org>
6196         * tree.h (tree_common): Add bounded_flag member.  Remove
6197         inaccurate comment about number of remaining bits.
6198         (BOUNDED_INDIRECT_TYPE_P, BOUNDED_POINTER_TYPE_P,
6199         BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
6200         MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
6201         TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
6202         TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED): New macros.
6203         (TYPE_QUAL_BOUNDED): New constant.
6204         (TYPE_QUALS): Handle bounded qualifier.
6205         (TREE_EXPR_QUALS, TREE_FUNC_QUALS): New macros.
6206         (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
6207         TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
6208         TYPE_AMBIENT_BOUNDEDNESS): New macros.
6209         (MAX_POINTER_DEPTH, VA_LIST_POINTER_DEPTH): New constants.
6210         (tree_type): Add pointer_depth member.  Remove
6211         inaccurate comment about number of remaining bits.
6212         (DECL_POINTER_DEPTH): Add macro.
6213         (tree_decl): Add pointer_depth member.
6215 Wed May  3 22:52:53 2000  Denis Chertykov  <denisc@overta.ru>
6217         * config/avr/avr-protos.h (test_hard_reg_class): Declared.
6218         * config/avr/avr.c (ashrhi3_out): optimized shift by 15.
6219         (lshrhi3_out): Likewise.
6220         (ashrsi3_out): bugfix in shift by 8.
6221         (test_hard_reg_class): New function.
6222         * config/avr/avr.md: Bugfix inside conditions in peepholes.
6223         (ashlhi3): removed define_expand of this pattern.
6224         (*ashlhi3_insn): renamed to ashlhi3.
6225         (ashlsi3): removed define_expand of this pattern.
6226         (*ashlsi3_insn): renamed to ashlsi3.
6227         (ashrqi3): removed define_expand of this pattern.
6228         (*ashrqi3_insn): renamed to ashrqi3.
6229         (ashrhi3): removed define_expand of this pattern.
6230         (*ashrhi3_insn): renamed to ashrhi3.
6231         (ashrsi3): removed define_expand of this pattern.
6232         (*ashrsi3_insn): renamed to ashrsi3.
6233         (lshrhi3): removed define_expand of this pattern.
6234         (*lshrhi3_insn): renamed to lshrhi3.
6235         (lshrsi3): removed define_expand of this pattern.
6236         (*lshrsi3_insn): renamed to lshrsi3.
6238 2000-05-03  Rodney Brown  <RodneyBrown@pmsc.com>
6240         * config/mcore/mcore.c: Replacing inclusion of "stdio,h" with
6241         inclusion of "system.h".
6243 Wed May  3 11:43:53 2000  Jim Wilson  <wilson@cygnus.com>
6245         * config/ia64/ia64.c (ia64_encode_section_info): Add check for
6246         TREE_ASM_WRITTEN.
6248 2000-05-03  David Mosberger  <davidm@hpl.hp.com>
6250         * config/ia64/ia64.c (ia64_override_options): Force -mconstant-gp
6251         if -mauto-pic is on.
6252         (ia64_epilogue_uses): Mark "gp" (r1) as used by the epilogue if
6253         -mconstant-gp is in effect and function-descriptors are being used
6254         to make indirect calls.
6255         * config/ia64/ia64.h (MASK_CONST_GP): New macro.
6256         (MASK_AUTO_PIC): Ditto.
6257         (TARGET_CONST_GP): Ditto.
6258         (TARGET_AUTO_PIC): Ditto.
6259         (TARGET_SWITCHES): Add -mconstant-gp and -mauto-pic options.
6260         (ASM_OUTPUT_DOUBLE_INT): Don't generate @fptr() if -mauto-pic or
6261         -mno-pic is in effect.
6262         (ASM_OUTPUT_XDATA_DOUBLE_INT): Ditto.
6263         * config/ia64/ia64.md (movdi): Use gen_load_gprel64() if
6264         -mauto-pic is in effect.
6265         (gprel64_offset): New pattern.
6266         (load_gprel64): Ditto.
6267         (call): Handle -mauto-pic like -mno-pic (don't use fptr).  If
6268         -mconstant-gp is in effect, no need to preserve gp around direct
6269         calls.
6270         (call_value): Ditto.
6271         * config/ia64/linux.h (PROFILE_BEFORE_PROLOGUE): Define.
6272         (FUNCTION_PROFILER): Define.
6273         * config/ia64/sysv4.h (ASM_OUTPUT_CONSTRUCTOR): Don't generate
6274         @fptr() directive when -mno-pic or -mauto-pic is in effect.
6275         (ASM_OUTPUT_DESTRUCTOR): Ditto.
6277 2000-05-03  Richard Henderson  <rth@cygnus.com>
6279         * Makefile.in (STAGESTUFF): Add libgcc libgcc.mk.
6280         (libgcc1.null, libgcc1.cross, libgcc1.a): Remove targets.
6281         (libgcc1-asm.a, libgcc1.S, libgcc2.a): Remove targets.
6282         (mklibgcc, libgcc.mk): New targets.
6283         (libgcc.a): Use libgcc.mk.
6284         (stmp-multilib): Likewise.
6285         (stmp-multilib-sub): Remove.
6286         (mostlyclean): Don't delete libgcc2 temp files.
6287         * configure.in (AC_PROG_CC_C_O): Add.
6288         (NO_MINUS_C_MINUS_O): Substitute it.
6289         (all_outputs): Add mklibgcc.
6290         * mklibgcc.in: New file.
6292 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
6294         * cppexp.c (op_t): Make an int.
6296         * rtlanal.c (dead_or_set_regno_p): Remove unused variable.
6298         * varasm.c (initializer_constant_valid_p): Fix parenthesis.
6300         * gensupport.c (process_rtx): Fix macros used.
6302 2000-05-03  Richard Henderson  <rth@cygnus.com>
6304         * flow.c (propagate_one_insn): Also don't PROP_REG_INFO for
6305         call-clobbered registers of a call.
6307 Wed May  3 12:40:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
6309         * gensupport.c: New file.
6310         * gensupport.h: New file.
6311         * Makefile.in (HOST_RTL): Depend on gensupport.
6312         (gensupport.o) New rule.
6313         * genattr.c: Use gensupport for reading .md files.
6314         * genattrtab.c: Ditto.
6315         * gencodes.c: Ditto.
6316         * genconfig.c: Ditto.
6317         * genemit.c: Ditto.
6318         * genextract.c: Ditto.
6319         * genflags.c: Ditto.
6320         * genopinit.c: Ditto.
6321         * genoutput.c: Ditto.
6322         * genpeep.c: Ditto.
6323         * genrecog.c: Ditto.
6324         * rtl.def (define_insn_and_split): New DEF_RTL_EXPR.
6325         * md.texi (Insn Splitting): Document define_insn_and_split.
6327 Tue May  2 00:20:30 2000  Jason Eckhardt  <jle@cygnus.com>
6329         * flow.c (verify_flow_info): Added two more sanity checks. The
6330         first checks that the blocks are numbered consecutively. The second
6331         checks that n_basic_blocks is actually equal to the number of
6332         basic blocks in the insn chain.
6334 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
6336         * cpplib.h: Add accessor macros for token lists.
6337         * cpplib.c, cpphash.c, cpplex.c: Use them.
6339 Wed May  3 09:29:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6341         * expr.c (expand_expr, case COMPONENT_REF): Don't check for checking
6342         memory usage if not in a function.
6343         * varasm.c (initializer_constant_valid_p, case ADDR_EXPR): Only
6344         return address if static.
6346 Wed May  3 13:14:49 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6348         * ifcvt.c (noce_try_cmove_arith):  Use may_trap_p to thest
6349         whether address may trap.
6351 Tue May  2 23:38:37 2000  Jason Eckhardt  <jle@cygnus.com>
6353         * bb-reorder (chain_reorder_blocks): Changed code to test for
6354         EDGE_FALLTHRU rather than making erroneous assumption that the
6355         first outgoing edge is the fall-through edge.
6357 Tue May  2 18:20:31 2000  Donald Lindsay  <dlindsay@hound.cygnus.com>
6359         * config/mips/mips.c (mips_build_va_list,mips_va_start,mips_va_arg): new
6360         ABI for varargs, across all MIPS. This is incompatible because the
6361         va_list (__builtin_va_list) structure is different, so a compilation
6362         unit passing a va_list and a compilation unit being passed one, should
6363         both be compiled with the same ABI. (The old structure had two
6364         pointers, now it has three.)
6366 Tue May  2 19:18:43 2000  Jason Eckhardt  <jle@cygnus.com>
6368         * bb-reorder.c (struct reorder_block_def): Remove members end,
6369         block_begin, and block_end.
6370         (REORDER_BLOCK_OLD_END): Delete.
6371         (REORDER_BLOCK_BEGIN): Delete.
6372         (REORDER_BLOCK_END): Delete.
6373         (chain_reorder_blocks): Remove dead code.
6375 Tue May  2 17:06:53 2000  Jason Eckhardt  <jle@cygnus.com>
6377         * bb-reorder.c (remove_scope_notes): Check for both types of scope
6378         notes as the end of a basic block before deleting.
6380 2000-05-02  Mumit Khan  <khan@xraylith.wisc.edu>
6382         * final.c (final_start_function): Fix spelling of "necessary".
6384 2000-05-02  Jason Merrill  <jason@casey.cygnus.com>
6386         * toplev.c (debug_ignore_block): Return int.
6387         * dwarf2out.c (dwarf2out_ignore_block): Likewise.
6388         * toplev.h, dwarf2out.h: Adjust.
6389         * emit-rtl.c (remove_unnecessary_notes): Test return value.
6391         * emit-rtl.c (remove_unnecessary_notes): Fix spelling of "necessary".
6392         * toplev.c, final.c, rtl.h: Adjust.
6394 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6396         * aclocal.m4 (gcc_AC_CHECK_PROG_VER): New macro.
6397         * configure.in: Look for makeinfo in the unified tree, then
6398         for a system makeinfo which is sufficiently new.
6399         * Makefile.in: If configure says makeinfo is too old, don't
6400         build or install Info documentation.
6402 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6404         * cpphash.c (collect_params): Fix off-by-one error.
6405         (dump_hash_helper): Dump all four macro nodetypes.
6407 2000-05-02  Jakub Jelinek  <jakub@redhat.com>
6409         * cpphash.c (trad_stringify): Adjust p after stringification as
6410         well.
6412 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6414         * cpplib.h (CPP_POP, parse_cleanup_t): Delete.
6415         (cpp_buffer): Remove cleanup, seen_eof, manual_pop members.
6417         * cppfiles.c (file_cleanup): Delete.
6418         * cpphash.c (macro_cleanup): Delete.
6419         (collect_objlike_expansion, collect_funlike_expansion,
6420         macarg, scan_arguments): Remove CPP_POP case.
6422         * cpplex.c (null_cleanup): Delete.
6423         (cpp_pop_buffer): Do the work that was done in the cleanups
6424         here.  Call _cpp_unwind_if_stack from here.
6425         (_cpp_expand_to_buffer, cpp_scan_buffer_nooutput,
6426         cpp_scan_buffer): Run until we see CPP_EOF and the top of
6427         stack is the buffer _below_ the one we stacked.
6428         (cpp_get_token): Always pop an exhausted buffer.  Return
6429         CPP_EOF unless it's a macro buffer.  Don't call _cpp_handle_eof.
6430         * cpplib.c (skip_if_group): Don't call cpp_get_token to
6431         increment the line number.
6432         (_cpp_handle_eof): Rename to _cpp_unwind_if_stack.
6434         * fix-header.c (read_scan_file) [parsing getchar()]: Run until
6435         we see CPP_EOF and the top of stack is the buffer _below_ the
6436         one we stacked.
6437         * scan-decls.c: Likewise.
6439 2000-05-02  Andrew Haley  <aph@cygnus.com>
6441         * config/ia64/ia64.c (ia64_encode_section_info): Handle the case
6442         where this function is called for the second time on a decl that
6443         has had its section info changed in such a way as to move it out
6444         of small data/bss.
6445         * config/ia64/ia64.h (REDO_SECTION_INFO_P): New definition.
6447 2000-05-01  Richard Henderson  <rth@cygnus.com>
6449         * ifcvt.c (dead_or_predicable): Set merge_bb->end to the insn before
6450         the sequence we're moving, not to merge_bb->head.
6452 2000-05-01  Richard Henderson  <rth@cygnus.com>
6454         * configure.in (alpha*-*-linux-gnulibc1*) [tmake_file]: Remove
6455         reference to alpha/t-linux.
6456         (alpha*-*-linux-gnu*): Likewise.
6457         * configure: Rebuild.
6459         * calls.c (expand_call): Don't emit reg notes for a sibcall.
6461         * flow.c (calculate_global_regs_live): Skip for_each_successor_phi
6462         if not in SSA form.
6464         * ifcvt.c (if_convert): Only verify_flow_info if ENABLE_CHECKING.
6466 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
6468         * integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and
6469         TREE_THIS_VOLATILE.
6471 2000-05-01  Richard Henderson  <rth@cygnus.com>
6473         * ifcvt.c (noce_emit_cmove): Conditionally compile call to
6474         emit_conditional_move.
6476 2000-05-01  Jakub Jelinek  <jakub@redhat.com>
6478         * config/ia64/linux.h (LINK_SPEC): Use /lib/ld-linux-ia64.so.1
6479         as the dynamic linker.
6481 2000-05-01  Zack Weinberg  <zack@wolery.cumb.org>
6483         * cppfiles.c (open_include_file): Open file in blocking mode.
6484         (read_include_file): Don't fcntl(fd, F_SETFL, 0) anymore.
6485         Only exclude block devices and directories.
6487         * cpphash.c (_cpp_make_hashnode): Rename make_HASHNODE, now
6488         static.  Allocate the hashnode and its string in the same
6489         block of memory.
6490         (del_HASHNODE): Don't free h->name.
6491         (_cpp_lookup): If there is no entry for this string, create
6492         one, of type T_VOID.
6493         (_cpp_lookup_slot): Delete.
6494         * cpphash.h: Update prototypes.
6496         * cpplex.c (maybe_macroexpand): Check for hp->type == T_VOID,
6497         not hp == NULL.
6498         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert,
6499         do_unassert, cpp_defined): Use _cpp_lookup.  Don't create a
6500         node here, just fill in the value field properly.  "Delete"
6501         entries by setting the value field to T_VOID.  Check for
6502         hp->type == T_VOID, not hp == NULL.
6504         * Makefile.in (cpplib.o): Don't depend on $(HASHTAB_H).
6505         * cpperror.c, cppexp.c, cpplex.c, cpplib.c:  Don't include
6506         hashtab.h.
6508 2000-05-01  Alexandre Oliva  <aoliva@cygnus.com>
6510         * config/mn10300/mn10300.c (print_operand_address): Do not add
6511         zero to SP.
6513         * config/mn10300/mn10300.c (expand_epilogue): If SP is to be
6514         adjusted by less than 256 bytes, use ret regardless of having any
6515         callee-saved register to restore.
6517 2000-05-01 Laurynas Biveinis <lauras@softhome.net>
6519         * tm.texi (TARGET_HAS_F_SETFLKW): Fix typo.
6521 2000-05-01 Mark Elbrecht <snowball3@bigfoot.com>
6523         * config/i386/djgpp.h (INT_ASM_OP): Define.
6524         (CPP_PREDEFINES): Rename MSDOS to __MSDOS__.
6525         (ASM_WEAKEN_LABEL): Define.
6526         (MASK_BNU210): Define.
6527         (SUBTARGET_SWITCHES): Define.
6528         (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Define.
6529         (MAKE_DECL_ONE_ONLY): Define.
6530         (UNIQUE_SECTION_P, UNIQUE_SECTION): Define.
6532 2000-05-01  Mumit Khan  <khan@xraylith.wisc.edu>
6534         * i386/cygwin.h (INT_ASM_OP): Define.
6536 Mon May  1 18:20:06 2000  Denis Chertykov  <denisc@overta.ru>
6538         * config/avr/avr.c (address_cost): renamed to avr_address_cost.
6539         * config/avr/avr.h (ADDRESS_COST): use avr_address_cost.
6541 Mon May  1 17:50:44 2000  Denis Chertykov  <denisc@overta.ru>
6543         * config/avr/avr.c (asm_file_start): output 0 as r0 and 1 as r1 in
6544         __tmp_reg__ and __zero_reg__ initialization.
6546 2000-04-30  Richard Henderson  <rth@cygnus.com>
6548         * flow.c (propagate_one_insn): Mark sets even when the insn is dead.
6550         * ifcvt.c (noce_process_if_block): Fail the conversion if X is
6551         referenced bewteen the condition and the jump.  Don't delete
6552         anything but the jump.
6554 Sun Apr 30 22:48:24 2000  Jason Eckhardt  <jle@cygnus.com>
6556         * bb-reorder.c (scope_def): New struct.
6557         (scope_forest_info): New struct.
6558         (struct reorder_block_def): New member "scope".
6559         (REORDER_BLOCK_SCOPE): New macro.
6560         (relate_bbs_with_scopes): New function and prototype.
6561         (make_new_scope): Likewise.
6562         (build_scope_forest): Likewise.
6563         (remove_scope_notes): Likewise.
6564         (insert_intra_1): Likewise.
6565         (insert_intra_bb_scope_notes): Likewise.
6566         (insert_inter_bb_scope_notes): Likewise.
6567         (rebuild_scope_notes): Likewise.
6568         (free_scope_forest_1): Likewise.
6569         (free_scope_forest): Likewise.
6570         (dump_scope_forest): Likewise.
6571         (dump_scope_forest_1): Likewise.
6572         (chain_reorder_blocks): Set REORDER_BLOCK_SCOPE for new block.
6573         Update REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for new
6574         block.
6575         (reorder_basic_blocks): Added calls to build_scope_scope_forest
6576         and remove_scope_notes before reordering is done. Added calls to
6577         rebuild_scope_notes, free_scope_forest, and reorder_blocks after
6578         after reordering is done.
6580 2000-40-30  Bruce Korb  <bkorb@gnu.org>
6582         * fixinc/inclhack.def:  Added definitions needed by OSR5,
6583         removed two stale entries (defined away with OLD_CPP).
6584         * fixinc/inclhack.sh: regen
6585         * fixinc/fixincl.x: regen
6587 2000-04-30  Richard Henderson  <rth@cygnus.com>
6589         * ifcvt.c (dead_or_predicable): Manually squeeze non-movable notes
6590         from the last insn in the sequence.
6592 2000-04-30  Zack Weinberg  <zack@wolery.cumb.org>
6594         * cpplex.c (cpp_idcmp): New function.
6595         * cpplib.h: Prototype it.
6596         * scan_decls.c (scan_decls): Use it to inspect token names.
6597         * fix-header.c (read_scan_file): Likewise.  Set system_header_p on
6598         the file being run through the preprocessor.
6599         (check_macro_names): Provide length of token to cpp_defined.
6601         * Makefile.in: Remove stale warning message.
6603         * cppfiles.c (redundant_include_p): Provide length of token to
6604         cpp_defined.
6605         * cpphash.c (_cpp_make_hashnode, _cpp_lookup_slot): Hash
6606         values are unsigned int.
6607         (_cpp_lookup, _cpp_lookup_slot): Do not calculate the length.
6608         (_cpp_lookup_slot): Do not calculate the hash, either.
6609         * cpphash.h: Update prototypes.
6610         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert):
6611         Hashes are unsigned int.  Calculate hash here, pass by value
6612         to _cpp_lookup_slot.
6614 2000-04-30  Bernd Schmidt  <bernds@cygnus.co.uk>
6616         * simplify-rtx.c (check_value_useless): Delete function.
6617         (discard_useless_locs): Don't call it; manage N_USELES_VALUES counter
6618         by hand.
6619         (cselib_invalidate_regno): Likewise.
6620         (cselib_invalidate_mem_1): Likewise.
6621         (references_value_p): Recognize useless values by the fact that they
6622         have no locations.
6623         (discard_useless_values): Likewise.
6624         (cselib_record_set): This may turn a useless value
6625         into a useful one.
6627 2000-04-30  Richard Henderson  <rth@cygnus.com>
6629         * config/d30v: New port.
6631         * configure.in (d30v-*): Set fp format.
6632         * configure: Rebuild.
6634 2000-04-30  Richard Henderson  <rth@cygnus.com>
6636         * ifcvt.c: New file.
6637         * Makefile.in (OBJS): Add it.
6638         (ifcvt.o): New target.
6639         * jump.c (jump_optimize_1): Remove all code related to if-conversion,
6640         and conditional arithmetic.
6641         (find_insert_position): Remove.
6642         * timevar.def (TV_IFCVT, TV_IFCVT2): New.
6643         * toplev.c (DFI_ce, DFI_ce2): New.
6644         (dump_file): Add ce and ce2 dumps.
6645         (rest_of_compilation): Run if_convert a couple o times.  Set
6646         cse_not_expected after cse2.  Don't set no_new_pseudos until
6647         after sched1 or recompute_reg_usage.
6649 2000-04-30  Richard Henderson  <rth@cygnus.com>
6651         * config/alpha/t-crtbe (crtbegin.o): Add "-I.".
6652         (crtend.o, crtbeginS.o, crtendS.o): Likewise.
6654 2000-04-30  Richard Henderson  <rth@cygnus.com>
6656         * flow.c (struct reg_cond_life_info): New.
6657         (struct propagate_block_info): Add reg_cond_dead and reg_cond_reg.
6658         (init_propagate_block_info): Initialize them.
6659         (free_propagate_block_info): Destruct them.
6660         (mark_set_1): Consider conditional life before killing a register.
6661         (mark_regno_cond_dead): New.
6662         (free_reg_cond_life_info): New.
6663         (flush_reg_cond_reg_1, flush_reg_cond_reg): New.
6664         (ior_reg_cond, not_reg_cond, nand_reg_cond): New.
6665         (mark_used_reg): Record conditional life.
6667         * haifa-sched.c (schedule_insns): Disable death counting
6668         sanity check for HAVE_conditional_execution.
6670 2000-04-30  Richard Henderson  <rth@cygnus.com>
6672         * Makefile.in (TIMEVAR_H): New.
6673         (ggc-simple.o, ggc-page.o, toplev.o, timevar.o): Use it.
6674         (timevar.h): Remove rule.
6676 2000-04-29  Richard Henderson  <rth@cygnus.com>
6678         * config/alpha/crtend.asm: Use C comments instead of #.
6679         * config/alpha/crtbegin.asm: Likewise.  Mark __dso_handle hidden.
6681         * config/alpha/elf.h (SELECT_SECTION): Treat CONSTRUCTOR like VAR_DECL.
6683 2000-04-29  Zack Weinberg  <zack@wolery.cumb.org>
6685         * cpphash.h (enum node_type: Take out T_MCONST.
6686         (union hashval): Move into struct hashnode.
6687         (struct hashnode): Pack tighter.  Remove file, line, col
6688         members.
6689         * cpphash.c: Constify most of the macro-definition structures.
6690         (struct definition): Replace by struct object_defn
6691         and struct funct_defn.  Put file, line, column information
6692         here.  All users updated to match.
6693         (_cpp_create_definition, _cpp_macroexpand): Remove special
6694         case for #define WORD OTHERWORD.
6695         * cpplib.c (do_undef): Remove T_MCONST case.
6697         * cpphash.h: Move struct reflist, struct definition, and the
6698         DEFINITION typedef to cpphash.c.  Use 'struct definition *' in
6699         union hashval.  _cpp_free_definition takes a HASHNODE pointer.
6700         * cpphash.c (_cpp_free_definition): Free data pointed to by
6701         MCONST, XCONST, MACRO, and FMACRO nodes properly.
6702         (_cpp_create_definition, del_HASHNODE): Just call
6703         _cpp_free_definition to clear out a hashnode.
6704         * cpplib.c (do_pragma_poison): Likewise.
6706 Sat Apr 29 12:25:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
6708         * config/mn10300/mn10300.h (FIRST_DATA_REGNUM,
6709         LAST_DATA_REGNUM, FIRST_ADDRESS_REGNUM, LAST_ADDRESS_REGNUM,
6710         FIRST_EXTENDED_REGNUM, LAST_EXTENDED_REGNUM): New macros.
6711         (REGNO_SP_P): Redefine in terms of STACK_POINTER_REGNUM.
6712         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_EXTENDED_P,
6713         REGNO_AM33_P): Redefine in terms of the new macros.
6714         (CONDITIONAL_REGISTER_USAGE, REGNO_REG_CLASS): Likewise.
6715         (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
6716         STRUCT_VALUE): Likewise.
6717         (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM,
6718         ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Likewise.  Moved.
6720 Sat Apr 29 01:18:45 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6722         * regmove.c (struct record_stack_memrefs_data): New.
6723         (record_stack_memrefs): New function.
6724         (combine_stack_adjustments_for_block): Use it.
6726 Sat Apr 29 01:15:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6728         * calls.c (calls_function_1):  Propertly handle TREE_LIST expressions;
6729         use special_function_p to detect alloca.
6731 Fri Apr 28 16:30:33 2000  Marc Espie <espie@cvs.openbsd.org>
6733         * gcc.texi: Fixes for makeinfo 4.0 --html.
6735 2000-04-28  Zack Weinberg  <zack@wolery.cumb.org>
6737         * pcp.h: Delete file.
6739 2000-04-28  Kazu Hirata  <kazu@hxi.com>
6741         * h8300.c (function_epilogue): Clean up flags when the last insn
6742         in a function is a barrier.
6744 2000-04-28  Chris Demetriou  <cgd@sibyte.com>
6746         * configure.in (sparc-hal-solaris2*): protect [] glob from
6747         my expansion.
6748         (mips*-*-ecoff*, mips*-*-elf*, mips*-*-*): use MASK_ defines
6749         rather than hard-coded constants in target_cpu_default2.
6750         * configure: Regenerate.
6752 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
6754         * tree.c (get_callee_fndecl): Extract the initial value from
6755         a readonly decl.
6757 2000-04-28  Richard Henderson  <rth@cygnus.com>
6759         * varasm.c (record_constant_1): Record the CODE_LABEL when
6760         taking the address of a LABEL_REF.
6762 2000-04-28  Richard Henderson  <rth@cygnus.com>
6763             Jan Hubicka  <jh@suse.cz>
6765         * calls.c (combine_pending_stack_adjustment_and_call): Return the
6766         adjustment; don't do the stack adjust.
6767         (expand_call): Call compute_argument_block_size right before
6768         allocating the block; update comment; don't do alignment sanity
6769         checking for sibling call; use args_size instead of
6770         unadjusted_args_size before args_size is adjusted.  Use
6771         combine_pending_stack_adjustment_and_call to compute stack adjust
6772         for must_preallocate case.
6774         * expr.c (push_block): Remove shadow `temp' in inner scope.
6776 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
6778         * toplev.c (rest_of_compilation): Call
6779         note_deferral_of_defined_inline_function even if the function
6780         can't be inlined.
6782 2000-04-28  Scott Bambrough  <scottb@netwinder.org>
6784         * cpplex.c (_cpp_scan_line): Fix buffer overwrite.
6786 2000-04-28  Richard Henderson  <rth@cygnus.com>
6788         * toplev.c (rest_of_type_compilation): Fix sdb TIMEVAR typo.
6790 2000-04-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6792         * timevar.c (init_timevar): DeANSIfy function definition.
6794 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
6796         * Makefile.in (timevar.o): Depend on flags.h.
6797         * timevar.c (unused_stack_instances): New variable.
6798         (timevar_push): Take a timevar_stack_def from
6799         unused_stack_instances if available.
6800         (timevar_pop): Push the popped timevar_stack_def onto
6801         unused_stack_instances.
6802         (TIMEVAR_ENABLE): New macro.
6803         (timevar_def): Make standalone a 1-bit field.  Add field used.
6804         (get_time): Rename parameter to now.  Return after clearing it if
6805         not TIMEVAR_ENABLE.
6806         (init_timevar): Do nothing if not TIMEVAR_ENABLE.
6807         (timevar_pop): Likewise.
6808         (timevar_stop): Likewise.
6809         (timevar_push): Likewise.  Mark the timing variable as used.
6810         (timevar_start): Likewise.
6811         (timevar_print): Do nothing if not TIMEVAR_ENABLE.  Don't print
6812         timevars that were never used.
6814 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
6816         * c-common.c (c_apply_type_quals_to_decl): REFERENCE_TYPES are
6817         always TREE_READONLY.
6819 2000-04-27  Ulrich Drepper  <drepper@cygnus.com>
6821         * i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference
6822         for call instruction with mode QImode.
6824 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
6826         * Makefile.in (OBJS): Add timevar.o.
6827         (toplev.o): Depend on timevar.h.
6828         (ggc-simple.o): Likewise.
6829         (ggc-page.o): Likewise.
6830         (timevar.o): New rule.
6831         (timevar.h): New rule.
6833         * timevar.h: New file.
6834         * timevar.c: Likewise.
6835         * timevar.def: Likewise.
6837         * toplev.h (gc_time, parse_time, varconst_time): Remove.
6838         * toplev.c: Use timevar_push and timevar_pop instead of TIMEVAR
6839         throughout.
6840         (TIMEVAR): Remove macro.
6841         (gc_time, parse_time, varconst_time, integration_time, jump_time,
6842         cse_time, gcse_time, loop_time, cse2_time, branch_prob_time,
6843         flow_time, combine_time, regmove_time, sched_time,
6844         local_alloc_time, global_alloc_time, flow2_time, peephole2_time,
6845         sched2_time, dbr_sched_time, reorder_blocks_time,
6846         rename_registers_time, shorten_branch_time, stack_reg_time,
6847         to_ssa_time, from_ssa_time, final_time, symout_time, dump_time,
6848         all_time): Remove.
6849         (compile_file): Don't initialize time variables.  Call
6850         init_timevar and start TV_TOTAL timer.  Call timevar_print instead
6851         of many calls to print_time.
6852         (rest_of_compilation): Add timing for reload_cse_regs.
6853         (get_run_time): Removed to timevar.c.
6854         (print_time): Likewise.
6855         (get_run_time): Implement using TV_TOTAL time variable.
6856         (print_time): Get total run time from get_run_time.
6857         * ggc-page.c (ggc_collect): Push and pop TV_GC instead of
6858         computing elapsed time explicitly.
6859         * ggc-simple.c (ggc_collect): Likewise.
6860         (gc_time): Remove declaration.
6862 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
6864         * calls.c (combine_pending_stack_adjustment_and_call): New function.
6865         (expand_call): Use it.
6867 2000-04-27  Jan Hubicka  <jh@suse.cz>
6869         * flow.c (mark_set_1):  Handle MEMs in ZERO_EXTRACT/SIGN_EXTRACT
6870         fields.
6872 Thu Apr 27 12:47:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
6874         * config/mn10300/mn10300.md (movhi): Simplify.  Prefer data
6875         registers.
6877 Thu Apr 27 17:33:05 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6879         * function.c (epilogue_done): Pass whole insn to record_insns.
6881 Thu Apr 27 16:55:28 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6883         * cse.c (CSE_ADDRESS_COST): Remove.
6884         (find_best_addr): Add new parameter "MODE", use address_cost instead
6885         of CSE_ADDRESS_COST
6886         (address_cost): New.
6887         (fold_rtx): Update call of find_best_addr.
6888         * rtl.h (address_cost): Declare.
6889         * loop.c (general_induction_var): Add new parameter "MODE", use
6890         address_cost instead of ADDRESS_COST
6891         (init_loop): Use address_cost instead of ADDRESS_COST.
6892         (check_insn_for_givs): Update call of general_induction_var.
6893         (find_mem_givs): Likewise.
6894         (consec_sets_giv): Likewise.
6895         * config/i386/i386.h (ADDRESS_COST): Call ix86_address_cost.
6896         * i386.c (ix86_address_cost): New.
6897         * i386-protos.h (ix86_address_cost): Declare.
6899 Thu Apr 27 11:45:16 2000  Alexandre Oliva  <aoliva@cygnus.com>
6901         * config/mn10300/mn10300.md (movqi): Simplify.  Prefer data
6902         registers.
6904 Thu Apr 27 16:11:00 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6906         * expr.c (store_expr): Use clear_storage instead of direct memset
6907         libcall.
6909 Thu Apr 27 10:36:51 2000  Alexandre Oliva  <aoliva@cygnus.com>
6911         * config/mn10300/mn10300.c (mn10300_address_cost): Test
6912         ASHIFT, AND and LABEL_REF.
6914 Thu Apr 27 15:08:46 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6916         * invoke.texi (-foptimize-sibling-calls): Fix.
6918 Thu Apr 27 14:54:22 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6920         * loop.c (load_mems)  Don't use hard registers for the hoisting.
6922         * unroll.c (unroll_loop): Avoid overflow in the n_iterations
6923         calculation; rename const_equiv array in the preconditioning code
6924         from loop_unroll to loop_unroll_precondition
6926 2000-04-27  Richard Henderson  <rth@cygnus.com>
6928         * flow.c (struct propagate_block_info): Remove new_dead, new_live;
6929         add new_set.
6930         (propagate_one_insn): Clear it.  Don't update reg_live here.
6931         (init_propagate_block_info): Update for pbi member changes.
6932         (free_propagate_block_info): Likewise.
6933         (mark_set_1): Know that zero_extract, sign_extract, and
6934         strict_low_part don't kill their argument.  Alter hard subregs.
6935         Update new_set for non-CLOBBER sets.  Update reg_live.
6936         (find_auto_inc): Update reg_live, not new_dead.
6937         (mark_used_reg): Update reg_live, not new_live.  Examine new_set
6938         to determine if the reg in question was set this insn.  Only update
6939         reg info with PROP_REG_INFO.
6941 2000-04-26  Richard Henderson  <rth@cygnus.com>
6943         * flow.c (allocate_reg_life_data): Set max_regno here ...
6944         (life_analysis): ... not here.
6946         * flow.c (calculate_global_regs_live): Force stack pointer
6947         live at end.
6949 2000-04-26  Richard Henderson  <rth@cygnus.com>
6951         * jump.c (redirect_exp_1): Rework from old redirect_exp.  Never
6952         commit change group changes.
6953         (invert_exp_1): Similarly.
6954         (redirect_exp, invert_exp): Use them.
6955         (redirect_jump_1): New.
6956         (invert_jump_1): New.
6957         (jump_optimize_1): Remove code subsumed by condexec.c.
6958         * rtl.h (invert_jump_1, redirect_jump_1): Declare.
6960 2000-04-26  Richard Henderson  <rth@cygnus.com>
6962         * rtlanal.c (dead_or_set_regno_p): Use find_regno_note.
6964         * genconfig.c (main): Set all HAVE_foo to 1.
6966         * graph.c (node_data): Use GET_NOTE_INSN_NAME instead of local array.
6968 2000-04-26  Alex Samuel  <samuel@codesourcery.com>
6970         * invoke.texi: Document -fssa flag.
6972 2000-04-26  Richard Henderson  <rth@cygnus.com>
6974         * flow.c (count_reg_sets_1): Remove.
6975         (count_reg_sets, count_reg_references): Remove.
6976         (recompute_reg_usage): Implement with update_life_info.
6977         Reallocate life data.
6979 2000-04-26  Richard Henderson  <rth@cygnus.com>
6981         * flow.c (update_life_info): Consider blocks null to mean the
6982         universal set.
6983         (calculate_global_regs_live): Likewise.
6984         (life_analysis): Do that instead of collecting all_blocks.
6986 2000-04-26  Richard Henderson  <rth@cygnus.com>
6988         * flow.c (tidy_fallthru_edge): Don't delete the jump when it's
6989         a still-valid conditional jump.
6991 2000-04-26  Richard Henderson  <rth@cygnus.com>
6993         * jump.c (invert_jump): Always invert REG_BR_PROB.  Do it correctly.
6995         * bb-reorder.c (reorder_basic_blocks): Don't run estimate_probability.
6996         * flow.c (calculate_loop_depth): Remove.
6997         * output.h (calculate_loop_depth): Don't declare.
6998         * toplev.c (rest_of_compilation): Expand calculate_loop_depth
6999         inline; run estimate_probability at the same time.
7001 2000-04-26  Neil Booth  <NeilB@earthling.net>
7003         * cpplib.h: "~=" is not a single pp-token.
7004         * cpplex.c: Correct commentary.
7006 2000-04-26  Richard Henderson  <rth@cygnus.com>
7008         * flow.c (mark_set_1): New arguments code and flags; update all
7009         callers.  Track regno_first and regno_last; do HARD_REGNO_NREGS
7010         test in one place.  Tidy flags tests.  Don't bias REG_N_REFS by
7011         loop_depth when optimizing for size.  Do new_dead update after
7012         emitting REG_UNUSED notes.  Merge mark_set_reg code.
7013         (mark_set_reg): Remove.
7014         (propagate_one_insn): Use mark_set_1 for call-clobbered registers;
7015         arrange to not emit REG_UNUSED notes.
7017 2000-04-26  Richard Henderson  <rth@cygnus.com>
7019         * flow.c (find_auto_inc): Use pbi->bb instead of BLOCK_FOR_INSN.
7020         * ssa.c (convert_from_ssa): Don't run compute_bb_for_insn.
7022 2000-04-26  Richard Henderson  <rth@cygnus.com>
7024         * flow.c (propagate_one_insn): Break out from propagate_block.
7025         (init_propagate_block_info): Likewise.
7026         (free_propagate_block_info): Likewise.
7027         (propagate_block): Use them.  Export.
7028         * basic-block.h: Declare them all.
7030 2000-04-26  Richard Henderson  <rth@cygnus.com>
7032         * basic-block.h (life_analysis): Declare here ...
7033         * output.h: ... not here.
7034         * flow.c (life_analysis): Remove nregs parameter; replace
7035         remove_dead_code with flags.  Remove ssa dead code check.
7036         Only init alias analysis if we'll use it.
7037         * reg-stack.c (reg_to_stack): Update life_analysis arguments.
7038         * ssa.c (convert_to_ssa): Likewise.
7039         (convert_from_ssa): Likewise.
7040         * toplev.c (rest_of_compilation): Likewise.
7042 2000-04-26  Richard Henderson  <rth@cygnus.com>
7044         * flow.c (flow_delete_block): Rename from delete_block.  Export.
7045         * basic-block.h (flow_delete_block): Declare.
7047 2000-04-26  David S. Miller  <davem@redhat.com>
7049         * optabs.c (emit_libcall_block): Verify insns with INSN_P before
7050         taking a PATTERN of it.
7052 2000-04-26  <NeilB@earthling.net>
7054         * cpplex.c (spell_other, spell_char): Remove.
7055         (SPELL_CHAR): New.
7056         (token_spelling, trigraph_map): Use unsigned chars.
7057         (_cpp_lex_line): Tidy up the switch statement.
7058         * cpplib.h: Implement spell_char with spell_string.
7059         (C): New.
7061 2000-04-26  <RodneyBrown@pmsc.com>
7063         * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Warning removal.
7064         * pa/pa64-regs.h (HARD_REGNO_MODE_OK): Warning removal.
7066 2000-04-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7068         * dwarf2out.c (dw_cfi_oprnd_struct, dw_fde_struct, add_fde_cfi,
7069         reg_save, dwarf2out_frame_debug_expr, dwarf2out_def_cfa,
7070         dwarf2out_window_save, dwarf2out_args_size, dwarf2out_reg_save,
7071         dwarf2out_return_save, dwarf2out_return_reg,
7072         dwarf2out_stack_adjust, dwarf2out_frame_debug, primary_filename,
7073         add_AT_lbl_id, add_AT_lbl_offset, type_tag, decl_start_label,
7074         gen_compile_unit_die, dwarf2out_init): Constify a char*.
7076         * dwarf2out.h (dwarf2out_init): Likewise.
7078         * dwarfout.c (filename_entry, primary_filename, last_filename,
7079         type_tag, output_compile_unit_die, dwarfout_init): Likewise.
7081         * tree.h (dwarf2out_def_cfa, dwarf2out_window_save,
7082         dwarf2out_args_size, dwarf2out_reg_save, dwarf2out_return_save,
7083         dwarf2out_return_reg): Likewise.
7085 2000-04-26  Andreas Jaeger  <aj@suse.de>
7087         * extend.texi (Function Attributes): Fix description of pure
7088         attribute.
7090 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
7092         * integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
7093         before calling rest_of_compilation.
7095 2000-04-26  Andreas Jaeger  <aj@suse.de>
7097         * config/mips/linux.h: Remove erroneous commit of #if 0/#endif in
7098         last patch.
7100 2000-04-25  Richard Henderson  <rth@cygnus.com>
7102         * cse.c (cse_insn): Emit barrier after unconditional jump.
7104         * calls.c (expand_call): Disable tail call generation once
7105         rtx_equal_function_value_matters is false.
7107         * reg-stack.c (convert_regs_1): Treat EDGE_ABNORMAL_CALL edges
7108         like EDGE_EH edges.
7110 2000-04-25  Jason Merrill  <jason@casey.cygnus.com>
7112         * dwarf2out.c (add_bound_info): Don't crash on an unexpanded SAVE_EXPR.
7114         * dwarfout.c (output_decl): Ignore NAMESPACE_DECLs.
7116         * dwarf2out.c (gen_subprogram_die): The class-scope declaration DIE
7117         is the primary DIE for a member function.
7118         (gen_decl_die): Call set_decl_origin_self here.
7119         * dwarfout.c (output_decl): And here.
7120         * integrate.c (output_inline_function): Not here.
7121         Don't clear DECL_INLINE until after calling rest_of_compilation.
7122         (set_decl_origin_self): No longer static.
7123         * tree.h: Add prototype.
7124         * toplev.c (note_deferral_of_defined_inline_function): Only write
7125         out abstract instance for actual inlines.
7127 2000-04-25  Alexandre Oliva  <aoliva@cygnus.com>
7129         * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Return
7130         EXTENDED_REGS only if TARGET_AM33.
7131         * config/mn10300/mn10300.md (movsi, addsi): Avoid exposing
7132         SP_REGS to register allocation and reloading unless absolutely
7133         necessary.
7134         (movsi3): Remove special-case of adding non-constants to SP.
7136 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7138         * aclocal.m4 (gcc_AC_NEED_DECLARATION): This macro now requires
7139         INCLUDES to search and does not provide any of its own.  Also it
7140         now accepts optional ACTION-IF-NEEDED and ACTION-IF-NOT-NEEDED
7141         parameters.  Also it does not call AC_DEFINE.
7142         (gcc_AC_NEED_DECLARATIONS): Likewise.  Also this macro now calls
7143         AC_DEFINE and provides for automatic entries for autoheader.
7144         (gcc_AC_FUNC_PRINTF_PTR): Cleanup C code in test.
7146         * configure.in (gcc_AC_NEED_DECLARATIONS): Save and restore CFLAGS
7147         so we can pass -I flags and include gansidecl.h/system.h in this
7148         test.
7150         * acconfig.h: Delete all NEED_DECLARATION_* entries.
7152 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7154         * acconfig.h (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
7155         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
7156         ENABLE_GC_ALWAYS_COLLECT): Delete entries.
7158         * configure.in (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
7159         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
7160         ENABLE_GC_ALWAYS_COLLECT): Use three argument form of AC_DEFINE
7161         for these macros.  Clean up spacing and linewraps.
7163 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
7165         * calls.c (expand_call): Use get_callee_fndecl.
7167         * print-tree.c (print_node): Print the chain of an _EXPR.
7169 Tue Apr 25 16:16:04 2000  Andrew MacLeod  <amacleod@cygnus.com>
7170                           Jim Wilson  <wilson@cygnus.com>
7171                           Andrew Haley  <aph@cygnus.com>
7173         * config/ia64/crtbegin.asm: Add IA-64 unwind support.  Correct alloc
7174         and gp save/restore problems.
7175         * config/ia64/crtend.asm: Add IA-64 unwind support.
7176         * config/ia64/ia64.c (ia64_compute_frame_size): Don't include pr_size
7177         in fr_pad_size calculation.
7178         (save_restore_insns): Move PR save area.  Correct uses of
7179         RTX_FRAME_RELATED_P.
7180         (ia64_expand_prologue): Mark alloc with RTX_FRAME_RELATED_P.
7181         (ia64_expand_epilogue): Add eh_epilogue support.
7182         (ia64_function_prologue): Emit .prologue directive.
7183         (ia64_init_machine_status, ia64_mark_machine_status): New functions.
7184         (ia64_override_options): Set init_machine_status and
7185         mark_machine_status.
7186         (rtx_needs_barrier): Handle bsp reads and writes.
7187         (spill_offset, sp_offset, spill_offset_emitted, tmp_reg, tmp_saved):
7188         New static variables.
7189         (process_set, process_for_unwind_directive): New functions.
7190         * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR, ASM_OUTPUT_XDATA_SHORT,
7191         ASM_OUTPUT_XDATA_INT, ASM_OUTPUT_XDATA_DOUBLE_INT, ASM_OUTPUT_EH_CHAR,
7192         ASM_OUTPUT_EH_SHORT, ASM_OUTPUT_EH_INT, ASM_OUTPUT_EH_DOUBLE_INT): New
7193         macros.
7194         (EH_FRAME_SECTION_ASM_OP): Define to IA_64.unwind section.
7195         (IA64_UNWIND_INFO, HANDLER_SECTION, IA64_UNWIND_EMIT): Define.
7196         (struct machine_function): Define.
7197         * config/ia64/ia64.md (bsp_value, set_bsp, eh_epilogue): New patterns.
7199 2000-04-25  Bruce Korb  <bkorb@gnu.org>
7201         * fixinc/Makefile.in: make the removal of old programs more
7202         robust
7203         * fixinc/mkfixinc.sh: use the two new targets in the Makefile:
7204         install-bin and install-sh
7206 2000-04-25  Nick Clifton  <nickc@cygnus.com>
7208         * integrate.c (FUNCTION_ATTRIBUTE_INLINABLE_P): If not
7209         defined, define to return zero.
7210         (function_cannot_inline_p): If a function has any target
7211         specific attributes, then use the macro
7212         FUNCTION_ATTRIBUTE_INLINABLE_P to allow the target to decide
7213         whether it can be inlined.  If it cannot, issue a suitable
7214         explanation.
7216         * tm.texi: Add a new node 'Inlining' to document the new macro
7217         FUNCTION_ATTRIBUTE_INLINABLE_P.
7219 2000-04-25  Zack Weinberg  <zack@wolery.cumb.org>
7221         * cpplib.h (struct cpp_buffer): Add 'mapped' flag; fix
7222         commentary.
7224 2000-04-25  Neil Booth  <NeilB@earthling.net>
7226         Restore previous patch, plus the following fixes:
7228         * cpphash.c (_cpp_create_definition): Test PREV_WHITESPACE in
7229         flags, not CPP_OPEN_PAREN.
7230         * cpplex.c (expand_token_space, init_token_list,
7231         cpp_free_token_list): Put the dummy token at list->tokens[-1].
7232         (_cpp_lex_line, _cpp_lex_file): token list is 0-based.
7234 Tue Apr 25 14:06:40 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
7236         * config/i386/freebsd.h (INT_ASM_OP): Define.
7238 Tue Apr 25 14:51:07 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7240         * loop.c (strength_reduce): Fix typo in the last checkin.
7242 Tue Apr 25 07:33:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7244         * stor-layout.c (finalize_record_size): Simplify to use existing
7245         functions.
7246         (compute_record_mode): No longer static.
7247         * tree.h (compute_record_mode): New declaration.
7249 2000-04-25  Neil Booth  <NeilB@earthling.net>
7251         * Revert my patch below until cause of build failures
7252         determined.
7254 2000-04-25  Richard Henderson  <rth@cygnus.com>
7256         * combine.c (combine_instructions): Add missing argument
7257         to try_combine.
7259         * toplev.c (rest_of_compilation): Delay sibcall optimization
7260         until after emit_eh_context.
7262 2000-04-24  Nick Clifton  <nickc@redhat.com>
7264         * combine.c (combine_instructions): Do not try to combine a
7265         sequence of insns when the second insn has been replaced by a
7266         note.
7268 Mon Apr 24 17:34:18 2000  Mumit Khan  <khan@xraylith.wisc.edu>
7270         * gcc.c (load_specs): New static function.
7271         (read_specs): Use it.
7273         * gcc.c (lookup_compiler): Make multiple passes for case
7274         insensitive filesystems.
7276 2000-04-24  Neil Booth  <NeilB@earthling.net>
7278         * cpphash.c: replace HSPACE_BEFORE with PREV_WHITESPACE.
7279         * cpphash.h (_cpp_check_directive): new.
7280         * cpplex.c (handle_newline, cpp_free_token_list,
7281         init_trigraph_map, trigraph_ok, trigraph_replace,
7282         backslash_start, skip_block_comment, skip_line_comment,
7283         skip_whitespace, parse_name, parse_number, parse_string,
7284         copy_comment, _cpp_lex_line, spell_char, spell_string,
7285         spell_comment, spell_name, spell_other, _cpp_lex_file,
7286         _cpp_output_list): new.
7287         (expand_name_space): take length argument.
7288         (init_token_list): add comment list initialisation.
7289         (cpp_scan_line): use auto_expand_name_space.  PREV_WHITESPACE
7290         instead of HSPACE_BEFORE.
7292         * cpplib.c (_cpp_check_directive): new
7293         * cpplib.h (cpp_name, PREV_WHITESPACE, PREV_COMMENT,
7294         DIGRAPH, UNSIGNED_INT, TOK_NAME): new.
7295         (HSPACE_BEFORE): delete.
7296         (TTYPE_TABLE): rearrange.
7297         (struct cpp_toklist): update.
7299 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7301         * aclocal.m4 (gcc_AC_HEADER_STRING, gcc_AC_FUNC_PRINTF_PTR,
7302         gcc_AC_C_VOLATILE, gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG): Use the three
7303         argument form of AC_DEFINE.
7305         * configure.in (DEFAULT_LINKER, DEFAULT_ASSEMBLER,
7306         HAVE_INTTYPES_H, PACKAGE, VERSION, ENABLE_WIN32_REGISTRY,
7307         WIN32_REGISTRY_KEY, HAVE_GAS_SUBSECTION_ORDERING, HAVE_GAS_WEAK,
7308         HAVE_GAS_HIDDEN, HAVE_AS_REGISTER_PSEUDO_OP, AS_SPARC64_FLAG,
7309         HAVE_AS_OFFSETABLE_LO10, ENABLE_NEW_GXX_ABI): Likewise.
7311         * acconfig.h: Delete stubs made redundant by 3-arg AC_DEFINE.
7313 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7315         * Makefile.in (GCC_FOR_TARGET, GCC_CFLAGS, LIBGCC2_INCLUDES,
7316         deduced.h): Use -isystem, not -I, for including system headers.
7318 2000-04-24  Nick Clifton  <nickc@cygnus.com>
7320         * config/fr30/fr30.md (addsi3): Do not use small add instruction if
7321         the source register is the frame pointer or arg pointer.
7322         (addsi3_small_int): Disallow if source register is the frame
7323         pointer or arg pointer.
7325 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7327         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Delete redundant
7328         call to AC_MSG_RESULT.
7330 2000-04-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7332         * invoke.texi: Correct grammatical errors, document
7333         -fno-gnu-keywords as identical to -fno-asm for C++.
7335 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7337         * aclocal.m4: (GCC_HEADER_STRING, GCC_NEED_DECLARATION,
7338         GCC_NEED_DECLARATIONS, GCC_FUNC_VFPRINTF_DOPRNT,
7339         GCC_FUNC_PRINTF_PTR, GCC_PROG_LN_S, GCC_PROG_LN, GCC_C_VOLATILE,
7340         AC_GCC_C_LONG_DOUBLE, GCC_FUNC_MKDIR_TAKES_ONE_ARG,
7341         EGCS_PROG_INSTALL): Rename autoconf macros with prefix gcc_AC_.
7343         * configure.in (AC_GCC_C_LONG_DOUBLE, GCC_PROG_LN, GCC_PROG_LN_S,
7344         GCC_C_VOLATILE, EGCS_PROG_INSTALL, GCC_HEADER_STRING,
7345         GCC_FUNC_VFPRINTF_DOPRNT, GCC_FUNC_PRINTF_PTR,
7346         GCC_NEED_DECLARATIONS, GCC_FUNC_MKDIR_TAKES_ONE_ARG): Invoke with
7347         new macros names.
7349 2000-04-24  Mumit Khan  <khan@xraylith.wisc.edu>
7351         * c-pragma.c (push_alignment): Use BITS_PER_UNIT macro.
7352         (pop_alignment): Likewise.
7353         (handle_pragma_token): Likewise.
7355 2000-04-24  Robert Lipe <robertlipe@usa.net>
7357         * tree.h (tree_decl): Member `mode' now ENUM_BITFIELD.
7359 2000-04-24  Hiroyuki Machida <machida@sm.sony.co.jp>
7361         * combine.c (try_combine): Update reg_nonzero_bits of
7362         newi2pat before newpat.
7364 Mon Apr 24 10:19:48 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7366         * loop.c (strength_reduce): Simplify test to INSN_P.
7367         (record_giv): Attempt to simplify the add value, use CONSTANT_P
7368         expressions instead of CONST_INT.
7369         (express_from_1): Likewise.
7371 2000-04-24  Mark Mitchell  <mark@codesourcery.com>
7373         * regs.h (reg_n_max): Don't declare.
7374         * flow.c (reg_n_max): Don't define.
7375         * regclass.c (renumber): Don't initialize to zero.
7376         (regno_allocated): Likewise.
7377         (reg_n_max): Define.
7378         (allocate_reg_info): Don't initialize unnecessarily.
7380 Mon Apr 24 00:21:36 2000  Jeffrey A Law  (law@cygnus.com)
7382         * genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
7383         and blockage_p in the newly allocated attribute.
7385 Sun Apr 23 20:16:49 2000  Alexandre Oliva  <aoliva@cygnus.com>
7387         * config/mn10300/mn10300.md (addsi): `inc4' on address
7388         registers does not modify cc, but `inc' on an extended
7389         register does.
7391 Sun Apr 23 16:24:35 2000  Denis Chertykov  <denisc@overta.ru>
7393         * reload.c (find_equiv_reg): Checks all valueno regs
7394         as a reload_reg_p regs.
7396 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
7398         * cpphash.c (collect_objlike_expansion): Add sanity check.
7399         (special_symbol): Remove case T_CONST, T_XCONST, T_MCONST.  If
7400         the buffer is the empty string, return.  Mark __DATE__ and
7401         __TIME__ as XCONST nodes, not MCONST.
7402         (_cpp_macroexpand): Avoid pushing an empty buffer.
7403         (funlike_macroexpand): Don't pop token_buffer here.
7405 Sun Apr 23 18:37:53 2000  Alexandre Oliva  <aoliva@cygnus.com>
7407         * config/mn10300/mn10300.h (REGNO_IN_RANGE_P): New macro.
7408         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_SP_P): New macros.
7409         (REGNO_EXTENDED_P, REGNO_AM33_P): New macros.
7410         (REGNO_OK_FOR_BASE_P): Define in terms of them.
7411         (REGNO_OK_FOR_BIT_BASE_P, REGNO_OK_FOR_INDEX_P): Likewise.
7412         (REG_OK_FOR_BASE_P): Define in terms of the REGNO macro.
7413         (REG_OK_FOR_BIT_BASE_P, REG_OK_FOR_INDEX_P): Likewise.
7415 Sun Apr 23 22:23:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7417         * loop.c (simplify_giv_expr):  Be more agressive on simplifying
7418         constant MULT givs.
7420 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
7422         * cpphash.h (struct definition): Move file, line, col members...
7423         (struct hashnode): ... here.  Also add 'disabled' flag.
7424         (enum node_type): Add T_VOID, T_XCONST, T_FMACRO, and
7425         T_IDENTITY.  Remove T_DISABLED.
7426         Update prototypes.
7428         * cpphash.c (_cpp_dump_definition): Split out dump_DEFINITION.
7429         (collect_expansion): Split into collect_objlike_expansion and
7430         collect_funlike_expansion.
7431         (_cpp_macroexpand): Split out scan_arguments, stringify, and
7432         funlike_macroexpand.
7433         (_cpp_compare_defs): Rename compare_defs, make static.
7434         (_cpp_make_hashnode): Initialize hp->disabled.
7435         (macro_cleanup): Adjust for new token types.  Clear
7436         m->disabled.
7437         (_cpp_create_definition): Move code here to determine what
7438         sort of macro it is, and code to check for redefinitions, from
7439         do_define.  Implement a few simple cases without creating a
7440         full DEFINITION.
7441         (_cpp_macroexpand, special_symbol, _cpp_dump_definition):
7442         Handle the simple cases.
7443         (push_macro_expansion): Set buf->has_escapes and hp->disabled
7444         here.
7446         * cppinit.c (builtin_array): Change MCONST to XCONST
7447         everywhere.
7448         * cpplex.c (maybe_macroexpand): Handle IDENTITY macros here;
7449         fix check for disabled and function-like macros.
7450         * cpplib.c (do_define): Move most logic to
7451         _cpp_create_definition.
7452         (do_undef): Handle new special token types.
7454 Sun Apr 23 14:27:44 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7456         * loop.c (maybe_eliminate_biv_1): Use GET_CODE (x) == CONST_INT instead
7457         of CONSTANT_P for mult_val; always use validate_change to update insn.
7459 2000-04-22  Zack Weinberg  <zack@wolery.cumb.org>
7461         * cpphash.c (trad_stringify, add_pat): New functions.
7462         (collect_expansion): Restore support for -traditional syntax.
7463         Use trad_stringify and add_pat.
7464         (_cpp_macroexpand): Restore support for -traditional semantics.
7465         * cpplex.c (_cpp_scan_line): Don't change space_before if we
7466         get a COMMENT token.
7467         (_cpp_lex_token): Provide COMMENT tokens to caller if
7468         traditional and parsing_define_directive.
7469         (skip_comment): Warn about // comments if -Wtraditional.
7470         * cpplib.c (do_define): Fix typo.  Create EMPTY nodes with
7471         proper node type.
7472         (do_undef): Don't warn about undefining EMPTY nodes.
7474 Sat Apr 22 22:35:38 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7476         * loop.c (strength_reduce): Fix biv removal code.
7478 2000-04-22  Richard Henderson  <rth@cygnus.com>
7480         * predict.c (estimate_probability): Examine both sides of
7481         a branch for no exits.  Use 90% not 50% for predict taken.
7482         Reorg for one copy of note generation code.
7484 2000-04-22  Richard Henderson  <rth@cygnus.com>
7486         * flow.c (mark_used_reg): Hack around rs6000 eliminable pic reg.
7488 2000-04-22  Richard Henderson  <rth@cygnus.com>
7490         * diagnostic.c (init_output_buffer): Don't initialize format_args.
7491         (output_clear): Likewise.
7492         (output_printf): Use va_copy.
7493         (vline_wrapper_message_with_location): Likewise.
7494         (v_message_with_decl): Likewise.
7495         (line_wrapper_printf): VA_START infor buffer.format_args directly.
7496         * system.h (va_copy): Provide default implementation.
7498 2000-04-22  Richard Henderson  <rth@cygnus.com>
7500         * predict.c (expected_value_to_br_prob): Don't bomb if op1 of
7501         the collected condition is not a constant.
7503 2000-04-22  Gabriel Dos Reis  <gdr@codesourcery.com>
7505         * diagnostic.h: New file.
7507         * Makefile.in (diagnostic.o): Depends on diagnostic.h
7509         * diagnostic.c: Tweak.  Rationalize the output logic.  Adjust
7510         various function prototypes.
7511         (diagnostic.h): #include.
7512         (struct output_buffer): Move into diagnostic.h.
7513         (get_output_prefix): Rename to output_get_prefix.  Export.
7514         (init_output_buffer): Export. Break out.  Ajust intialization.
7515         (output_space_left, output_append): Export.
7516         (output_newline): Rename to output_add_newline.  Export.
7517         (output_clear): Nullify additional output_buffer fields.
7518         (output_puts): Rename to output_add_string.  Export.
7519         (dump_output): Rename to output_flush_on.  Export.
7520         (build_location_prefix): Constify return-type.
7521         (emit_output_prefix): Rename to output_emit_prefix. Export.
7522         (set_real_maximum_length): New function.
7523         (output_set_maximum_length): Ditto
7524         (output_clear): Ditto.
7525         (output_add_character): Ditto.
7526         (output_add_integer): Ditto.
7527         (output_add_space): Ditto.
7528         (output_format): Ditto.
7529         (output_printf): Adjust buffer initialization.
7530         (vline_wrapper_message_with_location): Ditto.
7531         (v_message_with_decl): Ditto.  Adjust call to output_puts
7532         and get_output_prefix.
7533         (default_print_error_function): Adjust buffer intialization.
7535 Sat Apr 22 06:45:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7537         * expr.c (preexpand_calls, case CALL_EXPR): Don't look at TYPE_SIZE
7538         of VOID_TYPE.
7540 Fri Apr 21 18:33:09 2000  Alexandre Oliva  <aoliva@cygnus.com>
7542         * config/mn10300/mn10300.h (REGNO_REG_CLASS): Use NO_REGS instead
7543         of explicit 0.
7545 Fri Apr 21 18:30:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
7547         * config/mn10300/mn10300.h (REGISTER_MOVE_COST): Provide more
7548         accurate data about SP moves.
7550 Fri Apr 21 18:28:28 2000  Alexandre Oliva  <aoliva@cygnus.com>
7552         * config/mn10300/mn10300.h (ADDITIONAL_REGISTER_NAMES): Added
7553         aliases to AM33 registers.
7555 Fri Apr 21 18:26:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
7557         * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Added register 16
7558         to all EXTENDED bitmaps.
7560 Fri Apr 21 18:17:12 2000  Alexandre Oliva  <aoliva@cygnus.com>
7562         * config/mn10300/mn10300-protos.h (mn10300_address_cost): Declare.
7563         * config/mn10300/mn10300.h (ADDRESS_COST): New macro.
7564         * config/mn10300/mn10300.c (mn10300_address_cost): New function.
7566 Fri Apr 21 18:11:56 2000  Alexandre Oliva  <aoliva@cygnus.com>
7568         * config/mn10300/mn10300.md (movdi, movdf): Do not use `movu' when
7569         the operand is not constant.
7571 Fri Apr 21 14:58:29 2000  Denis Chertykov  <denisc@overta.ru>
7573         * reload.c (find_equiv_reg): Checks all valueno and regno regs
7574         as a call-clobbered regs.
7576 Fri Apr 21 13:30:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7578         * rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
7579         * rtl.h: Likewise.
7580         * rtl.def: Update comment.
7581         * function.c (expand_function): Use NOTE_INSN_REPEATED_LINE_NUMBER.
7582         * integrate.c (expand_inline_function): Likewise.
7583         * profile.c (branch_prob): Likewise.
7584         * ggc-common.c (ggc_mark_rtx_children): Use NOTE_INSN_RANGE_BEG.
7585         * print-rtl.c (print_rtx): Likewise.
7586         * haifa-sched.c (sched_analyze, unlink_other_notes): Likewise.
7587         (reemit_notes): Likewise; also use enum insn_note.
7589         * stor-layout.c (layout_decl): Only set DECL_MODE if not already set.
7590         (place_field): Properly compute know and actual alignment.
7592         * gengenrtl.c (gencode): Write obstack_alloc_rtx function start
7593         in proper format.
7595         * cse.c (cse_insn): In (set REG0 REG1) case, remove a REG_EQUAL
7596         note for REG1.
7598 2000-04-21  Zack Weinberg  <zack@wolery.cumb.org>
7600         * cpphash.c (struct arg, struct arglist): Const-ify strings.
7601         (warn_trad_stringify, duplicate_arg_p): New helper functions.
7602         (collect_expansion): Rewrite to scan over a token list.
7603         Remove -traditional support.
7604         (collect_formal_parameters): Rename to collect_params; rewrite
7605         to scan over a token list.
7606         (_cpp_create_definition): Adjust to scan a token list.
7607         (_cpp_macroexpand): Remove -traditional support.
7608         (_cpp_compare_defs): Whitespace is now canonicalized.
7609         (comp_def_part): Delete function.
7611         * cpphash.h: Update prototypes.
7612         * cpplex.c (init_token_list): Don't set lineno if there is no
7613         buffer.
7614         (pedantic_whitespace): New function.
7615         (_cpp_scan_line): Mark tokens that had hspace before.  Don't
7616         consume a newline.  Use pedantic_whitespace.
7617         (_cpp_lex_token): Remove support for -traditional macros.
7618         (_cpp_get_define_token): Delete.
7619         (_cpp_get_directive_token): Do the real work here.  Use
7620         pedantic_whitespace.
7621         (_cpp_init_input_buffer): Initialize pfile->directbuf.
7623         * cpplib.c (get_macro_name): Delete.
7624         (do_define): Read the entire line into pfile->directbuf, then
7625         feed the token list to _cpp_create_definition.
7626         * cpplib.h (HSPACE_BEFORE): new define.
7627         (struct cpp_reader): Add a toklist member, "directbuf".
7629         * predict.c (estimate_probability): New heuristic: if a jump
7630         branches around a block with no successors, predict it taken.
7631         Disentangle control flow.
7633 2000-04-20  Richard Henderson  <rth@cygnus.com>
7635         * loop.c (emit_iv_add_mult): Revert last change.
7637 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
7639         * cpplib.h (enum cpp_ttype): Add token types for all
7640         punctuators.  Distinguish pp-numbers from valid C numbers.
7641         Give some tokens better names.  Initialize from macro.
7642         (struct cpp_name, cpp_token, cpp_toklist): New data
7643         structures.
7644         Update prototypes.
7645         * cpplex.c (bump_column, expand_name_space,
7646         expand_token_space, init_token_list, cpp_output_list,
7647         _cpp_scan_line):  New functions.
7648         (output_line_command): Add third argument, new line number.
7649         * cpphash.h: Update prototypes.
7650         * cppexp.c, cpphash.c, cpplib.c, scan-decls.c: Update for new
7651         token names.
7653 2000-04-20  Richard Henderson  <rth@cygnus.com>
7655         * config/alpha/alpha.c (alpha_emit_floatuns): Emit missing barrier.
7657 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
7659         * c-common.c (decl_attributes) [A_ALIAS]: Set TREE_USED on the
7660         object pointed to.
7662 Thu Apr 20 14:19:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7664         * loop.c (emit_iv_add_mult):  Simplify it's input and emit
7665         REG_EQUAL note explaining the calculated value.
7667         * calls.c (expand_call): Avoid unnecesary precalculation
7668         and outgoing parameters space guarding for sibling calls.
7669         (store_one_arg): Likewise.
7671 Thu Apr 20 08:01:07 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7673         * toplev.c (enum dump_file_index, dump_file): Add DFI_sibling.
7674         (rest_of_compilation): Write sibling dump file and account
7675         for time as jump time.
7676         * invoke.texi: Update documentation on dump flags.
7678 2000-04-19  Marek Michalkiewicz  <marekm@linux.org.pl>
7680         * avr.c: #include "system.h" instead of <stdio.h> and <stdlib.h>.
7682 2000-04-19  Zack Weinberg  <zack@wolery.cumb.org>
7684         * cpphash.c (special_symbol): Represent an empty macro with
7685         "\r \r " not just "\r ".
7686         (_cpp_macroexpand): Correct condition for the foo ( ) special
7687         case.
7688         (unsafe_chars): Handle EOF as second argument.
7689         (push_macro_expansion): Simplify test for removing escape at
7690         end.  Do not trim both escapes if there is no text in between.
7692 2000-04-19  Jim Blandy  <jimb@redhat.com>
7694         * dwarf2out.c (DWARF2_ADDR_SIZE): New macro.  Use it instead
7695         of PTR_SIZE, when appropriate.
7697 2000-04-19  Mark Mitchell  <mark@codesourcery.com>
7699         * system.h (ONLY_INT_FIELDS): Make sure it is defined.
7700         (USE_ENUM_BITFIELDS): Fix typo.
7702 Wed Apr 19 12:14:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7704         * stor-layout.c (place_field): Set rli->offset_align properly.
7706 2000-04-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7708         * mips.h (BITS_PER_WORD, UNITS_PER_WORD, UNITS_PER_FPREG,
7709         INT_TYPE_SIZE, LONG_TYPE_SIZE, POINTER_SIZE, POINTER_BOUNDARY,
7710         PARM_BOUNDARY): Remove unnecessary casts.
7712 Wed Apr 19 12:02:37 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7714         * calls.c (precompute_arguments): Remove must_preallocate and
7715         args_size calls.
7716         (expand_call): Update call of precompute_arguments.
7718         * loop.c (check_insn_for_bivs, for_every_insn_in_loop,
7719         check_insn_for_givs): Break out from ...
7720         (strength_reduce) ... here; use for_every_insn_in_loop to call
7721         check_insn_for_givs.
7722         * loop.h (for_every_insn_in_loop): Declare.
7723         (loop_insn_callback): New type.
7725 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
7727         * cpplib.c (do_pragma_poison):  Strings in the token buffer are
7728         not nul-terminated.
7730 Tue Apr 18 16:04:12 2000  Jim Wilson  <wilson@cygnus.com>
7732         * config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
7733         flag_pic and RELOC.
7735 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
7737         * cccp.c, cexp.y, cexp.c, cccp.1: Removed.
7739         * configure.in: Delete --disable-cpplib option and all
7740         references to cpp_main.
7741         * configure: Regenerate.
7742         * Makefile.in: Remove all references to CCCP, CCCP_OBJS,
7743         @cpp_main@, cccp.c, cexp.c, cexp.y, cexp.output, cexp.o,
7744         cccp.o, cccp, or cppmain.  Link cppmain.o straight to
7745         cpp$(exeext).  Add --no-headers to makeinfo command line when
7746         generating INSTALL.  Install and uninstall cpp.1 manpage, not
7747         cccp.1.
7748         * install.texi: Delete all references to cexp.y/cexp.c.
7749         Delete ancient instructions for compiling GCC on 3b1.
7750         * INSTALL: Regenerate.
7752         * cppfiles.c, cpplib.h, jump.c, protoize.c, c-lex.c, mips/t-ecoff,
7753         mips/t-elf, mips/t-r3900: Remove references to cccp.c.
7754         * convex.h, fx80.h, m68k.h, pdp11.h: Remove references to
7755         cexp.c/cexp.y.
7756         * xm-linux.h, xm-os2.h, romp.h: Remove definition of BSTRING,
7757         which is no longer tested anywhere.
7759         * cppinit.c (handle_option): Don't run error message through
7760         gettext twice.
7762 Tue Apr 18 14:16:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7764         * conflict.c (conflict_graph_add): Pass enum type to htab_find_slot.
7765         * cpperror.c (hashtab.h): Now include.
7766         * cppexp.c (hashtab.h): Likewise.
7767         * cpplex.c (hashtab.h): Likewise.
7768         * cppfiles.c (hashtab.h): Likewise.
7769         (find_include_file, _cpp_calc_hash, cpp_read_file): Pass enum type
7770         to htab_find_slot_with_hash.
7771         * cpphash.c (hashtab.h): Now include.
7772         (_cpp_lookup_slot): INSERT is now enum insert_option.
7773         * cpphash.h (_cpp_lookup_slot): Likewise.
7774         * cppinit.c (hashtab.h): Include earlier.
7775         (initialize_builtins): Pass enum to htab_find_slot.
7776         * cpplib.c (hashtab.h): Now include.
7777         (do_define, do_undef): Pass enum type to _cpp_lookup_slot.
7778         (do_pragma_poison, do_assert): Likewise.
7779         * emit-rtl.c (gen_rtx_CONST_INT): Pass enum to
7780         htab_find_slot_with_hash.
7781         * simplify-rtx.c (cselib_lookup_mem, cselib_lookup): Likewise.
7782         * tree.c (type_hash_add): Likewise.
7783         (build1): Minor cleanup.
7785         * ggc-common.c: Add missing blanks.
7786         * print-tree.c (print_node): Print DECL_OFFSET_ALIGN.
7787         * tree.h (DECL_OFFSET_ALIGN): Fix typo in comment.
7789         * stmt.c (mark_case_node): New function.
7790         (mark_case_nesting): Call it.
7792         * expmed.c (emit_store_flag): If comparing two-word integer
7793         with zero, can optimize NE, EQ, GE, and LT.
7795         * c-decl.c (mark_binding_level): Use 'for' instead of `while'.
7796         * conflict.c: Minor cleanups.
7797         * optabs.c: Add blank line
7798         * simplify-rtx.c: Minor cleanups.
7800 2000-04-18  Stan Cox  <scox@cygnus.com>
7802         * gengenrtl.c (genlegend): Fix misspelling.
7804 2000-04-18  Robert Lipe  <robertlipe@usa.net>
7806         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Added.  Check that
7807         bitfields of the host compiler are not signed quantities.
7808         * config.in: Regenerate.
7809         * configure: Regenerate.
7810         * system.h (USE_ENUM_BITFIELDS): Added.
7811         (ENUM_BITFIELDS): Added.
7812         * rtl.h (rtx_def): Members `code', `mode', now ENUM_BITFIELD.
7813         (SHORT_ENUM_BUG): Deleted.
7814         * tree.h (tree_common): Members `code', `mode', `built_in_class',
7815         now ENUM_BITFIELD.
7816         * config/i386/xm-sco.h (ONLY_INT_FIELDS): Deleted.
7817         (CODE_FIELD_BUG): Likewise.
7818         * config/m68k/x-apollo68 (CC): Deleted SHORT_ENUM_BUG.
7819         (OLD_CC): Likewise.
7820         * config/m68k/x-ccur (X_CFLAGS): Likewise.
7822 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
7824         * cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
7825         mark is active.
7827 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
7829         * cppexp.c (lex): Don't assume tokens are NUL terminated.
7830         * cpplib.c (do_include, do_import, do_include_next,
7831         read_line_number, detect_if_not_defined): Likewise.
7832         * cpphash.c (collect_expansion): Likewise.
7833         (special_symbol, _cpp_macroexpand): Check return from
7834         cpp_file_buffer.
7835         * cpphash.h (CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q): Delete
7836         macros.  Delete all uses.
7838         * gcc.dg/cpp-mi.c: Add two more test cases.
7839         * gcc.dg/cpp-mind.h, gcc.dg/cpp-mindp.h: New files.
7841 2000-04-17  Richard Henderson  <rth@cygnus.com>
7843         * bb-reorder.c (fixup_reorder_chain): Don't look up new block again.
7844         (reorder_basic_blocks): If no epilogue in rtl, force last block last.
7846 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
7848         * function.c (expand_function_start): Use hard_function_value to
7849         compute the RTL to use for DECL_RESULT.
7851 Mon Apr 17 23:35:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7853         * i386.c (athlon_cost): Fix lea, divide and XFmode move costs.
7854         (x86_integer_DFmode_moves, x86_partial_reg_dependency,
7855          x86_memory_mismatch_stall): New global variables.
7856         (ix86_adjust_cost): Handle MEMORY_BOTH on places MEMORY_STORE was only
7857         alloved; fix load penalties for Athlon.
7858         * i386.h (x86_integer_DFmode_moves, x86_partial_reg_dependency,
7859         x86_memory_mismatch_stall): Declare.
7860         (TARGET_INTEGER_DFMODE_MOVES, TARGET_PARTIAL_REG_DEPENDENCY,
7861          TARGET_MEMORY_MISMATCH_STALL): New.
7862         * i386.md (athlon scheduling parameters): Fix latencies according to
7863         Athlon Optimization Manual.
7864         (sahf, xchg, fldcw, leave instruction patterns): Set athlon_decode to
7865         vector.
7866         (fsqrt instruction patterns): Set athlon_decode to direct.
7867         (movhi_1): Promote for TARGET_PARTIAL_REG_DEPENDENCY and for
7868         PARTIAL_REGISTER_STALL with !TARGET_HIMODE_MATH machines.
7869         (movqi_1): Handle promoting correctly for TARGET_PARTIAL_REG_DEPENDENCY
7870         and TARGET_PARTIAL_REGISTER_STALL machines.
7871         (pushdf_nointeger): New pattern.
7872         (pushdf_integer): Rename from pushdf.
7873         (movdf_nointger): Enable for !TARGET_INTEGER_DFMODE_MOVES machines.
7874         (movdf_intger): Disable for !TARGET_INTEGER_DFMODE_MOVES machines.
7876 2000-04-17  Richard Henderson  <rth@cygnus.com>
7878         * loop.c (canonicalize_condition): Add WANT_REG argument.
7879         Stop the search if we match it.
7880         * expr.h (canonicalize_condition): Update decl.
7881         * predict.c (expected_value_to_br_prob): Use it.  Track last
7882         expected value note.
7883         (find_expected_value): Remove.
7885         * reorg.c (mostly_true_jump): Always use BR_PROB if present.
7887 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
7889         * aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE([AC_FUNC_MMAP]).
7890         (AC_FUNC_MMAP_FILE): New macro, tests read-only private map of
7891         a plain file.
7892         * configure.in: Call AC_FUNC_MMAP_FILE.
7893         * configure: Regenerate.
7894         * config.in: Regenerate.
7896         * intl/loadmsgcat.c: Test HAVE_MMAP_FILE not HAVE_MMAP.
7897         * fixinc/fixincl.c: Likewise.
7899 2000-04-17  Richard Henderson  <rth@cygnus.com>
7901         * builtins.c (expand_builtin_expect): New.
7902         (expand_builtin): Call it.
7903         * builtins.def (BUILT_IN_EXPECT): New.
7904         * c-common.c (c_common_nodes_and_builtins): Declare __builtin_expect.
7905         * extend.texi: Document it.
7907         * predict.c (expected_value_to_br_prob): New.
7908         (find_expected_value): New.
7909         * basic-block.h (expected_value_to_br_prob): Declare.
7910         * toplev.c (rest_of_compilation): Invoke it.
7912         * rtl.h (NOTE_EXPECTED_VALUE): New.
7913         (NOTE_INSN_EXPECTED_VALUE): New.
7914         * rtl.c (note_insn_name): Update.
7915         * print-rtl.c (print_rtx): Reorg NOTE_LINE_NUMBER special
7916         cases; handle NOTE_INSN_EXPECTED_VALUE.
7918 2000-04-17  Jakub Jelinek  <jakub@redhat.com>
7920         * config/sparc/sparc.c (eligible_for_sibcall_delay): Cannot use
7921         leaf sibcall delay slot if flag_pic.
7922         (output_sibcall): Always emit call for leaf sibcall if flag_pic.
7924 2000-04-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7926         * Makefile.in (stmp-fixproto): Acknowledge errors in fixproto.
7928         * fixproto: If fix-header fails, exit with an error.
7930 Mon Apr 17 14:59:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7932         * cse.c (struct check_depdendence_data): New.
7933         (check_dependence): New function.
7934         (invalidate): Use check_depdenence.
7936 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
7938         * dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that
7939         UNITS_PER_WORD is unsigned.
7941         * tree.h (struct tree_common): Remove misleading comment.
7943 2000-04-16  Dave Pitts  <dpitts@cozx.com>
7945         * Makefile.in ($(srcdir)/c-parse.y: c-parse.in): Enclose the whole
7946         message in quotes. Otherwise, IBM's make program treats the '#' as the
7947         start of a comment and ignores the remainder of the line.
7949         * c-lex.c (yylex): Change for EBCDIC, lower case characters preceed
7950         upper case.
7951         * cccp.c (initialize_char_syntax): Allow for holes in EBCDIC.
7952         * cexp.y (initialize_random_junk): Likewise.
7953         * cppfiles.c (find_include_file): Cast alloca return value.
7954         * cppinit.c (initialize_standard_includes): Likewise.
7955         * cpplib.c (cpp_define, cpp_undef): Likewise.
7956         * defaults.h (ASM_OUTPUT_ASCII): Use ISPRINT.
7957         * final.c (output_asm_insn): Allow for holes in EBCDIC.
7958         * fold-const.c (CHARMASK): New.
7959         (real_hex_to_f): Use it.
7960         * real.c (CHARMASK): New.
7961         (etoasc, asctoeg): Use it.
7962         (asctoeg): EBCDIC lower case characters preceed upper case.
7964         * i370.c (mvs_add_label): Change spacing for coding conventions.
7965         * i370.h (ASM_OUTPUT_CASE_LABEL): Change to the data CSECT for the
7966         outputing case vectors.
7967         (ASM_OUTPUT_CASE_END): New, put assembler back into code CSECT.
7968         (ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Remove page check,
7969         since vector in in the data CSECT.
7970         (ASM_OUTPUT_REG_POP, ASM_OUTPUT_REG_PUSH): Restore to correct operation.
7971         * i370.md (Many patterns): Put the length in the XL directives.
7972         (movdi): Put back STM and MVC in definition.
7973         (floatsidf2): Correct TARGET_ELF_ABI pattern and add back the LE370
7974         pattern using the TCA.
7975         * oe.h (CPP_SPEC): Added to allow trigraphs.
7976         * xm-oe.h (HOST_BITS_PER_LONGLONG): Change to 32. IBM's compiler does
7977         not support the "long long" type.
7979 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
7981         * config/mips/mips-protos.h (mips_legitimate_address_p): New
7982         function.
7983         (mips_reg_mode_ok_for_base_p): Likewise.
7984         * config/mips/mips.h (REG_OK_STRICT_P): Don't define.
7985         (REG_OK_FOR_INDEX_P): Define unconditionally.
7986         (REG_MODE_OK_FOR_BASE_P): Use mips_reg_mode_ok_for_base_p.
7987         (GO_IF_LEGITIMATE_ADDRESS): Use mips_legitimate_address_p.
7988         * config/mips/mips.c (mips16_simple_memory_operand): Adjust now
7989         that GET_MODE_SIZE is unsigned.
7990         (mips_reg_mode_ok_for_base_p): Define.
7991         (mips_legitimate_address_p): Likewise.  Adjust now
7992         that GET_MODE_SIZE is unsigned.
7993         (block_move_loop): Make the number of bytes unsigned.
7994         (expand_block_move): Likewise.
7995         (function_arg): Make the loop counter unsigned to match the
7996         boundary condition.
7998 2000-04-16  Richard Henderson  <rth@cygnus.com>
8000         * rtl.h (enum insn_note): New enumeration.  Subsume
8001         NOTE_INSN_DELETED and friends.
8002         (GET_NOTE_INSN_NAME): Adjust index by NOTE_INSN_BIAS.
8003         * rtl.c (note_insn_name): Tweak string order.
8005 2000-04-15  Zack Weinberg  <zack@wolery.cumb.org>
8007         * cpplex.c (_cpp_read_and_prescan): Enlarge len by setting it
8008         to offset * 2.
8010         * cpplex.c (output_line_command): Remove debugging prints.
8011         (cpp_output_tokens): Don't write out a zero-length buffer or
8012         try to see if it has a newline in it.
8013         (_cpp_expand_to_buffer): Copy the source buffer before pushing.
8014         (_cpp_read_and_prescan): Move shift-down of pushback bytes to
8015         the end of the loop.  Use memmove.  Don't read past the end of
8016         the buffer.  Remove trailing newlines from error messages.
8018 2004-04-16  Neil Booth  <NeilB@earthling.net>
8020         * cpphash.h (SYNTAX_INCLUDE, SYNTAX_ASSERT, directive_handler): new.
8021         * cpplib.c: Add new syntax flags to directive table, and
8022         supporting macros.
8024 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
8026         * i386.c (ix86_expand_epilogue): Yes, the x86 can pop 64k at once
8027         using ret $N.
8029 2000-04-15  David Edelsohn  <edelsohn@gnu.org>
8031         * toplev.c (display_help): Prefix "f" to "sched-verbose=".
8032         * haifa-sched.c: Update -fsched-verbose comments to use "=".
8034 Sat Apr 15 10:59:19 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8036         * Makefile.in (ggc-page.o): Now includes toplev.h.
8037         * ggc-page.c (toplev.h): Now included.
8038         (gc_time): Remove declaration.
8039         (ggc_collect): TIME now long.
8040         * toplev.c (parse_time, varasm_time, gc_time): Still global; all
8041         others static.
8042         * toplev.h (gc_time, parse_time, gc_time): New declarations.
8044         * toplev.c: Make *_time variable long to reduce chance of overflow.
8045         (TIMEVAR): Likewise for `otime'.
8046         (print_time): Arg is now long; compute percentage in FP and round.
8047         * toplev.h (print_time): Arg is long.
8049         * tree.c: Minor whitespace changes.
8051         * configure.in (alpha*-*-*): Add config/alpha/t-alpha.
8052         * configure: Rebuilt.
8053         * libgcc2.c (__fixunstfDI): Renamed from __fixunstfdi.
8054         (__fixunsxfDI): Renamed from __fixunsxfdi.
8055         (__fixunsdfDI): Renamed from __fixunsdfdi.
8056         (__fixunssfDI): Renamed from __fixunssfdi.
8057         (__floatdisf): Use proper type in REP_BIT macro.
8058         (__fixunsxfSI): Renamed from __fixunsxfsi.
8059         (__fixunsdfSI): Renamed from __fixunsdfsi.
8060         (__fixunssfSI): Renamed from __fixunssfsi.
8061         * libgcc2.h: Add cases for MIN_UNITS_PER_WORD > 4.
8062         Change location of macros and upper-case some names as above.
8063         * longlong.h ([alpha]): Use PARAMS, not __P in decl of __udiv__qrnnd.
8064         * config/alpha/t-alpha, config/alpha/qrnnd.asm: New files.
8066         * varasm.c (assemble_variable): Add cast to remove warning.
8067         (immed_real_const_1): Only use CONST[01]_RTX if not in nested function.
8069         * flow.c (count_basic_blocks, find_basic_blocks_1): Remove last change.
8070         * optabs.c (emit_libcall_block): If have REG_EH_REGION, update
8071         region number to -1.
8073 2000-04-15  Richard Earnshaw (rearnsah@arm.com)
8075         * emit-rtl.c (unshare_all_rtl_again): Unmark everything, then
8076         call unshare_all_rtl.
8078         * arm.md (movhi): REGNO_POINTER_ALIGN is now bits.
8080 Fri Apr 14 16:58:45 2000  Jim Wilson  <wilson@cygnus.com>
8082         * config/ia64/lib1funcs.asm (__divdi3, __moddi3, __udivdi3, __umoddi3):
8083         Use .s1 not .s0 for all FP instructions.
8085 2000-04-14  Zack Weinberg  <zack@wolery.cumb.org>
8087         * cpplex.c (cpp_output_tokens, cpp_scan_buffer_nooutput): New public
8088         interfaces.
8089         (safe_fwrite, output_line_command): New static functions.
8090         (cpp_expand_to_buffer): Now private to cpplib.
8091         (cpp_scan_buffer): Take a printer.
8093         * cpphash.h: Update prototypes.
8094         * cpplib.h: Update prototypes.
8095         (cpp_printer): New.
8096         (cpp_buffer): Remove last_nominal_fname.
8097         (cpp_reader): Remove lineno.
8099         * cppmain.c: Use a cpp_printer.
8100         * fix-header.c: No need to inhibit line commands.  Call
8101         cpp_start_read with no printer.
8103         * cpperror.c (cpp_notice_from_errno): Provide default name.
8104         * cppfiles.c (make_IHASH, _cpp_fake_ihash): New functions.
8105         (find_include_file, cpp_read_file): Use make_IHASH.
8106         (file_cleanup): Set control_macro and clear
8107         input_stack_listing_current here.
8108         (_cpp_execute_include): Don't output entering-file marker.
8109         * cpphash.c (special_symbol): Look for the line number in the
8110         buffer, not the reader.
8111         (_cpp_macroexpand): No need to disable line commands.
8112         (_cpp_dump_definition): No need to generate line commands.
8113         (dump_hash_helper): Remove excess newline from output.
8114         * cppinit.c (dump_special_to_buffer): No need to generate line
8115         commands.
8116         (cpp_printer_init): New.
8117         (cpp_start_read): Take a printer, and start it up if it's not
8118         NULL.  No need to generate line commands.
8119         (cpp_finish): Expect no buffers stacked at all.  Take a
8120         printer argument, and flush the output buffer if it's not
8121         NULL.
8122         * cpplex.c (_cpp_lex_token): Return EOF if there's no buffer.
8123         Don't put two hashes at the beginning of an assertion.
8124         (cpp_get_token): Don't increment pfile->lineno or emit line
8125         commands here.  Return EOF if there's no buffer when we get
8126         EOF.
8127         * cpplib.c (do_define, skip_if_group):
8128         No need to disable line commands.
8129         (_cpp_output_line_command): Delete function.
8130         (do_line): Don't emit line commands here, but set things up so
8131         they will be emitted if necessary.  Use _cpp_fake_ihash to
8132         make unique nominal_fnames if necessary.
8133         (do_elif, do_else, _cpp_handle_eof): Call cpp_error_with_line
8134         with 0 for column, not -1.
8135         (_cpp_handle_eof): Don't set the control macro here.  Don't
8136         clear input_stack_listing_current here.  Don't emit line
8137         commands.
8139 2000-04-14  Geoff Keating  <geoffk@cygnus.com>
8141         * config/rs6000/sysv4.h (LINK_START_SOLARIS_SPEC): Define to empty
8142         always, use the default SVR4 start address.
8144         * config/rs6000/linux.h (LINK_SPEC): Don't define.
8145         (LINK_SHLIB_SPEC): Define.
8146         (LINK_START_DEFAULT_SPEC): Define.
8147         (LINK_OS_DEFAULT_SPEC): Define.
8149         * config/rs6000/sysv4.h (ENDFILE_SPEC): Use the %(endfile_*) macros.
8151         * config/rs6000/eabi.asm (__eabi): Call __init rather than
8152         __do_global_ctors to handle constructors.
8153         * config/rs6000/sysv4.h (STARTFILE_ADS_SPEC): Use crtbegin.
8154         (STARTFILE_YELLOWKNIFE_SPEC): Likewise.
8155         (STARTFILE_MVME_SPEC): Likewise.
8156         (STARTFILE_SIM_SPEC): Likewise.
8157         (ENDFILE_ADS_SPEC): Use crtend.
8158         (ENDFILE_YELLOWKNIFE_SPEC): Likewise.
8159         (ENDFILE_MVME_SPEC): Likewise.
8160         (ENDFILE_SIM_SPEC): Likewise.
8161         (STARTFILE_SOLARIS_SPEC): Use crtbegin/crtbeginS.
8162         (ENDFILE_SOLARIS_SPEC): Use crtend/crtendS.
8163         (STARTFILE_LINUX_SPEC): Use crtbeginS for shared objects.
8164         (ENDFILE_LINUX_SPEC): Use crtendS for shared objects.
8165         * config/rs6000/t-ppccomm (LIB2FUNCS_EXTRA): Don't build eabi-ctors.o.
8166         (EXTRA_MULTILIB_PARTS): Build crtbeginS/crtendS.
8167         (CRTSTUFF_T_CFLAGS_S): Define.
8168         * config/rs6000/eabi-ctors.c: Delete.
8170         * config/rs6000/eabi-ci.asm (__init): Align stack to 16-byte
8171         boundary.
8172         (__fini): Likewise.
8173         * config/rs6000/eabi-cn.asm (__init): Allow for 16-byte stack frame.
8174         boundary.
8175         (__fini): Likewise.
8177 Fri Apr 14 16:09:02 2000  Jim Wilson  <wilson@cygnus.com>
8179         * combine.c (force_to_mode, case LSHIFTRT): Check that shift shift
8180         plus mask size is smaller or equal to the mode size.
8182 Fri Apr 14 18:07:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8184         * print-rtl.c (print_rtx, case NOTE): Don't blow up if NOTE_BASIC_BLOCK
8185         not yet set.
8187         * expr.c (reload.h): Now included.
8188         (emit_block_move): Set volatile_ok when checking for movstr.
8189         (emit_move_1): Check for replacements in addresses in multi-word case.
8190         * Makefile.in (expr.o): Now includes reload.h.
8192         * flow.c (count_basic_blocks): Remove unused var PREV_CALL.
8193         Never have a LIBCALL end a basic block.
8194         (find_basic_blocks_1): Likewise.
8195         Reorganize CALL_INSN cases.
8197         * sbitmap.h (EXECUTE_IF_SET_IN_SBITMAP): Revert last change.
8199 Fri Apr 14 10:54:22 2000  Jim Wilson  <wilson@cygnus.com>
8201         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Drop obsolete
8202         completers from mov.ret instruction.
8204 2000-04-14  Richard Henderson  <rth@cygnus.com>
8206         * fold-const.c (extract_muldiv): Don't distribute and widen
8207         multiply across plus for non-sizetype unsigned types.
8209 2000-04-14  Richard Henderson  <rth@cygnus.com>
8211         * flow.c (find_auto_inc): Don't autoinc eliminable registers.
8212         If the original source is dead in the incr insn, it's dead now.
8214 Fri Apr 14 07:40:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8216         * stor-layout.c (layout_decl): Properly compare KNOWN_ALIGN to
8217         see if DECL_BIT_FIELD needs to still be set.
8219         * tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.
8221         * dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call
8222         print_int_cst_octal with something that's not an INTEGER_CST.
8224         * config/alpha/alpha.c (alpha_emit_floatuns): Ensure we pass a REG
8225         and not a SUBREG to a FLOAT rtl.
8227 Thu Apr 13 19:39:56 2000  Clinton Popetz  <cpopetz@cygnus.com>
8229         * emit-rtl.c (try_split): Avoid infinite loop if the split
8230         results in a sequence that contains the original insn.
8232 2000-04-13  Andreas Jaeger  <aj@suse.de>
8234         * config/mips/mips.c (expand_block_move): Pass alignment
8235         argument to move_by_pieces in bits, not bytes.
8237         * config/mips/linux.h (CPP_PREDEFINES): Also define __PIC__ and
8238         __pic__ for little endian.
8240 2000-04-13  Andreas Jaeger  <aj@suse.de>
8242         * config/i386/i386-protos.h: Add prototype for
8243         uno_comparison_operator.
8245 Thu Apr 13 15:55:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8247         * alias.c (nonlocal_reference_p): Take care of CALL_INSNS's fusage.
8248         * calls.c (ECF_PURE): New flag.
8249         (emit_call_1): Handle ECF_PURE calls.
8250         (initialize_argument_information): Unset ECF_PURE flag too.
8251         (precompute_arguments): Precompute for ECF_PURE too.
8252         (expand_call): Handle ECF_PURE calls too.
8253         (emit_library_call_value_1): Rename no_queue argument to fn_type,
8254         accept value of 2 as pure function.
8255         (emit_library_call_value, emit_library_call): Rename no_queue argument
8256         to fn_type.
8257         * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
8259         * tree.h (DECL_IS_PURE): New macro.
8260         (struct tree_decl): Add pure_flag.
8261         * c-common.c (enum attrs): Add attribute "pure".
8262         (init_attributes): Initialize attribute "pure"
8263         (decl_attributes): Handle attribute "pure".
8264         * extend.texi (Attribute "pure"): Document.
8265         * calls.c (expand_call): Add (mem:BLK (scratch)) to "equal from"
8266         in pure function.
8267         (flags_from_decl_or_type): Support attribute "pure".
8269 2000-04-13  Jason Merrill  <jason@casey.cygnus.com>
8271         * cpplex.c (_cpp_lex_token): Handle digraphs.  Don't null-terminate
8272         the token except for numbers and identifiers.
8274 Thu Apr 13 00:09:16 EDT 2000  John Wehle  (john@feith.com)
8276         * i386.c (ix86_expand_binary_operator,
8277         ix86_expand_unary_operator): Check no_new_pseudos
8278         instead of reload_in_progress and reload_completed.
8279         (ix86_split_ashldi, ix86_split_ashrdi,
8280         ix86_split_lshrdi): Check no_new_pseudos instead
8281         of reload_completed.
8283 2000-04-12  Jeffrey A Law  (law@cygnus.com)
8285         * function.c (purge_addressof): Unshare any shared rtl created by
8286         purge_addressof and its children.
8288 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
8290         * function.c (aggregate_value_p): VOID_TYPE nodes are never
8291         aggregates.
8293 2000-04-05  Andreas Jaeger  <aj@suse.de>
8295         * config/mips/linux.h (SUBTARGET_ASM_SPEC): Use proper flags if
8296         not compiling PIC code, add flags for mabi=64.
8297         (SUBTARGET_CPP_SIZE_SPEC): New.
8298         (SUBTARGET_CPP_SPEC): New.
8299         (CPP_PREDEFINES): Define __PIC__ and __pic__.  PIC code is default
8300         for MIPS/Linux and lots of code needs these defines.
8302 Wed Apr 12 22:44:11 2000  Hans-Peter Nilsson  <hp@axis.com>
8304         * reorg.c (fill_slots_from_thread): Check side_effects_p when
8305         trying the "opposite arithmetic" approach.
8307 Wed Apr 12 20:51:20 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
8309         * sh.h (STRUCT_VALUE): Just 0 for TARGET_HITACHI.
8310         (struct sh_args): Add new field force_mem.
8311         (INIT_CUMULATIVE_ARGS): Initialize it.
8312         (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Act on it.
8314 Wed Apr 12 17:20:41 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8316         * calls.c (expand_call): Do not reverse args in "equal from" field.
8317         (emit_library_call_value_1): Emit_libcall_block for const and pure
8318         function.
8320 Wed Apr 12 16:00:25 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
8322         * reload1.c (reload_combine): Don't enable optimization for fixed
8323         registers when encountering a BARRIER.
8325 Wed Apr 12 15:54:11 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8327         * builtins.c (expand_builtin_memcmp): Do expansion even with
8328         !HAVE_cmpstrsi, do libcall when gen_strcmpsi fails.
8330         * calls.c (expand_call): Do NO_DEFER_POP unconditionally once
8331         stack is propertly aligned; add sanity checking for aligned
8332         stack pointer.
8333         (expand_library_call_value_1): Add sanity checking for aligned
8334         stack pointer.
8336 Wed Apr 12 07:51:54 2000  Catherine Moore  <clm@cygnus.com>
8338         * calls.c (emit_library_call_value_1): Change 3rd arg to
8339         locate_and_pad_parm to disregard the setting of partial.
8341 Wed Apr 12 08:47:38 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8343         * tree.c (unsave_expr_now_r, unsafe_for_reeval): Properly do TREE_LIST.
8345         * print-rtl.c (print_rtx): For CALL_PLACEHOLDER, output the
8346         CALL_INSN from the normal case.
8348 Fri Apr  7 12:23:04 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8350         * i386.c (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
8351         New global variables.
8352         (ix86_emit_epilogue_adjustment): Do not attempt to use pop for the
8353         adjustment.
8354         * i386.h (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
8355         Declare,
8356         (TARGET_SUB_ESP_4, TARGET_SUB_ESP_8, TARGET_ADD_ESP_4,
8357          TARGET_ADD_ESP_8): New macros.
8358         * i386.md: Add peep2s to convert esp adjustments to push and pop
8359         instructions.
8360         (pushsi_prologue, popsi_epilogue): New patterns.
8362 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
8364         * real.c (toe64): Remove stale #endif from the last change.
8366 2000-04-12  Stephen L Moshier  <moshier@mediaone.net>
8368         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Comment.
8369         * real.c (toe64): Revert previous change.
8371 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
8373         * objc/objc-act.c: Include ggc.h.
8374         (objc_tree_index, objc_global_trees): Convert most of the
8375         static tree variables into a static array with previous names
8376         as defines.
8377         (objc_ellipsis_node): New variable.
8378         (lang_init): Call objc_act_parse_init and c_parse_init.
8379         Create objc_ellipsis_node.
8380         (build_selector_translation_table): Use objc_ellipsis_node instead
8381         of (tree)1.
8382         (hack_method_prototype): Likewise.
8383         (get_arg_type_list): Likewise.
8384         (start_method_def): Likewise.
8385         (continue_method_def): Likewise.
8386         (gen_method_decl): Likewise.
8387         (ggc_mark_imp_list): New function.
8388         (ggc_mark_hash_table): New function.
8389         (objc_act_parse_init): New function.
8390         * objc/objc-act.h (objc_ellipsis_node): Add extern variable.
8391         * c-parse.in (c_parse_init): For objc add roots of objc specific
8392         local tree variables.
8393         * objc/objc-parse.y: Rebuilt.
8394         * objc/objc-parse.c: Rebuilt.
8395         (opt_parm_list): Use objc_ellipsis_node instead of (tree)1.
8397 Wed Apr 12 01:00:44 EDT 2000  John Wehle  (john@feith.com)
8399         * cse.c (delete_trivially_dead_insns): Also delete insns
8400         that copy a register to itself where the destination is
8401         a strict_low_part.
8403 2000-04-11  Richard Henderson  <rth@cygnus.com>
8405         * flow.c (struct propagate_block_info): Add new_dead, new_live.
8406         (propagate_block): Initialize them.  Use them in parallel instead
8407         of one tmp variable, ie revert much of the 0408 and 0407 functional
8408         changes, but keep the structural changes.
8409         (mark_set_regs): Take new_dead from propagate_block_info instead.
8410         (mark_set_1, mark_set_reg): Likewise.
8411         (mark_used_regs): Likewise with new_live.
8412         (mark_used_reg): Likewise.  Revert 0408 change.
8414 2000-04-11  Nick Clifton  <nickc@cygnus.com>
8416         * config/arm/arm.h: (INCOMING_RETURN_ADDR_RTX): Remove Dwarf2
8417         restriction.
8418         (DWARF_FRAME_RETURN_COLUMN): Remove Dwarf2 restriction.
8420 2000-04-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
8422         * config/elfos.h (SELECT_SECTION): Decide whether to use a data or
8423         const section to output a CONSTRUCTOR based on the same conditions
8424         used for VAR_DECLs.
8426 Tue Apr 11 09:55:59 2000  Jeffrey A Law  (law@cygnus.com)
8428         * pa/long-double.h (FIX_TRUNCTFSI2_LIBCALL): Tweak for PA64.
8429         * pa/pa-protos.h (output_call): Add additional argument indicating
8430         if the call is a sibling/tail call.
8431         (compute_zdepdi_operands, output_64bit_and): Prototype new functions.
8432         (compute_64bit_ior, cmpib_comparison_operator): Likewise.
8433         (function_arg, function_arg_partial_nregs): Likewise
8434         * pa/pa.c (override_options): Always set flag_pic for TARGET_64BIT.
8435         (emit_move_sequence): Zero extend certain constants as needed
8436         for TARGET_64BIT.
8437         (compute_zdepdi_operands, output_64bit_and): New functions.
8438         (output_64bit_ior, function_arg): Likewise.
8439         (cmpib_comparison_operator, function_arg_partial_nregs): Likewise.
8440         (compute_frame_size, hppa_expand_prologue): Handle TARGET_64BIT.
8441         (hppa_expand_epilogue, return_addr_rtx, hppa_va_arg): Likewise.
8442         (hppa_builtin_saveregs, output_cbranch, output_bb): Likewise.
8443         (output_bvb): Likewise.
8444         (output_millicode_call): Return pointer is in %r2 for TARGET_64BIT.
8445         (output_call): New argument 'sibcall'.  Generate sibcall sequences
8446         as needed.
8447         (print_operand); Handle cases 'Q', 'p', and 'z' for TARGET_64BIT.  For
8448         (ouput_arg_descriptor): Do not emit argument descriptors for
8449         TARGET_64BIT.
8450         * pa/pa.h (TARGET_PA_11, TARGET_PA_20): Only define if not already
8451         defined.
8452         (TARGET_64BIT, PROMOTE_FUNCTION_RETURN): Define.
8453         (FUNCTION_OK_FOR_SIBALL): Define.
8454         (CPP_PA10_SPEC, CPP_PA11_SPEC, CPP_PA20_SPEC): Define.
8455         (CPP_CPU_DEFAULT_SPEC, SUBTARGET_EXTRA_SPECS, EXTRA_SPECS): Likewise.
8456         (CPP_SPEC): Use new spec infrastructure.
8457         (BITS_PER_WORD, UNITS_PER_WORD): Handle TARGET_64BIT.
8458         (STACK_BOUNDARY, FUNCTION_BOUNDARY, PIC_OFFSET_TABLE_REGNUM): Likewise.
8459         (RETURN_IN_MEMORY, EXTRA_CONSTRAINT, FIRST_PARM_OFFSET): Likewise.
8460         (REG_PARM_STACK_SPACE, STACK_POINTER_OFFSET): Likewise.
8461         (STACK_DYNAMIC_OFFSET, FUNCTION_VALUE): Likewise.
8462         (FUNCTION_ARG_PASS_BY_REFERENCE, FUNCTION_ARG_CALLEE_COPIES): Likewise.
8463         (TRAMPOLINE_TEMPLATE, TRAMPOLINE_SIZE): Likewise.
8464         (INITIALIZE_TRAMPOLINE, LEGITIMATE_CONSTANT_P): Likewise.
8465         (CONST_OK_FOR_LETTER_P, MOVE_RATIO): Likewise.
8466         (FUNCTION_ARG); Call out to C code.
8467         (FUNCTION_ARG_PARTIAL_NREGS): Likewise.
8468         (MAX_BITS_PER_WORD, MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Define.
8469         (MIN_UNITS_PER_WORD): Likewise.
8470         * pa/pa.md (cmpdi): New expander.
8471         (scc patterns, movstrsi): Not available for TARGET_64BIT.
8472         (64bit conditional arithmetic): New patterns.
8473         (absdi2, smindi3, umindi3, smaxdi3, umaxdi3): New patterns.
8474         (movsicc): Not available if modes on all the operands to not match.
8475         (movdicc): New expander and associated patterns.
8476         (64bit branches): New patterns.
8477         (pre_load, post_store): Generate appropriate code for TARGET_64BIT.
8478         (pre_ldd, post_std): New patterns.
8479         (64bit addil, load low part): New patterns.
8480         (special movsf constant): Not available for TARGET_64BIT.
8481         (movsf, movdf expanders): Force constants into memory.
8482         (32bit movdf/movdi patterns): Disable for TARGET_64BIT.
8483         (64bit movdf/movdi patterns): New patterns.
8484         (zero_extendqidi2, zero_extendhidi2, zero_extendsidi2): New patterns
8485         for TARGET_64BIT.
8486         (extendqidi2, extendhidi2, extendsidi2): Similarly.
8487         (adddi3 expander): Allow "arith_operand" for second input.
8488         (32bit adddi3, subdi3, uaddcm): Disable for TARGET_64BIT.
8489         (64bit adddi3, subsi3, uaddcm): New patterns for TARGET_64BIT.
8490         (mulsi3 expander): Revamp slightly so it supports TARGET_64BIT too.
8491         (muldi3): New expander for TARGET_64BIT.
8492         (divsi3, udivsi3, modsi3, umodsi3): Fourth operand must be (reg:SI 2)
8493         for TARGET_64BIT.
8494         (32bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm): Disable
8495         patterns for TARGET_64BIT.
8496         (64bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm, shadd): New
8497         patterns for TARGET_64BIT.
8498         (64bit bit insertion/extractions): New patterns for TARGET_64BIT.
8499         (64bit shifts/rotates): New patterns/expanders for TARGET_64BIT.
8500         (sibcall_epilogue): New expander.
8501         (casesi): Tweak for TARGET_64BIT.
8502         (call expanders): Set & use the outgoing argument pointer.  Use the
8503         64bit call patterns as needed. Add additional arg to output_call.
8504         (call_internal_reg_64bit, call_value_internal_reg_64bit): New pattern.
8505         (sibcall, sibcall_internal_symref): New expanders.
8506         (sibcall_value, sibcall_value_internal_symref
8507         (interspace_jump): Turn into an expander + matching patterns.
8508         (canonicalize_funcptr_for_compare): Not needed for TARGET_64BIT.
8509         * pa/pa64-regs.h: Eliminate trigraph sequences.
8510         * pa/pa64-start.h (TARGET_PA_20): Fix typo.
8512 2000-04-11  Zack Weinberg  <zack@wolery.cumb.org>
8514         * cppexp.c, cpphash.c, cpphash.h, cpplex.c, cpplib.c,
8515         cpplib.h, cppmain.c, fix-header.c, scan-decls.c: Replace
8516         cpp_token with cpp_ttype everywhere.
8517         * cpperror.c, cpphash.c, cpplex.c, cpplib.c, scan-decls.c:
8518         Replace cpp_buf_line_and_col with CPP_BUF_LINE and/or
8519         CPP_BUF_COL.  Line and column numbers are unsigned int, not
8520         long.
8521         * cpplex.c (cpp_buf_line_and_col): Delete.
8522         * cpplib.h (struct cpp_buffer, struct cpp_reader): Change
8523         'long lineno' to 'unsigned int lineno'.
8524         (CPP_BUF_LINE, CPP_BUF_COL): New macros.
8526 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8528         * extend.texi: ISO C99 is not a draft anymore.
8529         * invoke.texi: ISO C++ is not a draft anymore.
8530         * cpp.texi: __cplusplus is required by the ISO standard.
8532         * extend.texi (-fthis-is-variable): Undocument.
8533         * flags.h (warn_template_debugging): Remove declaration.
8534         * gcc.1 (-fall-virtual, -fenum-int-equiv, -fthis-is-variable,
8535         -Wenum-clash, -Wtemplate-debugging): Undocument.
8537 2000-04-10  Nick Clifton  <nickc@cygnus.com>
8539         * config/arm/arm.h (HOST_INT): New macro: Declare a HOST_WIDE_INT
8540         integer.
8541         (HOST_UINT): New macro: Declare an unsigned HOST_WIDE_INT
8542         integer.
8543         (ARM_SIGN_EXTEND): Use HOST_UINT.
8544         (STRIP_NAME_ENCODING): Prevent warnings about redefinitions.
8545         (ASM_OUTPUT_LABELREF): Prevent warnings about redefinitions.
8546         (INCOMING_RETURN_ADDR_RTX): Only define if Dwarf2 is supported.
8547         (DWARF_FRAME_RETURN_COLUMN): Only define if Dwarf2 is supported.
8549         * config/arm/arm.c: (const_ok_for_arm): Use HOST_UINT.
8550         (arm_gen_constant): Use HOST_UINT.
8551         (arm_canonicalize_constant): Use HOST_UINT.
8552         (arm_reload_in_hi): Use HOST_UINT.
8553         (arm_reload_out_hi): Use HOST_UINT.
8554         (output_multi_immediate): Use HOST_UINT.
8555         (int_log2): Use HOST_UINT.
8556         (arm_poke_function_name): Use HOST_UINT.
8557         (arm_output_epilogue): Use arm_volatile_func().
8558         (output_thumb_prologue): Use arm_strip_name_encoding().
8560 Mon Apr 10 15:40:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8562         * sbitmap.c (sbitmap_a_subset_b_p): Rework loop to avoid potential
8563         of sequence point problems.
8565 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
8567         * rtl.def (ASHIFT, ROTATE, ASHIFTRT, LSHIFTRT, ROTATERT):
8568         Recomment.
8569         * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Recomment.
8571 Mon Apr 10 07:21:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8573         * sbitmap.h: Whitespace changes and use upper-case macro args.
8574         (struct simple_bitmap_def): All sizes now unsigned.
8575         (EXECUTE_IF_SET_IN_SBITMAP): Internal vars now _X instead of X_.
8576         * sbitmap.c (sbitmap_alloc): N_ELMS now unsigned; also local vars.
8577         (sbitmap_vector_alloc): Parms and local vars now unsigned.
8578         (sbitmap_zero): Cast bzero arg to PTR.
8579         (sbitmap_vector_zero, sbitmap_vector_one): Parm and Local var unsigned.
8580         (sbitmap_union_of_diffs): Change loop index to unsigned and rework
8581         loop to make structure clearer.
8582         (sbitmap_not, sbitmap_difference, sbitmap_a_and_b): Likewise.
8583         (sbitmap_a_or_b, sbitmap_a_subset_b_p, sbitmap_a_or_b_and_c): Likewise.
8584         (sbitmap_a_and_b_or_c): Likewise.
8585         (sbitmap_intersection_of_succs): Minor cleanups.
8586         (sbitmap_intersection_of_preds, sbitmap_union_of_succs): Likewise.
8587         (sbitmap_union_of_preds): Likewise.
8588         (sbitmap_first_set_bit, dump_sbitmap): Local variables now unsigned.
8589         (debug_sbitmap): New function.
8591         * c-convert.c (convert): Handle REFERENCE_TYPE like POINTER_TYPE.
8592         * c-typeck.c (convert_for_assignment): Likewise.
8594         * expmed.c (init_expmed): Don't free objects we make.
8595         * emit-rtl.c (gen_rtx_CONST_INT, init_emit_once): Minor cleanups.
8597         * expr.c (get_inner_reference): Correct some WITH_RECORD_EXPR cases.
8598         (expand_expr, case CONVERT_EXPR): Pass proper alignment to store_field.
8600         * gcse.c (expr_hash_table_size): Now unsigned.
8601         (compute_ae_gen): Local variable `i' now unsigned.
8602         (compute_ae_kill, pre_insert_copies, pre_delete, pre_gcse): Likewise.
8603         (compute_transout, hoist_code): Likewise.
8604         (compute_local_properties): Likewise, also hash_table_size.
8605         (alloc_expr_hash_table): N_INSNS now unsigned.
8606         (delete_null_pointer_checks): Mark arg F as unused.
8608         * regrename.c: Minor cleanups, including chang some variables
8609         to unsigned int.
8611 2000-04-10  Neil Booth  <NeilB@earthling.net>
8613         * cpplex.c (skip_block_comment): Use pointer arithmetic rather
8614         than GETC ().
8615         * cpphash.h: (CPP_BUMP_BUFFER_LINE_CUR, CPP_BUMP_LINE_CUR): New.
8617 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8619         * invoke.texi (-fno-gnu-keywords): Remove classof, headof,
8620         __classof__, and __headof__ from the list of gnu keywords.
8621         (-ansi): Remove -foperator-names from list of implied options.
8622         Do not call it ANSI C++.
8623         (-foperator-names): Document as -fno-operator-names.
8625 2000-04-09  Zack Weinberg  <zack@wolery.cumb.org>
8627         * cpphash.c (timestamp): Delete.
8628         (del_HASHNODE): If type is T_MCONST, free value.cpval.
8629         (special_symbol): Remove unnecessary braces.  Remove
8630         T_VERSION.  Treat T_STDC like T_CONST unless
8631         STDC_0_IN_SYSTEM_HEADERS.  Render both __DATE__ and __TIME__
8632         when one is encountered, then convert them into T_MCONST
8633         nodes.
8634         * cppinit.c (builtin_array): version_string is T_MCONST.
8635         __STDC__ has a "1" in its cpval.  Don't have a terminator
8636         entry.  Clean up which entries are dumped.
8637         (initialize_builtins): Only __STDC__ gets the special
8638         -traditional treatment.  Count the length of builtin_array.
8639         Render version_string here.
8640         * cpphash.h: Remove T_VERSION.  Add T_MCONST.
8641         * cpplib.h (struct cpp_reader): Remove timebuf.
8643 2000-04-09  Richard Henderson  <rth@cygnus.com>
8645         * genrecog.c (pred): Update comparison_operator for the unordered
8646         operators.
8648         * config/i386/i386.c (no_comparison_operator): Disallow unordered
8649         operators.
8650         (fcmov_comparison_operator): Allow UNORDERED/ORDERED.
8651         (uno_comparison_operator): New.
8652         (put_condition_code): Handle UNORDERED/ORDERED.
8653         (unsigned_comparison): Likewise.
8654         (ix86_fp_compare_mode): Broken out of ix86_expand_fp_compare.
8655         (ix86_use_fcomi_compare, ix86_prepare_fp_compare_args): Likewise.
8656         (ix86_expand_fp_compare): Use them.  Take scratch as argument,
8657         update all callers.  Handle all 8 unordered operators.
8658         (ix86_expand_setcc): Lose the unordered argument, update all callers.
8659         (ix86_expand_branch): Likewise.  Don't fully expand fp branches.
8660         * config/i386/i386.h (PREDICATE_CODES): Update.
8661         * config/i386/i386-protos.h (ix86_expand_fp_compare): Declare.
8662         (ix86_expand_branch, ix86_expand_setcc): Update.
8663         * config/i386/i386.md (sunordered, sordered): New.
8664         (suneq, sunge, sungt, sunle, sunlt, sltgt): New.
8665         (bunordered, bordered): New.
8666         (buneq, bunge, bungt, bunle, bunlt, bltgt): New.
8667         (*fp_jcc_1, *fp_jcc_2, *fp_jcc_3, *fp_jcc_4): New.
8668         (*fp_jcc_5, *fp_jcc_6, and splitters): New.
8670 2000-04-09  Philip Blundell  <philb@gnu.org>
8672         * config/arm/arm.h (ARM_NAME_ENCODING_LENGTHS): Strip `*' too.
8674 Sun Apr  9 15:16:14 EDT 2000  John Wehle  (john@feith.com)
8676         * i386.md (fix_truncsfhi2, fix_truncdfhi2,
8677         fix_truncxfhi2): New patterns.
8678         * i386.c (output_fix_trunc): Handle converting to HImode.
8680 2000-04-08  Alex Samuel  <samuel@codesourcery.com>
8682         * ssa.c (convert_to_ssa): Eliminate dead code when calling
8683         life_analysis.
8684         (convert_from_ssa): Call compute_bb_for_insn before life_analysis.
8685         (for_each_successor_phi): Change parameter to basic_block.
8686         (coalesce_regs_in_successor_phi_nodes): Likewise.
8687         (coalesce_regs_in_copies): Likewise.
8688         (compute_coalesced_reg_partition): Use basic_block instead of index.
8689         * rtl.h (convert_to_ssa): Delete.
8690         (convert_from_ssa): Likewise.
8691         (successor_phi_fn): Likewise.
8692         (for_each_successor_phi): Likewise.
8693         (in_ssa_form): Likewise.
8694         * basic-block.h (convert_to_ssa): Moved from rtl.h.
8695         (convert_from_ssa): Likewise.
8696         (successor_phi_fn): Likewise.
8697         (in_ssa_form): Likewise.
8698         (for_each_successor_phi): Likewise.  Change parameter to basic_block.
8699         * flow.c (calculate_global_regs_live): Pass a basic_block to
8700         for_each_successor_phi.
8702 2000-04-08  Richard Henderson  <rth@cygnus.com>
8704         * flow.c (mark_used_reg): Use reg_set_p to determine if a register
8705         was modified in the current insn.
8707 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8709         * arm/thumb.md: Delete.
8710         * arm/thumb-protos.h: Delete.
8712 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8714         Merge changes from merged-arm-thumb-backend-branch onto trunk.
8716         2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8718         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000408
8719         into branch.
8721         * arm.md (nop): Use the standard RTL expression.  Don't code as a
8722         define_expand.
8723         (*arm_nop, *thumb_nop): Delete.
8725         * arm.c (const_ok_for_arm): Don't use ANSI extensions for defining
8726         constants.  Use casts instead.
8727         (arm_gen_constant, arm_rtx_costs, arm_reload_in_hi, arm_reload_out_hi,
8728         output_multi_immediate, arm_poke_function_name): Likewise.
8729         * arm.h (ARM_LEGITIIMIZE_RELOAD_ADDRESS, ARM_SIGN_EXTEND,
8730         MASK_RETURN_ADDDR): Likewise.
8732         2000-03-31  Richard Earnshaw (rearnsha@arm.com)
8734         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000325
8735         into branch.
8737         * arm.md (eh_epilogue): New function.
8738         * arm.h (struct machine_function): Move to here ...
8739         * arm.c: ... from here.
8740         (arm_output_epilogue): Support epilogues for __builtin_eh_return.
8741         (thumb_exit): Extra parameter eh_ofs.  All callers changed.
8742         Handle epilogues for __builtin_eh_return.  Make bit-fields unsigned.
8744         2000-03-30  Nick Clifton  <nickc@cygnus.com>
8746         * config/arm/semi.h (ASM_SPEC): Restore definition.
8747         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
8749         * config/arm/elf.h (ASM_SPEC): Restore definition.
8750         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
8752         * config/arm/arm.h (ASM_SPEC): Remove definition.
8753         (SUBTARGET_EXTRA_ASM_SPEC): Remove definition.
8755         2000-03-26  Bernd Schmidt <bernds@cygnus.co.uk>
8757         * config/arm/arm.c: Disable -fschedule-insns for Thumb.
8759         2000-03-24  Nick Clifton  <nickc@cygnus.com>
8761         Various formating tidyups, elimination of compile time
8762         warnings and synchronisation with internal sources:
8764         * config/arm/arm-protos.h (assemble_align): Add prototype.
8765         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
8766         (gen_comapre_reg): Rename to arm_gen_compare_reg.
8767         (arm_return_addr_rtx): Rename to arm_return_addr.
8769         * config/arm/arm.c: Include except.h.
8770         Define shorter typenames for strict minipool_node and struct
8771         minipool_fix.
8772         (arm_return_in_memory): For WinCE return all structures <= 32 bits
8773         in memory.
8774         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
8775         (gen_comapre_reg): Rename to arm_gen_compare_reg.
8777         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
8778         already defined.
8779         (ASM_SPEC): Define if not already defined.
8780         (ASM_OUTPUT_DEF_FROM_DECLS): Define.
8782         * config/arm/arm.md: Rename references to gen_rotated_half_load to
8783         arm_gen_rotated_half_load, and references to gen_comapre_reg to
8784         arm_gen_compare_reg.
8785         (indirect_jump):  Only accept register operands.
8786         (load_indirect_jump): Keep this pattern since combine can generate
8787         it.
8789         * config/arm/coff.h: Include aout.h.
8790         (MULTILIB_DEFAULTS): Only define if not already defined.
8792         * config/arm/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Move definition
8793         into arm.h (so that COFF ports can support thumb based aliases).
8794         (ASM_SPEC): Move definition into arm.h
8796         * config/arm/linux-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Remove
8797         redundant apcs spec.
8798         (ASM_SPEC): Move definition to arm.h
8800         * config/arm/semi.h (ASM_SPEC): Move definition to arm.h
8802         * config/arm/unknown-elf.h (ASM_OUTPUT_SECTION_NAME): Add support
8803         for entries in the .bss section
8805         2000-03-23  Nick Clifton  <nickc@cygnus.com>
8807         * config/arm/arm.h (THUMB_INITIAL_ELIMINATION_OFFSET): Pass 0
8808         to thumb_far_jump_used_p.
8810         * config/arm/arm-protos.h (thumb_far_jump_used_p): Take a
8811         single integer parameter.
8813         * config/arm/arm.c (struct machine_function): Add two new
8814         fields, 'far_jump_used' and 'arg_pointer_live'.
8815         (thumb_far_jump_used_p): Once the decision has been made that
8816         far jumps might be used, always return true.
8817         If being called from the initial elimination offset macro then
8818         do not bother to perform the test if the arg pointer is not
8819         being used.
8820         (thumb_unexpand_epilogue): Pass 1 to thumb_far_jump_used_p().
8821         (output_thumb_prologue): Pass 1 to thumb_far_jump_used_p().
8823         2000-03-23  Richard Earnshaw (rearnsha@arm.com)
8825         * arm.c (output_return_instruction): Handle more cases where we can
8826         return from a function with an ldr instruction.
8827         (arm_output_epilogue): Likewise.
8829         * arm.c (thumb_expand_prologue): Don't clobber the frame pointer
8830         if we need to push a large stack frame and there are no callee-saved
8831         registers.
8833         * arm.c (arm_debugger_arg_offset): An offset of 0 is also valid
8834         in ARM code if the frame pointer has been eliminated.
8836         * arm.md (epilogue, *epilogue_insns, consttable_*, align_4): Renumber
8837         unspec_volatile arguments to avoid duplicates.
8838         (consttable_1, consttable_2): Fixes for big-endian mode.
8840         * arm.md (all ARM-mode load insns): Add neg_pool_range attribute
8841         as appropriate.
8843         Re-write constant pool code.
8844         * arm.c (minipool_node, minipool_fix): New types.
8845         (minifix): Delete type.
8846         (arm_add_minipool_constant): Delete.
8847         (arm_compute_minipool_offsets, arm_find_barrier,
8848         arm_find_minipool_constant, fixup_compare, sort_fixups): Likewise.
8849         (get_jump_table_size): Now returns HOST_WIDE_INT.
8850         (move_minipool_fix_forward_ref, add_minipool_forward_ref): New
8851         functions.
8852         (move_minipool_fix_backward_ref, add_minipool_backward_ref): Likewise.
8853         (assign_minipool_offsets, arm_print_value): Likewise.
8854         (dump_minipool): Rewrite.
8855         (arm_barrier_cost): New function.
8856         (create_fix_barrier): New function.
8857         (push_minipool_barrier): New function.
8858         (push_minipool_fix): Record additional information about the fixup
8859         required.
8860         (note_invalid_constants): Remove push for (UNSPEC 3).  Don't
8861         check the mode of what needs fixing.
8862         (arm_reorg): Rewrite.
8864         2000-03-08  Nick Clifton  <nickc@cygnus.com>
8866         * config/arm/arm.md (indirect_jump): Force constant addresses into
8867         a register.
8869         2000-03-01  Bernd Schmidt <bernds@cygnus.co.uk>
8871         * config/arm/arm.md: Add splitter to turn SF moves into SI moves.
8873         2000-02-24  Nick Clifton  <nickc@cygnus.com>
8875         * config/arm/arm.c (thumb_expand_prologue): Make sure that stack
8876         adjust is word aligned.
8877         (thumb_expand_epilogue): Make sure that stack adjust is word
8878         aligned.
8880         * config/arm/elf.h (ASM_FILE_START): Fix type of version string.
8882         2000-02-24  Bernd Schmidt <bernds@cygnus.com>
8884         * config/arm/arm.h (THUMB_GO_IF_LEGITIMATE_ADDRESS): Allow frame
8885         pointer relative addresses.
8887         2000-02-10  Richard Earnshaw  <rearnsha@arm.com>
8889         * arm.c (find_barrier): Find the last barrier within the allowed
8890         range.
8892         2000-02-09  Nick Clifton  <nickc@cygnus.com>
8894         * config/arm/arm-protos.h: Replace PROTO with PARAMS.
8896         2000-02-09  Nick Clifton  <nickc@cygnus.com>
8898         * config/arm/linux-elf.h (FUNCTION_PROFILER): Rename to
8899         ARM_FUNCTION_PROFILER.
8901         * config/arm/netbsd.h (FUNCTION_PROFILER): Rename to
8902         ARM_FUNCTION_PROFILER.
8904         * config/arm/linux-oldld.h: Imported from mainline sources.
8906         2000-02-07  Nick Clifton  <nickc@cygnus.com>
8908         * config/arm/lib1funcs.asm: Merge in thumb functions from
8909         lib1thumb.asm.
8911         * config/arm/lib1thumb.asm: Delete.
8913         2000-02-04  Nick Clifton  <nickc@cygnus.com>
8915         * config/arm/arm.c: Sychronised with current Red hat local
8916         sources.
8917         * config/arm/arm.h: Ditto.
8918         * config/arm/arm-protos.h: Ditto.
8920         2000-02-02  Bernd Schmidt  <bernds@cygnus.co.uk>
8922         * arm.c (soft_df_operand): Reject SUBREGs containing a constant.
8924         * arm.c (arm_gen_movstrqi): Generate halfword stores rather than two
8925         byte stores.
8927         2000-02-02  Nick Clifton  <nickc@cygnus.com>
8929         * config/arm/thumb.c (thumb_exit): Additional fix for same bug.
8931         * config/arm/arm.md (epilogue): Fix rtl checking abort because
8932         (return) was emited using an emit_insn() call.
8934         2000-01-31  Nick Clifton  <nickc@cygnus.com>
8936         * config/arm/arm.c (output_thumb_prologue): Fix bug generating
8937         thumb stack frame.
8938         (thumb_exit): Move frame pointer back into hard frame pointer
8939         register if backtracing is being used.
8941         2000-01-13  Richard Earnshaw (rearnsha@arm.com)
8943         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000113
8944         into branch.
8946         1999-12-15  Bernd Schmidt  <bernds@cygnus.co.uk>
8948         * config/arm/arm.md (neg_pool_offset): Provide default for new
8949         attribute.
8950         (arm_movsi_insn): Add neg_pool_offset attribute.
8951         * config/arm/arm.c (arm_find_barrier): Replace arg FIX with an
8952         rtx for the insn that starts the scan and an unsigned long for its
8953         address.  Add MIN_OFFSET and PINSERTED args.  All callers changed.
8954         Change scan to ignore insns before MIN_OFFSET.  Store size of inserted
8955         instructions in *PINSERTED.
8956         (struct minipool_fixup): Add MIN_ADDRESS elt.
8957         (sort_fixups): Compute it.
8958         (arm_reorg): Changes to support inserting pools before the insn to be
8959         fixed up.
8961         1999-12-08  Bernd Schmidt  <bernds@cygnus.co.uk>
8963         * config/arm/elf.h (MULTILIB_DEFAULTS): Add "marm".
8964         * config/arm/linux-elf.h (MULTILIB_DEFAULTS): Add "marm".
8965         * config/arm/coff.h (MULTILIB_DEFAULTS): Add "marm".
8967         Wed Nov  3 10:04:07 1999  Nick Clifton  <nickc@cygnus.com>
8969         * config/arm/semi.h (TARGET_VERSION): Do not define if already
8970         defined.
8971         (TARGET_DEFAULT): Do not define if already defined.
8973         Tue Nov  2 10:37:25 1999  Nick Clifton  <nickc@cygnus.com>
8975         * config/arm/arm.md (anddi3): Allow disjoint source operands.
8976         (iordi3): Allow disjoint source operands.
8977         (xordi3): Allow disjoint source operands.
8978         (negdi2): Permit construction for ARM and Thumb.
8979         (arm_negdi2): Renamed version of old negdi2 pattern.
8980         (thumb_negdi2): New pattern: Only permit non-overlapping
8981         source and destination.
8983         Fri Oct 29 18:52:38 1999  Nick Clifton  <nickc@cygnus.com>
8985         * config/arm/arm.c (thumb_expand_prologue): Emit a USE of the
8986         scratch low register so that it will not be deleted.
8988         Fri Oct 29 15:23:48 1999  Nick Clifton  <nickc@cygnus.com>
8990         * config/arm/pe.h (ARM_PE): Define.
8992         * config/arm/arm.c (arm_valid_machine_decl_attribute): Allow
8993         interfacearm attribute if this is a PE toolchain.
8994         (output_return_instruction): Do not emit anything if the function
8995         has the naked attribute set.
8996         (is_called_in_ARM_mode): If the function has the interfacearm
8997         attribute then return true.
8998         (thumb_expand_prologue): Do not generate a prologue for naked
8999         functions.
9000         (thumb_expand_epilogue): Do not generate an epilogie for a naked
9001         function.
9002         (output_thumb_prologue): Do not bother if the function is naked.
9003         Strip PE encoding from function name before emitting.
9005         Thu Oct 28 11:05:13 1999  Richard Earnshaw <rearnsha@arm.com>
9007         * arm.md (pic_load_addr): Fix constraints.
9009         * arm.md (casesi_insn): Fix mis-applied patch.
9011         * arm.md ("core" function unit): Add rules for single- and
9012         multi-cycle insns.
9013         (All TARGET_THUMB patterns): Add "type" attribute information
9014         where needed.
9015         * arm.c (arm_adjust_cost): Reduce the cost of a data dependency if
9016         the following insn is a CALL.
9018         * arm.c (thumb_expand_epilogue): Add a use of the adjusted stack
9019         pointer.
9020         * arm.h (CONDITIONAL_REGISTER_USAGE): Nail down the
9021         ARM_HARD_FRAME_POINTER_REGNUM when TARGET_APCS_FRAME.
9022         (FRAME_POINTER_REQUIRED): Only check TARGET_APCS_FRAME if TARGET_ARM.
9024         Wed Oct 27 14:40:48 1999  Nick Clifton  <nickc@cygnus.com>
9026         * config/arm/linux-gas.h: oops - this file was missed out when the
9027         branch was created...
9029         Tue Oct 26 17:07:38 1999  Richard Earnshaw <rearnsha@arm.com>
9031         * thumb.c: Deleted.  Move contents to ...
9032         * arm.c: ... here.
9033         * t-arm-aout, t-arm-coff, t-arm-elf, t-linux, t-netbsd, t-semi: Remove
9034         rule for thumb.o
9035         * configure.in (arm*-*-*): Remove thumb.o from extra_objs list.
9036         * configure: Regen.
9038         * arm-protos.h: Use RTX_CODE and tidy up long lines.  Don't
9039         declare a prototype for asm_output_align();
9041         * arm.c (thumb_condition_code): Delete.
9042         (arm_print_operand): Always use arm_condition_code array.
9044         * arm.c (thumb_return_addr_rtx): Delete.
9045         (arm_save_machine_status, arm_restore_machine_status): Delete.
9046         (arm_init_machine_status, arm_mark_machine_status): New functions.
9047         (arm_init_expanders): Update accordingly.
9048         (arm_return_addr): Renamed from arm_return_addr_rtx.  Rewrite.
9049         (thumb_expand_prologue): Delete code referencing thumb_return_addr_rtx.
9050         * arm.h (RETURN_ADDR_RTX): Call arm_return_addr().
9052         Tue Oct 26 13:24:16 1999  Nick Clifton  <nickc@cygnus.com>
9054         * configure.in : Fix arm-*-aout target to use new t-arm-aout
9055         script.
9056         * config/arm/t-arm-aout: New file: Makefile script for arm-*-aout
9057         targets.
9059         Tue Oct 26 11:27:12 1999  Nick Clifton  <nickc@cygnus.com>
9061         * config/arm/thumb.c (output_thumb_prologue): Fix bug creating
9062         stack backtrace structure.
9064         * config/arm/arm-protos.h: Add prototypes for functions defined in
9065         arm/pe.h.
9067         * config/arm/arm.c (arm_override_options): Fix selection of
9068         attributes of default processor.
9070         * config/arm/coff.h: Delete needless #include.
9072         * config/arm/pe.c: Delete unused code.
9074         * config/arm/pe.h (CPP_DEFINES): Delete
9075         (SUBTARGET_CPP_SPEC): Define.
9076         (ASM_DECLARE_FUNCTION_NAME): Use ARM_DECLARE_FUNCTION_NAME.
9078         * config/arm/t-pe: Add -DInhibit_libc to allof libgcc.a to build.
9080         Mon Oct 25 15:42:09 1999  Richard Earnshaw (rearnsha@arm.com)
9082         * arm.h (TARGET_APCS_FRAME): Renamed from TARGET_APCS -- all uses
9083         updated.
9084         (CAN_DEBUG_WITHOUT_FP): Define.
9085         (FIXED_REGISTERS): Make r11 call-saved.
9086         (CALL_USED_REGISTERS): Likewise.
9087         (CONDITIONAL_REGISTER_USAGE): Fix r11 if TARGET_APCS_FRAME.
9088         (FRAME_POINTER_REQUIRED): Correct logic for determining when a
9089         frame-pointer is required.
9090         (TARGET_DEFAULT): Make default setting include ARM_FLAG_APCS_FRAME.
9091         * arm.c (arm_override_options): Warn about -mno-apcs-frame and -g
9092         if the target normally needs a stack frame in non-leaf functions.
9093         (use_return_insn): Correct logic for determining when a return
9094         instruction can be used.
9095         (output_return_instruction): Handle the frame-pointer register as
9096         a normal register when not TARGET_APCS_FRAME.
9097         (arm_output_prologue): Likewise.
9098         (arm_output_epilogue): Likewise.
9099         (output_func_epilogue): Likewise.
9100         (arm_expand_prologue): Likewise.
9101         * netbsd.h semi.h (TARGET_DEFAULT): Add ARM_FLAG_APCS_FRAME.
9103         * arm.c (use_return_insn): No need to check floating point regs if
9104         TARGET_SOFT_FLOAT.
9105         (arm_find_minipool_constant): Correct typo; use GET_CODE to get
9106         the code of value stored in the minipool array.
9107         (arm_add_minipool_constant): Likewise.
9109 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9111         * basic-block.h (conflict_graph_enum_fn): K&R fix.
9113 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9115         * tree.c (tree_expr_nonnegative_p): New function.
9117         * tree.h (tree_expr_nonnegative_p): Declare.
9119         * c-typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to
9120         elide some sign_compare warnings.
9121         (build_conditional_expr): Likewise.
9123 Sat Apr  8 00:21:51 EDT 2000  John Wehle  (john@feith.com)
9125         * i386.md (ashrsi3, ashrhi3, ashrqi3): Fix typo.
9127         * i386.md (floathisf2, floathidf2, floathixf2): New patterns.
9128         * i386.c (print_operand): Use the proper suffix for a 387 HImode
9129         operand.  Abort if a 387 operand has an unsupported size.
9131 2000-04-08  Neil Booth  <NeilB@earthling.net>
9133         * cppexp.c (parse_charconst): Null does not end character
9134         constants.
9135         * cppinit.c (ISTABLE): Null character handled as whitespace.
9136         * cpplex.c (null_warning):  new function.
9137         (skip_string): Emit warning if nulls encountered.
9138         (_cpp_skip_hspace): Emit warning if nulls encountered.
9139         (_cpp_lex_token): Emit warning if nulls encountered.  Drop
9140         them.
9141         * cpp.texi: Update.
9143 2000-04-07  Richard Henderson  <rth@cygnus.com>
9145         * flow.c (loop_depth): Remove.
9146         (reg_next_use, cc0_live, mem_set_list): Replace with ...
9147         (struct propagate_block_info): New.
9148         (life_analysis): Don't allocate reg_next_use.
9149         (propagate_block_delete_insn): Break out of propagate_block.
9150         Use flow_delete_insn to unlink rather than use NOTE_INSN_DELETED.
9151         (propagate_block_delete_libcall): Likewise.
9152         (propagate_block): Create a propagate_block_info struct to pass
9153         to subroutines.  Allocate one not two temporary regsets.  Don't
9154         clobber memory for const calls.  Look for clobbers in
9155         CALL_INSN_FUNCTION_USAGE.
9156         (mark_set_regs): Recognize COND_EXEC.
9157         (mark_set_reg): Break out of mark_set_1.
9158         (mark_used_reg): Break out of mark_used_regs.
9159         (mark_used_regs): Recognize COND_EXEC.
9160         (insn_dead_p): Use propagate_block_info struct.
9161         (libcall_dead_p, invalidate_mems_from_autoinc): Likewise.
9162         (find_auto_inc, try_pre_increment_1): Likewise.
9163         (print_rtl_with_bb): Dump regs live at end too.
9164         (count_reg_sets_1): Pass in loop_depth.
9165         (count_reg_sets, count_reg_references): Likewise.
9166         (recompute_reg_usage): Provide it.
9168 2000-04-07  Richard Henderson  <rth@cygnus.com>
9170         * Makefile.in (conflict.o): Depend on $(RTL_H) and $(BASIC_BLOCK_H)
9171         not the raw files.
9173 2000-04-07  Zack Weinberg  <zack@wolery.cumb.org>
9175         * cpplib.c (do_elif): Skip the rest of the line if we're
9176         not going to bother evaluating it.
9177         (skip_if_group): Clear pfile->only_seen_white.  Reorder loop
9178         to avoid pointless calls to the lexer.
9180 Fri Apr  7 11:50:54 2000  Jim Wilson  <wilson@cygnus.com>
9182         * config/ia64/ia64.c: Delete stdio.h and ctype.h includes.
9184 2000-04-07  Jason Merrill  <jason@casey.cygnus.com>
9186         * calls.c (expand_call): emit_queue if we're trying a sibcall.
9188 2000-04-07  Jakub Jelinek  <jakub@redhat.com>
9190         * config/sparc/t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
9192 2000-04-06  Geoff Keating  <geoffk@cygnus.com>
9194         * Makefile.in: Build crtbeginS and crtendS like crtbegin and
9195         crtend so they can be multilibbed.
9196         (STAGESTUFF): Remove s-crt and s-crtS.
9198 2000-04-07  Richard Henderson  <rth@cygnus.com>
9200         * config/alpha/alpha.c (alpha_emit_conditional_move): Fail
9201         if we discover we need a pseudo and no_new_pseudos is true.
9202         * config/alpha/alpha.md (ne:DI insn): New.
9203         (trunctfsf2, sne): Emit NE instead of non-canonical LTU.
9205 2000-04-07  Richard Henderson  <rth@cygnus.com>
9207         * rtl.def (COND_EXEC): New.
9208         * rtl.h (COND_EXEC_TEST, COND_EXEC_CODE): New.
9209         * tm.texi (MAX_CONDITIONAL_EXECUTE): Document.
9211         * genconfig.c (have_cond_arith_flag): Remove.
9212         (have_cond_exec_flag): New.
9213         (walk_insn_part): Detect COND_EXEC, not arithmetic in IF_THEN_ELSE.
9214         (main): Print HAVE_conditional_execution.
9216         * haifa-sched.c (haifa_classify_insn): Recognize COND_EXEC.
9217         (sched_analyze_insn, print_pattern): Likewise.
9218         * reload.c (find_equiv_reg): Likewise.
9219         * rtlanal.c (reg_referenced_p): Likewise.
9220         (note_stores, dead_or_set_regno_p): Likewise.
9221         (reg_overlap_mentioned_p): Rewrite to use a switch.
9223         * ggc.h (struct rtx_def): Forward declare.
9225         * print-rtl.c (debug_rtx_range): New.
9226         * rtl.h (debug_rtx_range): Declare.
9228         * varray.h (VARRAY_ACTIVE_SIZE, VARRAY_POP_ALL): New.
9230         * gcse.c (gcse_main): Don't rebuild the CFG here.
9231         (delete_null_pointer_checks): Likewise.
9232         * ssa.c (convert_to_ssa): Likewise.
9233         * toplev.c (rest_of_compilation): Do it here instead.  Combine
9234         sequential calls to TIMEVAR.  Consistently use `insns' instead of
9235         `get_insns()'.  Always split insns after reload when optimizing.
9237         * basic-block.h (merge_blocks_nomove): Declare.
9238         (tidy_fallthru_edge): Declare.
9239         * flow.c (merge_blocks_nomove): Document as merging into previous
9240         blocks.  Remove cruft from between blocks; remove all edges out of A.
9241         (tidy_fallthru_edge): Export.
9243 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
9245         * ssa.c (compute_conservative_reg_partition): Declare with
9246         void arguments.
9247         * toplev.c (clean_dump_file): Remove previously-deleted function
9248         inadvertantly merged back in.
9249         * conflict.c (conflict_graph_add): Use a single call to
9250         htab_find_slot to look up and insert.
9252 2000-04-06  Richard Henderson  <rth@cygnus.com>
9254         * genrecog.c (*): Rename _last_insn to last_insn.
9255         (make_insn_sequence): Set the position of the peephole2 C test
9256         to be at the last insn.
9258 2000-04-06  Richard Henderson  <rth@cygnus.com>
9260         * flow.c (compute_flow_dominators): Free worklist.
9262 2000-04-06  Michael Matz  <matzmich@cs.tu-berlin.de>
9264         * flow.c (compute_flow_dominators): Process blocks FIFO not LIFO.
9266 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
9268         * rtl.h (INSN_P): New macro.
9269         (successor_phi_fn): New typedef.
9270         (for_each_successor_phi): New prototype.
9271         (in_ssa_form): New variable.
9272         (PHI_NODE_P): Likewise.
9273         * flow.c (calculate_global_regs_live): Add to new_live_at_end from
9274         phi nodes in successors.
9275         (mark_used_regs): Add PHI case.
9276         (set_phi_alternative_reg): New function.
9277         (life_analysis): Assert that dead code elimination is not selected
9278         when in SSA form.
9279         * toplev.c (to_ssa_time): New variable.
9280         (from_ssa_time): Likewise.
9281         (compile_file): Zero to_ssa_time and from_ssa_time.
9282         Print time to convert to and from SSA.
9283         (rest_of_compilation): Time convert_to_ssa and convert_from_ssa.
9284         (print_time): Compute percent fraction as integer.
9285         * ssa.c (PHI_NODE_P): Moved to rtl.h.
9286         (convert_to_ssa): Check if we're already in SSA.
9287         Don't eliminate dead code in life_analysis.
9288         Rerun flow and life analysis at bottom.
9289         (eliminate_phi): Use canonical regnos when adding nodes.
9290         (mark_reg_in_phi): New function.
9291         (mark_phi_and_copy_regs): Likewise.
9292         (convert_from_ssa): Rerun life analysis at top.
9293         Use coalesced partition.
9294         Check for removing a phi node at the end of the block.
9295         (compute_coalesced_reg_partition): New function.
9296         (coalesce_regs_in_copies): Likewise.
9297         (coalesce_reg_in_phi): Likewise.
9298         (coalesce_regs_in_sucessor_phi_nodes): Likewise.
9299         (for_each_successor_phi): Likewise.
9300         (rename_context): New struct.
9301         (rename_block): Use a rename_context with rename_insn_1.  When
9302         renaming sets of a subreg, emit a copy of the entire reg first.
9303         (rename_insn_1): Treat data as a rename_context *.  Save current
9304         insn in set_data.
9305         (rename_set_data): Add field set_insn.
9306         * Makefile.in (HASHTAB_H): Move up in file.
9307         (OBSTACK_H): New macro.
9308         (collect2.o): Use OBSTACK_H in dependencies.
9309         (sdbout.o): Likewise.
9310         (emit-rtl.o): Likewise.
9311         (simplify-rtx.o): Likewise.
9312         (fix-header.o): Likewise.
9313         (OBJS): Add conflict.o.
9314         (conflict.o): New rule.
9315         * basic-block.h: Include partition.h.
9316         (conflict_graph): New typedef.
9317         (conflict_graph_enum_fn): Likewise.
9318         (conflict_graph_new): New prototype.
9319         (conflict_graph_delete): Likewise.
9320         (conflict_graph_add): Likewise.
9321         (conflict_graph_conflict_p): Likewise.
9322         (conflict_graph_enum): Likewise.
9323         (conflict_graph_merge_regs): Likewise.
9324         (conflict_graph_print): Likewise.
9325         (conflict_graph_compute): Likewise.
9326         * conflict.c: New file.
9328 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
9330         * tlink.c (read_repo_files): Don't look for .rpo info for
9331         linker flags.
9333 Thu Apr  6 20:39:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9335         * sh.h (STRUCT_VALUE, RETURN_IN_MEMORY): Define.
9337 Thu Apr  6 19:34:08 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9339         * config/sh/lib1funcs.asm (___udivsi3_i4):
9340         ( __SH4_SINGLE__ / __SH4_SINGLE_ONLY__ variant): value for fpscr
9341         only depends on FMOVD_WORKS.
9343 Thu Apr  6 19:11:47 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9345         * config/sh/lib1funcs.asm (___udivsi3_i4): When using fmovd,
9346         make double constant 8-byte aligned.
9348 2000-04-06  Jakub Jelinek  <jakub@redhat.com>
9350         * config/sparc/sparc.md (movtf_insn_sp32, movtf_insn_vis_sp32,
9351         movtf_no_e_insn_sp32, movtf_insn_hq_sp64, movtf_insn_hq_vis_sp64,
9352         movtf_no_e_insn_sp64): Accept loading 0.0 into GENERAL_REGS.
9353         (movtf_insn_sp64, movtf_insn_vis_sp64): Likewise.
9354         Accept storing GENERAL_REGS into offsetable memory.
9355         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Don't allow
9356         building a TFmode constant other than 0.0L into GENERAL_REGS.
9358 2000-04-06  Clinton Popetz  <cpopetz@cygnus.com>
9360         * regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.
9362 2000-04-06  Zack Weinberg  <zack@wolery.cumb.org>
9364         * cpphash.c (CPP_IS_MACRO_BUFFER, FORWARD, PEEKC): Delete.
9365         (macro_cleanup): No need to cast pbuf->macro.
9366         (collect_expansion): Use _cpp_get_define_token.  Goto done if
9367         it returns VSPACE.  Remove check for trailing space after
9368         CPP_COMMENT.
9369         (_cpp_create_definition): Don't diddle flags here.  Return
9370         directly on error.
9371         (unsafe_chars): Handle c1 being EOF.
9372         (push_macro_expansion): Use unsafe_chars for both accidental-paste
9373         checks.  Don't push the buffer till after we're done with
9374         them.
9375         * cpplex.c (PEEKBUF, GETBUF, FORWARDBUF): New.
9376         (PEEKN, FORWARD, GETC, PEEKC): Use them.
9377         (cpp_push_buffer): Don't set new->alimit.  Set new->mark
9378         appropriately.
9379         (_cpp_parse_assertion): Don't NUL terminate.
9380         (_cpp_lex_token): Fix -traditional macro handling.  Don't skip
9381         hspace before calling _cpp_parse_assertion.  Remove all sets
9382         of only_seen_white. Treat '\f' as hspace.  Don't do anything
9383         special with '\n' here.
9384         (maybe_macroexpand): Handle T_EMPTY hash entries without
9385         pushing a buffer at all.
9386         (cpp_get_token): Handle clearing only_seen_white here.  Handle
9387         incrementing the line number here.  Clear
9388         potential_control_macro as well as only_seen_white, if
9389         appropriate.
9390         (cpp_get_non_space_token): Don't eat CPP_POP tokens.
9391         (_cpp_get_define_token): New function, basically like
9392         _cpp_get_directive_token was but doesn't eat horizontal space.
9393         Don't do anything with only_seen_white here.
9394         (_cpp_get_directive_token): Just call _cpp_get_define_token
9395         repeatedly till it returns non-hspace.
9397         * cpplib.c (PEEKN, FORWARD, GETC, PEEKC): Delete.
9398         (conditional_skip, skip_if_group): Return int.
9399         (DIRECTIVE_TABLE): Change origin of all conditional directives
9400         to "COND".
9401         (TRAD_DIRECT_P): New macro.
9402         (_cpp_handle_directive): Use _cpp_get_directive_token.  Issue
9403         an error for a bogus directive, unless -lang-asm.  Use
9404         TRAD_DIRECT_P. Loop calling handler functions till one returns
9405         zero.
9406         (get_macro_name): Don't diddle flags here.
9407         (do_define): Diddle flags here.  Use _cpp_get_directive_token.
9408         Create T_EMPTY nodes for #define macro /* nothing */.
9409         (do_undef): Don't copy the name.  Use _cpp_get_directive_token.
9410         Use hp->name when calling pass_thru_directive.
9411         (do_if, do_else, do_elif, do_ifdef, do_ifndef, conditional_skip):
9412         Return the result of conditional_skip and/or skip_if_group.
9413         Don't call _cpp_output_line_command.
9414         (consider_directive_while_skipping): Use _cpp_get_directive_token.
9415         Issue -Wtraditional warnings as appropriate.  Don't complain
9416         about unrecognized directives.  If we are to stop skipping,
9417         return the number of the directive that ended the skip.
9418         (skip_if_group): Use _cpp_get_directive_token.  Turn off macro
9419         expansion and line commands while skipping.  Return the result
9420         of consider_directive_while_skipping, if nonzero.
9421         (do_endif): Just set potential_control_macro here.
9422         (validate_else): Use _cpp_get_directive_token.
9423         (do_assert, do_unassert): Don't save pointers into the
9424         token_buffer across calls to the lexer.  Use
9425         _cpp_get_directive_token.
9427         * cpplib.h (cpp_buffer): Remove alimit and colno.  Make mark a
9428         pointer, not an offset.  Replace 'data', which was a generic
9429         pointer, with 'macro', which points to a struct hashnode.
9430         (cpp_reader): Add 'potential_control_macro' pointer.
9431         * cpphash.h (T_UNUSED): Replace with T_EMPTY.
9432         (CPP_BUF_GET, CPP_FORWARD): Delete.
9433         (CPP_IN_COLUMN_1, ADJACENT_TO_MARK): New macros.
9434         (CPP_IS_MACRO_BUFFER, CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK,
9435         ACTIVE_MARK_P): Update.
9436         (_cpp_get_define_token): New internal function.
9437         * cppfiles.c (read_include_file): Don't set fp->alimit or fp->colno.
9439 2000-04-05   Benjamin Kosnik  <bkoz@cygnus.com>
9441         * configure.in: And here.
9442         * configure: Regenerate.
9443         * acconfig.h: Add ENABLE_STD_NAMESPACE to set flag_honor_std if
9444         --enable-libstdcxx-v3 is passed at configure time.
9445         * config.h.in: Regenerate.
9447 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
9449         * final.c (final): Use xcalloc to allocate line_note_exists.
9450         * function.c (free_after_compilation): Free the temp_slots.
9451         (assign_stack_temp_for_type): Use xmalloc to allocate temp_slots.
9452         (combine_temp_slot): Free temp_slots when they get combined.
9453         (purge_addressof): Fix typo in comment.
9454         * stmt.c (mark_goto_fixup): Mark the fixup itself.
9455         (expand_fixup): Allocate the fixup with ggc_alloc_obj.
9457         * ggc.h: Include varray.h.
9458         (ggc_pending_trees): Declare.
9459         (ggc_mark_tree_children): Remove declaration.
9460         (ggc_mark_tree): Just push unmarked trees on ggc_pending_trees.
9461         * ggc-common.c (ggc_pending_trees): New variable.
9462         (ggc_mark_roots): Call ggc_mark_trees.
9463         (ggc_mark_tree_children): Rename to ggc_mark_trees.  Process all
9464         the ggc_pending_trees.
9465         * Makefile.in (GGC_H): New variable.  Use it throughout in place
9466         of ggc.h.
9468 Thu Apr  6 00:30:50 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9470         * sh.h (FUNCTION_ARG_PARTIAL_NREGS): Accomodate an unsigned
9471         GET_MODE_SIZE.
9473 Wed Apr  5 23:17:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9475         * sh.c (sh_insn_length_adjustment): New function.
9476         * sh-protos.h (sh_insn_length_adjustment): Declare.
9477         * sh.h (ADJUST_INSN_LENGTH): Use it.
9479 Wed Apr  5 12:35:18 2000  Hans-Peter Nilsson  <hp@axis.com>
9481         * optabs.c (emit_libcall_block): Remove spurious REG_EQUAL notes
9482         from the insn where REG_RETVAL is added.
9483         (emit_no_conflict_block): Ditto.
9485         * md.texi (Standard Names): Clarify when movX is needed.
9487         * combine.c (simplify_comparison) [MINUS]: Do not replace
9488         all (op (minus A B) 0) with (op A B).
9490 Wed Apr  5 18:03:31 2000  Toshiyasu Morita  (toshi.morita@sega.com)
9491                           J"orn Rennecke <amylaar@cygnus.co.uk>
9493         * sh.md (block_lump_real_i4): Add missing clobber of T_REG
9494         (block_lump_real): Likewise.
9496 2000-04-05  Chris Demetriou  <cgd@netbsd.org>
9498         * mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the
9499         remaining non-zero debugging masks.
9501 Wed Apr  5 09:44:07 2000  Jeffrey A Law  (law@cygnus.com)
9503         * basic-block.h (verify_flow_info): Declare.
9504         (flow_loop_outside_edge_p): Declare.
9505         * flow.c (verify_flow_info): Remove declaration.
9506         (clear_log_links, flow_loop_outside_edge_p): Likewise.
9508 Wed Apr  5 09:34:26 2000  Philippe De Muyter <phdm@macqel.be>
9510         * m68k/m68k-protos.h (finalize_pic): Turn prototype off using `#if 0',
9511         not C++ comments.
9513 2000-04-05  Jakub Jelinek  <jakub@redhat.com>
9515         * config/sparc/sparc.md (snedi_zero+1, neg_snedi_zero+1,
9516         snedi_zero_trunc+1, seqdi_zero+1, neg_seqdi_zero+1,
9517         seqdi_zero_trunc+1): Allow splits only if registers are
9518         different.
9520 2000-04-04  Ulrich Drepper  <drepper@cygnus.com>
9522         * acconfig.h: Add HAVE_GAS_HIDDEN.
9523         * config.in: Regenerated.
9524         * configure.in: Add test for .hidden pseudo-op in gas.
9525         * configure: Regenerated.
9526         * crtstuff.c: Include auto-host.h.
9527         Emit additional .hidden pseudo-op for __dso_handle if the
9528         assembler knows about it.
9530 2000-04-04  Philippe De Muyter  <phdm@macqel.be>
9532         * cpphash.c (_cpp_free_definition): Test argnames, not nargs >= 0,
9533         before freeing argnames.
9534         * cpplib.c (do_ifndef): Cast return value of xstrdup.
9536 2000-04-05  Michael Meissner  <meissner@redhat.com>
9538         * config/rs6000/rs6000.c (print_operand): Patch from Jonathan
9539         Walton <jonboy@gordian.com> to make memory references with update
9540         work wtih -mregnames.
9542 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9544         * regrename.c (regno_first_use_in): Wrap prototype in PARAMS.
9545         (regrename_optimize): Rename variables `def_uses' and
9546         `ext_basic_blocks' to avoid conflicts with similarly named
9547         typedefs in traditional C.
9549         * calls.c (initialize_argument_information): Fix typo in previous
9550         change.
9552 2000-04-04  Richard Henderson  <rth@cygnus.com>
9554         * regrename.c (consider_available): Test fixed_regs not
9555         PIC_OFFSET_TABLE_REGNUM.
9557 2000-04-04  Geoff Keating  <geoffk@cygnus.com>
9559         * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbegin,
9560         crtend.
9561         (CRTSTUFF_T_CFLAGS_S): Delete definition.
9562         * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Always use crtbegin.
9563         (ENDFILE_LINUX_SPEC): Always use crtend.
9564         * configure.in (powerpc-*-linux-gnulibc1): Don't define extra_parts.
9565         (powerpc-*-linux-gnu): Likewise.
9566         * configure: Regenerate.
9568         * config/rs6000/eabi.h: Don't include sysv4.h.
9569         (MULTILIB_DEFAULTS): Don't define.
9570         * config/rs6000/eabiaix.h: Don't include eabi.h.
9571         * config/rs6000/eabile.h: Delete.
9572         * config/rs6000/eabilesim.h: Delete.
9573         * config/rs6000/eabisim.h: Don't include eabi.h.
9574         * config/rs6000/linux.h: Don't include sysv4.h.
9575         (JUMP_TABLES_IN_TEXT_SECTION): Don't redefine.
9576         (MULTILIB_DEFAULTS): Don't redefine.
9577         * config/rs6000/rtems.h: Don't include eabi.h.
9578         * config/rs6000/sol2.h: Don't include sysv4le.h.
9579         * config/rs6000/sysv4le.h: Don't include sysv4.h.
9580         * config/rs6000/t-ppc: Delete.
9581         * config/rs6000/t-ppcgas: Correct comment.
9582         * config/rs6000/t-ppcos: Correct comment.  Don't build
9583         multilibs for -fPIC, rather use -fPIC -mstrict-align
9584         as default.
9585         * config/rs6000/t-ppc: Delete.
9586         * config/rs6000/vxppc.h: Don't include sysv4.h.
9587         * config/rs6000/vxppcle.h: Delete.
9588         * configure.in: Use multiple header files for p2pc ELF targets
9589         powerpc-eabiaix, powerpc-eabisim, powerpc-rtems, powerpcle-eabi,
9590         powerpcle-eabisim, powerpc-elf, powerpcle-elf, powerpc-linux-gnu,
9591         powerpc-linux-gnulibc1, powerpc-sysv, powerpcle-sysv,
9592         powerpc-vxworks, powerpcle-vxworks.  Assume GAS functionality is
9593         always available for these platforms.
9595 2000-04-04  Richard Henderson  <rth@cygnus.com>
9597         * calls.c (try_to_integrate): Initialize reg_parm_stack_space.
9599 2000-04-04  Stan Cox  <scox@cygnus.com>
9601         * Makefile.in: Add rules for regrename.o
9602         * regrename.c: New file.
9603         * rtl.h (regrename_optimize): Add prototype.
9604         * toplev.c (rename_registers_dump, flag_rename_registers): New variables
9605         (compile_file, decode_d_option): Add support for -frename-registers.
9606         (rest_of_compilation): Call regrename_optimize.
9607         * config/ia64/ia64.h (HARD_REGNO_RENAME_OK, RENAME_EXTENDED_BLOCKS):
9608         New macros.
9610 2000-04-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9612         * Makefile (gccbug): New target.
9613         (doc): Depend on it.
9614         * gcc.texi (Bugs): Link subnodes.
9615         (gccbug): New node.
9616         * gccbug.in (CATEGORIES): Remove gc, host, profiling, libgcc.
9617         Document severities, priorities, and classes in bug form.
9619 2000-04-04  Zack Weinberg  <zack@wolery.cumb.org>
9621         * cpplex.c (trigraph_map, speccase): Combine into single
9622         table, chartab.
9623         (NORMAL, NONTRI): New macros.
9624         (_cpp_read_and_prescan): Change to use unified table.  Use
9625         is_hspace to test for whitespace.
9627         * dbxout.c (CONTIN): If it doesn't have to do anything, give it a
9628         definition that doesn't provoke the "empty body in an
9629         if-statement" warning.
9631 2000-04-04  Clinton Popetz  <cpopetz@cygnus.com>
9633         * builtins.c (expand_builtin_strlen): Force the source to
9634         be a memory address.
9636 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9638         * cpplib.c (D): Adjust to call CONCAT2 macro without whitespace.
9640 Tue Apr  4 19:17:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
9642         * calls.c (ECF_MALLOC, ECF_MAY_BE_ALLOCA, ECF_RETURNS_TWICE,
9643          ECF_LONGJMP, ECF_FORK_OR_EXEC):  New constants.
9644         (ECF_IS_CONST): Rename to ECF_CONST.
9645         (special_function_p): Make static, change interface.
9646         (flags_from_decl_or_type, try_to_integrate): Break out from ...
9647         (expand_call) ... here; convert number of variables to flags.
9648         (emit_library_call_vlue_1): Likewise.
9649         (setjmp_call_p): New function.
9650         (initialize_argument_information): Accepts flags as argument;
9651         return flags.
9652         (precompute_arguments): Likewise.
9653         * tree.h (special_function_p): Remove.
9654         (setjmp_call_p): Add prototype.
9656 2000-04-04  Jakub Jelinek  <jakub@redhat.com>
9658         * config/sparc/sparc.h (RTX_OK_FOR_OFFSET_P): Leave minor margin
9659         so that addresses are offsetable by up to 16 bytes.
9660         (GO_IF_LEGITIMATE_ADDRESS): Don't allow REG+REG addresses for
9661         non-optimizing TARGET_ARCH32 in DF or DI modes because it is not
9662         offsetable.
9664         * config/sparc/sparc.md (movdi_insn_sp64_novis): New pattern.
9665         (movdi_insn_sp64_vis): Renamed from movdi_insn_sp64.
9666         (movsf): Don't force any constant to memory if target is integer
9667         hard register.
9668         Move fp_zero_operand check below the const0_rtx check.
9669         (movtf): Likewise. Also allow fp_zero_operand for stores into
9670         memory.
9671         (movdf): Likewise. Also allow fp_zero_operand for stores into
9672         memory and into integer hard registers.
9673         (clear_df, clear_dfp, movdf_const_intreg_sp32,
9674         movdf_const_intreg_sp64): Remove.
9675         (movdf_insn_sp32, movdf_no_e_insn_sp32): Redo constraints and
9676         conditions.
9677         (movdf_no_e_insn_v9_sp32): New pattern.
9678         (movdf_insn_v9only): Remove.
9679         (movdf_insn_v9only_novis, movdf_insn_v9only_vis): New patterns.
9680         (movdf_insn_sp64): Remove.
9681         (movdf_insn_sp64_novis, movdf_insn_sp64_vis): New patterns.
9682         (movdf_no_e_insn_sp64): Allow storing 0.0 into memory.
9683         (following splits): Rewrite conditions. Add two new splits
9684         for storing 0.0 into memory and registers.
9685         (clear_tf, clear_tf+1, clear_tfp, clear_tfp+1): Remove.
9686         (movtf_insn_sp32): Redo constraints and conditions.
9687         (movtf_insn_vis_sp32): New pattern.
9688         (movtf_no_e_insn_sp32): Redo constraints and conditions.
9689         (movtf_insn_hq_sp64): Likewise.
9690         (movtf_insn_hq_vis_sp64): New pattern.
9691         (movtf_insn_sp64): Redo constraints and conditions.
9692         (movtf_insn_vis_sp64): New pattern.
9693         (movtf_no_e_insn_sp64): Redo constraints and conditions.
9694         (movtf_no_e_insn_sp64+1): New split for storing 0.0L into registers
9695         or memory.
9696         * config/sparc/sparc.c (sparc_override_options): Assume v9 if either
9697         -mvis or -m64 to take down the number of various reload patterns.
9699 Tue Apr  4 00:41:53 2000  Jeffrey A Law  (law@cygnus.com)
9701         * pa/pa-64.h: New file.
9702         * pa/pa64-regs.h: New file.
9703         * pa/pa64-start.h: New file.
9704         * pa/t-pa64: New file.
9705         * pa/xm-pa64hpux.h: New file.
9707 2000-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9709         * sparc.c (output_restore_regs): Prototype.
9710         (sparc_emit_float_lib_cmp): Constification.
9712         * emit-rtl.c (const_int_htab_hash, const_int_htab_eq): Likewise.
9714         * reload1.c (reload_cse_delete_noop_set, reload_cse_simplify):
9715         Prototype.
9717         * simplify-rtx.c (entry_and_rtx_equal_p): Constification.
9718         (get_value_hash, hash_rtx): Likewise.
9720         * ssa.c (compute_conservative_reg_partition): Prototype.
9722         * tree.c (mark_hash_entry): Prototype.
9724 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
9726         * bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING.
9727         * i386.h (FUNCTION_ARG_REGNO_P): Remove unnecessary test for N >= 0.
9728         * i386.md (call_value, call_value_pop): Remove unused variable 'addr'.
9730         * gcc.c (C specs): Pass -fno-show-column to the preprocessor.
9731         * objc/lang-specs.h: Likewise.
9733 2000-04-03  Neil Booth  <NeilB@earthling.net>
9735         * cppexp.c: wrap long lines.  New macros CPP_ICE, SYNTAX_ERROR
9736         and SYNTAX_ERROR2. Replace `' in messages with ''.
9737         (op_to_str): Make re-entrant.
9738         (_cpp_parse_expr): Implement new error macros. Use | rather
9739         than || to logically or 2 boolean integers.  Simply expression
9740         checking we have a left operand iff needed.
9742 2000-04-03  Nick Clifton  <nickc@cygnus.com>
9744         * Makefile.in (diagnostic.o): Depend upon diagnostic.c
9746 2000-04-03  Philip Blundell  <philb@gnu.org>
9748         * config/arm/linux-elf.h (SUBTARGET_EXTRA_LINK_SPEC): Fix typos.
9750 2000-04-03  Felix Lee  <flee@cygnus.com>
9752         * fixinc/server.c (find_shell): New function.  Avoid $SHELL.
9753         (run_shell): Use it.
9755 2000-04-03  Jonathan Larmour  <jlarmour@redhat.co.uk>
9757         * Makefile.in (stmp-int-hdrs): Make include subdir here...
9758         (stmp-fixproto): ...rather than here.
9760 Mon Apr  3 00:50:06 2000  Jason Eckhardt <jle@cygnus.com>
9762         * pa.c (print_operand): Compute 'base' only inside the code paths
9763         that use it.
9765 2000-04-03  Geoffrey Keating  <geoffk@cygnus.com>
9767         * stor-layout.c (byte_from_pos): Use TRUNC_DIV_EXPR rather than
9768         CEIL_DIV_EXPR.
9770 2000-04-03  Philipp Thomas  <pthomas@suse.de>
9772         * i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
9774 Mon Apr  3 00:02:59 2000  Brad Lucier <lucier@math.purdue.edu>
9776         * Makefile.in (alias.o): Depend on $(TREE_H).
9778 2000-04-02  Zack Weinberg  <zack@wolery.cumb.org>
9780         * cppinit.c (cpp_start_read): Turn off -Wtraditional if
9781         processing C++.
9782         * cpplib.c (_cpp_handle_directive): Improve warnings for
9783         traditional C and indented directives.
9785         * enquire.c, gsyslimits.h, limity.h, config/convex/fixinc.convex,
9786         fixinc/fixinc.irix, fixinc/fixinc.sco, fixinc/fixinc.wrap,
9787         fixinc/inclhack.def: Indent the # of #include_next one space.
9788         * cp/rtti.c: Un-indent #if and #endif.
9790         * cppexp.c (_cpp_parse_expr): If lex returns '#', it's a
9791         syntax error, but an error has already been printed.
9792         * cpplex.c (_cpp_parse_assertion): Give a more specific error
9793         message when called with nothing remaining on the line.
9794         (_cpp_lex_token): If _cpp_parse_assertion fails, return an
9795         OTHER token, not an ASSERTION.
9796         * cpplib.c (do_assert): When we create a 'base' node, clear
9797         its aschain pointer.
9799 2000-04-02  Neil Booth <NeilB@earthling.net>
9801         * cppexp.c:  New typedef op_t.  struct operation and struct
9802         token updated to use it.
9803         (op_to_str): New function.
9804         (_cpp_parse_expr): Error messages modified to use op_to_str.
9806 2000-04-02  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9808         * config/c4x/c4x.c (c4x_function_arg): Check for void_type_node
9809         before checking MUST_PASS_IN_STACK.
9811 2000-04-02  Neil Booth <NeilB@earthling.net>
9813         * cppexp.c:  New FINISHED dummy token.  Combine operator initial
9814         flags and initial priority into a single constant.  New
9815         EQUALITY macro.  New operator flag SHORT_CIRCUIT.
9816         (_parse_cpp_expr): Implement new constants.  Take left operand
9817         checks out of reduction loop.  Handle SHORT_CIRCUIT.  End of
9818         parse indicated by reducing FINISHED token.  Remove new lines
9819         from cpp_error messages.
9821 2000-04-01  Mark Mitchell  <mark@codesourcery.com>
9823         * emit-rtl.c (gen_rtx_CONST_INT): Create cached CONST_INTs on the
9824         permanent obstack.
9826 2000-04-01  Zack Weinberg  <zack@wolery.cumb.org>
9828         * cpplib.c: Include symcat.h.  Add 'origin' field to struct
9829         directive.  Add origin values to DIRECTIVE_TABLE.  Generate
9830         the strings and function names on the fly.  Take the #sccs
9831         entry out of the table if SCCS_DIRECTIVE is not defined.
9832         (_cpp_handle_directive): Decide if the # was at the beginning
9833         of the line here.  Issue -pedantic warnings for extended
9834         directives here.  Warn about K+R directives with the #
9835         indented, and C89/extended directives with the # not indented,
9836         here.
9837         (do_import, do_include_next, do_warning, do_ident, do_sccs,
9838         do_assert, do_unassert): Don't issue pedantic warning here.
9840         * cpphash.h: Add CPP_WTRADITIONAL macro.
9841         * cpplib.h (struct cpp_options): Rename warn_stringify to
9842         warn_traditional; update comments.
9843         * cppinit.c (handle_option): Set warn_traditional not
9844         warn_stringify.
9845         * cpphash.c: Replace CPP_OPTION (pfile, warn_stringify) with
9846         CPP_WTRADITIONAL (pfile).
9847         * cpplex.c (_cpp_lex_token): Don't decide if directives should
9848         be ignored in -traditional mode here.
9850         * cpplex.c: Copy ISTABLE macros from cppinit.c, and adapt them
9851         to initialize speccase[] and trigraph_map[].  Delete all
9852         references to pfile->input_speccase.  Always treat '?' as a
9853         special character.  Remove table-initialization code from
9854         _cpp_init_input_buffer.
9856         * cpplib.h (struct cpp_reader): Remove input_speccase field.
9857         * cppinit.c (cpp_cleanup): Don't free input_speccase.
9859 2000-04-01  Richard Henderson  <rth@cygnus.com>
9861         * Makefile.in (STAGESTUFF): Wildcard all debugging dumps at once.
9862         (mostlyclean): Likewise.
9864         * toplev.c (rtl_dump, jump_opt_dump, etc): Remove.
9865         (struct dump_file_info, enum dump_file_index, dump_file): New.
9866         (open_dump_file): Take a dump_file_index not a suffix, and a decl
9867         not a string.  Clean out file if we havn't yet done so.  Do nothing
9868         if the dump isn't enabled.
9869         (close_dump_file): Do nothing if the dump isn't open.  Dump
9870         graph data if requested.
9871         (dump_rtl, clean_dump_file): Remove.
9872         (compile_file): Don't clean the dump files.  Only finalize .bp dump
9873         if flag_test_coverage or flag_branch_probabilities.  Only finalize
9874         .combine dump if optimizing.  Iterate over dump_file to finalize the
9875         graph dumps.
9876         (rest_of_compilation): Update for open_dump_file/close_dump_file.
9877         Convert all uses of dump_rtl.
9878         (decode_d_option): Iterate over dump_file to implement 'a' and to
9879         locate pass-specific dumps.
9881 2000-04-01  Neil Booth <NeilB@earthling.net>
9883         * cppexp.c: Redefine priority constants.
9884         (_cpp_parse_expr): Replace left and right priority scheme with
9885         single priority logic.  Move LOGICAL to same place as COMPARE.
9886         Remove bogus check for multiple unary +/- operators.
9888 2000-04-01  Neil Booth <NeilB@earthling.net>
9890         * cppexp.c: (_cpp_parse_expr): Numerical constants are pushed
9891         within the switch statement.  Binary operations break out of
9892         the switch naturally.  '(' tokens handled by forcing
9893         immediate shift.  ')' handled by forcing immediate reduce to
9894         the previous '('.  New error messages.
9896 2000-03-31  Geoff Keating  <geoffk@cygnus.com>
9898         * config/rs6000/rs6000.c (print_operand): Don't use %l for 'low
9899         part', it's already in use.  Use %K instead.  Add a return at the
9900         end of what is now %K.
9901         * config/rs6000/rs6000.md (elf_low): Use %K instead of %l.
9903 Sat Apr  1 02:05:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
9905         * builtins.c  (expand_builtin_apply):  Pass proper parameters to
9906         allocate_dynamic_stack_space.
9907         * calls.c (emit_call_1):  Do not adjust stack pointer for SIB,
9908         update stack_pointer_delta; do not update arg_size_so_far.
9909         (compute_argument_block_size): Use stack_delta instead of
9910         stack_pointer_pending and arg_size_so_far.
9911         (expand_call): Add sanity checking for stack_pointer_delta;
9912         save and restore stack_pointer_delta for SIB, use
9913         stack_pointer_delta for alignment; do not update arg_space_so_far.
9914         (emit_library_call_value): Use stack_pointer_delta for alignment.
9915         (store_one_arg): Do not update arg_space_so_far.
9916         * explow.c (adjust_stack, anti_adjust_stack): Update
9917         stack_pointer_delta.
9918         (allocate_dynamic_stack_space): Add sanity checking for
9919         stack_pointer_delta.
9920         * expr.c (init_expr, clear_pending_stack_adjust): Clear
9921         stack_pointer_delta.
9922         (emit_push_insn): Update stack_pointer_delta.
9923         * function.h (struct expr_status): Add x_stack_pointer_delta;
9924         remove x_arg_space_so_far.
9925         (arg_space_so_far): Remove.
9926         (stack_pointer_delta): New macro.
9928 2000-03-31  Zack Weinberg  <zack@wolery.cumb.org>
9930         * cpplib.h: Merge struct cpp_options into struct cpp_reader.
9931         Reorder struct cpp_options and struct cpp_reader for better
9932         packing.  Replace CPP_OPTIONS macro with CPP_OPTION which
9933         takes two args.  Change all 'char' flags to 'unsigned char'.
9934         Move show_column flag into struct cpp_options.  Don't
9935         prototype cpp_options_init.
9936         * cpphash.h, cpperror.c, cppexp.c, cppfiles.c, cpphash.c,
9937         cppinit.c, cpplex.c, cpplib.c:
9938         Replace CPP_OPTIONS (pfile)->whatever with
9939         CPP_OPTION (pfile, whatever), and likewise for
9940         opts = CPP_OPTIONS (pfile); ... opts->whatever;
9942         * cppinit.c (merge_include_chains): Take a cpp_reader *.
9943         Extract CPP_OPTION (pfile, pending) and work with that
9944         directly.
9945         (cpp_options_init): Delete.
9946         (cpp_reader_init): Turn on on-by-default options here.
9947         Allocate the pending structure here.
9948         (cl_options, enum opt_code): Define these from the same table,
9949         kept in a large macro.  Add -fshow-column and -fno-show-column
9950         options.
9952         * cpperror.c (v_message): If show_column is off, don't print
9953         the column number.
9955         * cppmain.c: Update for new interface.
9956         * fix-header.c: Likewise.
9958 2000-03-30  Geoff Keating  <geoffk@cygnus.com>
9960         * config/rs6000/t-aix43 (AR_FLAGS_FOR_TARGET): Adjust for new
9961         definition.
9962         * Makefile.in (AR_FLAGS_FOR_TARGET): Is now the flags that
9963         are passed to any invocation of AR_FOR_TARGET.
9964         (AR_CREATE_FOR_TARGET): New macro.
9965         (AR_EXTRACT_FOR_TARGET): New macro.
9966         (ORDINARY_FLAGS_TO_PASS): Add AR_CREATE_FOR_TARGET,
9967         AR_EXTRACT_FOR_TARGET.
9968         (many places): Use AR_CREATE_FOR_TARGET, AR_EXTRACT_FOR_TARGET
9969         in place of `$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET)' and
9970         `$(AR_FOR_TARGET) x'.  Pass AR_CREATE_FOR_TARGET and
9971         AR_EXTRACT_FOR_TARGET to sub-makes.
9973 2000-03-31  Neil Booth <NeilB@earthling.net>
9975         * cppexp.c: Delete SKIP_OPERAND.  Correct priority
9976         PAREN_INNER_PRIO.
9977         (_cpp_parse_expr): Check for multiple unary +/- operators.
9978         Correct priorities of ':' and '?'.  Treat ')' as having a
9979         value.  Ensure conditional expression is not void.
9981 2000-03-31  Mark Mitchell  <mark@codesourcery.com>
9983         * alias.c (canon_rtx): Make it global.
9984         (rtx_equal_for_memref_p): CONST_INT equality is now pointer
9985         equality.
9986         * cse.c (struct table_elt): Add canon_exp.
9987         (insert): Clear it.
9988         (invalidate): Canonicalize expressions only once.
9989         * rtl.h (canon_rtx): Declare.
9991 2000-03-30  Mark Mitchell  <mark@codesourcery.com>
9993         * Makefile.in (emit-rtl.o): Depend on HASHTAB_H.
9994         * alias.c (reg_known_value): Add comments.
9995         (init_alias_analysis): Likewise.
9996         * cse.c (exp_equiv_p): CONST_INTs are equal iff they have the same
9997         address.
9998         (cse_basic_block): Fix typo in comment.
9999         * emit-rtl.c: Include hashtab.h.
10000         (const_int_htab): New variable.
10001         (const_int_htab_hash): New function.
10002         (const_int_htab_eq): Likewise.
10003         (rtx_htab_mark_1): Likewise.
10004         (rtx_htab_mark): Likewise.
10005         (gen_rtx_CONST_INT): Cache all CONST_INTs.
10006         (unshare_all_rtx): Fix formatting.
10007         (init_emit_once): Initialize const_int_htab.
10008         * rtl.c (rtx_equal_p): CONST_INTs are equal iff they have the same
10009         address.
10010         * rtl.texi: Document the fact that all CONST_INTs with the same
10011         value are shared.
10013 2000-03-30  Richard Henderson  <rth@cygnus.com>
10015         * alpha.h (FUNCTION_BOUNDARY): Reduce to 128 bits.
10017 2000-03-30  Zack Weinberg  <zack@wolery.cumb.org>
10019         * configure.in: Comment out --enable-c-cpplib stanza.
10020         * configure: Regenerate.
10022 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10024         * expr.c (store_constructor): Properly compute displacement and
10025         alignment when offset is variable.
10027         * expmed.c (store_bit_field, store_fixed_bit_field): Fix more
10028         cases of alignment in bytes.
10030 Thu Mar 30 13:30:40 2000  Jeffrey A Law  (law@cygnus.com)
10032         * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
10033         since it is used to generate c-parse.y.
10034         * objc-parse.c, objc-parse.y: Regenerated.
10036         * function.c (expand_function_end): Pass alignment argument to
10037         emit_block_move in bits, not bytes.
10039 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10041         * expr.c (move_by_pieces_ninsns): Fix one more missing align
10042         correction.
10044         * expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
10046         * calls.c (expand_call): Pass bit alignment to mark_reg_pointer.
10047         * explow.c (memory_address, allocate_dynamic_stack_space): Likewise.
10048         * function.c (assign_parms): Likewise.
10049         * integrate.c (expand_inline_function): Likewise.
10050         * stmt.c (expand_decl): Likewise.
10051         (copy_rtx_and_substitute): Likewise.
10052         * expr.c (expand_expr, expand_expr_unaligned): Likewise.
10053         (clear_by_pieces): Fix error in last change.
10054         * emit-rtl.c (init_emit): Set known registers alignment in bits.
10055         * function.h (regno_pointer_align): Now unsigned.
10056         * config/arm/arm.c (alignable_memory_operand): REGNO_POINTER_ALIGN
10057         is in bits.
10058         * config/i386/i386.c (aligned_operand): Likewise.
10059         * config/sparc/sparc.c (mem_min_alignment): Likewise.
10060         * config/alpha/alpha.c (aligned_memory_operand): Likewise.
10061         (unaligned_memory_operand): Likewise.
10062         (alpha_expand_block_move, alpha_expand_block_clear): Likewise.
10063         Also make alignments and sizes unsigned and some whitespace cleanup.
10064         (alpha_va_start): Do nothing if VALIST's type is error_mark_node.
10066         * builtins.c (get_pointer_alignment): Use host_integerp & tree_low_cst.
10067         (expand_builtin_apply): Pass alignment to emit_block_move in bits.
10068         (expand_builtin_memcpy, expand_builtin_va_copy): Likewise.
10069         (expand_builtin_memset): Likewise, but to clear_storage.
10070         * calls.c (save_fixed_argument_area): Likewise, to move_by_pieces.
10071         (restore_fixed_argument_area): Likewise.
10072         (store_unaligned_arguments_into_pseudos): Likewise, to store_bit_field.
10073         (load_register_parameters): Likewise, to emit_group_load.
10074         (expand_call): Likewise, to emit_group_store and emit_block_move.
10075         (emit_library_call_value_1): Likewise, to emit_block_move.
10076         (store_one_arg): Likewise, and to emit_push_insn.
10077         * expmed.c (extract_bit_field): Alignment is in bits, not bytes.
10078         (extract_fixed_bit_field, extract_split_bit_field): Likewise.
10079         * expr.c (move_by_pieces, move_by_pieces_ninsns): Likewise.
10080         (emit_block_move, emit_group_load, emit_group_store): Likewise.
10081         (clear_by_pieces, clear_storage, emit_push_insn): Likewise.
10082         (expand_assigment, store_expr, store_constructor_field): Likewise.
10083         (expand_expr_unaligned, do_jump, do_compare_and_jump): Likewise.
10084         (store_constructor, store_field, get_inner_reference): Likewise.
10085         Use host_integerp and tree_low_cst; sizes and positions HOST_WIDE_INT.
10086         (expand_expr, case COMPONENT_REF): Likewise.
10087         (copy_blkmode_from_regs): Use UNSIGNED_HOST_WIDE_INT for sizes
10088         and positions; reindent code.
10089         * expr.h (emit_cmp_insn, emit_cmp_and_jump_insns): Alignment unsigned.
10090         * function.c (purge_addressof_1): Pass bit align to store_bit_field.
10091         (assign_parms): Likewise to emit_group_store.
10092         * optabs.c (prepare_cmp_insn): Alignment is in bits.
10093         (emit_cmp_and_jump_insns, emit_cmp_insn): Likewise, and also unsigned.
10094         * stmt.c (expand_value_return): Pass align in bits to emit_group_load.
10095         (expand_return): Likewise to {extract,store}_bit_field.
10096         * stor-layout.c (get_mode_alignment): Minor cleanup.
10097         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Align is in bits.
10098         * config/sh/sh.h (MOVE_BY_PIECES_P): Likewise.
10100 2000-03-29  Nick Clifton  <nickc@cygnus.com>
10102         * config/arm/arm.h: Undo effects of previous delta:
10103         (ASM_SPEC): Do not define.
10104         (SUBTARGET_EXTRA_ASM_SPEC): Do not define.
10106         * config/arm/linux-elf.h: (SUBTARGET_EXTRA_ASM_SPEC) Fix
10107         typo.
10109 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
10111         * cppinit.c (cpp_start_read): Call initialize_dependency_output
10112         only after reading in the primary source file.
10114 2000-03-29  Geoff Keating  <geoffk@cygnus.com>
10116         * c-common.c (c_common_nodes_and_builtins): The first parameter to
10117         __builtin_va_start and __builtin_va_copy is now either a 'va_list'
10118         or a reference to a va_list.
10119         * builtins.c (stabilize_va_list): Simplify now we don't have to
10120         work around C array address decay.
10121         * c-typeck.c (convert_for_assignment): Handle assignment to
10122         a reference parameter by taking the address of the RHS.
10123         * ginclude/stdarg.h (va_start): Don't take address of first parameter.
10124         (va_copy): Likewise.
10125         (__va_copy): Likewise.
10126         * ginclude/varargs.h (va_start): Likewise.
10127         (__va_copy): Likewise.
10129 Wed Mar 29 15:44:53 2000  Jeffrey A Law  (law@cygnus.com)
10131         * i386/djgpp.h: Remove extraneous "+".
10133         * stmt.c (stmt_loop_nest_empty): Fix thinko in last change.
10135         * calls.c (expand_call): Fix typo in last change.
10137 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10139         * tree.c (unsave_expr_1): Don't mess with a TARGET_EXPR that hasn't
10140         been expanded.
10142 Wed Mar 29 15:39:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10144         * stor-layout.c (bit_from_pos, byte_from_pos): New functions.
10145         (pos_from_byte, pos_from_bit, normalize_offset): Likewise.
10146         (normalize_rli, rli_size_so_far, rli_size_unit_so_far): Use them.
10147         * tree.c (bit_position, byte_position): Likewise.
10148         * tree.h: Declare new functions.
10150 2000-03-29  Nick Clifton  <nickc@cygnus.com>
10152         * config/arm/arm.c: Minor formatting changes/
10153         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
10154         already defined.
10155         (ASM_SPEC): Define if not already defined.
10157 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
10159         * cppfiles.c (cpp_read_file): Don't pass zero-length string to
10160         _cpp_calc_hash.
10162 2000-03-29  Jakub Jelinek  <jakub@redhat.com>
10164         * dwarf2out.c (gen_enumeration_type_die): If enum has a negative
10165         value, don't output it as unsigned.
10167 Wed Mar 29 10:53:49 2000  Jeffrey A Law  (law@cygnus.com)
10169         * stmt.c (stmt_loop_nest_empty): Allow cfun->stmt to be NULL.
10171 2000-03-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10173         * c-common.c (c_common_nodes_and_builtins): Don't special case
10174         cplus_mode when declaring builtin bzero/bcmp, always avoid
10175         prototype arguments.
10177 2000-03-29  Bruce Korb  <bkorb@gnu.org>
10179         * fixinc/mkfixinc.sh: Initially set the variable "fixincludes"
10180         to a non-file
10182 Wed Mar 29 15:08:01 MET DST 2000  Jan Hubicka  <jh@suse.cz>
10184         Convert ACCUMULATE_OUTGOING_ARGS to an expression.
10185         * calls.c (PUSH_ARGS_REVERSED) Change to expression.
10186         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default value.
10187         (struct arg_data): Remove #ifdef ACCUMULATE_OUTGOING_ARGS.
10188         (save_fixed_argument_area, restore_fixed_argument_area):
10189         conditionize by #ifdef REG_PARM_STACK_SPACE only.
10190         (emit_call): Change #ifdefs on ACCUMULATE_OUTGOING_ARGS
10191         to conditions, handle RETURN_POPS_ARGS on ACCUMULATE_OUTGOING_ARGS.
10192         (precompute_register_parameters): Avoid #ifdefs on
10193         ACCUMULATE_OUTGOING_ARGS and PUSH_ARGS_REVERSED.
10194         (stire_one_args): Likewise.
10195         (expand_call): Likewise; conditionize PUSH_ROUNDING code by PUSH_ARGS.
10196         (emit_library_call_value_1): Likewise.
10197         (compute_argument_block_size): Align to STACK_BOUNDARY only for
10198         ACCUMULATE_OUTGOING_ARGS.
10199         * combine.c (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default
10200         value.
10201         (nonzero_bits): Conditionize PUSH_ROUNDING code by USE_PUSH.
10202         (use_crosses_set_p): Likewise.
10203         * all targets (ACCUMULATE_OUTGOING_ARGS define): Change to
10204         #define ACCUMULATE_OUTGOING_ARGS 1.
10205         * i386.c (ix86_compute_frame_size): Handle ACCUMULATE_OUTGOING_ARGS
10206         frames.
10207         * i386.h (MASK_NO_PUSH_ARGS, MASK_ACCUMULATE_OUTGOING_ARGS): New
10208         constants.
10209         (TARGET_PUSH_ARGS, TARGET_ACCUMULATE_OUTGOING_ARGS): New macros.
10210         (TARGET_SWITCHES): Add push-args, no-push-args,
10211         accumulate-outgoing-args and no-accumulate-outgoing-args.
10212         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): New macro.
10213         * expr.c (ACCUMULATE_OUTGONG_ARGS, PUSH_ARGS): Provide default.
10214         (push_block): Avoid ifdefs on ACCUMULATE_OUTGONG_ARGS
10215         and PUSH_ROUNDING.
10216         (emit_push_insn): Likewise.
10217         * final.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
10218         (final_scan_insn): Avoid ifdefs on ACCUMULATE_OUTGOING_ARGS.
10219         * function.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
10220         (STACK_DYNAMIC_OFFSET): Define correctly for both
10221         ACCUMULATE_OUTGOING_ARGS and normal mode.
10222         * invoke.texi (-mpush_args, -maccumulate-outgoing-args): Document.
10223         * tm.texi (PUSH_ARGS): Document.
10224         (ACCUMULATE_OUTGOING_ARGS, PUSH_ROUNDING): Update documentation.
10226 Wed Mar 29 11:51:13 MET DST 2000  Jan Hubicka  <jh@suse.cz>
10228         * flags.h (flag_optimize_sibling_calls): Declare.
10229         * calls.c (expand_call): Fail sibcall when
10230         !flag_optimize_sibling_calls
10231         * invoke.texi (flag_optimize_sibling_calls): Document.
10232         * toplev.c (flag_optimize_sibling_calls): New global variable.
10233         (f_options): Add flag_optimize_sibling_calls.
10234         (rest_of_compilation): Conditionize
10235         optimize_sibling_and_tail_recursive_calls by
10236         flag_optimize_sibling_calls.
10237         (main): Set flag_optimize_sibling_calls for -O2.
10238         * stmt.c (expand_return): Conditionize tail recursion by
10239         flag_optimize_sibling_calls.
10241 2000-03-29  Richard Henderson  <rth@cygnus.com>
10243         * config/i386/att.h (LOCAL_LABEL_PREFIX): Define.
10244         (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Use it.
10246 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
10248         * except.c (add_eh_table_entry): Mark type_info's as referenced.
10250 2000-03-29  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10252         * config/rs6000/aix41.h (CPP_SPEC): Define _ANSI_C_SOURCE if -ansi
10253         is given.
10254         * config/rs6000/aix43.h (CPP_SPEC): Likewise.
10255         * config/rs6000/rs6000.h (CPP_SPEC): Moved to...
10256         * config/rs6000/aix.h: then modified likewise.
10258 2000-03-28  Richard Henderson  <rth@cygnus.com>
10260         * rtl.h: Redistribute enum reg_note documentation.
10261         Kill trailing whitespace.
10262         * rtl.c (reg_note_name): Adjust to match enum reg_note tweeks.
10263         Kill trailing whitespace.
10265 2000-03-28  Zack Weinberg  <zack@wolery.cumb.org>
10267         * cppfiles.c (hash_IHASH): Just return i->hash.
10268         (cpp_included): Set dummy.hash using _cpp_calc_hash.  Use
10269         htab_find_with_hash.
10270         (cpp_read_file): Likewise.
10271         (find_include_file): Likewise.  Properly initialize
10272         ih->nshort.  Share ih->name and ih->nshort if possible.
10273         * cpphash.c (_cpp_calc_hash): New function.
10274         (hash_HASHNODE): Just return h->hash.
10275         (_cpp_lookup): Set dummy.hash using _cpp_calc_hash.  Use
10276         htab_find_with_hash.
10277         * cpphash.h: Prototype _cpp_calc_hash.
10278         * cppinit.c (initialize_builtins): Provide a valid hash
10279         to _cpp_make_hashnode, using _cpp_calc_hash.
10281         * cpphash.c (collect_expansion): # is not a special character
10282         in object-like macros.  In -traditional mode, /**/ is not
10283         token paste at the beginning or end of the line.
10284         * cpplib.c (do_include, do_import, do_include_next): If
10285         parse_include fails, return immediately.
10287 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
10289         * config/arm/arm.md (return peepholes): Update to reflect the new
10290         call insn patterns.
10291         * config/arm/arm.c (arm_volatile_func): Also check
10292         current_function_nothrow.
10293         (output_return_instruction, output_func_prologue): Use it.
10294         (arm_output_epilogue, arm_expand_prologue): Likewise.
10296 2000-03-27  Tom Tromey  <tromey@cygnus.com>
10298         * gcc.c (handle_braces): In {x*...} case, break out of loop if
10299         switch is found.
10301 Tue Mar 28 11:55:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10303         * expr.c (store_constructor): SIZE now signed.
10304         For EXPR_SIZE, don't evaluate size; just needed if constant.
10305         * fold-const.c (fold): Fix a number of cases when folded tree is
10306         wrong type.
10307         * function.c (flush_addressof): Reenable.
10308         * tree.h (flush_addressof): Likewise.
10309         * toplev.c (independent_decode_option): Look at strings_processed.
10310         * config/alpha/alpha.h (MINIMUM_ATOMIC_ALIGNMENT): Cast to unsigned.
10312 Tue Mar 28 08:29:46 2000  Jan Hubicka  <jh@suse.cz>
10314         * sibcall.c (indentify_call_return_value): Find last call in the chain;
10315         Allow stack adjustment after function call.
10317         * regmove.c (struct csa_memlist): Make mem field rtx *.
10318         (record_one_stack_ref): Accept rtx * instead of rtx as parameter.
10319         (try_apply_stack_adjustment): Replace whole MEM rtx.
10320         (combine_stack_adjustments_for_block): Update calls
10321         to record_one_stack_ref.
10323 2000-03-28  Neil Booth  <NeilB@earthling.net>
10325         * cpplex.c (_cpp_read_and_prescan): Mark end of input buffer with
10326         '\\' rather than a null character, so nulls are not special.  Fix
10327         "\\\n" handling in end-of-buffer conditions.  Use trigraph map to
10328         speed trigraph conversion.
10329         (_cpp_init_input_buffer): Initialize trigraph map.
10331 2000-03-27  Alan Modra  <alan@linuxcare.com.au>
10333         * config/i386/i386.c (output_387_binary_op): Correct intel
10334         mode assembly output, and add spaces after commas in AT&T
10335         output.  Correct Unixware assembler comment.  Document input
10336         constraints.  Comment fp operations.  Reduce profligate buffer
10337         size.  Remove extraneous abort.  Localize temp var.
10338         (SYSV386_COMPAT): Define.  Add !SYSV386_COMPAT code.
10339         (output_fix_trunc): Add spaces after commas in assembly output.
10341 2000-03-27  Richard Henderson  <rth@cygnus.com>
10343         * i386-protos.h (ix86_match_ccmode): Declare.
10344         * i386.c (ix86_match_ccmode): New.
10345         (ix86_expand_fp_compare): Update for pattern renames.
10346         (ix86_expand_strlensi_unroll_1): Likewise.
10347         * i386.h (EXTRA_CC_MODES): Add CCZ.
10348         (SELECT_CC_MODE): Use it for EQ/NE zero.
10349         * i386.md (cmpsi_ccz_1): New.
10350         (cmpqi_ccz_1): New.
10351         (*testsi_ccz_1): New.
10352         (testqi_ccz_1): New.
10353         (cmpsi_ccno_1): Rename from cmpsi_0.
10354         (testsi_ccno_1): Rename from testsi_1.
10355         (testqi_ccno_1): Rename from testqi_1.
10356         (*testqi_ext_ccz_0): Rename from testqi_ext_0.
10357         (testqi_ext_ccno_0): Rename from *testqi_ext_1.
10358         (*cmphi_0): Use ix86_match_ccmode.
10359         (*cmpqi_ext_2, *addsi_2, *addhi_2, *addqi_2): Likewise.
10360         (*subsi_2, *subhi_2, *subqi_2, *testhi_1): Likewise.
10361         (*testqi_ext_1, *testqi_ext_2, *testqi_ext_3): Likewise.
10362         (*andsi_2, *andhi_2, *andqi_2, *andqi_ext_0_cc): Likewise.
10363         (*iorsi_2, *iorhi_2, *iorqi_2): Likewise.
10364         (*xorsi_2, *xorhi_2, *xorqi_cc_1): Likewise.
10365         (*one_cmplsi2_2, *one_cmplhi2_2, *one_cmplqi2_2): Likewise.
10366         (*ashlsi3_cmpno, *ashlhi3_cmpno, *ashlqi3_cmpno): Likewise.
10367         (*ashrsi3_cmpno, *ashrhi3_cmpno, *ashrqi3_cmpno): Likewise.
10368         (*lshrsi3_cmpno, *lshrhi3_cmpno, *lshrqi3_cmpno): Likewise.
10369         (appropriate peepholes): Likewise.
10370         (*cmphi_1, *cmpqi_ccno_1, *cmpqi_1): Star out name.
10371         (*subsi_3, *subhi_3, *subqi_3): Remove.
10372         (*negdi2_1+1 splitter): Use CCZ for neg patterns.
10373         (*negsi2_cmp, *neghi2_cmp, *negqi2_cmp): Remove.
10374         (*negsi2_cmpz): Rename from *negsi2_cmpno, use CCZ.
10375         (*neghi2_cmpz, *negqi2_cmpz): Similarly.
10376         (x86_shift_adj_1): Use CCZ.
10377         (*dbra_ge+1, *dbra_ge+2, ffssi2, ffssi_1): Likewise.
10379 2000-03-27  Stan Cox  <scox@cygnus.com>
10381         * resource.h (mark_resource_type): New.
10382         * resource.c (find_dead_or_set_registers, mark_target_live_regs,
10383         find_free_register): Use mark_resource_type.
10384         (mark_set_resources): Change include_delayed_effects
10385         to mark_resource_type.
10386         * reorg.c (steal_delay_list_from_target, try_merge_delay_insns,
10387         redundant_insn, fill_simple_delay_slots, fill_slots_from_thread):
10388         Use mark_resource_type.
10390 2000-03-27  Richard Henderson  <rth@cygnus.com>
10392         * i386.md (call_pop_0, call_value_pop_0): New.
10393         (call_pop_1): Remove constraint from unused arg.  Support sibcalls.
10394         (call_value_pop_1): Likewise.
10395         (call_0, call_value_0): New.
10396         (call_1, call_value_1): Remove constraint from unused arg.
10398 2000-03-27  Nick Clifton  <nickc@cygnus.com>
10400         * invoke.texi (Spec Files): Document new spec % command created by
10401         Tom Tromey's recent patch.
10403 2000-03-27  Jakub Jelinek  <jakub@redhat.com>
10405         * libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD
10406         if not defined.
10408 Mon Mar 27 06:04:22 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10410         * expr.c (expand_assignment): Fix typo in last change.
10412         * libgcc2.h: Use MIN_UNITS_PER_WORD, not UNITS_PER_WORD.
10414 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10416         * c-convert.c (convert): Return if output or input type is ERROR_MARK.
10417         * c-decl.c (duplicate_decls): Only look at DECL_BUILT_IN_NONANSI
10418         and DECL_INLINE if FUNCTION_DECL.
10419         (pushdecl, redeclaration_error_message): Likewise, for DECL_INLINE.
10420         (store_parm_decls): Check for type of PARM_DECL being ERROR_MARK.
10421         Use DECL_WEAK, not DECL_RESULT, to flag for already seen.
10422         (combine_parm_decls): Likewise.
10423         * ggc-common.c (gcc_mark_tree_children, case 'd'): Use DECL_RESULT_FLD.
10424         * print-tree.c (print_node): Likewise.
10425         Only test DECL_PACKED, DECL_INLINE, DECL_BIT_FIELD, and
10426         DECL_TRANSPARENT_UNION on proper decl types.
10427         Properly handly DECL_INCOMING_RTL and DECL_SAVED_INSNS.
10428         * stor-layout.c (layout_decl): Only check DECL_PACKED and
10429         DECL_BIT_FIELD of FIELD_DECL.
10430         * tree.h (DECL_RESULT_FLD): New macro.
10432         * expr.c (expand_assignment): Add code to handle variable-sized
10433         BLKmode case.
10435 2000-03-26  Richard Henderson  <rth@cygnus.com>
10437         * calls.c (expand_call): Pass parms not original exp to
10438         optimize_tail_recursion.  Mind return value instead of looking
10439         for a barrier.
10440         * stmt.c (optimize_tail_recursion): Take parameter list, not entire
10441         call_expr.  Move checks for call_expr and current_function_decl ...
10442         (expand_return): ... here.
10444 2000-03-26  Tom Tromey  <tromey@cygnus.com>
10446         * gcc.c (handle_braces): Recognize `%{<S}' construct.
10447         (SWITCH_OK, SWITCH_FALSE, SWITCH_IGNORE, SWITCH_LIVE): New
10448         defines.
10449         (process_command): Use them.
10450         (check_live_switch): Likewise.
10451         (give_switch): Skip ignored switches.
10453 2000-03-26  Jan Hubicka  <jh@suse.cz>
10455         * jump.c (jump_optimize_1): Fix typo in elide optimizations
10456         for minimal jump pass test.
10458 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
10460         * integrate.c (function_cannot_inline_p): Do inline functions that
10461         return `void'.
10463 Sun Mar 26 11:37:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10465         * stor-layout.c (layout_type, set_sizetype): early_type_list is
10466         now a list of TREE_LIST entries, not types.
10467         * tree.c (build_common_tree_nodes_2): Eliminate dupliate type sets.
10469         * expmed.c (extract_bit_field): Ensure BITS_PER_WORD is signed in MAX.
10470         * config/arm/pe.c (arm_pe_return_in_memory): Use host_integerp and
10471         int_bit_position.
10472         * config/mips/mips.c (function_arg): Likewise; also remove cast
10473         and make variables unsigned or HOST_WIDE_INT and use tree_low_cst.
10474         (mips_function_value): Use int_byte_position and make HOST_WIDE_INT.
10475         * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Offsets are unsigned.
10476         * config/mips/mips.h (BITS_PER_WORD, UNITS_PER_WORD): Cast to unsigned.
10477         (UNITS_PER_FPREG, INT_TYPE_SIZE, LONG_TYPE_SIZE): Likewise.
10478         (POINTER_SIZE, POINTER_BOUNDARY,PARM_BOUNDARY): Likewise.
10479         (GP_REG_P, FP_REG_P, MD_REG_P, ST_REG_P): Ensure subtraction signed.
10480         (struct mips_arg): arg_number, arg_words, fp_arg_words, and
10481         num_adjusts now unsigned.
10482         (FUNCTION_ARG_BOUNDARY): Remove unneeded cast.
10483         * config/sparc/sparc.c (struct function_arg_record_value_parms):
10484         NREGS now unsigned.
10485         (function_arg_record_value_1): STARTBITPOS arg now HOST_WIDE_INT
10486         as is BITPOS variable; use host_integerp and int_bit_position.
10487         (function_arg_record_value_2): Likewise.
10488         (function_arg_record_value_3): Arg BITPOS now HOST_WIDE_INT.
10489         Variable REGNO now unsigned.
10490         (function_arg_record_value): NREGS now unsigned.
10492 2000-03-26  Bernd Schmidt  <bernds@cygnus.co.uk>
10494         * jump.c (mark_all_labels): Handle CALL_PLACEHOLDERs.
10496 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10498         * Rework fields used to describe positions of bitfields and
10499         modify sizes to be unsigned and use HOST_WIDE_INT.
10500         * alias.c (reg_known_value_size): Now unsigned.
10501         * c-typeck.c (build_unary_op, case ADDR_EXPR): Use byte_position.
10502         (really_start_incremental_init): Use bitsize_zero_node.
10503         (push_init_level, pop_init_level, output_init_element): Likewise.
10504         Use bitsize_unit_node and bitsize_one_node.
10505         (output_pending_init_elements, process_init_element): Likewise.
10506         * combine.c (combine_max_regno, reg_sign_bit_copies): Now unsigned.
10507         (make_extraction): Position and length HOST_WIDE_INT and unsigned
10508         HOST_WIDE_INT, respectively.
10509         (get_pos_from_mask): Passed in value is unsigned HOST_WIDE_INT.
10510         (num_sign_bit_copies): Returns unsigned.
10511         BITWIDTH now unsigned; rework arithmetic.
10512         Remove recursive call from arg to MAX.
10513         (combine_instructions, init_reg_last_arrays): NREGS now unsigned.
10514         (setup_incoming_promotions, can_combine_p, try_combine, simplify_set):
10515         REGNO now unsigned.
10516         (set_nonzero_bit_and_sign_copies): NUM now unsigned.
10517         (find_split_point, expand_compound_operation, make_extraction): LEN
10518         now unsigned HOST_WIDE_INT, POS now HOST_WIDE_INT.
10519         (make_field_assignment): Likewise.
10520         (combine_simplify_rtx): Add cast.
10521         (expand_compound_operation): MODEWIDTH now unsigned; rework arithmetic.
10522         (force_to_mode): WIDTH now unsigned; add cast.
10523         (if_then_else_cond): SIZE now unsigned.
10524         (nonzero_bits): MODE_WIDTH, RESULT_WIDTH, and WIDTH now unsigned.
10525         (extended_count): Now returns unsigned.
10526         (simplify_shift_const): COUNT unsigned; arg is now INPUT_COUNT.
10527         Add SIGNED_COUNT variable; MODE_WORDS and FIRST_COUNT now unsigned.
10528         (simplify_comparison): MODE_WIDTH now unsigned.
10529         (update_table_tick): REGNO and ENDREGNO now unsigned; new var R.
10530         (mark_used_regs_combine): Likewise; rework arithmetic.
10531         (record_value_for_reg): REGNO, ENDREGNO, and I now unsigned.
10532         (record_dead_and_set_regs, reg_dead_at_p, distribute_notes): Likewise.
10533         (record_promoted_value): REGNO now unsigned.
10534         (get_last_value_validate): REGNO, ENDREGNO, and J now unsigned.
10535         (get_last_value): REGNO now unsigned.
10536         (use_crosses_set_p): REGNO and ENDREGNO now unsigned.
10537         (reg_dead_regno, reg_dead_endregno): Now unsigned.
10538         (remove_death): Arg REGNO now unsigned.
10539         (move_deaths):  REGNO, DEADREGNO, DEADEND, OUREND, and I now unsigned.
10540         (reg_bitfield_target_p): REGNO, REGNO, ENDREGNO, and ENDTREGNO
10541         now unsigned.
10542         * convert.c (convert_to_integer): INPREC and OUTPREC now unsigned.
10543         * cse.c (struct qty_table_elem): FIRST_REG and LAST_REG now unsigned.
10544         (struct cse_reg_info): REGNO now unsigned.
10545         (cached_regno): Now unsigned.
10546         (REGNO_QTY_VALID_P): Add cast.
10547         (make_new_qty, make_regs_eqv, delete_reg_eqiv): Regno args unsigned.
10548         (remove_invalid_regs): Likewise.
10549         (remove_invalid_subreg_refs): Likewise; arg WORD also unsigned
10550         as are variables END and I.
10551         (get_cse_reg_info, insert): Likewise.
10552         (mention_regs, invalidate_for_call): REGNO, ENDREGNO, and I unsigned.
10553         (canon_hash): Likewise.
10554         (insert_regs, lookup_for_remove): REGNO now unsigned.
10555         (invalidate): REGNO, ENDREGNO, TREGNO, and TENDREGNO now unsigned.
10556         New variable RN.
10557         * dbxout.c (dbxout_parms, dbxout_reg_parms): Don't check for REGNO < 0.
10558         * dwarf2out.c (dwarf2ou_frame_debug_expr): Remove cast.
10559         * emit-rtl.c (subreg_realpart_p): Add cast.
10560         (operand_subword): Arg I is now unsigned as is var PARTWORDS.
10561         (operand_subword_force): Arg I is now unsigned.
10562         * except.c (eh_regs): Variable I is now unsigned.
10563         * explow.c (hard_function_value): BYTES is unsigned HOST_WIDE_INT.
10564         * expmed.c (store_fixed_bit_field): Position is HOST_WIDE_INT;
10565         length is unsigned HOST_WIDE_INT; likewise for internal variables.
10566         (store_split_bit_field, extract_fixed_bit_field): Likewise.
10567         (extract_split_bit_field, store_bit_field, extract_bit_field):
10568         Likewise.
10569         * expr.c (store_constructor_fields, store_constructor, store_field):
10570         Positions are HOST_WIDE_INT and lengths are unsigned HOST_WIDE_INT.
10571         (expand_assignment, expand_expr, expand_expr_unaligned): Likewise.
10572         (do_jump): Likewise.
10573         (move_by_pieces, move_by_pieces_ninsns, clear_by_pieces):
10574         MAX_SIZE is now unsigned.
10575         (emit_group_load): BYTEPOS is HOST_WIDE_INT; BYTELEN is unsigned.
10576         (emit_group_store): Likewise.
10577         (emit_move_insn): I now unsigned.
10578         (store_constructor): Use host_integerp, tree_low_cst, and
10579         bitsize_unit_node.
10580         (get_inner_reference): Return bitpos and bitsize as HOST_WIDE_INT.
10581         Rework all calculations to use trees and new fields.
10582         * expr.h (promoted_input_arg): Regno now unsigned.
10583         (store_bit_field, extract_bit_field): Adjust types of pos and size.
10584         (mark_seen_cases): Arg is HOST_WIDE_INT.
10585         * flow.c (verify_wide_reg_1): REGNO now unsigned.
10586         * fold-const.c (decode_field_reference): Size and pos HOST_WIDE_INT;
10587         precisions and alignments are unsigned.
10588         (optimize_bit_field_compare, fold_truthop): Likewise.
10589         (int_const_binop): Adjust threshold for size_int_type_wide call.
10590         (fold_convert): Likewise.
10591         (size_int_type_wide): Make table larger and fix thinko that only
10592         had half of table used.
10593         (all_ones_mask_p, fold): Precisions are unsigned.
10594         * function.c (put_reg_info_stack): REGNO is unsigned.
10595         (instantiate_decl): Size is HOST_WIDE_INT.
10596         (instantiate_virtual_regs): I is unsigned.
10597         (assign_parms): REGNO, REGNOI, and REGNOR are unsigned.
10598         (promoted_input_arg): REGNO is unsigned.
10599         * function.h (struct function): x_max_parm_reg is now unsigned.
10600         * gcse.c (max_gcse_regno): Now unsigned.
10601         (struct null_pointer_info): min_reg and max_reg now unsigned.
10602         (lookup_set, next_set): REGNO arg now unsigned.
10603         (compute_hash_table): REGNO and I now unsigned.
10604         (handle_avail_expr): regnum_for_replacing now unsigned.
10605         (cprop_insn): REGNO now unsigned.
10606         (delete_null_pointer_checks_1): BLOCK_REG now pointer to unsigned.
10607         * ggc-common.c (ggc_mark_tree_children, case FIELD_DECL): New case.
10608         * global.c (set_preference): SRC_REGNO, DEST_REGNO, and I now unsigned.
10609         * hard-reg-set.h (reg_class_size): Now unsigned.
10610         * integrate.c (mark_stores): LAST_REG and I now unsigned; new UREGNO.
10611         * jump.c (mark_modified_reg): I now unsigned; add cast.
10612         (rtx_equal_for_thread_p): Add cast.
10613         * loop.c (max_reg_before_loop): Now unsigned.
10614         (struct_movable): REGNO now unsigned.
10615         (try_copy_prop): REGNO arg unsigned.
10616         (regs_match_p): XN and YN now unsigned.
10617         (consec_sets_invariant_p, maybe_eliminate_biv): REGNO now unsigned.
10618         (strength_reduce): Likewise; NREGS also unsigned.
10619         (first_increment_giv, last_increment_giv unsigned): Now unsigned.
10620         * loop.h (struct iv_class): REGNO now unsigned.
10621         (max_reg_before_loop, first_increment_giv, last_increment_giv):
10622         Now unsigned.
10623         * machmode.h (mode_size, mode_unit_size): Now unsigned.
10624         (mode_for_size, smallest_mode_for_size): Pass size as unsigned.
10625         * optabs.c (expand_binop): I and NWORDS now unsigned.
10626         (expand_unop): I now unsigned.
10627         * print-tree.c (print_node): Don't print DECL_FIELD_BITPOS, but do
10628         print DECL_FIELD_OFFSET and DECL_FIELD_BIT_OFFSET.
10629         * real.c (significand_size): Now returns unsigned.
10630         * real.h (significand_size): Likewise.
10631         * regclass.c (reg_class_size): Now unsigned.
10632         (choose_hard_reg_mode): Both operands now unsigned.
10633         (record_reg_classes): REGNO and NR now unsigned.
10634         (reg_scan): NREGS now unsigned.
10635         (reg_scan_update): old_max_regno now unsigned.
10636         (reg_scan_mark_refs): Arg MIN_REGNO and var REGNO now unsigned.
10637         * reload.c (find_valid_class): BEST_SIZE now unsigned.
10638         (find_dummy_reload): REGNO, NWORDS, and I now unsigned.
10639         (hard_reg_set_here_p): Args BEG_REGNO and END_REGNO now unsigned.
10640         Likewise for variable R.
10641         (refers_to_regno_for_reload_p): Args REGNO and END_REGNO now unsigned,
10642         as are variables INNER_REGNO and INNER_ENDREGNO; add new variable R.
10643         (find_equiv_reg): Add casts.
10644         (regno_clobbered_p): Arg REGNO now unsigned.
10645         * reload.h (struct reload): NREGS now unsigned.
10646         (refers_to_regno_for_reload_p): Regno args are unsigned.
10647         (regno_clobbered_p): Likewise.
10648         * reload1.c (reg_max_ref_width, spill_stack_slot_width): Now unsigned.
10649         (compute_use_by_pseudos): REGNO now unsigned.
10650         (find_reg): I and J now unsigned, new variable K, and change loop
10651         variables accordingly; THIS_NREGS now unsigned.
10652         (alter_reg): INHERENT_SIZE and TOTAL_SIZE now unsigned.
10653         (spill_hard_reg): REGNO arg now unsigned; add casts.
10654         (forget_old_reloads_1): REGNO, NR, and I now unsigned.
10655         (mark_reload_reg_in_use): Arg REGNO and vars NREGS and I now unsigned.
10656         (clear_reload_reg_in_use): Arg REGNO and vars NREGS, START_REGNO,
10657         END_REGNO, CONFLICT_START, and CONFLICT_END now unsigned.
10658         (reload_reg_free_p, reload_reg_reaches_end_p): Arg REGNO now unsigned.
10659         (choose_reload_regs): MAX_GROUP_SIZE now unsigned.
10660         (emit_reload_insns): REGNO now unsigned.
10661         (reload_cse_move2add): Add cast.
10662         (move2add_note_store): REGNO and I now unsigned; new variable ENDREGNO
10663         and rework loop.
10664         * resource.c (mark_referenced_resources, mark_set_resources): New
10665         variable R; REGNO and LAST_REGNO now unsigned.
10666         (mark_target_live_regs): J and REGNO now unsigned.
10667         * rtl.c (mode_size, mode_unit_size): Now unsigned.
10668         * rtl.h (union rtunion_def): New field rtuint.
10669         (XCUINT): New macro.
10670         (ADDRESSOF_REGNO, REGNO, SUBREG_WORD): New XCUINT.
10671         (operand_subword, operand_subword_force): Word number is unsigned.
10672         (choose_hard_reg_mode): Operands are unsigned.
10673         (refers_to-regno_p, dead_or_set_regno_p): Regno arg is unsigned.
10674         (find_regno_note, find_regno_fusage, replace_regs): Likewise.
10675         (regno_use_in, combine_instructions, remove_death): Likewise.
10676         (reg_scan, reg_scan_update): Likewise.
10677         (extended_count): Return is unsigned.
10678         * rtlanal.c (refers_to_regno_p): Args REGNO and ENDREGNO and vars I,
10679         INNER_REGNO, and INNER_ENDREGNO now unsigned; new variable X_REGNO.
10680         (reg_overlap_mentioned_p): REGNO and ENDREGNO now unsigned.
10681         (reg_set_last_first_regno, reg_set_last_last_regno): Now unsigned.
10682         (reg_reg_last_1): FIRS and LAST now unsigned.
10683         (dead_or_set_p): REGNO, LAST_REGNO, and I now unsigned.
10684         (dead_or_set_regno_p): Arg TEST_REGNO and vars REGNO and ENDREGNO
10685         now unsigned.
10686         (find_regno_note, regno_use_in): Arg REGNO now unsigned.
10687         (find_regno_fusage): Likewise; also var REGNOTE now unsigned.
10688         (find_reg_fusage): Variables REGNO, END_REGNO, and I now unsigned.
10689         (replace_regs): Arg NREGS now unsigned.
10690         * sdbout.c (sdbout_parms, sdbout_reg_parms): Don't check REGNO < 0.
10691         * simplify-rtx.c (simplify_unary_operation): WIDTH now unsigned.
10692         (simplify_binary_operation): Likewise.
10693         (cselib_invalidate_regno): Arg REGNO and variables ENDREGNO, I, and
10694         THIS_LAST now unsigned.
10695         (cselib_record_set): Add cast.
10696         * ssa.c (ssa_max_reg_num): Now unsigned.
10697         (rename_block): REGNO now unsigned.
10698         * stmt.c (expand_return): Bit positions unsigned HOST_WIDE_INT;
10699         sizes now unsigned.
10700         (all_cases_count): Just return -1 not -2.
10701         COUNT, MINVAL, and LASTVAL now HOST_WIDE_INT.
10702         Rework tests to use trees whenever possible.
10703         Use host_integerp and tree_low_cst.
10704         (mark_seen_cases): COUNT arg now HOST_WIDE_INT;
10705         Likewise variable NEXT_NODE_OFFSET; XLO now unsigned.
10706         (check_for_full_enumeration_handing): BYTES_NEEDED, I to HOST_WIDE_INT.
10707         * stor-layout.c (mode_for_size): SIZE arg now unsigned.
10708         (smallest_mode_for_size): Likewise.
10709         (layout_decl): Simplify handing of a specified DECL_SIZE_UNIT.
10710         KNOWN_ALIGN is now an alignment, so simplify code.
10711         Don't turn off DECL_BIT_FIELD if field is BLKmode, but not type.
10712         (start_record_layout): Renamed from new_record_layout_info.
10713         Update to new fields.
10714         (debug_rli, normalize_rli, rli_size_unit_so_far, rli_size_so_far):
10715         New functions.
10716         (place_union_field): Renamed from layout_union_field.
10717         Update to use new fields in rli.
10718         (place_field): Renamed from layout_field.
10719         Major rewrite to use new fields in rli; pass alignment to layout_decl.
10720         (finalize_record_size): Rework to use new fields in rli and handle
10721         union.
10722         (compute_record_mode): Rework to simplify and to use new DECL fields.
10723         (finalize_type_size): Make rounding more consistent.
10724         (finish_union_layout): Deleted.
10725         (layout_type, case VOID_TYPE): Don't set TYPE_SIZE_UNIT either.
10726         (layout_type, case RECORD_TYPE): Call new function names.
10727         (initialize_sizetypes): Set TYPE_IS_SIZETYPE.
10728         (set_sizetype): Set TYPE_IS_SIZETYPE earlier.
10729         (get_best_mode): UNIT is now unsigned; remove casts.
10730         * tree.c (bit_position): Compute from new fields.
10731         (byte_position, int_byte_position): New functions.
10732         (print_type_hash_statistics): Cast to remove warning.
10733         (build_range_type): Use host_integerp and tree_low_cst to try to hash.
10734         (build_index_type): Likewise; make subtype of sizetype.
10735         (build_index_2_type): Pass sizetype to build_range_type.
10736         (build_common_tree_nodes): Use size_int and bitsize_int to
10737         initialize nodes; add bitsize_{zero,one,unit}_node.
10738         * tree.h (DECL_FIELD_CONTEXT): Use FIELD_DECL_CHECK.
10739         (DECL_BIT_FIELD_TYPE, DECL_QUALIFIER, DECL_FCONTEXT): Likewise.
10740         (DECL_PACKED, DECL_BIT_FIELD): Likewise.
10741         (DECL_FIELD_BITPOS): Deleted.
10742         (DECL_FIELD_OFFSET, DECL_FIELD_BIT_OFFSET): New fields.
10743         (DECL_RESULT, DECL_SAVED_INSNS): Use FUNCTION_DECL_CHECK.
10744         (DECL_FRAME_SIZE, DECL_FUNCTION_CODE, DECL_NO_STATIC_CHAIN): Likewise.
10745         (DECL_INLINE, DECL_BUILT_IN_NONANSI, DECL_IS_MALLOC): Likewise.
10746         (DECL_BUILT_IN_CLASS, DECL_STATIC_CONSTRUCTOR): Likewise.
10747         (DECL_STATIC_DESTRUCTOR, DECL_NO_CHECK_MEMORY_USAGE): Likewise.
10748         (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT, DECL_NO_LIMIT_STACK) Likewise.
10749         (DECL_ORIGINAL_TYPE, TYPE_DECL_SUPPRESS_DEBUG): Use TYPE_DECL_CHECK.
10750         (DECL_ARG_TYPE_AS_WRITEN, DECL_ARG_TYPE): Use PARM_DECL_CHECK.
10751         (DECL_INCOMING_RTL, DECL_TRANSPARENT_UNION): Likewise.
10752         (DECL_ALIGN): Adjust to new field in union.
10753         (DECL_OFFSET_ALIGN): New field.
10754         (DECL_ERROR_ISSUED, DECL_TOO_LATE): Use LABEL_DECL_CHECK.
10755         (DECL_IN_TEXT_SECTION): Use VAR_DECL_CHECK.
10756         (union tree_decl): Add struct for both aligns.
10757         (enum tree_index): Add TI_BITSIZE_{ZERO,ONE,UNIT}.
10758         (bitsize_zero_node, bitsize_one_node, bitsize_unit_node): Added.
10759         (struct record_layout_info): Rework fields to have offset
10760         alignment and byte and bit position.
10761         (start_record_layout, place_field): Renamed from old names.
10762         (rli_size_so_far, rli_size_unit_so_far, normalize_rli): New decls.
10763         (byte_position, int_byte_position): Likewise.
10764         (get_inner_reference): Change types of position and length.
10765         * unroll.c (unroll_loop): New variable R; use for some loops.
10766         MAX_LOCAL_REGNUM and MAXREGNUM now unsigned.
10767         (calculate_giv_inc): Arg REGNO now unsigned.
10768         (copy_loop_body): REGNO and SRC_REGNO now unsigned.
10769         * varasm.c (assemble_variable): Clean up handling of size using
10770         host_integerp and tree_low_cst.
10771         (decode_addr_const): Use byte, not bit, position.
10772         (output_constructor): bitpos and offsets are HOST_WIDE_INT;
10773         use tree_low_cst and int_bit_position.
10774         * objc/objc-act.c (build_ivar_list_initializer): Use byte_position.
10776 Fri Mar 24 20:13:49 2000  Jason Eckhardt  <jle@cygnus.com>
10778         * bb-reorder.c (REORDER_MOVED_BLOCK_END): Removed.
10779         (reorder_block_def): New members eff_head and eff_end.
10780         (REORDER_BLOCK_EFF_HEAD, REORDER_BLOCK_EFF_END): New macros.
10781         (verify_insn_chain): New function.
10782         (skip_insns_between_block): Add code to skip deleted insns.
10783         Check for note before using.
10784         (chain_reorder_blocks): Replace calls to skip_insns_between_block
10785         with references to REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END.
10786         Check for note before using.
10787         (make_reorder_chain): Use INTVAL rather than XINT to get REG_BR_PROB.
10788         (fixup_reorder_chain): Restructure, clean up, defect removal.
10789         (reorder_basic_blocks): Remove last_insn and references to it.
10790         Moved insn chain verification code into a new function (see above).
10791         Delete defective code that sets last insn.
10792         Initialize REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for
10793         all blocks.
10795 2000-03-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10797         * config/c4x/c4x.h (CPP_SPEC): Remove erroneous space.
10799 2000-03-24  Richard Henderson  <rth@cygnus.com>
10801         * tree.c (lang_safe_for_unsave): Remove.
10802         (unsafe_for_reeval): Transmute and rename from safe_for_unsave,
10803         allowing for two levels of unsafeness.  Remove lang hook.
10804         * tree.h: Update declarations.
10805         * calls.c (expand_call): Rename safe_for_reeval to try_tail_call.
10806         Create temporary VAR_DECLs to protect very unsafe_for_reeval trees.
10807         Always fail sibcalls when there are pending cleanups.
10809 2000-03-24  Geoff Keating  <geoffk@cygnus.com>
10811         * flow.c (propagate_block): When we delete an ADDR_VEC,
10812         also delete the BARRIER following it if there is one.
10814 2000-03-24  Richard Henderson  <rth@cygnus.com>
10816         * builtins.c (expand_builtin_bzero): Convert `length' argument
10817         to sizetype.
10819 2000-03-24  Jakub Jelinek  <jakub@redhat.com>
10821         * sibcall.c (skip_copy_to_return_value): Use OUTGOING_REGNO for
10822         comparison if regno's are equal.
10823         * calls.c (initialize_argument_informat): Add ecf_flags argument.
10824         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
10825         (expand_call): Update caller.
10826         Avoid making a sibling call if argument size of the callee is larger
10827         than argument size of the caller.
10828         Call hard_function_value with outgoing set if in sibcall pass.
10829         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
10831         * final.c (permitted_reg_in_leaf_functions, only_leaf_regs_used):
10832         Change LEAF_REGISTERS from an array initializer to actual array
10833         identifier. Move static global variable into the function.
10834         (leaf_function_p): Allow SIBLING_CALL_P calls even outside of
10835         sequences for leaf functions.
10836         * global.c (global_alloc): Likewise.
10837         * tm.texi (LEAF_REGISTERS): Update documentation.
10839         * config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Remove the ugly
10840         TARGET_FLAT leaf disabling hack.
10841         (LEAF_REGISTERS): Changed from an array initializer to actual array
10842         identifier to avoid duplication and remove the above hack.
10843         (FUNCTION_OK_FOR_SIBCALL): Define.
10844         * config/sparc/sparc.md (sibcall): New attr type. Use it almost
10845         always like call attribute.
10846         (eligible_for_sibcall_delay): New attribute.
10847         (sibcall): New delay type.
10848         (sibcall, sibcall_value, sibcall_epilogue): New expands.
10849         (sibcall_symbolic_sp32, sibcall_symbolic_sp64,
10850         sibcall_value_symbolic_sp32, sibcall_value_symbolic_sp64): New insns.
10851         * config/sparc/sparc.c (sparc_leaf_regs): New array.
10852         (eligible_for_sibcall_delay, output_restore_regs, output_sibcall):
10853         New functions.
10854         (output_function_epilogue): Move part of the code into
10855         output_restore_regs.
10856         (ultra_code_from_mask, ultrasparc_sched_reorder): Handle
10857         TYPE_SIBCALL.
10858         * sparc-protos.h (output_sibcall, eligible_for_sibcall_delay): New
10859         prototypes.
10861         * config/sparc/sparc.h (REVERSIBLE_CC_MODE): Revert Jan, 25 change
10862         until infrastructure is finished.
10864 Fri Mar 24 13:49:45 2000  Jeffrey A Law  (law@cygnus.com)
10866         * integrate.c (save_for_inline_nocopy): Clear in_nonparm_insns here.
10867         (save_parm_insns): Not here.
10869 2000-03-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10871         * builtins.c (expand_builtin_bzero): New function.
10872         (expand_builtin): Handle bzero.
10874         * builtins.def: Add BUILT_IN_BZERO.
10876         * c-common.c (c_common_nodes_and_builtins): Provide builtin
10877         prototype & function for bzero.
10879 2000-03-23  Michael Meissner  <meissner@redhat.com>
10881         * config/alpha/alpha.md (TF floating point insns): Undo 2000-03-21
10882         change adding TARGET_FP to the TF floating point insns, except for
10883         trunctfsf2, which generates direct calls to truncdfsf2.
10885 2000-03-23  Geoff Keating  <geoffk@cygnus.com>
10887         * config/rs6000/rs6000.h (ARG_POINTER_CFA_OFFSET): New definition,
10888         try to protect against middle-end changes that break binary
10889         compatibility.
10890         (DWARF_FRAME_REGISTERS): New definition, likewise for backend.
10892 2000-03-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10894         * config/c4x/c4x.md (load_immed_address):  Add DP reg clobber.
10896 Thu Mar 23 17:10:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10898         * calls.c (expand_call): If TARGET is passed by reference and
10899         is readonly, write a CLOBBER.
10901 2000-03-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10903         * builtins.c (expand_builtin): Handle bcmp.
10905         * builtins.def: Add BUILT_IN_BCMP.
10907         * c-common.c (c_common_nodes_and_builtins): Provide builtin
10908         prototype & function for bcmp.
10910 Thu Mar 23 11:34:39 2000  Jim Wilson  <wilson@cygnus.com>
10912         * config/ia64/ia64.c (rtx_needs_barrier, case UNSPEC): Move case 6...
10913         (rtx_needs_barrier, case UNSPEC_VOLATILE): to here.
10914         * config/ia64/ia64.md (pr_restore): Change UNSPEC to UNSPEC_VOLATILE.
10916 Thu Mar 23 16:04:40 2000  Andrew Haley  <aph@cygnus.com>
10918         * config/mips/mips.md (movdf_internal1a): Delete (set 'f', 'F')
10919         alternative when using -fp64 -gp32.
10921 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
10923         * config/rs6000/rs6000.h (DWARF_FRAME_RETURN_COLUMN): Define.
10924         * config/alpha/alpha.h (DWARF_FRAME_RETURN_COLUMN): Define.
10925         * config/sparc/sparc.h (DWARF_FRAME_RETURN_COLUMN): Define.
10927         * frame.h (frame_state): Revert last change.
10928         * frame.c (execute_cfa_insn): Just don't record the save of a CFA reg.
10929         * libgcc2.c (throw_helper): Revert last change.
10931 2000-03-22  Richard Henderson  <rth@cygnus.com>
10933         * stmt.c (expand_asm_operands): Don't promote the temporary.
10935 2000-03-22  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
10937         * builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros.
10938         * c-common.c (decl_attributes,check_format_info,truthvalue_conversion,
10939           c_get_alias_set): Likewise.
10940         * c-decl.c (duplicate_decls): Likewise.
10941         * c-typeck.c (default_conversion,build_unary_op): Likewise.
10942         * calls.c (initialize_argument_information): Likewise.
10943         * dwarf2out.c (decl_class_context,add_abstract_origin_attribute):
10944         Likewise.
10945         * dwarfout.c (decl_class_context,output_type): Likewise.
10946         * expr.c (get_inner_reference): Likewise.
10947         * fold-const.c (simple_operand_p,fold): Likewise.
10948         * function.c (aggregate_value_p): Likewise.
10949         * stmt.c (expand_asm_operands): Likewise.
10950         * varasm.c (named_section): Likewise.
10952 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
10954         Implement dwarf2 exception handling for the ARM.
10955         * config/arm/arm.h (INCOMING_RETURN_ADDR_RTX): Define.
10956         (DWARF_FRAME_RETURN_COLUMN): Define.
10957         * config/arm/arm.c (emit_multi_reg_push): Return rtx.  Attach
10958         REG_FRAME_RELATED_EXPR note.
10959         (emit_sfm): Likewise.
10960         (arm_expand_prologue): Set RTX_FRAME_RELATED_P on everything.
10961         * dwarf2out.c (reg_save): Handle saving a register to itself.
10962         (dwarf2out_frame_debug_expr): Handle an intermediate cfa reg.
10963         * except.c (eh_regs): Don't use the static chain reg if it's
10964         callee-saved.
10965         * frame.h (frame_state): Add cfa_saved field.
10966         * frame.c (execute_cfa_insn): Set it.
10967         * libgcc2.c (throw_helper): Don't adjust sp if it's restored in
10968         the epilogue.
10969         * function.c (ARG_POINTER_CFA_OFFSET): Default to FIRST_PARM_OFFSET.
10970         Now takes a parm.
10971         (instantiate_virtual_regs): Adjust.
10972         * tm.texi: Adjust.
10973         * config/m68k/m68k.h (ARG_POINTER_CFA_OFFSET): Don't define.
10974         * config/ns32k/ns32k.h (ARG_POINTER_CFA_OFFSET): Don't define.
10975         * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): Take a parm.
10977         * dwarf2out.c (reg_number): Refer to FIRST_PSEUDO_REGISTER.
10978         (initial_return_save): Use DWARF_FRAME_REGNUM, not reg_number.
10980 2000-03-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10982         * builtins.def: New file.
10984         * Makefile.in (TREE_H): Depend on builtins.def.
10986         * builtins.c (built_in_names): Use builtins.def.
10988         * tree.h (built_in_function): Likewise.
10990 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
10992         * tree.c (size_in_bytes): Return size_zero_node, not
10993         integer_zero_node.
10995 2000-03-22  Geoff Keating  <geoffk@cygnus.com>
10997         * config/fp-bit.c (pack_d): Correct the case when a denormal
10998         is rounded up and stops being denormal.
11000 2000-03-21  Richard Henderson  <rth@cygnus.com>
11002         * config/alpha/alpha.c (function_arg): Check for void_type_node
11003         before using MUST_PASS_IN_STACK.
11005 2000-03-21  Stephane Carrez  <stcarrez@worldnet.fr>
11007         * regmove.c (combine_stack_adjustments_for_block): Check that
11008         the stack pointer is a valid memory address.
11010 Wed Mar 22 11:44:50 MET 2000  Jan Hubicka  <jh@suse.cz>
11012         * calls.c: re-install Mar 16 emit_library_call merge.
11014 2000-03-21  Jakub Jelinek  <jakub@redhat.com>
11016         * config/sparc/sparc.c (mem_min_alignment): If not optimizing,
11017         we cannot be sure that if reload_completed base register will
11018         be properly aligned.
11020 2000-03-21  Richard Henderson  <rth@cygnus.com>
11022         * flow.c (delete_block): Fix typo last change.
11024 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
11026         * c-common.c (c_expand_expr_stmt): Use COMPLETE_TYPE_OR_VOID_P,
11027         not COMPLETE_TYPE_P, to check the type of the expression.
11029 2000-03-21  Michael Meissner  <meissner@redhat.com>
11031         * config/alpha/alpha.md (floating point insns): Add TARGET_FP to
11032         all floating point insns that just tested the macro
11033         TARGET_HAS_XFLOATING_LIBS.
11034         (movsf/movdf recognizers): Add separate insns if -mno-fp-regs is
11035         used to only use the gprs.
11037 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11039         * tree.h (COMPLETE_TYPE_P): New macro.
11040         (COMPLETE_OR_VOID_TYPE_P): New macro.
11041         (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): New macro.
11042         * stor-layout.c (layout_type, case VOID_TYPE): Don't set TYPE_SIZE.
11043         * c-aux-info.c (gen_type): Use them.
11044         * c-common.c (c_expand_expr_stmt): Likewise.
11045         * c-decl.c (poplevel, pushdecl, start_decl, finish_decl,
11046         grokdeclarator, grokparms, finish_struct, start_function,
11047         store_parm_decls, combine_parm_decls): Likewise.
11048         * c-parse.y (cast_expr): Likewise.
11049         * c-typeck.c (require_complete_type, c_sizeof, c_sizeof_nowarn,
11050         c_size_in_bytes, c_alignof, build_component_ref,
11051         build_indirect_ref, build_array_ref, convert_arguments,
11052         build_binary_op, pointer_diff, build_unary_op, digest_init: Likewise.
11053         * calls.c (initialize_argument_information): Likewise.
11054         * convert.c (convert_to_integer): Likewise.
11055         * dbxout.c (dbxout_typedefs, dbxout_type, dbxout_symbol): Likewise.
11056         * dwarfout.c (location_or_const_value_attribute,
11057         output_enumeration_type_die, output_structure_type_die,
11058         output_union_type_die, output_type): Likewise.
11059         * expr.c (safe_from_p, expand_expr): Likewise.
11060         * function.c (assign_parms): Likewise.
11061         * sdbout.c (sdbout_symbol, sdbout_one_type): Likewise.
11062         * tree.c (build_array_type, build_function_type,
11063         build_method_type, build_offset_type, build_complex_type): Likewise.
11064         * c-parse.c, c-parse.h: Regenerated.
11066 2000-03-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11068         * config/c4x/rtems.h: Include config/rtems.h.
11070 Tue Mar 21 09:24:00 2000  Denis Chertykov  <denisc@overta.ru>
11072         * config/avr/avr.c (encode_section_info): sets SYMBOL_REF_FLAG if
11073         decl is a FUNCTION_DECL
11075 Mon Mar 20 19:53:53 2000  Jim Wilson  <wilson@cygnus.com>
11077         * config/ia64/ia64.c (ia64_expand_prologue): Don't abort if leaf
11078         function uses output registers.  Don't save RP for leaf functions.
11079         Do save RP even if no epilogue.
11080         * config/ia64/ia64.h (FIXED_REGISTERS): Unmark in/out registers.
11081         (CALL_USED_REGISTERS): Unmark in registers.
11082         (REG_ALLOC_ORDER): Move out regs up, to near the top.  Move in regs up,
11083         to near the middle.
11085 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
11087         * config/rs6000/rs6000.md (bunordered): New expander.
11088         (bordered): New expander.
11089         (buneq): New expander.
11090         (bunge): New expander.
11091         (bungt): New expander.
11092         (bunle): New expander.
11093         (bunlt): New expander.
11094         (bltgt): New expander.
11096         * config/rs6000/rs6000.c (ccr_bit): Handle unordered comparisons.
11097         (ccr_bit_negated_p): New function.
11098         (print_operand): For %C, generate appropriate cror for UNEQ,
11099         UNLT, UNGT, and LTGT.  For %T and %t, use ccr_bit_negated_p.
11101 2000-03-20  Andreas Jaeger  <aj@suse.de>
11103         * sdbout.c (sdbout_one_type): Add braces to avoid "ambigous else"
11104         warning.
11106         * tree.h (safe_for_unsave): Prototype.
11108 2000-03-20  Richard Henderson  <rth@cygnus.com>
11110         * regmove.c (stack_memref_p): Fix typo, reorg for readability.
11111         (combine_stack_adjustments_for_block): Don't allow sp references
11112         in the side of a set we're not fixing up.
11113         * toplev.c (rest_of_compilation): Run combine_stack_adjustments
11114         after life_analysis.
11116 2000-03-20  Richard Henderson  <rth@cygnus.com>
11118         * calls.c (expand_call): Don't bother generating tail call
11119         sequences if there are pending cleanups.  Use
11120         expand_start_target_temps/expand_end_target_temps to elide
11121         cleanups created during sibcall expansion.
11123 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
11125         * configure.in: Set $IFS to a value if it doesn't already have one
11126         in the --enable-checking handling.
11127         * configure: Regenerate.
11129 2000-03-20  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11131         * c-parse.in (SAVE_WARN_FLAGS): Use size_int.
11132         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
11133         Regenerated.
11135 Mon Mar 20 11:43:15 MET 2000  Jan Hubicka  <jh@suse.cz>
11137         * jump.c (delete_noop_moves): Remove code attempting to
11138         combine stack adjustments.
11140 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11142         * emit-rtl.c (push_to_full_sequence, end_full_sequence): New functions.
11143         * except.c (emit_cleanup_handler): Use them.
11144         (expand_end_all_catch): Likewise.
11145         * function.c (fixup_var_refs): Likewise.
11146         (expand_function_end): Clear catch_clauses_last.
11147         * rtl.h (push_to_full_sequence, end_full_sequence): Declare.
11148         * except.h (struct eh_status): New field x_catch_clauses_last.
11149         (catch_clauses_last): New define.
11151         * Makefile.in (tree.o): Depend on HASHTAB_H.
11152         * tree.c: Include hashtab.h.
11153         (struct type_hash): Remove next field.
11154         (TYPE_HASH_SIZE): Remove.
11155         (TYPE_HASH_INITIAL_SIZE): New define.
11156         (type_hash_table): Change type to htab_t.
11157         (type_hash_eq, type_hash_hash, print_type_hash_statistics,
11158         mark_hash_entry): New functions.
11159         (init_obstacks): Allocate type hash.
11160         (type_hash_lookup): Use htab functions.
11161         (type_hash_add, mark_type_hash): Likewise.
11162         (dump_tree_statistics): Call print_type_hash_statistics.
11164 2000-03-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11166         * rs6000/t-aix41: New file.
11168         * configure.in ({rs6000,powerpc}-ibm-aix4.[12]*): Use it.
11170 Sun Mar 19 13:27:30 2000  Hans-Peter Nilsson  <hp@axis.com>
11172         * tm.texi (Driver): Fix typos and tweak entry for
11173         INCLUDE_DEFAULTS.
11174         Move misplaced STRUCT_FORCE_BLK entry ...
11175         (Storage Layout): ... to here.
11176         (Run-time Target): Recommend having TARGET_MASK_... helper macros.
11178 2000-03-19  Richard Henderson  <rth@cygnus.com>
11180         * flow.c (delete_block): Delete the addr_vec along with the block.
11181         (flow_delete_insn): Decrement LABEL_NUSES when deleting insns that
11182         reference labels.
11184         * fold-const.c (extract_muldiv): Apply type check for defined
11185         overflow to multiply as well as divide.
11187         * stor-layout.c (layout_decl): Don't abort on any zero sized decl.
11189 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11191         * emit-rtl.c (remove_unncessary_notes): Check that all
11192         NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes have an
11193         associated NOTE_BLOCK.
11194         * function.h (identify_blocks): Update comments.
11195         (reorder_blocks): Declare.
11196         * function.c (identify_blocks): Don't take paramters.
11197         (reorder_blocks): Don't take parameters.
11198         * loop.h (find_loop_tree_blocks): Remove.
11199         (unroll_block_trees): Likewise.
11200         * loop.c (loop_optimize): Don't call find_loop_tree_blocks.  Use
11201         reorder_blocks instead of unroll_block_trees.h
11202         * sibcall.c (optimize_sibling_and_tail_recursive_calls): Likewise.
11203         * stmt.c (find_loop_tree_blocks): Remove.
11204         (unroll_block_trees): Likewise.
11205         * toplev.c (rest_of_compilation): Don't call find_loop_tree_blocks
11206         in whole-function mode.
11207         * tree.h (reorder_blocks): Remove declaration.
11209         * expr.c: Include intl.h.
11210         * Makefile.in (expr.o): Depend on intl.h.
11212 2000-03-18  Richard Henderson  <rth@cygnus.com>
11214         * expr.c (emit_move_insn_1): Clarify cannot_inline message.
11216 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11218         * tree.h (tree_index): Remove enumerals for integer types.
11219         (integer_type_kind): New type.
11220         (integer_types): New variable.
11221         (char_type_node): Adjust.
11222         (signed_char_type_node): Likewise.
11223         (unsigned_char_type_node): Likewise.
11224         (short_integer_type_node): Likewise.
11225         (short_unsigned_type_node): Likewise.
11226         (integer_type_node): Likewise.
11227         (unsigned_type_node): Likewise.
11228         (long_integer_type_node): Likewise.
11229         (long_unsigned_type_node): Likewise.
11230         (long_long_integer_type_node): Likewise.
11231         (long_long_unsigned_type_node): Likewise.
11232         * tree.c (integer_types): New variable.
11233         (init_obstacks): Register it as a root.
11235 Sat Mar 18 14:38:00 2000  Jason Eckhardt  <jle@cygnus.com>
11237         * bb-reorder.c (reorder_basic_blocks): Update PREV_INSN as well as
11238         NEXT_INSN. Update last insn in chain.
11240 2000-03-17  Jason Merrill  <jason@casey.cygnus.com>
11242         * dwarf2out.c (dwarf2out_decl): Don't emit anything for types
11243         with TYPE_DECL_SUPPRESS_DEBUG set.
11245 2000-03-18  Richard Henderson  <rth@cygnus.com>
11247         * flow.c (make_edges): Use INTVAL to access REG_EH_REGION value.
11249 2000-03-18  Richard Henderson  <rth@cygnus.com>
11251         * i386.c (call_insn_operand): Always allow SYMBOL_REF,
11252         care for HALF_PIC_P.
11253         (expander_call_insn_operand): Remove.
11254         (ix86_expand_epilogue): New arg `emit_return' to control return insn.
11255         * i386.h (PREDICATE_CODES): Update.
11256         * i386.md (all call expanders): Remove predicates, remove special
11257         handling for half-pic.
11258         (*call_1, *call_value_1): Handle SIBLING_CALL_P insns.
11259         (*call_pop_pic2, *call_pic2, *call_value_pop_2, *call_value_2): Remove.
11260         (sibcall_epilogue): New.
11262 2000-03-17  Richard Henderson  <rth@cygnus.com>
11264         * rtlanal.c (single_set): Reject if the parallel has anything
11265         except SET or USE or CLOBBER.
11267 2000-03-17  Jeff Law  <law@cygnus.com>
11268             Richard Henderson  <rth@cygnus.com>
11270         * Makefile.in (OBJS): Add sibcall.o.
11271         (sibcall.o): New.
11272         * sibcall.c: New file.
11273         * calls.c (FUNCTION_OK_FOR_SIBCALL): Provide default.
11274         (ECF_IS_CONST, ECF_NOTHROW, ECF_SIBCALL): New.
11275         (emit_call_1): Replace `is_const' and `nothrow' with `ecf_flags'.
11276         Emit sibcall patterns when requested.  Update all callers.
11277         (expand_call): Generate CALL_PLACEHOLDER insns when tail call
11278         elimination seems feasable.
11279         * final.c (leaf_function_p): Sibling calls don't discount being
11280         a leaf function.
11281         * flow.c (HAVE_sibcall_epilogue): Provide default.
11282         (find_basic_blocks_1): Sibling calls don't throw.
11283         (make_edges): Make edge from sibling call to EXIT.
11284         (propagate_block): Don't remove sibcall_epilogue insns.
11285         * function.c (prologue, epilogue): Turn into varrays.  Update all uses.
11286         (sibcall_epilogue): New.
11287         (fixup_var_refs): Scan CALL_PLACEHOLDER sub-sequences.
11288         (identify_blocks_1): Likewise.  Break out from ...
11289         (identify_blocks): ... here.
11290         (reorder_blocks_1): Scan CALL_PLACEHOLDER.  Break out from ...
11291         (reorder_blocks): ... here.
11292         (init_function_for_compilation): Zap prologue/epilogue as varrays.
11293         (record_insns): Extend a varray instead of mallocing new memory.
11294         (contains): Read a varray not array of ints.
11295         (sibcall_epilogue_contains): New.
11296         (thread_prologue_and_epilogue_insns): Emit and record
11297         sibcall_epilogue patterns.
11298         (init_function_once): Allocate prologue/epilogue varrays.
11299         * genflags.c (gen_insn): Treat sibcall patterns as calls.
11300         * integrate.c (save_parm_insns): Recurse on CALL_PLACEHOLDER patterns.
11301         Broken out from ...
11302         (save_for_inline_nocopy): ... here.
11303         (copy_insn_list): Recurse on CALL_PLACEHOLDER patterns.
11304         Broken out from ...
11305         (expand_inline_function): ... here.
11306         (copy_rtx_and_substitute): Handle NOTE_INSN_DELETED_LABEL.
11307         (subst_constants): Handle 'n' formats.
11308         * jump.c (jump_optimize_minimal): New.
11309         (jump_optimize_1): New arg `minimal'; update callers.  Elide most
11310         optimizations if it's set.
11311         * rtl.c (copy_rtx): Do copy jump & call for insns.
11312         * rtl.h (struct rtx_def): Document use of jump and call for insns.
11313         (SIBLING_CALL_P): New.
11314         (sibcall_use_t): New.
11315         * toplev.c (rest_of_compilation): Do init_EXPR_INSN_LIST_cache earlier.
11316         Invoke optimize_sibling_and_tail_recursive_calls.
11317         * tree.c (lang_safe_for_unsave): New.
11318         (safe_for_unsave): New.
11319         * tree.h (lang_safe_for_unsave, safe_for_unsave): Declare.
11321         * alpha.h (FUNCTION_OK_FOR_SIBCALL): New.
11322         * alpha.md (sibcall, sibcall_value, sibcall_epilogue): New.
11323         (*sibcall_osf_1, *sibcall_value_osf_1): New.
11325 2000-03-17  Mark Mitchell  <mark@codesourcery.com>
11327         * objc/objc-act.c (encode_method_prototype): Pass types, not
11328         PARM_DECLs, to int_size_in_bytes.
11330 Fri Mar 17 11:51:34 2000  Jim Wilson  <wilson@cygnus.com>
11332         * config/ia64/ia64.md (mix4right_3op): Swap %1 and %2 in template.
11334         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
11335         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyrights again.
11337 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11339         * Clean up usages of TREE_INT_CST_LOW.
11340         * c-parse.in (RESTORE_WARN_FLAGS): Use tree_low_cst.
11341         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
11342         Regenerated.
11343         * c-tree.h (min_precision): Move declaration to here.
11344         * c-typeck.c (build_binary_op): Use host_integerp and tree_low_cst.
11345         (build_unary_op, add_pending_init): Use bit_position.
11346         (pending_init_member, process_init_element): Likewise.
11347         (really_start_incremental_init, push_init_level, pop_init_level):
11348         Don't make copies of nodes or modify them in place, use consistent
11349         types when tracking positions, and use tree routines computations.
11350         (set_init_index, output_init_element): Likewise.
11351         (output_pending_init_elements, process_init_element): Likewise.
11352         * dbxout.c (dbxout_type_fields): Use bit_position, host_integerp,
11353         tree_low_cst and int_bit_position; also minor cleanup.
11354         (dbxout_type_method_1, dbxout_range_type, dbxout_type): Likewise.
11355         (print_cst_octal): Precision is unsigned.
11356         (dbxout_symbol): Ensure DECL_INITIAL is in-range and use tree_low_cst.
11357         * dwarf2out.c (ceiling): Input and output are unsigned HOST_WIDE_INT.
11358         (simple_type_align_in_bits): Result is unsigned int.
11359         Use tree_int_low_cst and host_integerp.
11360         (simple_type_size_in_bits): Result is unsigned HOST_WIDE_INT.
11361         (field_byte_offset): Result is HOST_WIDE_INT.
11362         Change types of internal variables so alignments are unsigned int,
11363         offsets are HOST_WIDE_INT and sizes are unsigned HOST_WIDE_INT.
11364         Use host_integerp, tree_low_cst, and int_bit_position.
11365         (add_bit_offset_attribute): Likewise.
11366         (add_data_member_location_attribute): Use tree_cst_low.
11367         (add_bound_info): Use host_integerp, integer_zerop, and integer_onep.
11368         (add_bit_size_attribute): Use tree_low_cst.
11369         (add_pure_or_virtual_attribute, gen_enumeration_type_die): Likewise.
11370         * dwarfout.c: Similar changes to dwarf2out.c.
11371         * expr.c (expand_expr, case ARRAY_REF): Remove redundant code.
11372         * genoutput.c (n_occurences): Return -1 for null string.
11373         (strip_whitespace): Accept null string and make into function.
11374         (scan_operands): Reflect above changes.
11375         * sdbout.c (plain_type_1): Use host_integerp and tree_low_cst.
11376         (sdbout_field_types, sdbout_one_type): Likewise; also use bit_position.
11377         * ssa.c (rename_registers): Add missing cast of arg to bzero.
11378         * tree.c (int_size_in_bytes): Check for too big to represent.
11379         (bit_position, int_bit_position, host_integerp, tree_low_cst): New fns.
11380         * tree.h (host_integerp, tree_low_cst, bit_position, int_bit_position):
11381         New declarations.
11382         (min_precision): Delete from here.
11383         * varasm.c (decode_addr_const): Use host_integerp, bit_position,
11384         and int_bit_position.
11385         * objc/objc-act.c (encode_method_prototype): Sizes are HOST_WIDE_INT.
11386         (encode_method_def): Likewise.
11387         (build_ivar_list_initializer): Use int_bit_position.
11388         (generate_shared_structures): Convert size.
11389         (encode_type, encode_complete_bitfield): Use integer_zerop.
11390         (encode_bitfield): Use tree_low_cst and int_bit_position.
11392 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11394         * config/c4x/c4x.h (CPP_SPEC): Fix typo.
11396 2000-03-17  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11398         * call.c (special_function_p): It is only malloc if it returns
11399         Pmode.
11401 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11403         * config/c4x/c4x.h (ASM_SPEC, CPP_SPEC, LINK_SPEC): Support C33.
11404         (C33_FLAG, TARGET_C3X): Add macros.
11405         (TARGET_SWITCHES): Add -m33 option.
11406         * config/c4x/c4x.c (c4x_override_options): Test for TARGET_C33.
11408 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11410         * config/c4x/c4x.h (PARALLEL_INSN_FLAG): Add.
11411         (PARALLEL_PACK_FLAG): Delete.
11412         (TARGET_SWITCHES): Update.
11413         (TARGET_PARALLEL): Use PARALLEL_INSN_FLAG.
11415 Thu Mar 16 18:52:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11417         * fold-const.c (fold): Fix a few cases when the returned result
11418         is not of the same type as the input.
11420 2000-03-16  Nick Clifton  <nickc@cygnus.com>
11422         * config/arm/arm.h (ASM_OUTPUT_MI_THUNK): Fix compile time
11423         warning.
11425 2000-03-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11427         * libgcc2.h: Move prototypes above macros with the same name.
11428         Wrap some function prototypes in the conditional which indicates
11429         whether they are supported, i.e. "BITS_PER_UNIT == 8".
11431 2000-03-16  Richard Henderson  <rth@cygnus.com>
11433         * calls.c: Revert last two changes.
11435 2000-03-16  Bernd Schmidt  <bernds@cygnus.co.uk>
11437         * fp-bit.c (_unpack_d): If NO_DENORMALS is defined, anything that
11438         has exponent 0 is a zero.
11440         * simplify-rtx.c (hash_rtx, case MEM/REG): Take into account that
11441         HASH may already be nonzero.  Add code/mode into hash value
11442         immediately after repeat label.
11443         (cselib_lookup): Don't leave the hash table in an inconsistent
11444         state before a hash lookup operation.
11446 Thu Mar 16 17:03:10 MET 2000  Jan Hubicka  <jh@suse.cz>
11448         * i386.md (all HI and QI mode non-move patterns):  Conditionize
11449         by TARGET_[HQ]IMODE_MATH.
11450         * i386.h (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
11451         x86_promote_qi_regs): Declare.
11452         (TARGET_HIMODE_MATH, TARGET_QIMODE_MATH, TARGET_PROMOTE_HI_REGS,
11453         TARGET_PROMOTE_QI_REGS): New macros.
11454         (PROMOTE_MODE): New macro.
11455         * i386.c (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
11456         x86_promote_qi_regs): New global variables.
11458 Thu Mar 16 16:50:44 MET 2000  Jan Hubicka  <jh@suse.cz>
11460         * calls.c (emit_library_call_value_1): Break out from ...; handle
11461         VOIDmode function calls too.
11462         (emit_library_call_value): ... here.
11463         (emit_library_call): Implement by calling emit_library_call_value_1.
11465 Thu Mar 16 16:01:30 MET 2000  Jan Hubicka  <jh@suse.cz>
11467         * calls.c (expand_call): Do sanity checking on arg_space_so_far.
11468         Update arg_space_so_far on stack adjustments.
11469         (emit_library_call, emit_library_call_value): Likewise; take into
11470         account arg_space_so_far and pending_stack_adjust when calculcating
11471         the boundary.
11473 Thu Mar 16 09:02:19 2000  Jason Eckhardt  <jle@cygnus.com>
11475         * flow.c: Move all basic block reordering code into its own file.
11476         (create_basic_block): Externalize.
11477         * bb-reorder.c: New file. Copy all basic block reordering code from
11478         flow.c to this file.
11479         (reorder_basic_blocks): Fix fencepost error in for-loop.
11480         (reorder_basic_blocks): Remove braces from single statement for-loops.
11481         * basic-block.h: Add declaration for create_basic_block.
11482         * Makefile.in: Add rules for bb-reorder.o.
11484 2000-03-16  Neil Booth  <NeilB@earthling.net>
11486         * cppinit.c (handle_option):  Implement #unassert directive
11487         as -A- command line option.
11488         (print_help):  Update.
11489         * cpptexi.c:  Update.
11491 Thu Mar 16 02:14:16 2000  Hans-Peter Nilsson  <hp@bitrange.com>
11493         * md.texi (Standard Names): Document `jump'.
11495 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
11497         * calls.c (emit_call_1): Nothrow functions can still have nonlocal
11498         gotos.
11500 2000-03-15  Geoff Keating  <geoffk@cygnus.com>
11502         Merge changes from newppc-branch onto trunk.
11504         2000-03-15  Geoff Keating  <geoffk@cygnus.com>
11506         * rs6000.c (toc_hash_table): Update for new hash table functions.
11507         (toc_hash_function): Likewise.
11508         (toc_hash_eq): Likewise.
11509         (toc_hash_mark_entry): Likewise.
11510         (toc_hash_mark_table): Likewise.
11511         (output_toc): Likewise.
11512         (rs6000_add_gc_roots): Likewise.
11514         2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
11516         * t-aix43 (AR_FOR_TARGET): Deleted.  Moved `-X32_64'...
11517         (AR_FLAGS_FOR_TARGET): here.  New macro.
11519         2000-03-05  Clinton Popetz  <cpopetz@cygnus.com>
11521         * config/rs6000/rs6000.c (rs6000_fpmem_offset, rs6000_fpmem_size,
11522         fpmem_operand) Delete.
11523         (xer_operand) New.
11524         (rs6000_reg_names, alt_reg_names): Change fpmem to xer.
11525         (machine_function): Remove fpmem_size, fpmem_offset, save_toc_p.
11526         (rs6000_save_machine_status, rs6000_restore_machine_status,
11527         rs6000_init_expanders, rs6000_stack_info, debug_stack_info): Remove
11528         references to above variables.
11529         (gpc_reg_operand): Use XER_REGNO_P instead of FPMEM_REGNO_P.
11530         * config/rs6000/rs6000.h (REG_ALLOC_ORDER, REGISTER_NAMES,
11531         DEBUG_REGISTER_NAMES): Chagne fpmem to xer.
11532         (FPMEM_REGNO_P, FPMEM_REGNUM): Delete.
11533         (XER_REGNO_P, XER_REGNO): New.
11534         (rs6000_stack): Remove fpmem_p, fpmem_offset, fpmem_size.
11535         (PREDICATE_CODES): Change fpmem_operand to xer_operand.
11536         (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Change FPMEM_REGNO_P to
11537         XER_REGNO_P.
11538         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS,
11539         REG_CLASS_FROM_LETTER, CLASS_MAX_NREGS): Change FPMEM_REGS to XER_REGS,         and remove FLOAT_OR_FPMEM_REGS.
11540         (CLASS_CANNOT_CHANGE_SIZE): Change to FLOAT_REGS.
11542         2000-02-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
11544         * aix.h (FP_SAVE_INLINE, ASM_OUTPUT_INTERNAL_LABEL_PREFIX,
11545         TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP): Move here...
11546         * rs6000.h: from here.
11548         * rs6000-protos.h (rs6000_select_section): Provide prototype.
11549         (rs6000_select_rtx_section): Likewise.
11550         (rs6000_encode_section_info): Likewise.
11551         (sdata_section): Likewise.
11552         (sdata2_section): Likewise.
11553         (sbss_section): Likewise.
11554         * sysv4.h (rs6000_select_section): Delete prototype.
11555         (rs6000_select_rtx_section): Likewise.
11556         (rs6000_encode_section_info): Likewise.
11557         (sdata_section): Likewise.
11558         (sdata2_section): Likewise.
11559         (sbss_section): Likewise.
11560         (REG_SAVE_AREA): Delete definition duplicated in rs6000.h.
11562         * sysv4.h: Delete various unnecessary #undef's and put a comment
11563         on the remaining ones.
11564         Change various comments according to coding standard.
11566         2000-02-29  Clinton Popetz  <cpopetz@cygnus.com>
11568         * config/rs6000/rs6000.h (MQ_REGNO, CR0_REGNO, CR1_REGNO, CR2_REGNO,
11569         CR3_REGNO, CR4_REGNO, MAX_CR_REGNO): Define.
11570         (CR0_REGNO_P) Remove.
11571         * config/rs6000/rs6000.c (gpc_reg_operand, and64_operand, and_operand,
11572         setup_incoming_varargs, mtcrf_operation, print_operand,
11573         rs6000_stack_info, rs6000_emit_prologue, rs6000_emit_epilogue):
11574         Use the above macros.
11576         2000-02-24  Clinton Popetz  <cpopetz@cygnus.com>
11578         * config/rs6000/rs6000.md: Added a new alternative for each
11579         pattern that had a 'x' alternative but no 'y' alternative.
11580         Added a new split for each of the above patterns.
11582         2000-02-18  Geoff Keating  <geoffk@cygnus.com>
11584         * aix41.h (ASM_CPU_SPEC): Delete.
11585         (CPP_CPU_SPEC): Delete.
11587         * aix.h (RS6000_OUTPUT_BASENAME): Define.
11588         (ASM_OUTPUT_LABEL): Define.
11589         (ASM_GLOBALIZE_LABEL): Define.
11590         (STRIP_NAME_ENCODING): Define.
11591         * rs6000.h (RS6000_OUTPUT_BASENAME): Don't define.
11592         (STRIP_NAME_ENCODING): Don't define.
11593         (ASM_OUTPUT_LABEL): Don't define.
11594         (ASM_GLOBALIZE_LABEL): Don't define.
11595         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use assemble_name to output
11596         names, and ASM_OUTPUT_LABEL to output labels, rather than
11597         asm_fprintf.
11598         (ASM_OUTPUT_LABEL): Define.
11599         (ASM_OUTPUT_INT): Use assemble_name.
11600         (ASM_OUTPUT_DWARF_ADDR): Use assemble_name.
11601         (STRIP_NAME_ENCODING): Don't undefine first.
11602         (RS6000_OUTPUT_BASENAME): Make equivalent to assemble_name for
11603         ELF.
11604         (ASM_OUTPUT_LABELREF): Don't prepend underscores to labels
11605         specified with 'asm' even with -fleading-underscore.
11606         * rs6000.c (print_operand): Use assemble_name when !TARGET_AIX.
11607         (output_epilog): Likewise.
11608         (output_toc): Likewise.
11609         * tramp.asm: Handle -fleading-underscore correctly.
11611         * rs6000.md (builtin_setjmp_receiver): Also run for -fPIC and
11612         -mminimal-toc.
11613         (nonlocal_goto_receiver): Delete.
11614         * rs6000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Delete.
11616         * rs6000.h (ASM_OUTPUT_DEF): Don't define.
11617         (SET_ASM_OP): Define.
11618         * sysv4.h (ASM_OUTPUT_DEF): Don't undefine.
11620         * rs6000.h (ASM_OUTPUT_ADDR_VEC_ELT): Don't define.
11621         (ASM_LONG): Define.
11623         * rs6000.c (rs6000_dll_import_ref): Delete, not used.
11624         * rs6000-protos.h (rs6000_dll_import_ref): Delete.
11626         * rs6000.h: Add 'u' to more constants.
11628         2000-02-18  David Edelsohn  <edelsohn@gnu.org>
11630         * rs6000.md (mfcr+shift): Delete PowerPC64 version.
11632         2000-02-15  David Edelsohn  <edelsohn@gnu.org>
11634         * rs6000.c (reg_or_u_cint_operand): New function.
11635         (logical_operand): Handle 64-bit hosts.
11636         (logical_u_operand): New function.
11637         (non_logical_cint_operand): Handle 64-bit hosts.
11638         (non_logical_u_cint_operand): New function.
11639         * rs6000.h (DATA_SECTION_ASM_OP): Add tab.
11640         (PREDICATE_CODES): Define new functions.
11641         * rs6000-protos.h: Declare new functions.
11642         * rs6000.md (iordi3, xordi3): Constant int must be unsigned 32-bits.
11643         (movdi_64): Bracket code intended for 64-bit hosts.  Create
11644         CONST_DOUBLE for 32-bit values.
11645         (scc insns): Generate DImode compares.
11646         (mfcr insns): Create DImode versions.
11647         (sge matchers): New patterns.
11649         2000-02-15  Gabriel Paubert  <paubert@iram.es>
11651         * rs6000.md: Correct instructions length attributes and
11652         constraints on unsigned compare instructions.
11653         (*ne0): Disable for PowerPC64.
11655         2000-02-11  Geoff Keating  <geoffk@cygnus.com>
11657         * rs6000.c (output_function_profiler): Use .long for a 32-bit
11658         quantity, fix profile1.C test failure under -fPIC.
11660         * rs6000.c: Add 'u' to many constants to suppress warnings.
11661         (constant_pool_expr_1): Make static.
11662         (rs6000_emit_eh_toc_restore): Remove unused 'r2'.
11663         * rs6000.h: Add 'u' to many constants to suppress warnings.
11665         * rs6000.c (rs6000_emit_load_toc_table): Use LCTOC..1 under AIX
11666         for the start of the TOC, instead of LCTOC..0.
11667         * aix.h (toc_section): Use LCTOC..1 under AIX for the start
11668         of the TOC.
11669         * rs6000.md (load_toc_aix_si): Use LCTOC..1.
11670         (load_toc_aix_di): Use LCTOC..1.
11672         * rs6000.h (LEGITIMIZE_ADDRESS): Turn into a function.
11673         * rs6000.c (rs6000_legitimize_address): New function from
11674         LEGITIMIZE_ADDRESS.  Only use create_TOC_reference on
11675         symbols in the constant pool that really are TOC references.
11676         (print_operand_address): For ELF, write TOC offsets under
11677         -fPIC as subtractions in the insn.
11678         (output_toc): For ELF, define symbols in TOC as normal labels,
11679         to match RTL.
11680         (create_TOC_reference): Use gen_rtx_PLUS rather than gen_rtx.
11681         * rs6000-protos.h (rs6000_legitimize_address): Prototype.
11682         (create_TOC_reference): Prototype only when RTX_CODE is defined.
11683         * rs6000.md (movsi): Only use create_TOC_reference on
11684         symbols in the constant pool that really are TOC references.
11686         * rs6000.h (MACHINE_DEPENDENT_REORG): Don't define.
11687         * rs6000.c (rs6000_reorg): Delete.
11688         * rs6000-protos.h (rs6000_reorg): Delete.
11690         2000-02-09  Geoff Keating  <geoffk@cygnus.com>
11692         * rs6000.h (INCOMING_RETURN_ADDR_RTX): New macro.
11694         * aix.h (SETUP_FRAME_ADDRESSES): Define.
11695         * rs6000.c [TARGET_AIX] (insn_after_throw): New static variable.
11696         [TARGET_AIX] (rs6000_aix_emit_builtin_unwind_init): New function.
11697         [TARGET_AIX] (rs6000_emit_eh_toc_restore): New function.
11698         * rs6000-protos.h: Prototype rs6000_emit_eh_toc_restore,
11699         rs6000_aix_emit_builtin_unwind_init.
11700         * rs6000.md (eh_epilogue) [TARGET_AIX]: Call
11701         rs6000_emit_eh_toc_restore on AIX.
11702         (return_eh_si): Use r2.
11703         (return_eh_di): Use r2.
11705         * aix43.h: Turn on HAS_INIT_SECTION and LD_INIT_SWITCH,
11706         since we're breaking binary compatibility anyway.
11708         2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
11710         * config/rs6000/rs6000-protos.h: (get_TOC_alias_set, uses_TOC,
11711         constant_pool_expr_p): Declare them.
11712         (constant_pool_expr_p): Declare it.
11713         * config/rs6000/rs6000.c (toc_label_name): Define.
11714         (rs6000_override_options): Set toc_label_name.
11715         (input_operand): Allow any TOC_RELATIVE_EXPR_P.
11716         (get_TOC_alias_set, constant_pool_expr_p, constant_pool_expr_1,
11717         uses_TOC): New functions.
11718         (print_operand): Delete old '*' case.
11719         (print_operand_address): Use LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
11720         and strip off rtl for TOC before calling output_addr_const.
11721         (rs6000_emit_load_toc_table): Use toc_label_name.
11722         * config/rs6000/rs6000.h (TARGET_SWITCHES): Make msched-prolog
11723         the default.
11724         (LEGITIMATE_CONSTANT_POOL_BASE_P): Delete.
11725         (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): New macros.
11726         (LEGITIMATE_CONSTANT_POOL_ADDRESS_P): Use CONSTANT_POOL_EXPR_P.
11727         (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Turn symbol_refs
11728         into explicit TOC_REGISTER offsets.
11729         (TOC_REGISTER): New macro.
11730         * config/rs6000/rs6000.md (movsi, movdi): Emit rtl under
11731         TARGET_TOC to reference TOC_REGISTER.
11732         (load_toc_v4_PIC_1b): Add 4 to offset for toc reload.
11733         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Call
11734         uses_TOC before emitting label references.
11736         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
11738         * rs6000.md (stack_tie): Fix warning.
11740         * eabi-ctors.c: Use 'asm' names for the start/end variables,
11741         to handle -fleading-underscore.
11742         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use asm_fprintf and %U.
11743         (USER_LABEL_PREFIX): New macro.
11744         (ASM_OUTPUT_INTERNAL_LABEL_PREFIX): Use asm_fprintf and %L.
11745         (ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.
11746         * t-ppccomm (MULTILIB_MATCHES_SYSV): Note that call-sysv and
11747         call-linux can use the same multilibs.
11748         * t-ppcgas (MULTILIB_OPTIONS): Don't need to have separate call-sysv
11749         and call-linux multilibs.  Do multilib with -fleading-underscore.
11750         (MULTILIB_DIRNAMES): Follow MULTILIB_OPTIONS change.
11751         (MULTILIB_EXCEPTIONS): Remove call-linux exceptions.  Add restrictions
11752         to call-aix.
11754         * sysv4.h (CPP_SYSV_SPEC): Define _SOFT_FLOAT for all those CPUs that
11755         have MASK_SOFT_FLOAT set.
11756         (CPP_FLOAT_DEFAULT_SPEC): New macro.
11757         (SUBTARGET_EXTRA_SPECS): Set `cpp_float_default' to the value of
11758         CPP_FLOAT_DEFAULT_SPEC.
11760         * rs6000.c (ccr_bit): Add some consistency checks and a variable 'reg'.
11761         * rs6000.md: Whitespace change.
11762         * sysv4.h (LINK_TARGET_SPEC): Whitespace change.
11763         * sysv4le.h (LINK_TARGET_SPEC): Whitespace change.
11765         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
11767         * rs6000.md (eh_epilogue): New expander.
11768         (eh_reg_restore): New expand/split/insn combination.
11769         (return_eh_si): New insn.
11770         (return_eh_di): New insn.
11772         * eabi-ci.asm: Put a label at the start of the .eh_frame section.
11773         * eabi-cn.asm: Put a zero at the end of the .eh_frame section.
11774         * eabi-ctors.c (__do_global_ctors): Register this object's
11775         frame.  Clean up.  Call atexit() after the constructors.
11776         (__do_global_dtors): Deregister this object's frame.  Clean up.
11777         Allow for recursive calls to exit().
11778         * rs6000.c (fixuplabelno): New variable.
11779         * sysv4.h (ASM_OUTPUT_INT): Don't do .fixup if not
11780         TARGET_RELOCATABLE, it slows down exec() under linux.
11781         (ASM_OUTPUT_DWARF_ADDR): Do .fixup if TARGET_RELOCATABLE.
11783         * aix.h (ASM_OUTPUT_DWARF_ADDR_VAR): New macro.
11784         (ASM_OUTPUT_DWARF_DELTA_VAR): New macro.
11785         (ASM_OUTPUT_DWARF_DELTA2): New macro.
11786         (ASM_OUTPUT_DWARF_DELTA4): New macro.
11787         (ASM_OUTPUT_DWARF_ADDR_DELTA): New macro.
11788         (ASM_OUTPUT_DWARF_ADDR): New macro.
11789         (ASM_OUTPUT_DWARF_DATA4): New macro.
11790         (ASM_OUTPUT_DWARF_DATA2): New macro.
11791         (ASM_OUTPUT_DWARF_OFFSET4): New macro.
11792         (ASM_OUTPUT_DWARF_OFFSET): New macro.
11793         (UNALIGNED_INT_ASM_OP): New macro, fake definition.
11795         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
11797         * rs6000.c (rs6000_sr_alias_set): New variable.
11798         (rs6000_override_options): Initialise rs6000_sr_alias_set.
11799         (rs6000_emit_stack_tie): New function.
11800         (rs6000_emit_allocate_stack): Specify RTX_FRAME_RELATED_P
11801         in a way that dwarf2out can understand.
11802         (rs6000_frame_related): New function.
11803         (rs6000_emit_prologue): Use rs6000_sr_alias_set.  Specify
11804         RTX_FRAME_RELATED_P in a way that dwarf2out can understand.
11805         Use rs6000_emit_stack_tie when needed.
11806         (rs6000_emit_epilogue): Use rs6000_sr_alias_set.  Don't set
11807         RTX_FRAME_RELATED_P.  Use rs6000_emit_stack_tie when needed.
11808         * rs6000.md (stack_tie): New insn.
11809         (return_internal_si): Allow return value to be in the count
11810         register.
11811         (return_internal_di): Likewise.
11813         * rs6000.c (output_mi_thunk): Remove unused variable `sp'.
11815         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
11817         * sysv4.h (LOCAL_LABEL_PREFIX): Define, for the use of dbxelf.h.
11819         2000-01-31  Geoff Keating  <geoffk@cygnus.com>
11821         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): New macro.
11823         * rs6000.md (stmw): Use the right POWER opcode.
11824         (lmw): Likewise.
11826         2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11828         * rs6000-protos.h: New file.
11830         * rs6000.c: Include tm_p.h.  Fix compile time warnings.
11832         * rs6000.h: Move prototypes to rs6000-protos.h.  Fix compile time
11833         warnings.
11835         * sysv4.h: Likewise.
11837         2000-01-28  Geoff Keating  <geoffk@cygnus.com>
11839         * ../../configure.in: Delete powerpcle-*-winnt*
11840         and powerpcle-*-pe|powerpcle-*-cygwin*.
11841         * ../../configure: Regenerated.
11842         * cygwin.h: Delete.
11843         * rs6000.h (OBJECT_WINDOWS_NT): Delete.
11844         (TARGET_WINDOWS_NT): Delete.
11845         (ABI_NT): Delete.
11846         (CALL_NT_DLLIMPORT): Delete.
11847         Delete NT-specific code.
11848         * rs6000.md, rs6000.c, sysv4.h: Delete NT-specific code.
11849         * win-nt.h: Delete.
11850         * t-winnt: Delete.
11851         * nt-ci.asm: Delete.
11852         * nt-cn.asm: Delete.
11853         * ntstack.asm: Delete.
11855         2000-01-27  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
11857         * rs6000.h (SELECT_RTX_SECTION): Move to aix.h.
11858         (ASM_FILE_START): Likewise.
11859         (ASM_DECLARE_FUNCTION_NAME): Likewise.
11860         (ASM_OUTPUT_LABELREF): Likewise.
11861         (ASM_OUTPUT_SKIP): Likewise.
11862         (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
11863         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
11864         (ASM_OUTPUT_CASE_LABEL): Likewise.
11865         (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
11866         (ASM_OUTPUT_ASCII): Likewise.
11868         2000-01-27  Clinton Popetz  <cpopetz@cygnus.com>
11870         * rs6000.c (rs6000_emit_load_toc_table): Use "LCG" and
11871         reload_toc_labelno for non-prologue TOC reloads.  Also, don't
11872         increment rs6000_pic_labelno here.
11873         (rs6000_emit_prologue): Pass TRUE to rs6000_emit_load_toc_table,
11874         and increment rs6000_pic_labelno here.
11876         2000-01-24  Geoffrey Keating  <geoffk@cygnus.com>
11878         * rs6000.md (fctiwz): Use (set (reg) (unspec:DI [(fix:SI ...)]))
11879         rather than (set (subreg:SI (reg)) (fix:SI ...)) so that register
11880         allocation knows (reg) is dead before the insn.
11882         2000-01-21  Geoff Keating  <geoffk@cygnus.com>
11884         * rs6000.md (movsi_to_cr): Correct typo in output template.
11886         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
11888         * rs6000.c (rs6000_pic_labelno): Always define.
11889         (rs6000_pic_func_labelno): Delete.
11890         (lmw_operation): Check for a zero base register,
11891         which doesn't mean what we want.
11892         (stmw_operation): New function.
11893         (print_operand): Define new 'l' modifier.
11894         (rs6000_stack_info): We must save all 64 bits of the registers
11895         if TARGET_POWERPC64.
11896         (rs6000_output_load_toc_table): Delete.
11897         (rs6000_emit_load_toc_table): New function.
11898         (rs6000_allocate_stack_space): Delete.
11899         (rs6000_emit_allocate_stack): New function.
11900         (rs6000_emit_prologue): New function.
11901         (output_prolog): Use rs6000_emit_prologue.
11902         (rs6000_emit_epilogue): Change a few variable names to be
11903         more accurate.  Restore all 64 bits of the registers if
11904         TARGET_POWERPC64.  Only restore the FP registers which were used
11905         if they are being saved/restored one-at-a-time.
11906         (output_mi_thunk): Delete inefficient code generation.
11907         (output_function_profiler): Don't use rs6000_output_load_toc_table.
11908         * rs6000.h: Declare rs6000_emit_load_toc_table,
11909         rs6000_allocate_stack_space, stmw_operation.  Don't declare
11910         rs6000_output_load_toc_table.
11911         * rs6000.md (elf_high): Allow register 0, but discourage it
11912         heavily.
11913         (elf_low): Support loading into register 0.
11914         (load_toc_aix_si): New pattern.
11915         (load_toc_aix_di): New pattern.
11916         (load_toc_v4_pic_si): New pattern.
11917         (load_toc_v4_pic_di): New pattern.
11918         (load_toc_v4_PIC_1): New pattern.
11919         (load_toc_v4_PIC_1b): New pattern.
11920         (load_toc_v4_PIC_2): New pattern.
11921         (builtin_setjmp_receiver): Use rs6000_emit_load_toc_table.
11922         (nonlocal_goto_receiver): Use rs6000_emit_load_toc_table.
11923         (prologue): New expander.
11924         (movesi_from_cr): New pattern.
11925         (stmw): New pattern.
11926         (save_fpregs_si): New pattern.
11927         (save_fpregs_di): New pattern.
11929         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11931         * rs6000.md (movsi): Don't use force_reg when no_new_pseudos.
11932         (movdi): Likewise.
11933         (movhi): Likewise.
11934         (movqi): Likewise.
11936         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11938         * rs6000.md (movsi_got): 'unspec 8' returns a SImode result,
11939         at present.
11940         (movsi_got_internal): Likewise.
11941         (movsi_got_internal+1): Likewise.
11942         (set_sp): 'unspec 7' does a SImode clobber.
11944         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11946         * rs6000.md (floatsidf2): Don't use the fpmem "register", just
11947         allocate a stack temporary.
11948         (floatsidf2_internal): Likewise.
11949         (floatsidf2_internal+1): Likewise.  Don't do bizzare hacks
11950         with unspec.
11951         (floatunssidf2): Don't use the fpmem "register", just
11952         allocate a stack temporary.
11953         (floatunssidf2_internal): Likewise.
11954         (floatunssidf2_internal+1): Likewise.  Don't do bizzare hacks
11955         with unspec.
11956         (floatsidf2_loadaddr): Delete.
11957         (floatsidf2_store1): Delete.
11958         (floatsidf2_store2): Delete.
11959         (floatsidf2_load): Delete.
11960         (fix_truncdfsi2): Don't use the fpmem "register", just
11961         allocate a stack temporary.
11962         (fix_truncdfsi2_internal_si): Delete.
11963         (fix_truncdfsi2_internal_di): Delete.
11964         (fix_truncdfsi2_internal): New insn.
11965         (fix_truncdfsi2_internal+1): Don't use the fpmem "register".
11966         (fix_truncdfsi2_store): Delete.
11967         (fix_truncdfsi2_load): Delete.
11968         (fctiwz): Produce gen_fctiwz.
11970         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
11972         * eabi.h (INVOKE__main): Define.
11973         * rs6000.c (rs6000_stack_info): Don't handle call to NAME__MAIN
11974         specially.
11975         (rs6000_emit_prologue): Likewise.
11976         * rs6000.h (struct rs6000_stack): Don't keep track of whether
11977         this is the main program.
11979         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11981         * rs6000.c (rs6000_va_arg): Delete some unused variables.
11983         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11985         * rs6000.c (rs6000_va_arg): On AIX, padding for small arguments
11986         goes after the argument.
11988         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
11990         * rs6000.md: Document 'unspec' values used.
11991         (epilogue): New expander.
11992         (movesi_to_cr_one): New expander.
11993         (movesi_to_cr and following): New pattern.
11994         (lmw): New pattern.
11995         (return_internal_si): New pattern.
11996         (return_internal_di): New pattern.
11997         (return_and_restore_fpregs_si): New pattern.
11998         (return_and_restore_fpregs_di): New pattern.
11999         * rs6000.h: Declare new functions.
12000         * rs6000.c (rs6000_stack_info): Use current_function_is_leaf
12001         rather than rs6000_calls_p.
12002         (rs6000_makes_calls): Delete.
12003         (lmw_operation): New function.
12004         (mtcrf_operation): New function.
12005         (rs6000_emit_epilogue): New function.
12006         (output_epilog): Call rs6000_emit_epilogue and final if
12007         !TARGET_SCHED_PROLOG, instead of writing text unconditionally.
12009         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
12011         * aix43.h (SUBSUBTARGET_SWITCHES): Document switches.
12012         * aix41.h (SUBSUBTARGET_SWITCHES): Document switches.
12013         * aix.h (SUBTARGET_SWITCHES): Document switches.
12014         * rs6000.h: (TARGET_SWITCHES): Don't print options twice.  Make
12015         sched-prolog and sched-epilog the same.  Document all the
12016         switches.
12017         (TARGET_OPTIONS): No longer allow -mdebug-.
12019         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
12021         * rs6000.h (ASM_FILE_END): Move to aix.h.
12022         (EXTRA_SECTIONS): Move to aix.h.
12023         (READONLY_DATA_SECTION): Move to aix.h.
12024         (EXTRA_SECTION_FUNCTIONS): Move to aix.h.
12025         (SELECT_SECTION): Move to aix.h.
12026         (JUMP_TABLES_IN_TEXT_SECTION): Move to aix.h.
12027         (INT_REGNO_P): Use symbolic name for ARG_POINTER_REGNUM.
12028         (LINK_REGISTER_REGNUM): New definition.
12029         (RETURN_ADDR_RTX): Use symbolic name for LINK_REGISTER_REGNUM.
12030         (SLOW_UNALIGNED_ACCESS): Define in a way suitable for both
12031         AIX and SVR4.
12032         * sysv4.h: Delete the code between the inclusion of rs6000.h
12033         and svr4.h.
12034         (DWARF_DEBUGGING_INFO): Don't define, it's defined in elfos.h.
12035         (FP_ARG_MAX_REG): Move generic definition to rs6000.h.
12036         (RS6000_REG_SAVE): Move generic definition to rs6000.h.
12037         (RS6000_SAVE_AREA): Move generic definition to rs6000.h.
12038         * rs6000.md (floatsidf2_loadaddr): The first arg here is Pmode.
12039         (fix_truncdfsi2_internal): Rename to fix_truncdfsi2_internal_si.
12040         (fix_truncdfsi2_internal_di): New pattern.
12041         (fix_truncdfsi2_store): The second arg here is Pmode too.
12042         (fix_truncdfsi2_load): The second arg here is Pmode too.
12043         (tablejumpdi): Now that switch tables hold only SImode values,
12044         gcc needs to know how to add them to the pc which is DImode.
12045         * rs6000.c (rs6000_stack_info): Use symbolic name for
12046         LINK_REGISTER_REGNUM.
12047         (output_mi_thunk) [!TARGET_ELF]: Don't define sp, it's not used.
12048         (output_toc): Delete unused variables s1 and s2.
12049         (output_ascii): Use fputs not fprintf on a variable string.
12051         2000-01-07  David Edelsohn  <edelsohn@gnu.org>
12053         * rs6000.c (processor_target_table): Add power3 as alias for 630.
12054         * aix43.h: Revert Aug 2 change.
12055         (HAS_INIT_SECTION): Define, not visible yet.
12056         (LD_INIT_SWITCH): Define, not visible yet.
12057         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
12059         2000-01-04  Joel Sherrill (joel@OARcorp.com>
12061         * config/rs6000/rtems.h: Include config/rtems.h.
12063         2000-01-04  David Edelsohn  <edelsohn@gnu.org>
12065         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
12066         (SLOW_UNALIGNED_ACCESS): Define.
12067         (CASE_VECTOR_MODE): Always use 32-bit offsets.
12068         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
12069         (EXTRA_SECTOIN_FUNCTIONS): Indent .csect pseudo-op.
12070         (toc_section): Likewise and .toc pseudo-op.
12071         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
12072         64-bit mode.
12073         (TEXT_SECTION_ASM_OP): Likewise.
12074         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
12075         32-bit offsets.
12077         1999-12-17  Jakub Jelinek  <jakub@redhat.com>
12079         * config/rs6000/rs6000.h (TARGET_POWERPC64): Make sure
12080         UNITS_PER_WORD and BITS_PER_WORD are compile time constants when
12081         compiling libgcc2.
12083         2000-01-06  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
12085         * rs6000.h: Move more stuff from here...
12086         * aix.h: to here.
12087         * sysv4.h: Cleanup accordingly.
12088         * netware.h: Likewise
12090         2000-01-05  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
12092         * rs6000.h: Continue cleanup.
12093         * aix.h: Likewise.
12094         * lynx.h: Likewise.
12095         * netware.h: Likewise.
12096         * sol2.h: Likewise.
12097         * sysv4.h: Likewise.
12098         * win-nt.h: Likewise.
12100         * rs6000.h (TARGET_SWITCHES): Add descriptions.
12101         (TARGET_OPTIONS): Likewise.
12103         * sysv4.h (SUBTARGET_SWITCHES): Add descriptions.
12104         (SUBTARGET_OPTIONS): Likewise.
12106         * rs6000.md: Fix compile time warnings.
12108         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12110         vxworks patches from the Cygnus tree originally by
12111         Michael Meissner <meissner@cygnus.com> and Vladimir Makarov
12112         <vmakarov@cygnus.com>.
12113         * sysv4.h (SUBTARGET_SWITCHES): Add vxworks.
12114         (ENDFILE_SPEC): Likewise.
12115         (LIB_VXWORKS_SPEC): New macro.
12116         (STARTFILE_VXWORKS_SPEC): New macro.
12117         (ENDFILE_VXWORKS_SPEC): New macro.
12118         (LINK_START_VXWORKS_SPEC): New macro.
12119         (LINK_OS_VXWORKS_SPEC): New macro.
12120         (CPP_OS_VXWORKS_SPEC): New macro.
12121         (SUBTARGET_EXTRA_SPECS): Add all the vxworks specs.
12122         * vxppc.h: Rewrite to use proper configuration method.
12123         * vxppcle.h: New file.
12124         * ../../configure.in: Add powerpcle-wrs-vxworks*.
12125         * ../../configure: Rebuilt.
12127         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12129         Lots of changes to rs6000.h, sysv4.h, aix.h,
12130         aix31.h, aix3newas.h, aix41.h, aix43.h, beos.h,
12131         with the aim that rs6000.h is the first header
12132         included and the others override it.
12133         * aix.h: New file.
12135         * x-aix41-gld: Remove.
12136         * x-aix43: Remove.
12137         * x-aix41: Remove target-specific switches, and don't specify
12138         -Wl,-bbigtoc as we don't need it any more.
12139         * ../../configure.in: Use x-aix41 for ppc AIX 4.1 and above.
12140         Use t-aix43 for AIX 4.3 and above.
12141         * ../../configure: Regenerated.
12143         * rs6000.h (TARGET_SWITCHES): Add some initial prolog-scheduling
12144         options, that don't do anything yet.
12145         (MASK_SCHED_PROLOG): New macro.
12146         (MASK_SCHED_EPILOG): New macro.
12147         (TARGET_SCHED_PROLOG): New macro.
12148         (TARGET_SCHED_EPILOG): New macro.
12150         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12152         * rs6000.c: Correct comment, the `minimal' TOCs are actually
12153         one per translation unit, not one per function.
12154         (output_toc): Also do duplicate constant elimination
12155         for per-translation-unit TOCs.
12157         * rs6000.md (nonlocal_goto_receiver): Put it back as before.  Add
12158         a comment explaining _exactly_ when this pattern gets used.
12159         (builtin_setjmp_receiver): New pattern for better clarity.
12160         (init_v4_pic): Move it into a section dealing with TOC registers.
12162         1999-12-30  Geoff Keating  <geoffk@cygnus.com>
12164         * rs6000.c (toc_hash_table): New variable.
12165         (rs6000_hash_constant): New function.
12166         (toc_hash_function): New function.
12167         (toc_hash_eq): New function.
12168         (toc_hash_mark_entry): New function.
12169         (toc_hash_mark_table): New function.
12170         (output_toc): Don't output duplicate TOC entries in
12171         a single file.
12172         (rs6000_add_gc_roots): Add the hash table as a GC root.
12173         * t-aix43: Move AR_FOR_TARGET and CLIB here from x-aix43,
12174         where they clearly shouldn't be.  This may need to be fixed
12175         later when there is a GNU ar for AIX.
12176         * x-aix43: Don't define CLIB or AR_FOR_TARGET.
12177         Don't define BOOT_LDFLAGS as it is now not necessary.
12179         1999-12-29  Geoff Keating  <geoffk@cygnus.com>
12181         * rs6000.c (rs6000_build_va_list): Use 'char *' rather than 'void *'
12182         for va_list on AIX.  Use unsigned_char_type_node rather than
12183         constructing our own version on svr4.
12185         1999-12-17  Geoff Keating  <geoffk@cygnus.com>
12187         * tramp.asm (__trampoline_size): Delete CYGNUS LOCAL comment,
12188         since patently it's not.
12190         1999-12-08  Geoff Keating  <geoffk@cygnus.com>
12192         * config/rs6000/rs6000.md (nonlocal_goto_receiver): Turn into
12193         define_expand/define_insn pair, and handle restore of the
12194         SVR4 -fpic register.
12196 Wed Mar 15 15:43:38 2000  Jeffrey A Law  (law@cygnus.com)
12198         * acconfig.h (HAVE_GAS_WEAK): New define.
12199         * configure.in (assembler weak support): Check for .weak support.
12200         * config.in, configure: Rebuilt.
12201         * pa/som.h (MAKE_DECL_ONE_ONLY, ASM_WEAKEN_LABEL): Only define if
12202         HAVE_GAS_WEAK is defined.
12204 2000-03-15  Nick Clifton  <nickc@cygnus.com>
12206         * config/arm/arm.c (arm_output_epilogue): Do not pass %c to
12207         asm_fprintf().
12209 2000-03-15  Zack Weinberg  <zack@wolery.cumb.org>
12211         * cppfiles.c (open_include_file): New function.
12212         (find_include_file, cpp_read_file): Use it.
12214 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
12216         * cpphash.c (dump_hash_helper): Take the slot, not the element.
12218 Wed Mar 15 14:28:54 2000  Jason Eckhardt  <jle@cygnus.com>
12220         * flow.c (verify_flow_info): Check for unconditional return.
12222 Wed Mar 15 11:34:27 2000  Jim Wilson  <wilson@cygnus.com>
12224         * config/ia64/ia64.md (restore_stack_nonlocal): New.
12225         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Delete padding nop.
12226         (__ia64_restore_stack_nonlocal): New.
12227         * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __restore_stack_nonlocal.
12229 2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
12231         * cpphash.c (collect_formal_parameters): Do not complain about
12232         parameter names that just start with `__VA_ARGS__'.
12234 Wed Mar 15 13:26:58 MET 2000  Jan Hubicka  <jh@suse.cz>
12236         * i386.md (movhi_1): Promote movw imm, reg to movl imm, reg and
12237         movw reg, reg to movzwl reg, reg on PARTIAL_REGISTER_STALL machines.
12238         * i386.c (pentiumpro_cost): Set mul cost to 4.
12239         (x86_use_movx): Set for PPro.
12241 Wed Mar 15 13:07:05 MET 2000  Jan Hubicka  <jh@suse.cz>
12243         * i386.md (ix86_compute_frame_size): stack_alignment_needed is
12244         STACK_BOUNDARY for empty frames now.
12246 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
12248         * stor-layout.c (layout_union): Remove.
12249         (layout_union_field): New function, split out from layout_union.
12250         (finish_union_layout): Likewise.
12251         (layout_field): Handle unions by calling layout_union_field.
12252         (finish_record_layout): Handle unions.
12253         (layout_type): Combine RECORD_TYPE, UNION_TYPE, and
12254         QUAL_UNION_TYPE handling.
12256 Wed Feb 23 13:00:06 CET 2000  Jan Hubicka  <jh@suse.cz>
12258         * flow.c (fixup_reorder_chain): Avoid double labels in the basic block;
12259         end of basic block is jump_insn, not barrier; use create_basic_block
12260         instead of creating basic block by hand.
12262 2000-03-14  Jason Eckhardt  <jle@cygnus.com>
12264         * flow.c (reorder_basic_blocks): Account for barriers when writing
12265         over NEXT_INSN (last_bb->end).
12266         (verify_flow_info): Add check for missing barriers.
12268 2000-03-14  Greg McGary  <gkm@gnu.org>
12270         * c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
12271         * c-lex.c (init_lex): Handle RID_BOUNDED & RID_UNBOUNDED.
12272         * c-parse.gperf (__bounded, __bounded__, __ptrbase, __ptrbase__,
12273         __ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
12274         __unbounded, __unbounded__): New keywords.
12275         * c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.
12276         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
12277         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
12279 2000-03-14  Bernd Schmidt  <bernds@cygnus.co.uk>
12281         * cselib.h: New file.
12282         * alias.c: Include "cselib.h".
12283         (fixed_scalar_and_varying_struct_p): Accept the addresses of the
12284         MEMs as two new arguments.
12285         (get_addr): New static function.
12286         (find_base_term): Handle VALUEs.
12287         (memrefs_conflict_p): Likewise.
12288         (true_dependence): Call get_addr on the addresses.
12289         Call fixed_scalar_and_varying_struct_p with addresses that have been
12290         passed through get_addr and canon_rtx.
12291         (write_dependence_p): Move DIFFERENT_ALIAS_SETS_P test for consistency
12292         with true_dependence.
12293         Call get_addr on the addresses; don't call canon_rtx on the MEMs.
12294         * loop.c: Include "cselib.h".
12295         (load_mems): Process extended basic block that enters the loop with
12296         cselib.  Use that information to change initialization of the shadow
12297         register so that a constant equivalence is seen by later passes.
12298         * reload1.c: Include "cselib.h".
12299         (reload_cse_invalidate_regno): Delete function.
12300         (reload_cse_mem_conflict_p): Likewise.
12301         (reload_cse_invalidate_mem): Likewise.
12302         (reload_cse_invalidate_rtx): Likewise.
12303         (reload_cse_regno_equal_p): Likewise.
12304         (reload_cse_check_clobber): Likewise.
12305         (reload_cse_record_set): Likewise.
12306         (reg_values): Delete static variable.
12307         (invalidate_regno_rtx): Likewise.
12308         (reload_cse_delete_noop_set): New static function.
12309         (reload_cse_simplify): New static function, broken out of
12310         reload_cse_regs_1.
12311         (reload_cse_noop_set_p): Delete unused argument INSN.
12312         Just call rtx_equal_for_cselib_p on set source and destination.
12313         (reload_cse_regs_1): Break out some code into reload_cse_simplify and
12314         reload_cse_delete_noop_set.  Delete code to keep track of values; use
12315         cselib functions instead.  Delete code to push/pop obstacks.
12316         (reload_cse_simplify_set): Use cselib to find equivalent values.
12317         Delete code to push/pop obstacks.
12318         (reload_cse_simplify_operands): Likewise.
12319         * rtl.def (VALUE): New rtx code.
12320         * rtl.h (union rtunion_def): New elt rt_cselib.
12321         (X0CSELIB, CSELIB_VAL_PTR): New macros.
12322         * simplify_rtx.c: Include "ggc.h", "obstack.h", "cselib.h".
12323         (new_elt_list, new_elt_loc_list, unchain_one_value, clear_table,
12324         unchain_one_elt_list, unchain_one_elt_loc_list, check_useless_values,
12325         discard_useless_locs, discard_useless_values, entry_and_rtx_equal_p,
12326         hash_rtx, new_cselib_val, add_mem_for_addr, get_value_hash,
12327         cselib_lookup_mem, cselib_subst_to_values, cselib_invalidate_regno,
12328         cselib_mem_conflict_p, cselib_invalidate_mem, cselib_invalidate_rtx,
12329         cselib_record_set, cselib_record_sets): New static functions.
12330         (cselib_lookup, cselib_update_varray_sizes, cselib_init,
12331         cselib_finish, cselib_process_insn, rtx_equal_for_cselib_p,
12332         references_value_p): New functions.
12333         (MAX_USELESS_VALUES, REG_VALUES): New macros.
12334         (table, cselib_current_insn, next_unknown_value, cselib_nregs,
12335         n_useless_values, reg_values, callmem, cselib_obstack,
12336         cselib_startobj, empty_vals, empty_elt_lists, empty_elt_loc_lists):
12337         New static variables.
12338         * varray.h (union varray_data_tag): New elt te.
12339         (VARRAY_ELT_LIST_INIT, VARRAY_ELT_LIST): New macros.
12340         * Makefile.in (reload1.o, loop.o, simplify-rtx.o, alias.o): Update
12341         dependencies.
12343 2000-03-14  Nick Clifton  <nickc@cygnus.com>
12345         * gcc.c (do_spec_1): Catch the case where %* is used in a
12346         substitution pattern, but it has not been initialised.
12347         Issue a meaningful error message if an unrecognised operator
12348         is encountered in a spec string.
12350 2000-03-14  Richard Earnshaw <rearnsha@arm.com>
12352         * function.c (prepare_function_start): Correctly initialize
12353         cfun->stack_alignment_needed.
12355 2000-03-14  Zack Weinberg  <zack@wolery.cumb.org>
12357         * cppfiles.c (find_include_file): Don't assume nshort is a
12358         substring of name.
12360 Tue Mar 14 08:42:21 2000  Jeffrey A Law  (law@cygnus.com)
12362         * configure.in (hppa configurations): Add pa32-regs.h to the
12363         list of tm files as appropriate.
12364         * configure: Rebuilt.
12365         * pa.c (compute_frame_size): Remove explicit knowledge about FP
12366         register numbering.
12367         (hppa_expand_prologue, hppa_expand_epilogue): Likewise.
12368         (fmpyaddoperands, fmpysuboperands): Likewise.
12369         * pa.h: Remove various definitions which depend on knowing
12370         how registers are numbered.
12371         * pa32-regs.h: New file with PA32 register numbering specific
12372         definitions.
12374 2000-03-14  Richard Henderson  <rth@cygnus.com>
12376         * regmove.c (combine_stack_adjustments): New.
12377         (stack_memref_p, single_set_for_csa): New.
12378         (free_csa_memlist, record_one_stack_memref): New.
12379         (try_apply_stack_adjustment): New.
12380         (combine_stack_adjustments_for_block): New.
12381         * rtl.h (combine_stack_adjustments): Declare.
12382         * toplev.c (rest_of_compilation): Call it.
12384         * i386.md: Revert 2000-01-16 change.
12386 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12388         * gccbug.in: Add web category, gcc specific classes.
12390 2000-03-14  Nathan Sidwell  <nathan@codesourcery.com>
12392         * stor-layout.c (finalize_record_size): Fix typo.
12394 2000-03-14  Stan Shebs  <shebs@apple.com>
12396         * c-typeck.c (c_alignof): Error on incomplete types.
12397         * extend.texi (Alignment): Document this.
12399 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12401         * cppfiles.c: Include mkdeps.h.
12402         (find_include_file, read_include_file): Remove _cpp_ prefix
12403         from name, make static.
12404         (_cpp_execute_include): New function, broken out of
12405         do_include.
12407         * cpplib.c: Don't include mkdeps.h.
12408         (struct directive): Remove type field. Reorder entries.  The
12409         function takes only one argument.
12410         (struct if_stack): Make type field an int.
12411         (directive_table): Rename to dtable.  Generate it, the
12412         prototypes of the directive handlers, and the enum for the
12413         directive numbers, from a template macro.
12414         (do_ifndef, do_include_next, do_import): New functions.
12415         (do_define, do_include, do_endif, do_ifdef, do_if, do_else,
12416         do_undef, do_line, do_elif, do_error, do_pragma, do_warning,
12417         do_ident, do_assert, do_unassert, do_sccs): Take only one
12418         argument.
12419         (do_sccs): Define always, but alter behavior based on
12420         SCCS_DIRECTIVE.
12421         (_cpp_handle_directive, consider_directive_while_skipping):
12422         Restructure for new directive table layout.
12424         (pass_thru_directive): Take a directive number, not a pointer
12425         to a struct directive.
12426         (parse_include): New function, broken out of do_include.
12427         (do_include, do_import, do_include_next): Use parse_include
12428         and _cpp_execute_include.
12429         (do_elif, do_else): Test for T_ELSE specifically when checking
12430         for #elif/#else after #else.
12431         (parse_ifdef): New function, broken out of do_ifdef.
12432         (validate_else): Expect a name arg without a leading #.
12433         (if_directive_name): Delete.
12434         (cpp_define, cpp_assert, cpp_undef, cpp_unassert): Call
12435         directive handlers with only one argument.
12437         * cpphash.h: Update prototypes.
12438         (enum node_type): Remove entries for directives.
12439         * Makefile.in: Update dependencies.
12441         * cpphash.c (dump_hash_helper): Only dump nodes of type
12442         T_MACRO.  Emit a newline after each definition.
12444 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12446         * gccbug.in: New file.
12447         * configure.in (all_outputs): Add gccbug.
12448         * Makefile.in (install-common): Install gccbug.
12449         (GCCBUG_INSTALL_NAME): New variable.
12450         * configure: Rebuilt.
12452 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
12454         * function.c (put_var_into_stack): Use type_for_mode to calculate
12455         part_type.  Use MEM_SET_IN_STRUCT_P.
12456         * expr.c (store_field): Handle CONCAT.
12457         (store_constructor): Use fields_length.
12458         * tree.c (fields_length): New fn.
12459         * tree.h: Declare it.
12461 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12463         * Makefile.in (LIBCPP_OBJS): Add cpplex.o.
12464         (cpplex.o): New target.
12465         * po/POTFILES.in: Add cpplex.c.
12467         * cpplex.c (_cpp_grow_token_buffer, null_cleanup,
12468         cpp_push_buffer, cpp_pop_buffer, cpp_scan_buffer,
12469         cpp_expand_to_buffer, cpp_buf_line_and_col, cpp_file_buffer,
12470         skip_block_comment, skip_line_comment, skip_comment,
12471         copy_comment, _cpp_skip_hspace, _cpp_skip_rest_of_line,
12472         _cpp_parse_name, skip_string, parse_string,
12473         _cpp_parse_assertion, cpp_get_token, cpp_get_non_space_token,
12474         _cpp_get_directive_token, find_position,
12475         _cpp_read_and_prescan, _cpp_init_input_buffer): Move here.
12476         (maybe_macroexpand, _cpp_lex_token): New functions.
12478         * cpplib.c (SKIP_WHITE_SPACE, eval_if_expr, parse_set_mark,
12479         parse_goto_mark): Delete.
12480         (_cpp_handle_eof): New function.
12481         (_cpp_handle_directive): Rename from handle_directive.
12482         (_cpp_output_line_command): Rename from output_line_command.
12483         (do_if, do_elif): Call _cpp_parse_expr directly.
12484         * cppfiles.c (_cpp_read_include_file): Don't call
12485         init_input_buffer here.
12486         * cpphash.c (quote_string): Move here, rename _cpp_quote_string.
12487         * cppexp.c (_cpp_parse_expr): Diddle parsing_if_directive
12488         here; pop the token_buffer and skip the rest of the line here.
12489         * cppinit.c (cpp_start_read): Call _cpp_init_input_buffer
12490         here.
12492         * cpphash.h (CPP_RESERVE, CPP_IS_MACRO_BUFFER, ACTIVE_MARK_P):
12493         Define here.
12494         (CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK, CPP_SET_MARK,
12495         CPP_GOTO_MARK): New macros.
12496         (_cpp_quote_string, _cpp_parse_name, _cpp_skip_rest_of_line,
12497         _cpp_skip_hspace, _cpp_parse_assertion, _cpp_lex_token,
12498         _cpp_read_and_prescan, _cpp_init_input_buffer,
12499         _cpp_grow_token_buffer, _cpp_get_directive_token,
12500         _cpp_handle_directive, _cpp_handle_eof,
12501         _cpp_output_line_command): Prototype them here.
12502         * cpplib.h (enum cpp_token): Add CPP_MACRO.
12503         (CPP_RESERVE, get_directive_token, cpp_grow_buffer,
12504         quote_string, output_line_command): Remove.
12506 2000-03-13  Bernd Schmidt  <bernds@cygnus.co.uk>
12508         * stmt.c (expand_end_case): RANGE may be signed, and when checking
12509         whether it is too large we must also verify that it isn't negative.
12511 2000-03-13  Jakub Jelinek  <jakub@redhat.com>
12513         * config/sparc/sparc.md: Remove all traces of TARGET_LIVE_G0.
12514         (movsi_zero_liveg0): Remove.
12515         (movsf_insn_novis_liveg0): Remove.
12516         (negsi2): Remove.
12517         (negsi2_not_liveg0): Rename to negsi2.
12518         (one_cmplsi2): Remove.
12519         (one_cmplsi2_not_liveg0): Rename to one_cmplsi2.
12520         (one_cmplsi2_liveg0): Remove.
12521         * config/sparc/sparc.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE,
12522         MASK_LIVE_G0, MASK_BROKEN_SAVERESTORE): Remove.
12523         (CONDITIONAL_REGISTER_USAGE): Remove TARGET_LIVE_G0 if.
12524         (PREDICATE_CODES): Remove zero_operand.
12525         * config/sparc/sparc.c: Remove all traces of TARGET_LIVE_G0 and
12526         TARGET_BROKEN_SAVERESTORE.
12527         (zero_operand): Remove.
12528         * config/sparc/splet.h (SUBTARGET_SWITCHES): Remove -mlive-g0,
12529         -mno-live-g0, -mbroken-saverestore and -mno-broken-saverestore
12530         options.
12531         (SUBTARGET_OVERRIDE_OPTIONS): Remove.
12532         * config/sparc/linux-aout.h (TARGET_LIVE_G0,
12533         TARGET_BROKEN_SAVERESTORE): Remove.
12534         * config/sparc/linux.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12535         Remove.
12536         * config/sparc/linux64.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12537         Remove.
12538         * config/sparc/sol2.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12539         Remove.
12541         * config/sparc/sparc.md (return_df_no_fpu): New pattern.
12543 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12545         * cpplib.c (do_pragma_implementation): Fix off-by-one error
12546         truncating a string.  Don't assume tokens are nul terminated.
12547         Problem noted by Andreas Jaeger <aj@suse.de>
12549 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
12551         * dwarf2out.c (add_name_and_src_coords_attributes): Only add
12552         DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.
12553         (ASM_OUTPUT_DWARF_ADDR_CONST): Don't output trailing newline.
12555 2000-03-13  Richard Earnshaw <rearnsha@arm.com>
12557         * stor-layout.c (new_record_layout_info): Fix typo inside ifdef
12558         STRUCTURE_SIZE_BOUNDARY.
12560 2000-03-13  Mark Mitchell  <mark@codesourcery.com>
12562         * tree.h (record_layout_info_s): New structure.
12563         (record_layout_info): New type.
12564         (new_record_layout_info): New function.
12565         (layout_field): Likewise.
12566         (finish_record_layout): Likewise.
12567         * stor-layout.c (layout_record): Remove.
12568         (new_record_layout_info): New function.
12569         (layout_field): New function, broken out from layout_record.
12570         (finalize_record_size): Likewise.
12571         (compute_record_mode): Likewise.
12572         (finalize_type_size): New function, broken out from layout_type.
12573         (finish_record_layout): Likewise.
12574         (layout_type): Use them.
12576 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
12578         * cpphash.c: Don't include version.h.
12579         (special_symbol) [case T_VERSION]: Look for the string in
12580         hp->value.cpval; don't use version_string.
12581         * cppinit.c (initialize_builtins): Set hp->value.cpval for
12582         __VERSION__ to version_string.
12583         * Makefile.in (cpphash.o): Update deps.
12585 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
12587         Convert cpplib to use libiberty/hashtab.c.
12589         * cpplib.h (struct cpp_reader): Make hashtab and
12590         all_include_files of type 'struct htab *'.  Delete HASHSIZE
12591         and ALL_INCLUDE_HASHSIZE macros.
12593         * cpphash.h: Update prototypes.
12594         (struct hashnode): Remove next, prev, and bucket_hdr members.
12595         Make length a size_t.  Add hash member.
12596         (struct ihash): Remove next member.  Add hash member.  Make
12597         name a flexible array member.
12599         * cppfiles.c: Include hashtab.h.
12600         (include_hash): Delete.
12601         (IHASHSIZE): New macro.
12602         (hash_IHASH, eq_IHASH, _cpp_init_include_hash): New functions.
12603         (cpp_included): Do the hash lookup here.
12604         (_cpp_find_include_file): Rewrite.
12605         (cpp_read_file): Put the "fake" hash entry into the hash
12606         table.  Honor the control_macro, if it turns out we've seen
12607         the file before.  Don't push the buffer here.
12608         (_cpp_read_include_file): Push the buffer here.
12609         (OMODES): New macro.  Use it whenever we call open(2).
12611         * cpphash.c: Include hashtab.h.
12612         (hash_HASHNODE, eq_HASHNODE, del_HASHNODE, dump_hash_helper,
12613         _cpp_init_macro_hash, _cpp_dump_macro_hash, _cpp_make_hashnode,
12614         _cpp_lookup_slot): New functions.
12615         (HASHSIZE): new macro.
12616         (hashf, _cpp_install, _cpp_delete_macro): Delete.
12617         (_cpp_lookup): Use hashtab.h routines.
12619         * cppinit.c: Include hashtab.h.
12620         (cpp_reader_init): Call _cpp_init_macro_hash and
12621         _cpp_init_include_hash.  Don't allocate hashtab directly.
12622         (cpp_cleanup): Just call htab_delete on pfile->hashtab and
12623         pfile->all_include_files.
12624         (initialize_builtins): Use _cpp_make_hashnode and
12625         htab_find_slot to add hash entries.
12626         (cpp_finish): Just call _cpp_dump_macro_hash.
12627         * cpplib.c: Include hashtab.h.
12628         (do_define): Use _cpp_lookup_slot and _cpp_make_hashnode to
12629         create hash entries.
12630         (do_pragma_poison, do_assert): Likewise.
12631         (do_include): Don't push the buffer here.  Don't increment
12632         system_include_depth unless _cpp_read_include_file succeeds.
12633         (do_undef, do_unassert): Use _cpp_lookup_slot and htab_clear_slot
12634         or htab_remove_elt.
12635         (do_pragma_implementation): Use alloca to create copy.
12637         * Makefile.in: Update dependencies.
12639 2000-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12641         * cppinit.c (cl_directive_handler): More K&R fixing.
12643 Sat Mar 11 23:54:26 2000  Jim Wilson  <wilson@cygnus.com>
12645         * config/ia64/ia64.c (ia64_compute_frame_size): Align size to
12646         STACK_BOUNDARY.
12647         * config/ia64/ia64.h (REGISTER_MOVE_COST): Add missing parentheses.
12649 2000-03-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12651         * cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
12652         Change from char[] to macros.
12654 2000-03-12  Neil Booth  <NeilB@earthling.net>
12656         * cppinit.c (cpp_start_read): Update indirect function
12657         call to K&R C.
12659 Sat Mar 11 16:18:12 2000  Jim Wilson  <wilson@cygnus.com>
12661         * config/ia64/ia64.h (ADDITIONAL_REGISTER_NAMES): Fix typo in loc79
12662         entry.
12664         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
12665         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyright messages.
12667 2000-03-11  Neil Booth  <NeilB@earthling.net>
12669         * cppinit.c (struct pending option): Replace undef with a
12670         pointer to a directive handling routine.
12671         (struct cpp_pending): Replace separate assert_ and define_
12672         lists with one directive_ list.
12673         (new_pending_define): Rename new_pending_directive. Extra
12674         argument is the directive's handling routine.
12675         (handle_option): Update to use new_pending_directive.
12677 2000-03-11  Neil Booth  <NeilB@earthling.net>
12679         * cppfiles.c (file_cleanup, _cpp_find_include_file,
12680         remap_filename, _cpp_read_include_file, actual_directory,
12681         hack_vms_include_specification): Replace bcopy(), index() etc
12682         calls.  Add casts to some allocations.  Make some variables
12683         pointers to const [unsigned] char.
12684         * cpphash.c (_cpp_install, macro_cleanup, collect_expansion,
12685         collect_formal_parameters): Similarly.
12686         * cppinit.c (struct pending_option, append_include_chain,
12687         cpp_options_init, cpp_reader_init, initialize_standard_includes,
12688         cpp_start_read, new_pending_define, handle_option): Similarly.
12689         * cpplib.c (cpp_define, copy_comment, do_define, do_include,
12690         do_undef, do_error, do_warning, do_pragma, do_pragma_once,
12691         do_pragma_implementation, detect_if_not_defined,
12692         do_ifdef, skip_if_group, cpp_get_token, parse_string,
12693         do_assert, do_unassert): Similarly.
12694         * cpplib.h (cpp_buffer, cpp_options): Update types.  Update
12695         function prototypes.
12696         * mkdeps.c (deps_add_target, deps_add_dep): cast allocations.
12698 2000-03-10  Richard Henderson  <rth@cygnus.com>
12700         * builtins.c (expand_builtin_strlen): Revert last change.
12701         Use emit_insn_before if we're at the beginning of a sequence.
12703 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
12705         * builtins.c (expand_builtin_strlen): Make sure that we have something
12706         at the beginning of the sequence.
12708         * toplev.c (rest_of_compilation): Also set TREE_NOTHROW for
12709         deferred inlines.
12711         * invoke.texi (C++ Dialect Options): Document -fno-enforce-eh-specs.
12713 2000-03-10  Richard Henderson  <rth@cygnus.com>
12715         * except.c (can_throw): Use INTVAL on a CONST_INT.
12716         (reachable_handlers): Likewise.
12717         * flow.c (count_basic_blocks, find_basic_blocks_1): Likewise.
12719 2000-03-10  Andreas Jaeger  <aj@suse.de>
12721         * config/mips/linux.h: Undefine MD_EXEC_PREFIX and
12722         MD_STARTFILE_PREFIX since those are not needed on linux.
12723         (ASM_FILE_START): New, from mips/gnu.h.
12725 2000-03-09  Richard Henderson  <rth@cygnus.com>
12726             Alex Samuel  <samuel@codesourcery.com> and others
12728         * Makefile.in (ssa.o): New rule.
12729         (OBJS): Add ssa.o.
12730         (STAGESTUFF): Add *.ssa and *.ussa.
12731         (mostlyclean): Delete *.ssa, *.ussa, */*.ssa, */*.ussa.
12732         * rtl.def (PHI): New RTL expression.
12733         * rtl.h (clear_log_links): New declaration.
12734         (convert_to_ssa): Likewise.
12735         (convert_from_ssa): Likewise.
12736         * flow.c (split_edge): If the entry node falls through to the
12737         split edge's source block, split the entry edge.
12738         (clear_log_links): New function.
12739         * toplev.c (ssa_dump): New variable.
12740         (flag_ssa): Likewise.
12741         (f_options): Add "ssa".
12742         (compile_file): Create SSA dump files.
12743         (rest_of_compilation): Go to and from SSA if enabled.
12744         (decide_d_option): Handle -de for SSA dump files.
12745         * ssa.c: New file.
12747 Thu Mar  9 20:01:38 2000  Jim Wilson  <wilson@cygnus.com>
12749         * expr.c (expand_assignment): For a CALL_EXPR, special case PARM_DECL
12750         same as VAR_DECL.
12752 2000-03-09  Benjamin Kosnik  <bkoz@cygnus.com>
12754         * config/alpha/linux.h (WCHAR_TYPE): Make consistent.
12756 Thu Mar  9 18:10:02 2000  Jeffrey A Law  (law@cygnus.com)
12758         * config/pa/pa-hpux10.h (LIB_SPEC): Correct typo in !p case.
12759         (MD_STARTFILE_PREFIX_1): New macro.
12761 2000-03-09  Robert Lipe  <robertl@sco.com>
12763         * config/ia64/ia64.c: Include system.h.
12765 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
12767         * except.c (nothrow_function_p): If -fno-exceptions, just return.
12768         (init_eh_nesting_info): Likewise.
12770         * tree.h (struct tree_common): Rename raises_flag to nothrow_flag.
12771         (TREE_NOTHROW): Rename from TREE_RAISES.
12772         * toplev.c (rest_of_compilation): Set it.
12773         * print-tree.c (print_node): Adjust.
12774         * tree.c (stabilize_reference, build, build1): Don't set TREE_RAISES.
12775         (stabilize_reference_1, get_unwidened, get_narrower): Likewise.
12776         * calls.c (emit_call_1): Add 'nothrow' parm.  Add
12777         REG_EH_REGION note as appropriate.
12778         (libfunc_nothrow): New fn.
12779         (emit_library_call, emit_library_call_value): Use it.
12780         (expand_call): Check TREE_NOTHROW.
12782         * varasm.c (make_decl_rtl): Skip initial '*' when setting
12783         DECL_ASSEMBLER_NAME.
12785 2000-03-09  Andreas Jaeger  <aj@suse.de>
12787         * mips/linux.h (NO_IMPLICIT_EXTERN_C): Define.
12788         (TARGET_MEM_FUNCTIONS): Define.
12790 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
12792         * i386.c (ix86_valid_type_attribute_p): Use compare_tree_int.
12794         * except.c (can_throw): See through a SEQUENCE.
12795         (nothrow_function_p): New fn.
12796         * except.h: Declare it.
12797         * function.c (current_function_nothrow): New var.
12798         (prepare_function_start): Initialize it.
12799         * output.h: Declare it.
12800         * toplev.c (rest_of_compilation): Set it.
12801         * dwarf2out.c (dwarf2out_begin_prologue): Use it.
12803 2000-03-09  Zack Weinberg  <zack@wolery.cumb.org>
12805         * cpphash.c (collect_formal_parameters): strncmp returns 0 for
12806         match.  (cpp_compare_defs): Count the nul separator when
12807         advancing over argument names.
12809 2000-03-09  Bernd Schmidt  <bernds@cygnus.co.uk>
12811         * recog.c (preprocess_constraints): Matching constraints affect
12812         same alternative/different operand, not same operand/different
12813         alternative.
12815         * reload1.c (eliminate_regs_in_insn): Handle additions of eliminable
12816         register and a constant specially.
12818 2000-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12820         * libgcc2.h: New file.
12821         * libgcc2.c: Move macros, typedefs and prototypes to libgcc2.h.
12823 Wed Mar  8 16:19:42 2000  Jim Wilson  <wilson@cygnus.com>
12825         * configure.in (ia64*-*-elf*, ia64*-*-linux*): New.
12826         * configure: Regenerate.
12827         * config/ia64: New.
12829 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
12831         * Makefile.in (LIBCPP_DEPS): New macro.
12832         (cpplib.o, cpphash.o, cpperror.o, cppexp.o, cppfiles.o): Use
12833         it to declare deps.
12834         * cpperror.c: Include cpphash.h.
12835         * cppexp.c: Include cpphash.h.  Remove MULTIBYTE_CHARS
12836         dingleberry.
12837         (lex): Don't use CPP_WARN_UNDEF.
12838         (_cpp_parse_expr): Return an int, the truth value.
12839         * cppfiles.c: Include cpphash.h.
12840         (_cpp_merge_include_chains): Move to cppinit.c and make static.
12841         * cppinit.c (include_defaults_array): Disentangle.
12842         (cpp_cleanup): Don't free the if stack here.
12843         (cpp_finish): Pop off all buffers, not just one.
12844         * cpplib.c (eval_if_expr): Return int.
12845         (do_xifdef): Rename do_ifdef.
12846         (handle_directive): Don't use CPP_PREPROCESSED.
12847         (cpp_get_token): Don't use CPP_C89.
12848         * fix-header.c: Don't use CPP_OPTIONS.
12850         * cpplib.h: Move U_CHAR, enum node_type, struct
12851         file_name_list, struct ihash, is_idchar, is_idstart,
12852         is_numchar, is_numstart, is_hspace, is_space, CPP_BUF_PEEK,
12853         CPP_BUF_GET, CPP_FORWARD, CPP_PUTS, CPP_PUTS_Q, CPP_PUTC,
12854         CPP_PUTC_Q, CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q,
12855         CPP_BUMP_BUFFER_LINE, CPP_BUMP_LINE, CPP_PREV_BUFFER,
12856         CPP_PRINT_DEPS, CPP_TRADITIONAL, CPP_PEDANTIC, and prototypes
12857         of _cpp_simplify_pathname, _cpp_find_include_file,
12858         _cpp_read_include_file, and _cpp_parse_expr to cpphash.h.
12859         Move struct if_stack to cpplib.c.  Move struct cpp_pending to
12860         cppinit.c.
12861         Change all uses of U_CHAR to be unsigned char instead.
12862         Delete CPP_WARN_UNDEF, CPP_C89, and CPP_PREPROCESSED.
12864 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
12866         * dwarf2out.c (dw_fde_struct): Add 'nothrow'.
12867         (dwarf2out_begin_prologue): Set it.
12868         (output_call_frame_info): Don't emit EH unwind info for leaves.
12870         * flow.c (count_basic_blocks, find_basic_blocks_1): A rethrow
12871         can occur outside of an EH region.
12872         * except.c: Correct comments about rethrow behavior.
12873         (rethrow_symbol_map): Do nothing if !flag_new_exceptions.
12875 2000-03-08  Andrew MacLeod  <amacleod@cygnus.com>
12877         * flow.c (make_edges): Always call make_eh_edge for calls.
12879 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
12881         * cpplib.h (parse_underflow_t, CPP_NULL_BUFFER): Delete.
12882         (struct cpp_buffer): Remove fname and underflow fields.
12883         (struct cpp_reader): Remove get_token field.
12884         (struct include_hash): Rename to struct ihash.  Add typedef to
12885         IHASH.
12886         (struct if_stack): Remove fname field.
12887         (IF_STACK_FRAME): Rename to IF_STACK.
12889         * cpperror.c (print_containing_files): Trust that there are no
12890         macro buffers below the top file buffer.
12891         * cppfiles.c: Replace all references to 'struct include_hash'
12892         with 'IHASH'.  Rename initialize_input_buffer to
12893         init_input_buffer.  Don't set or reference cpp_buffer->fname,
12894         use buffer->ihash->name instead.
12895         * cpphash.c (special_symbol): Use cpp_file_buffer.  Use NULL
12896         not CPP_NULL_BUFFER.
12897         * cppinit.c: Use NULL not CPP_NULL_BUFFER, IF_STACK not
12898         IF_STACK_FRAME, IHASH not struct include_hash.
12899         * cpplib.c: Rename eval_if_expression to eval_if_expr.  Remove
12900         null_underflow.  Use IF_STACK not IF_STACK_FRAME, IHASH not
12901         struct include_hash, NULL not CPP_NULL_BUFFER.  Remove all
12902         references to cpp_buffer->fname (delete entirely, or use
12903         ->ihash->name instead) and IF_STACK->fname.
12904         (cpp_push_buffer): Don't set new->underflow.
12905         (do_include): Use cpp_file_buffer.
12907         * cpphash.c (collect_formal_parameters): Remove duplicate
12908         increment of argslen.  Pedwarn in C99 mode if __VA_ARGS__ is
12909         used as a macro argument name.  Don't append "..." to namebuf
12910         for varargs macros.  After we're done scanning, go through
12911         namebuf and make it NUL separated, not comma separated.
12912         (_cpp_compare_defs): Remove register tag from variables.
12913         Expect defn->argnames to be NUL separated.
12914         (_cpp_dump_definition): Expect defn->argnames to be NUL
12915         separated and in forward order.
12916         * cpphash.h: Update documentation of argnames field.
12918 2000-03-08  Richard Henderson  <rth@cygnus.com>
12920         * builtins.c (expand_builtin_strlen): Be prepared for strlensi
12921         to fail.  Don't pre-expand the source operand.
12923         * i386.md (strlensi): Initialize eoschar and align before use.
12925 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
12927         * expr.c (expand_expr, case ARRAY_REF): Still check for missing
12928         CONSTRUCTOR element.
12930 2000-03-08  Gavin Romig-Koch  <gavin@cetus.cygnus.com>
12932         * mips.c (mips_expand_prologue): If the last
12933         named argument is the vararg marker "va_list", treat it as
12934         an unnamed argument.
12936 2000-03-08  Clinton Popetz  <cpopetz@cygnus.com>
12938         * dbxout.c (dbxout_parms): When correcting for promoted
12939         big-endian parameters, use the mode of the DECL_RTL rather
12940         than UNITS_PER_WORD.
12942 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12944         * c-common.h (make_fname_decl): Declare.
12945         * c-common.c (make_fname_decl): Define.
12946         (declare_hidden_char_array): Remove.
12947         (declare_function_name): Use make_fname_decl.
12948         * c-decl.c (c_make_fname_decl): New function.
12949         (init_decl_processing): Set make_fname_decl.
12951 Tue Mar  7 23:50:31 2000  Jeffrey A Law  (law@cygnus.com)
12953         * cccp.c (handle_directive): Initialize backslash_newlines_p.
12955 2000-03-07  Philipp Thomas  <pthomas@suse.de>
12957         * po/POTFILES.in: Remove cppalloc.c from file list.
12959 2000-03-07  Steve Chamberlain  <sac@pobox.com>
12961         * pj.c (pj_expand_prologue): current_function->args_info is
12962         now current_function_args_info.
12964         * pj.h (STORE_FLAG_VALUE, USER_LABEL_PREFIX,
12965         LOCAL_LABEL_PREFIX, ASM_GENERATE_INTERNAL_LABEL,
12966         ASM_OUTPUT_INTERNAL_LABEL, ASM_OUTPUT_SKIP): Define.
12968 2000-03-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
12970         * config/c4x/c4x.h (PUT_SDB_TYPE): Define so that the type info is
12971         output as hexadecimal rather than the default octal.
12973 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
12975         * cpphash.c (special_symbol): Fix thinko in previous commit.
12977 2000-03-07  Neil Booth  <NeilB@earthling.net>
12979         * cppexp.c (struct operation, left_shift, right_shift,
12980         cpp_parse_expr): Change some "char"s to "U_CHAR"s, and some
12981         "int"s to "unsigned int"s.
12982         * cpplib.c (detect_if_not_defined, do_assert, do_unassert):
12983         Similarly.
12984         * cpplib.h: Update for above.
12985         * mkdeps.c (deps_init, deps_calc_target): Cast pointers
12986         returned from allocations.
12988         * cppinit.c (opt_comp, parse_options): New functions.
12989         (handle_option): Use parse_option to parse a single command
12990         line option, that possibly takes an argument.
12991         (cpp_handle_options): Sort the array of command line options on
12992         first invocation (non-ASCII hosts only).
12993         (print_help): Update.
12995 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
12997         * mkdeps.c (munge): Fix off-by-one bug and inconsistencies in
12998         backslash counting loops.  Problem noted by Matt Kraai <kraai@ghs.com>.
13000         * cppfiles.c (_cpp_find_include_file): Make sure ih->name is
13001         initialized.
13002         * cppinit.c (cpp_cleanup): Free imp->nshort also.
13004         * cpperror.c (cpp_print_containing_files,
13005         cpp_print_file_and_line, v_cpp_message): Rename to
13006         print_containing_files, print_file_and_line, and v_message.
13007         * cppexp.c (cpp_parse_expr, cpp_parse_escape, cpp_lex): Rename
13008         to _cpp_parse_expr, parse_escape, and lex.
13009         (parse_charconst): Remove broken multibyte support.
13010         * cppfiles.c (include_hash): Make static.
13011         (cpp_included): New function.
13012         (merge_include_chains, find_include_file, finclude,
13013         simplify_pathname): Rename to _cpp_merge_include_chains,
13014         _cpp_find_include_file, _cpp_read_include_file, and
13015         _cpp_simplify_pathname.
13016         * cpphash.c (cpp_lookup, free_definition, delete_macro,
13017         cpp_install, create_definition, macroexpand, compare_defs,
13018         dump_definition): Rename to _cpp_lookup, _cpp_free_definition,
13019         _cpp_delete_macro, _cpp_install, _cpp_create_definition,
13020         _cpp_macroexpand, _cpp_compare_defs, and _cpp_dump_definition.
13021         * cppinit.c (cpp_handle_option): Rename to handle_option, make
13022         static.
13023         * cpplib.c: Remove extern prototype of cpp_parse_expr.
13025         * cpphash.h: Update prototypes.
13026         * cpplib.h: Likewise.  Prototype _cpp_parse_expr here.
13028 2000-03-07  Andrew Haley  <aph@cygnus.com>
13030         * config/mips/mips.h (PTRDIFF_TYPE): Revert broken change;
13031         PTRDIFF_TYPE should be based solely on Pmode.
13032         (SIZE_TYPE): ditto.
13034 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13036         * rtl.h (rtunion_def): Constify member `rtstr'.
13037         (emit_line_note_after, emit_line_note, emit_line_note_force,
13038         emit_note, decode_asm_operands): Constify.
13040         * cse.c (canon_hash): Likewise.
13042         * dbxout.c (dbxout_block): Likewise.
13044         * diagnostic.c (file_and_line_for_asm, v_error_for_asm,
13045         v_warning_for_asm): Likewise.
13047         * dwarfout.c (function_start_label): Likewise.
13049         * emit-rtl.c (emit_line_note_after, emit_line_note, emit_note,
13050         emit_line_note_force): Likewise.
13052         * final.c (last_filename, asm_insn_count, final_scan_insn,
13053         output_source_line): Likewise.
13055         * function.h (struct emit_status): Likewise.
13057         * gcse.c (hash_expr_1): Likewise.
13059         * genattr.c (gen_attr, main): Likewise.
13061         * genattrtab.c (struct function_unit, current_alternative_string,
13062         write_attr_valueq, n_comma_elts, next_comma_elt, attr_eq,
13063         attr_numeral, check_attr_test, check_attr_value,
13064         convert_set_attr_alternative, convert_set_attr,
13065         compute_alternative_mask, simplify_by_exploding, gen_attr,
13066         gen_unit): Likewise.
13068         * genflags.c (gen_insn): Likewise.
13070         * gengenrtl.c (type_from_format): Likewise.
13072         * genopinit.c (gen_insn): Likewise.
13074         * genoutput.c (n_occurrences, process_template, process_template):
13075         Likewise.
13077         * ggc-page.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
13078         Likewise.
13080         * ggc-simple.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
13081         Likewise.
13083         * ggc.h (ggc_mark_string, ggc_mark, ggc_mark_if_gcable,
13084         ggc_set_mark, ggc_get_size): Likewise.
13086         * objc/objc-act.c (build_module_descriptor, finish_objc): Likewise.
13088         * optabs.c (init_one_libfunc): Likewise.
13090         * output.h (assemble_start_function): Likewise.
13092         * recog.c (decode_asm_operands): Likewise.
13094         * toplev.c (rest_of_compilation): Likewise.
13096         * tree.h (emit_line_note_after, emit_line_note,
13097         emit_line_note_force): Likewise.
13099         * varasm.c (asm_output_bss, asm_output_aligned_bss,
13100         asm_emit_uninitialised, assemble_start_function,
13101         assemble_variable, const_hash, compare_constant_1,
13102         find_pool_constant, mark_constant_pool, assemble_alias): Likewise.
13104         * xcoffout.h (DBX_FINISH_SYMBOL): Likewise.
13106         * alpha/alpha.md (call_vms, call_value_vms): Likewise.
13108         * arm/aof.h (ASM_OUTPUT_ASCII): Likewise.
13110         * arm/aout.h (ASM_OUTPUT_ASCII): Likewise.
13112         * arm/arm-protos.h (output_ascii_pseudo_op, arm_dllexport_name_p,
13113         arm_dllimport_name_p): Likewise.
13115         * arm/arm.c (arm_encode_call_attribute, output_ascii_pseudo_op):
13116         Likewise.
13118         * arm/arm.h (ASM_OUTPUT_MI_THUNK): Likewise.
13120         * arm/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13122         * arm/pe.c (arm_dllexport_name_p, arm_dllimport_name_p,
13123         arm_mark_dllexport, arm_mark_dllimport,
13124         arm_pe_encode_section_info): Likewise.
13126         * arm/telf.h (ASM_OUTPUT_DEF_FROM_DECLS,
13127         ASM_FINISH_DECLARE_OBJECT): Likewise.
13129         * arm/thumb.c (thumb_function_prologue): Likewise.
13131         * arm/thumb.h (ASM_OUTPUT_ASCII): Likewise.
13133         * avr/avr.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13135         * clipper/clix.h (ASM_OUTPUT_ASCII): Likewise.
13137         * fx80/fx80.h (ASM_OUTPUT_ASCII): Likewise.
13139         * i386/cygwin.h (ASM_OUTPUT_SECTION_NAME): Likewise.
13141         * i386/freebsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13143         * i386/i386-interix.h (ASM_OUTPUT_LIMITED_STRING,
13144         ASM_OUTPUT_ASCII, ASM_OUTPUT_SECTION_NAME): Likewise.
13146         * i386/i386-protos.h (asm_output_function_prefix): Likewise.
13148         * i386/i386.c (asm_output_function_prefix): Likewise.
13150         * i386/i386elf.h (ASM_OUTPUT_ASCII): Likewise.
13152         * i386/osfrose.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13154         * i386/ptx4-i.h (ASM_OUTPUT_ASCII): Likewise.
13156         * i386/sco5.h (ASM_FINISH_DECLARE_OBJECT,
13157         ASM_OUTPUT_LIMITED_STRING, ASM_OUTPUT_ASCII,
13158         ASM_OUTPUT_SECTION_NAME): Likewise.
13160         * i386/sysv4.h (ASM_OUTPUT_ASCII): Likewise.
13162         * i860/paragon.h (ASM_OUTPUT_ASCII): Likewise.
13164         * i860/sysv3.h (ASM_OUTPUT_ASCII): Likewise.
13166         * m32r/m32r.c (m32r_encode_section_info): Likewise.
13168         * mcore-elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13170         * mcore/mcore.c (mcore_encode_section_info): Likewise.
13172         * mips/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13174         * mips/elf64.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13176         * mips/iris6.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13178         * mips/mips.h (ASM_OUTPUT_IDENT): Likewise.
13180         * mips/mips.md (movdi, movsi): Likewise.
13182         * mips/netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13184         * netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13186         * openbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13188         * ptx4.h (ASM_FINISH_DECLARE_OBJECT, ASM_OUTPUT_LIMITED_STRING,
13189         ASM_OUTPUT_ASCII): Likewise.
13191         * rs6000/rs6000.c (rs6000_allocate_stack_space, output_epilog,
13192         output_mi_thunk, output_toc): Likewise.
13194         * rs6000/rs6000.md (movsi): Likewise.
13196         * rs6000/sysv4.h (ASM_OUTPUT_INT, ASM_OUTPUT_SECTION_NAME): Likewise.
13198         * tahoe/harris.h (ASM_OUTPUT_ASCII): Likewise.
13200         * v850/v850.c (print_operand, print_operand_address,
13201         v850_encode_data_area): Likewise.
13203 2000-03-07  Clinton Popetz  <cpopetz@cygnus.com>
13205         * config/mips/mips.md (zero_extendsidi2): Always force operand
13206         one to memory for mips16.
13208 Mon Mar  6 15:22:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13210         * tree.h (INT_CST_LT, INT_CST_LT_UNSIGNED): Remove unneeded casts.
13211         (struct tree_int_cst): int_cst_low is now unsigned HOST_WIDE_INT.
13212         (attribute_hash_list, type_hash_canon): hashcode is now unsigned.
13213         (type_hash_lookup, type_hash_add, type_hash_list): Likewise.
13214         (min_precision): Result is unsigned.
13215         (add_double, neg_double, mul_double): Low word is unsigned.
13216         (lshift_double, rshift_double, lrotate_double): Likewise.
13217         (rrotate_double, div_and_round_double): Likewise.
13218         (tree_floor_log2, compare_tree_int): New functions.
13219         (preserve_rtl_expr_temps): New declaration.
13220         * c-common.c (declare_hidden_char_array): Use compare_tree_int.
13221         (decl_attributes): Use tree_log2 to find alignment.
13222         Check for TREE_INT_CST_HIGH for format args.
13223         (min_precision): Now unsigned.
13224         Use tree_floor_log2.
13225         (truthvalue_conversion): Delete long-disabled code.
13226         * c-decl.c (finish_struct): Clean up tests on field width.
13227         (finish_function): Use compare_tree_int.
13228         * c-pragma.c (handle_pragma_token): Use tree_log2 for alignment.
13229         * c-typeck.c (comptypes): Use tree_int_cst_equal.
13230         (default_conversion, digest_init): Use compare_tree_int.
13231         (build_binary_op): Use integer_all_onesp and compare_tree_int.
13232         Fix type errors in forming masks.
13233         * calls.c (initialize_argument_information): Use compare_tree_int.
13234         * dbxout.c (dbxout_type): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
13235         * except.c (expand_eh_region_start_tree): Use compare_tree_int.
13236         * expr.c (is_zeros_p, case INTEGER_CST): Use integer_zerop.
13237         (store_field): Use compare_tree_int.
13238         (expand_expr, case CONSTRUCTOR): Use TYPE_SIZE_UNIT.
13239         (expand_expr, case ARRAY_REF): Use compare_tree_int.
13240         (do_jump, case BIT_AND_EXPR): Use tree_floor_log2.
13241         (do_store_flag): Use compare_tree_int.
13242         * fold-const.c (encode, decode): Low part is always unsigned.
13243         (force_fit_type, add_double, neg_double, mul_double): Likewise.
13244         (lshift_double, rshift_double, lrotate_double): Likewise.
13245         (rrotate_double, div_and_round_double, int_const_binop): Likewise.
13246         (fold_convert): Use compare_tree_int.
13247         (operand_equal_p, case INTEGER_CST): Use tree_int_cst_equal.
13248         (invert_truthvalue, case INTEGER_CST): Likewise.
13249         (fold): Use compare_tree_int; add casts for unsigned TREE_INT_CST_LOW.
13250         * mkdeps.c (deps_dummy_targets): Make I unsigned.
13251         * rtl.h (add_double, neg_double, mul_double): Low words are unsigned.
13252         (lshift_double, rshift_double, lrotate_double, rrotate_double):
13253         Likewise.
13254         * stmt.c (expand_decl): Use compare_tree_int and mode_for_size_tree.
13255         (expand_end_case): Use compare_tree_int.
13256         (estimate_case_costs): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
13257         * stor-layout.c (mode_for_size_tree): Use compare_tree_int.
13258         (layout_decl): Likewise.
13259         (layout_record, layout_union): Make sizes unsigned.
13260         (layout_type, case VOID_TYPE): TYPE_SIZE must be bitsizetype.
13261         (layout_type, case QUAL_UNION_TYPE): Use compare_tree_int.
13262         * tree.c (struct type_hash): hashcode is unsigned.
13263         (build_type_attribute_variant, type_hash_list): Likewise.
13264         (type_hash_lookup, type_hash_add, type_hash_canon): Likewise.
13265         (attribute_hash_list, build_array_type, build_method_type): Likewise.
13266         (build_complex_type): Likewise.
13267         (real_value_from_int_cst): Remove unneeded casts.
13268         (integer_all_onesp): Add casts.
13269         (tree_floor_log2, compare_tree_int): New functions.
13270         (build_index_type): Use tree_int_cst_sgn.
13271         * varasm.c (assemble_variable): Use compare_tree_int.
13273 2000-03-06  Jason Merrill  <jason@casey.cygnus.com>
13275         * cpphash.c (collect_expansion): Also catch ## at start of macro.
13277         * varasm.c (make_decl_rtl): Don't add a number to members of
13278         local classes.
13279         (make_function_rtl): Likewise.
13281 2000-03-06  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
13283         * gcse.c (compute_can_copy): Adjust if/else blocks from rth's
13284         patch from 2000-01-28.
13286 2000-03-06  Clinton Popetz  <cpopetz@cygnus.com>
13288         * config/sh/sh.c: (barrier_align): Handle a delay slot that is
13289         filled with an insn from the jump target.
13291 2000-03-07  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13293         * config/c4x/c4x-protos.h (c4x_global_name): Constify char *.
13294         (c4x_external_ref): Likewise.
13295         * config/c4x/c4x.c (struct name_list): Likewise.
13297 1999-12-16  Ben Collins  <bcollins@debian.org>
13299         * Makefile.in: Pass a new MULTILIB_EXCLUSIONS option as the sixth
13300         argument to genmultilib.
13301         * genmultilib: accept new MULTILIB_EXCLUSIONS option and output
13302         the contents into the multilib.h header.
13303         * gcc.c: Declare multilib_exclusions for the specs file.
13304         (set_multilib_dir): Use it.
13305         (print_multilib_info): Likewise.
13306         * t-linux64: Declare arguments for new MULTILIB_EXCLUSIONS option
13307         to pass to genmultilib.
13309 2000-03-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13311         * builtins.c (built_in_class_names, built_in_names): Constify a
13312         char*.
13314         * gmon-sol2.c (monstartup, moncontrol): Cast ptrs to long, not
13315         int.
13316         (_mcleanup): Ensure value matches format specifier in sprintf.
13318         * cpphash.c (special_symbol): Don't needlessly cast away
13319         const-ness.
13321         * cppinit.c (base_name): Delete unused prototype.
13323         * mkdeps.c (deps_init): Make definition K&R safe.
13325         * tree.h (built_in_class_names, built_in_names): Constify a
13326         char*.
13328 2000-03-06  Jakub Jelinek  <jakub@redhat.com>
13330         * config/sparc/sparc.c (eligible_for_epilogue_delay): Accept
13331         floating point instructions for epilogue delay.
13333         * config/sparc/sparc.h (ASM_ARCH64_SPEC): Pass -no-undeclared-regs
13334         to gas if it supports .register pseudo.
13336         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Define to
13337         LONG_DOUBLE_TYPE_SIZE if not defined.
13338         Use MAX_LONG_DOUBLE_TYPE_SIZE instead of
13339         LONG_DOUBLE_TYPE_SIZE in preprocessor if clauses.
13340         * real.c: Likewise.
13341         * gengenrtl.c: Likewise.
13342         * print-rtl.c: Likewise.
13343         * rtl.c: Likewise.
13344         * config/sparc/sol2-sld-64.h (TARGET_DEFAULT): Set
13345         MASK_LONG_DOUBLE_128.
13346         * config/sparc/sol2.h (TARGET_DEFAULT): Likewise.
13347         * config/sparc/sp64-elf.h (TARGET_DEFAULT): Likewise.
13348         * config/sparc/linux64 (TARGET_DEFAULT): Likewise.
13349         (SUBTARGET_SWITCHES): Define.
13350         (CPP_ARCH32_SPEC): Define __LONG_DOUBLE_128__ if compiling
13351         with -mlong-double-128.
13352         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
13353         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
13354         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
13355         (CC1_SPEC): Include -mlong-double-{64,128} as needed.
13356         * config/sparc/linux.h (SUBTARGET_SWITCHES): Define.
13357         (CPP_SUBTARGET_SPEC): Define __LONG_DOUBLE_128__ if compiling
13358         with -mlong-double-128.
13359         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
13360         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
13361         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
13362         * config/sparc/sparc.h (MASK_LONG_DOUBLE_128,
13363         TARGET_LONG_DOUBLE_128): Define.
13364         * config/sparc/linux-aout.h (LONG_DOUBLE_TYPE_SIZE): Remove.
13365         * config/sparc/sparc.c (sparc_override_options): Disallow 64bit
13366         long double on TARGET_ARCH64.
13368 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
13370         * function.c (free_temps_for_rtl_expr): Don't free slots
13371         that have been pushed into a higher level.
13373         Revert this patch:
13374         2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13376 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13378         * basic-block.h (ALLOCA_REG_SET): Remove.
13379         (INITIALIZE_REG_SET): New macro.
13380         * flow.c (update_life_info): Use it.
13381         (calculate_global_regs_live): Likewise.
13382         (propagate_block): Likewise.
13383         * global.c (build_insn_chain): Likewise.
13384         * haifa-sched.c (schedule_region): Likewise.
13386 2000-03-05  Stephane Carrez  <stcarrez@worldnet.fr>
13388         * dwarf2out.c (UNALIGNED_WORD_ASM_OP): Support 2 bytes pointer.
13389         (ASM_OUTPUT_DWARF_ADDR_CONST): Use UNALIGNED_WORD_ASM_OP.
13390         (DWARF_ARANGES_PAD_SIZE): New define.
13391         (output_aranges): Use it to pad the address range header.
13392         (DWARF_ROUND): Fix for non power of 2 rounding.
13394 2000-03-05  Jason Merrill  <jason@casey.cygnus.com>
13396         * mkdeps.c (deps_calc_target): Remove incorrect 'const'.
13398 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13400         * tree.def (RTL_EXPR): Update documentation.
13401         * tree.h (RTL_EXPR_HAS_NO_SCOPE): New macro.
13402         * expr.c (expand_expr): Handle RTL_EXPR_HAS_NO_SCOPE.
13403         * function.c (preserve_rtl_expr_temp): New function.
13404         (preserve_rtl_expr_temps): Likewise.
13405         (preserve_rtl_expr_result): Use it.
13407         Revert this patch:
13408         2000-03-04  Mark Mitchell  <mark@codesourcery.com>
13410 2000-03-04  Thomas Schuster <Thomas.Schuster@gmx.net>
13412         * regmove.c (copy_src_to_dest)  Do not create src->dest move
13413         for unchanging destination.
13415 2000-03-04  Mark Mitchell  <mark@codesourcery.com>
13417         * function.h (struct sequence_stack): Remove rtl_expr.
13418         (struct emit_staus): Likewise.
13419         (seq_rtl_expr): Remove.
13420         * tree.h (free_temps_for_rtl_expr): Don't declare.
13421         (start_sequence_for_rtl_expr): Likewise.
13422         * rtl.h (preserve_rtl_expr_result): Likewise.
13423         * emit-rtl.c (start_sequence): Don't set sequence_rtl_expr.
13424         (start_sequence_for_rtl_expr): Remove.
13425         (push_topmost_sequence): Don't save sequence_rtl_expr.
13426         (pop_topmost_sequence): Remove comment about not restoring it.
13427         (end_sequence): Don't set seq_rtl_expr.
13428         (init_emit): Don't initialize it.
13429         (mark_sequence_stack): Don't mark it.
13430         (mark_emit_status): Likewise.
13431         * except.c (protect_with_terminate): Use
13432         start_sequence_for_rtl_expr, not start_sequence.
13433         * expr.c (expand_expr, case RTL_EXPR): Don't call
13434         preserve_rtl_expr_result or free_temps_for_rtl_expr.
13435         * function.c (assign_stack_temp_for_type): Don't set rtl_expr.
13436         (preserve_rtl_expr_result): Remove.
13437         (free_temps_for_rtl_expr): Likewise.
13438         (pop_temp_slots): Likewise.
13439         (mark_temp_slot): Don't mark the rtl_expr.
13440         * stmt.c (expand_start_stmt_expr): Use start_sequence, not
13441         start_sequence_for_rtl_expr.
13443 2000-03-04  Zack Weinberg  <zack@wolery.cumb.org>
13445         * mkdeps.c, mkdeps.h: New files.
13446         * po/POTFILES.in: Add them.
13447         * Makefile.in (LIBCPP_OBJS): Add mkdeps.o.
13448         (cpplib.o, cppinit.o): Depend on mkdeps.h.
13449         (mkdeps.o): New target.
13451         * cppfiles.c: Delete deps_output.
13452         * cppinit.c: Include mkdeps.h.  Delete known_suffixes,
13453         OBJECT_SUFFIX, and base_name.
13454         (cpp_cleanup): Use deps_free.  Free ihash->name when clearing
13455         the include hash.
13456         (initialize_dependency_output): Use deps_init,
13457         deps_add_target, deps_calc_target, and deps_add_dep.  Remove
13458         all the unnecessary string bashing.
13459         (cpp_finish): Use deps_write.  Remove an unnecessary nesting
13460         level.
13461         * cpplib.c (do_include): Use deps_add_dep.
13462         * cpplib.h (struct cpp_reader): Replace deps_buffer,
13463         deps_allocated_size, deps_size, deps_column members with
13464         single pointer to a struct deps.  Delete prototype of
13465         deps_output.
13467         * cppinit.c: Fix thinko in previous patch.
13469 Sat Mar  4 11:32:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13471         * machmode.h (mode_for_size, smallest_mode_for_size): SIZE now signed.
13472         * stor-layout.c (mode_for_size, smallest_mode_for_size): Likewise.
13473         (mode_for_size_tree): New function.
13474         (layout_decl, layout_type): Call it and clean up BLKmode checks.
13475         * tree.h (mode_for_size_tree): New declaration.
13477         * toplev.c (debug_ignore_block): Mark arg BLOCK as possibly unused.
13479 2000-03-04  Jason Merrill  <jason@casey.cygnus.com>
13481         * stmt.c (is_body_block): Move...
13482         * dwarfout.c, dwarf2out.c: ...from here.
13483         * tree.h: Declare it.
13484         * emit-rtl.c (remove_unncessary_notes): Don't remove the body block.
13485         * final.c (final_start_function): Do call remove_unnecessary_notes
13486         when scheduling.
13488 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
13490         * config/vax/xm-vms.h: Define OBJECT_SUFFIX and EXECUTABLE_SUFFIX.
13492         * cpplib.h (_dollar_ok): New macro.
13493         (is_idchar, is_idstart): Use it.
13494         (IStable): Rename to _cpp_IStable.  Declare it const if
13495         gcc >=2.7 or C99.  Delete all references to FAKE_CONST.
13496         (is_idchar, is_idstart, is_numchar, is_numstart, is_hspace,
13497         is_space): Update for renamed IStable.
13499         * cppinit.c: Delete all references to FAKE_CONST and CAT
13500         macros. Define init_IStable as empty macro if gcc >=2.7 or
13501         C99. Change TABLE() to ISTABLE and hardcode name of table.
13502         (cpp_start_read): Don't change the IStable based on
13503         dollars_in_ident.
13505         * cpphash.c (unsafe_chars): Add pfile argument.  All callers
13506         changed.  Handle '$' for char1 correctly.
13507         * cpplib.c (cpp_get_token): Use is_numchar when parsing numbers.
13509         * cppexp.c (tokentab2): Make const.
13510         (cpp_lex): Make toktab const.
13511         * cppinit.c (include_defaults_array): Make const.
13512         (initialize_standard_includes): Make default_include const.
13514 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
13516         * dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
13517         (dwarf2out_decl): Functions can now have DECL_IGNORED_P.
13518         (gen_decl_die): Likewise.
13519         * dwarfout.c (dwarfout_file_scope_decl): Likewise.
13520         (output_decl): Likewise.
13522         * varasm.c (make_function_rtl): If we change the name used in the
13523         rtl, update DECL_ASSEMBLER_NAME accordingly.
13524         (make_decl_rtl): Likewise.
13526         * toplev.c (rest_of_compilation): Tweak formatting.
13528         * toplev.c (rest_of_compilation): find_loop_tree_blocks before
13529         remove_unnecessary_notes.
13530         (debug_ignore_block): New fn.
13531         * toplev.h: Declare it.
13532         * emit-rtl.c (remove_unncessary_notes): Call it.
13533         * dwarf2out.c (dwarf2out_ignore_block): New fn.
13534         * dwarf2out.h: Declare it.
13535         * final.c (final_start_function): Don't call remove_unnecessary_notes
13536         if we did insn scheduling.
13538 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
13540         * cppinit.c (cpp_handle_option): Set opts->pedantic directly.
13541         * cpplib.h: Delete SET_CPP_PEDANTIC.
13543 Fri Mar  3 14:56:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13545         * expr.c (expand_expr, case COMPONENT_REF): Use bitfield case if
13546         result is a RECORD_TYPE.
13548 2000-03-03  Jonathan Larmour  <jlarmour@cygnus.co.uk>
13550         * mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
13552 2000-03-03  Richard Henderson  <rth@cygnus.com>
13554         * alpha.c (alpha_emit_set_const_1): Re-order cases to prefer
13555         addition over compliments over shifts.
13557 Fri Mar  3 12:49:28 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13559         * reload1.c (reload_combine_note_use): Handle return register USEs.
13560         REG case: Handle multi-hard-register hard regs.
13562 Fri Mar  3 07:38:34 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13564         * md.texi: Document use of '*' in insn pattern name.
13566 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
13568         * calls.c (special_function_p): operator new may not be malloc-like.
13570         * gcse.c (dump_hash_table): Really fix error in last change.
13572 2000-03-02  Denis Chertykov  <denisc@overta.ru>
13574         * avr.c (print_operand): Use print_operand_address instead of
13575         output_addr_const.
13576         * avr/libgcc.S: Cleanup code.
13578 2000-03-02  Richard Henderson  <rth@cygnus.com>
13580         * alpha.c (alpha_emit_set_const_1): Also try c + small constant.
13582 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
13584         * tree.h (TYPE_ALIGN_UNIT): New macro.
13586 2000-03-02  Clinton Popetz  <cpopetz@cygnus.com>
13588         * i386.c: (constant_call_address_operand): Reject CONST_INT.
13590 2000-03-02  Jason Merrill  <jason@casey.cygnus.com>
13592         * cpplib.h (CPP_PEDANTIC): Only true if system_header_p is not set
13593         for the buffer.
13594         (SET_CPP_PEDANTIC): New macro.
13595         * cpplib.c (do_include): Don't bother checking system_header_p.
13596         (do_warning, do_ident, do_assert, do_unassert): Likewise.
13597         * cppinit.c (cpp_handle_option): Use SET_CPP_PEDANTIC.
13599         * function.h (struct expr_status): Add x_arg_space_so_far.
13600         (arg_space_so_far): New macro.
13601         * expr.c (init_expr): Initialize it.
13602         * calls.c (emit_call_1): Reset it.
13603         (compute_argument_block_size, expand_call): Use it.
13604         (expand_call, store_one_arg): Increment it.
13606 Thu Mar  2 17:27:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13608         * varasm.c (output_constant): Strip off a CONVERT_EXPR to
13609         a UNION_TYPE.
13611 2000-03-02  Zack Weinberg  <zack@wolery.cumb.org>
13613         * cppfiles.c (cpp_read_file): New function.
13615         * cpphash.c (collect_expansion): Make sure to reset last_token
13616         to NORM when we hit a string.  Handle trailing whitespace
13617         properly when the expansion is empty.
13618         (create_definition): Disable line commands while parsing the
13619         directive line.
13620         (dump_definition): If pfile->lineno == 0, output a line
13621         command ahead of the dump, and add a trailing newline.
13623         * cppinit.c (append_include_chain): Add fifth argument, which
13624         indicates whether or not system headers are C++ aware.
13625         (initialize_standard_includes): New function,
13626         broken out of read_and_prescan.  Pass 'cxx_aware' value from
13627         the include_defaults_array on to append_include_chain.
13628         (dump_special_to_buffer): Const-ify char array.
13629         (builtin_array): Don't dump __BASE_FILE__.
13630         (cpp_start_read): Use cpp_read_file.  Reorder code for
13631         clarity.  Don't output line commands here for -D/-A/-U
13632         switches.  Don't call deps_output for files included with
13633         -include or -imacros.
13635         * cpplib.c (do_define): Don't pay any attention to the second
13636         argument.
13637         (cpp_expand_to_buffer): Disable line commands while scanning.
13638         (output_line_command): Work in the file buffer.
13639         * cpplib.h: Remove no_record_file flag from struct cpp_reader.
13640         Fix formatting of comments.  Prototype cpp_read_file.
13642 Thu Mar  2 13:29:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13644         * c-common.c (c_common_nodes_and_builtins): Make sizetype_endlink
13645         reference the language-equivalent of sizetype.
13646         * c-typeck.c (comptypes): Treat sizetype like its language equivalent.
13647         * fold-const.c (size_binop, size_diffop): Put back checks.
13648         * gcse.c (dump_hash_table): Fix minor error in last change.
13649         * stor-layout.c (set_sizetype): Set TYPE_DOMAIN of sizetype.
13650         Clear TYPE_{NEXT,MAIN}_VARIANT and TYPE_{POINTER,REFERENCE}_to of
13651         all sizetypes.
13653 Thu Mar  2 12:48:45 MET 2000  Jan Hubicka  <jh@suse.cz>
13655         * calls.c (expand_call)  Do not attempt to combine stack adjustments
13656         with inhibit_defer_pop set.
13658 2000-03-01  Mark Mitchell  <mark@codesourcery.com>
13660         * stor-layout.c (layout_decl): Allow front-ends to explicitly set
13661         the DECL_SIZE for a FIELD_DECL.
13663 2000-03-01  Bruce Korb  <bkorb@gnu.org>
13665         * fixinc/inclhack.tpl: remove unused symlinks
13666         * fixinc/README: GCC Maintainer info
13667         * fixinc/inclhack.sh: regen
13668         * fixinc/fixincl.sh: regen
13670 2000-03-01  Zack Weinberg  <zack@wolery.cumb.org>
13672         * cpphash.c (collect_expansion): Trim trailing white space
13673         from macro definitions, but don't go past the last insertion
13674         point.
13676 Wed Mar  1 12:14:31 MET 2000  Jan Hubicka  <jh@suse.cz>
13678         * i386.md (mulqi3): New pattern.
13680 2000-02-29  Zack Weinberg  <zack@wolery.cumb.org>
13682         * cpplib.h (CPP_ASSERTION, CPP_STRINGIZE, CPP_TOKPASTE): New
13683         token types.
13684         (struct cpp_reader): Add parsing_if_directive and
13685         parsing_define_directive flags.
13686         (struct cpp_options): Remove output_conditionals flag.
13687         (check_macro_name): Delete prototype.
13689         * cpphash.h (struct macrodef): Delete.
13690         (struct reflist): Separate from struct definition.
13691         (struct definition): Remove unused fields.  Add column number.
13692         (create_definition): Returns a DEFINITION *.  Takes a
13693         cpp_reader * and an int.
13695         * cpphash.c (SKIP_WHITE_SPACE): Delete.
13696         (PEEKC): Copy defn from cpplib.c.
13697         (rest_extension, REST_EXTENSION_LENGTH): Delete.
13698         (struct arg): New.
13699         (struct arglist): Simplify.
13700         (collect_expansion): Rewrite.  Get tokens by calling
13701         cpp_get_token.  Add more error checking.
13702         (collect_formal_parameters): New function, broken out of
13703         create_definition and reworked to use get_directive_token.
13704         (create_definition): All real work is now in collect_expansion
13705         and collect_formal_parameters.  do_define handles finding the
13706         macro name.  Return a DEFINITION, not a MACRODEF.
13707         (macroexpand): Replace bcopy with memcpy throughout.  Replace
13708         character-at-a-time copy loop with memcpy and pointer increments.
13709         (compare-defs): d1->argnames / d2->argnames might be null.
13711         * cpplib.c (copy_rest_of_line): Delete function.
13712         (skip_rest_of_line): Do all the work ourselves.
13713         (skip_string): New function.
13714         (parse_string): Use skip_string.
13715         (get_macro_name): New function.
13716         (check_macro_name): Delete.
13717         (copy_comment): Use CPP_RESERVE and CPP_PUTC_Q.
13718         (cpp_skip_hspace): Use CPP_BUMP_LINE.
13719         (handle_directive): ICE if we're called on a macro buffer.
13720         (do_define): Determine macro name and type (funlike/objlike)
13721         here.  Expunge all uses of MACRODEF.
13722         (cpp_push_buffer): Set line_base to NULL.
13723         (do_undef, read_line_number): Don't worry about getting a POP token.
13724         (eval_if_expression): Set/reset parsing_if_directive around
13725         cpp_parse_expr. Don't clear only_seen_white.
13726         (skip_if_group): Remove output_conditionals logic.  Use
13727         skip_rest_of_line.
13728         (cpp_get_token): Return ASSERTION, STRINGIZE, and TOKPASTE
13729         tokens under appropriate conditions.
13730         (cpp_unassert): Call do_unassert not do_assert.  Oops.
13732         * cppexp.c (parse_defined): New function, break out of
13733         cpp_lex.
13734         (cpp_lex): We now get CPP_ASSERTION tokens and can check them
13735         ourselves, with cpp_defined.
13736         * cppinit.c (cpp_handle_option, print_help): Delete -ifoutput.
13738         * gcc.dg/20000209-2.c: Turn off -pedantic-errors.
13739         * gcc.dg/strpaste-2.c: New.
13741 2000-02-29  Mark Mitchell  <mark@codesourcery.com>
13743         * fold-const.c (size_binop): Don't asert inputs are the same and
13744         have TYPE_IS_SIZETYPE set.
13745         (size_diffop): Likewise.
13747 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
13749         * dwarfout.c (output_block): Output abstract blocks even if they
13750         don't have TREE_ASM_WRITTEN set.
13752         * calls.c (emit_library_call): Check for null REG.
13754 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
13756         * c-decl.c (current_function_decl): Move to toplev.c.
13757         (init_decl_processing): Don't add current_function_decl as a ggc
13758         root here.
13759         * dbxout.c (dbxout_symbol): Change return type to int.
13760         (dbxout_symbol_location, dbxout_syms): Likewise.
13761         (dbxout_block): Don't emit LBRAC/RBRAC pairs for blocks without
13762         any locals. Use current_function_func_begin_label if set.
13763         * dbxout.h (dbxout_symbol, dbxout_syms): Change return type.
13764         * dwarf2out.c (dwarf2out_begin_prologue): Set
13765         current_function_func_begin_label.
13766         * final.c (final_start_function): Reset it.
13767         * toplev.c (current_function_decl): Define it here.
13768         (current_function_func_begin_label): New variable.
13769         (main): Add both as ggc roots.
13770         * tree.h (current_function_func_begin_label): Declare.
13772 Tue Feb 29 14:07:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13774         * gcse.c: Cleanups throughout: mostly white-space, but also
13775         some minor rearrangement of code.
13777 Tue Feb 29 10:45:59 2000  Jeffrey A Law  (law@cygnus.com)
13779         * calls.c (emit_library_call): Do not abort if FUNCTION_ARG
13780         returns a PARALLEL.  Use emit_group_load and use_group_regs
13781         as needed.
13782         (emit_library_call_value): Similarly.
13784         * pa/t-pa: Use quadlib.c instead of quadlib.asm.
13785         * pa/quadlib.asm: Remove.
13786         * pa/quadlib.c: New file.
13788         * configure.in (hpux10, hpux11, PA32 mode): Use i128 float format.
13789         * configure: Rebuilt.
13791 2000-02-29  Philip Blundell  <pb@futuretv.com>
13793         * config/arm/conix-elf.h: New file.
13794         * configure.in (arm*-*-conix*): New configuration.
13795         * configure: Regenerate.
13797 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
13799         * dwarf2out.c (gen_block_die): Output abstract blocks even if they
13800         don't have TREE_ASM_WRITTEN set.
13802 Mon Feb 28 21:07:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13804         * Eliminate DECL_FIELD_SIZE.
13805         * builtins.c (built_in_class_names, built_in_names): New variables.
13806         * c-decl.c (finish_struct): Set specified size in DECL_SIZE.
13807         * expr.c (expand_expr, case COMPONENT_REF): Get field size from
13808         DECL_SIZE, not DECL_FIELD_SIZE.
13809         * print-tree.c (print_node): Remove code that prints extra blank
13810         lines in some cases.
13811         Properly handle inline and builtin function cases.
13812         * stor-layout.c (layout_decl): Get specified size from DEC_SIZE.
13813         * tree.h (built_in_class_named, built_in_names): New declarations.
13814         (union tree_decl): Rename internal unions to u1 and u2 and change
13815         some of their components.
13816         Add new field built_in_class.
13817         (DECL_ALIGN, DECL_INCOMING_RTL, DECL_SAVED_INSNS, DECL_FRAME_SIZE):
13818         Reflect above changes.
13819         (DECL_FUNCTION_CODE, DECL_BUILT_IN_CLASS): Likewise.
13820         (DECL_SET_FUNCTION_CODE, DECL_FIELD_SIZE): Deleted.
13821         * objc/objc-act.c (objc_copy_list): Use DECL_SIZE, not DECL_FIELD_SIZE.
13822         (encode_field_decl): Likewise; also remove obsolete test for bitfield.
13824 2000-02-28  Dmitri Makarov  <dim@windriver.com>
13826         * extend.texi: Document ARM's support for long/short calls.
13828         * invoke.texi: Document ARM's -mlong-calls command line switch.
13830         * config/arm/arm-protos.h (arm_is_longcall_p): Add prototype.
13831         (arm_encode_call_attribute): Add prototype.
13832         (arm_set_default_type_attribute): Add prototype.
13833         (arm_strip_name_encoding): Add prototype.
13835         * config/arm/arm.c (arm_init_cumulative_args): replace
13836         initialisation og 'long_calls' field with initialisation of
13837         'call_cookie' field.
13838         (enum arm_pragma_enum): New enum.
13839         (arm_pragma_long_calls): New static variable.
13840         (arm_process_pragma): Also process "#pragma long_calls_off".
13841         (arm_valid_type_attribute_p): Accept short_call attribute.
13842         (arm_comp_type_attributes): Check long/short call attributes.
13843         (arm_encode_call_attribute):  New function:  Encode long_call
13844         or short_call attribute in function name.
13845         (arm_set_default_type_attributes): New function: Assign
13846         default attributes to newly defined type.
13847         (current_file_function_operand): New function: Return true if
13848         the symbol is a function which has already been compiled.
13849         (arm_is_longcall_p): New function: Return true if the
13850         indicated function should be called via a long call.
13851         (arm_get_strip_length): New function.  Returns number of
13852         prefix characters to be stripped from a function's name.
13853         (arm_strip_name_encoding): New function.  Strip prefix characters
13854         from a function's name.
13856         * config/arm/arm.h (CUMULATIVE_ARGS): Replace 'long_call' field
13857         with 'call_cookie'.
13858         (SHORT_CALL_FAG_CHAR): Define.
13859         (LONG_CALL_FAG_CHAR): Define.
13860         (ENCODED_SHORT_CALL_ATTR_P): Define.
13861         (ENCODED_LONG_CALL_ATTR_P): Define.
13862         (ARM_NAME_ENCODING_LENGTHS): Define.
13863         (STRIP_NAME_ENCODING): Define.
13864         (ASM_OUTPUT_LABELREF): Define, and use to strip name encoding.
13865         (ARM_ENCODE_CALL_TYPE): Define.
13866         (ENCODE_SECTION): Invoke ARM_ENCODE_CALL_TYPE.
13867         (ARM_DECLARE_FUNCTION_SIZE): Define.
13868         (SET_DEFAULT_TYPE_ATTRIBUTES): Define.
13870         * config/arm/arm.md (call): Call arm_is_longcall_p to decide
13871         if a long call is needed.
13872         (call_value): Ditto.
13873         (call_symbol): Ditto.
13875         * config/arm/elf.h (ASM_DECLARE_FUNCTION_SIZE): Add invocation of
13876         ARM_DECLARE_FUNCTION_SIZE.
13878         * config/arm/pe.h (ARM_PE_FLAG_CHAR): Define.
13879         (SUBTARGET_NAME_ENCODING_LENGTHS): Define.
13880         (ARM_STRIP_NAME_ENCODING): Undefine.
13881         (STRIP_NAME_ENCODING): Undefine.
13882         (ASM_OUTPUT_LABELREF): Use arm_strip_name_encoding.
13883         (ASM_DECLARE_FUNCTION_NAME): Ditto.
13884         (ASM_OUTPUT_COMMON): Ditto.
13885         (ASM_DECLARE_OBJECT_NAME): Ditto.
13887         * config/arm/pe.c (arm_dllexport_name_p): Check for
13888         ARM_PE_FLAG_CHAR.
13889         (arm_dllimport_name_p): Ditto.
13890         (arm_mark_dllexport): Use ARM_PE_FLAG_CHAR.
13891         (arm_mark_dllimport): Ditto.
13893 Mon Feb 28 22:11:12 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13895         * sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Define.
13897 2000-02-28  Mark Mitchell  <mark@codesourcery.com>
13899         * xcoffout.c (xcoffout_begin_function): Fix typo in previous change.
13901 2000-02-28  Zack Weinberg  <zack@wolery.cumb.org>
13903         * tm.texi: Document new target switch, NO_BUILTIN_WCHAR_TYPE.
13904         * cppinit.c (builtin_array): Define __WCHAR_TYPE__ only if
13905         NO_BUILTIN_WCHAR_TYPE is not defined.
13906         (CPP_WCHAR_TYPE): Delete.
13907         * cccp.c (main): Don't change wchar_type if cplusplus.
13908         (special_symbol, initialize_builtins): Honor NO_BUILTIN_WCHAR_TYPE.
13910 2000-02-28  Nick Clifton  <nickc@cygnus.com>
13912         * config/arm/arm-wince-pe.h (SIZE_TYPE): Define to "unsigned long".
13914 Mon Feb 28 14:21:15 2000  Catherine Moore  <clm@cygnus.com>
13916         * config/pa/som.h (MAKE_DECL_ONE_ONLY): Define.
13917         (ASM_WEAKEN_LABEL): Define.
13919 Mon Feb 28 13:07:19 MET 2000  Jan Hubicka  <jh@suse.cz>
13921         * expr.c (store_constructor): Do not emit USE.
13922         * rtl.h (stupid_life_analysis): Remove.
13924 Mon Feb 28 07:03:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13926         * function.c (number_blocks): Reset next_block_index based on
13927         what debugging format is used, not what is defined.
13929         * lcm.c: Minor reformatting throughout.
13930         (reg_dies, reg_becomes_live): Properly handle multiple hard regs.
13932         * toplev.c (rest_of_compilation): Account for time in
13933         optimize_mode_switching.
13935         * jump.c (jump_optimize_1): Don't call delete_barrier_successors
13936         if only marking labels.
13938 Mon Feb 28 12:53:57 MET 2000  Jan Hubicka  <jh@suse.cz>
13940         * calls.c (expand_call): Attempt to combine stack adjustments with
13941         pending stack adjustments.
13943 Mon Feb 28 11:34:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13945         * loop.c (reg_in_basic_block_p): Don't abort when falling through
13946         to the end of the function.
13948 2000-02-27  Mark Mitchell  <mark@codesourcery.com>
13950         * emit-rtl.c (remove_unncessary_notes): Remove notes for empty
13951         blocks.
13952         * final.c (next_block_index): Remove.
13953         (max_block_depth): Likewise.
13954         (pending_blocks): Likewise.
13955         (init_final): Don't initialize them.
13956         (final_start_function): Don't set next_block_index.  Set up
13957         BLOCK_NUMBER.
13958         (final_scan_insn): Use BLOCK_NUMBER, not next_block_index.
13959         * function.h (number_blocks): New function.
13960         * function.c (get_block_vector): New function.
13961         (identify_blocks): Use it.
13962         (reorder_blocks): Set NOTE_BLOCK.
13963         (number_blocks): New function.
13964         * tree.def (BLOCK): Add documentation for TREE_ASM_WRITTEN flag.
13965         * tree.h (BLOCK_NUMBER): New macro.
13966         (tree_block): Add block_num field.
13967         * dbxout.c (next_block_number): Remove.
13968         (dbxout_init): Don't set it.
13969         (dbxout_block): Only output blocks that have TREE_ASM_WRITTEN
13970         set.  Use BLOCK_NUMBER, rather than next_block_num, to determine
13971         block numbers.
13972         * toplev.c (rest_of_compilation): Always call
13973         find_loop_tree_blocks.  Fix indentation.
13974         * dwarf2out.c (next_block_number): Remove.
13975         (gen_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
13976         to determine block numbers.
13977         (gen_inlined_subroutine_die): Likewise.
13978         (gen_block_die): Only output blocks that have TREE_ASM_WRITTEN set.
13979         (decls_for_scope): Don't increment next_block_number.
13980         * dwarfout.c (next_block_number): Remove.
13981         (output_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
13982         to determine block numbers.
13983         (output_inlined_subroutine_die): Likewise.
13984         (output_block): Only output blocks that have TREE_ASM_WRITTEN set.
13985         (output_decls_for_scope): Don't increment next_block_number.
13986         * sdbout.c (next_block_number): Remove.
13987         (sdbout_block): Use BLOCK_NUMBER.
13988         (sdbout_begin_block): Simplify.
13989         * xcoffout.c (next_block_number): Remove.
13990         (xcoffout_block): Use BLOCK_NUMBER, not next_block_number.
13991         (xcoffout_begin_block): Don't set next_block_number.
13992         (xcoffout_begin_function): Likewise. Use BLOCK_NUMBER, not
13993         next_block_number.
13995 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13997         * builtins.c (c_strlen): Use size_diffop and return ssizetype value.
13998         (expand_builtin_strcpy): Pass correct type to size_binop.
13999         (expand_builtin_strcmp): Likewise.
14000         Clean up conditional structure.
14001         * c-decl.c (init_decl_processing): Don't call set_sizetype twice.
14002         (complete_array_type): Don't use size_binop for MAXINDEX.
14003         * c-typeck.c (c_sizeof): Use size_one_node and TYPE_SIZE_UNIT.
14004         (c_sizeof_nowarn, c_size_in_bytes): Likewise.
14005         (c_alignof): Use size_one_node.
14006         (build_unary_op): Pass arg of proper type to size_binop.
14007         (really_start_incremental_init, push_init_level): Use sizetype for
14008         constructor{,_bit,_unfilled}_index.
14009         (pop_init_label, output_init_element): Likewise.
14010         (output_pending_init_elements, process_init_element): Likewise.
14011         * calls.c (compute_argument_block_size): Field VAR is ssizetype.
14012         * expr.c (store_expr): Use size_int.
14013         (store_constructor): Use proper types for size_binop args.
14014         (get_inner_reference, expand_expr, case ARRAY_REF): Likewise.
14015         (expand_expr_unaligned): Likewise.
14016         (string_contant): Return object of sizetype.
14017         * expr.h (SUB_PARM_SIZE): Call size_diffop and pass proper types.
14018         (ARGS_SIZE_RTX): Call ARGS_SIZE_TREE.
14019         (ARGS_SIZE_TREE): Pass proper types to size_binop.
14020         * fold-const.c (int_const_binop): Refine when size_int is called.
14021         (fold_convert): Likewise.
14022         (size_int_wide): Rework to take KIND as arg, only take low order
14023         bits, handle new sizetype_tab datatype, and chain entries in
14024         size_table.
14025         (size_int_type_wide): New function.
14026         (size_binop): Validate types of arguments.
14027         (ssize_binop): Deleted.
14028         (size_diffop): New function.
14029         (extract_muldiv): Only fold division into multiplication for sizetypes.
14030         * function.c (assign_parms): Use size_diffop and make sure
14031         VAR field is of ssizetype; also pass proper type to size_binop.
14032         (locate_and_pad_parm, pad_to_arg_alignment): Likewise.
14033         (round_down): Deleted from here.
14034         * store-layout.c (sizetype_tab): Now an array.
14035         (sizetype_set, early_root_list): New variables.
14036         (variable_size): Use size_one_node.
14037         (round_up): Pass proper type to size_binop.
14038         (round_down): Moved to here and corrected as above.
14039         (layout_record): Pass proper arg types to size_binop.
14040         (layout_type): Likewise.
14041         If sizetype_set is zero, record the type just laid out.
14042         (make_unsigned_type): Don't call set_sizetype;
14043         (make_signed_type): Likewise; also, call fixup_signed_type.
14044         (initialize_sizetypes): New function.
14045         (set_sizetype): Make copy of types, set TYPE_IS_SIZETYPE, and
14046         set name of bitsizetype to "bit_size_type".
14047         Fix up type of sizes of all types made before call.
14048         * tm.texi (ROUND_TYPE_SIZE_UNIT): New macro.
14049         * tree.c (fix_sizetype): Deleted.
14050         (build_common_tree_nodes): Call initialize_sizetypes.
14051         (build_common_tree_nodes_2): Don't call fix_sizetype.
14052         * tree.h (TYPE_IS_SIZETYPE): New macro.
14053         (initialize_sizetype): New declaration.
14054         (enum size_type_kind): New type.
14055         (struct sizetype_tab): Deleted.
14056         (sizetype_tab): Now array; adjust sizetype macros.
14057         (size_diffop, size_int_type_wide): New functions.
14058         (size_int_wide): Change number of args and type; access macros changed.
14059         (ssize_int, sbitsize_int): New macros.
14060         * config/i960/i960.h (ROUND_TYPE_SIZE): Use size_int.
14061         (ROUND_TYPE_SIZE_UNIT): New macro.
14063 2000-02-27  Zack Weinberg  <zack@wolery.cumb.org>
14065         * c-lex.c (putback_buffer): Make 'buffer' an unsigned char *.
14067 Sun Feb 27 07:44:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14069         * gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
14070         Mark as possibly unused.
14072         * cse.c (cse_insn): Delete dead code involving tablejump.
14073         Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
14075         * Makefile.in (libcpp.a): Start by deleting it.
14077 2000-02-27  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14079         * cpplib.h (enum file_change_code): Added rename_file.
14080         * cpplib.c (do_line): If a filename is given, set file_change to
14081         rename_file.
14082         (output_line_command): If file_change is rename_file, always
14083         output a # directive with the file name.
14085         * cpplib.c (do_pragma): Accept #pragma without consecutive token.
14087 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
14089         * integrate.c (copy_decl_for_inlining): Preserve TREE_ADDRESSABLE
14090         when copying a PARM_DECL or RESULT_DECL.
14092 2000-02-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14094         * fix-header.c (recognized_function): Also fix prototypes for
14095         functions taking "void".
14097 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
14099         * reload1.c (do_output_reload): Check reg_reloaded_valid before
14100         looking at reg_reloaded_contents.
14102 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
14104         * Makefile.in (STMP_FIXINC): New toggle.
14105         (LIBGCC2_DEPS): Delete all references.
14106         (stmp-headers): Delete target.  All references either deleted
14107         or changed to stmp-int-headers.
14108         (all.cross): Don't depend on stmp-headers or STMP_FIXPROTO.
14109         (LIBCPP_OBJS): Take out cppalloc.o.
14110         (cppalloc.o): Delete target.
14111         (stmp-int-hdrs): Depend on $(STMP_FIXINC).
14112         (gen-protos, fix-header): Link with libiberty.a.
14113         * build-make: Don't change FIXINCLUDES.  Override STMP_FIXINC
14114         to empty.
14116         * configure.in: Remove refs to strerror.
14117         * acconfig.h: Take out NEED_DECLARATION_STRERROR.
14118         * system.h: Take out strerror stanza.
14120         * cpperror.c (my_strerror): Delete function.
14121         (cpp_error_from_errno, cpp_notice_from_errno): Use xstrerror.
14122         * cppmain.c (main): Call xmalloc_set_program_name first thing.
14123         * cppalloc.c: Delete file.
14124         * gen-protos.c: Don't provide xrealloc.
14126         * fixinc/fixincl.c, fixinc/fixlib.c, fixinc/procopen.c: Use
14127         xstrerror throughout.
14129 2000-02-26  Bruce Korb  <bkorb@gnu.org>
14131         * fixinc/inclhack.def (undefine_null): the bypass pattern needs to
14132         match for DOS headers, too.
14133         * fixinc/inclhack.sh,fixincl.x: Regenerate.
14135 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
14137         * config/elfos.h (ASM_OUTPUT_LABELREF): Don't define.  The default
14138         is right for most ELF targets.
14139         * config/ns32k/ns32k.h (ASM_OUTPUT_LABELREF): Don't define.
14140         Let the default file use %U properly.
14141         * config/sh/elf.h (ASM_OUTPUT_LABELREF): Don't define.  Use the
14142         default.
14144         * config/fp-bit.c (pack_d): Properly handle rounding of denormal
14145         numbers.
14147 Sat Feb 26 09:39:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14149         * toplev.c (documented_lang_options): Correct spelling error.
14150         (decode_d_option, decode_f_option, main): Likewise.
14152         * toplev.c (print_time): Avoid SIGFPE when all_time is zero.
14154         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Use .set at
14155         to tell assembler it is permitted to expand large constants.
14157 2000-02-25  Mumit Khan  <khan@xraylith.wisc.edu>
14159         * protoize.c: (AUX_INFO_SUFFIX): New macro.
14160         (aux_info_suffix): Use.
14161         (SAVE_SUFFIX): New macro.
14162         (save_suffix): Use.
14163         (munge_compile_parms): Fix typo in NUL. DJGPP supports /dev/null.
14164         (gen_aux_info_file): Use aux_info_suffix instead of ".X".
14165         (edit_file): Handle 8.3 restriction for DOS/DJGPP filenames.
14167         * invoke.texi (Running Protoize): Update documentation.
14169 2000-02-25 Mark Elbrecht <snowball3@bigfoot.com>
14171         * i386/djgpp.h (CPP_PREDEFINES): Remove Unix defines.
14173 2000-02-25  John Wehle  (john@feith.com)
14175         * rtlanal.c (find_last_value): Allow NULL_RTX for valid_to.
14177 2000-02-25  Anthony Green  <green@cygnus.com>
14179         * toplev.c (rest_of_compilation): Rebuild jump labels if
14180         combine_instructions has created a new direct jump.
14181         * combine.c (try_combine): Add new_direct_jump_p argument.  Set it
14182         when appropriate.
14183         (combine_instructions): Call try_combine with new argument.
14184         Return non-null value when new direct jump instruction is created.
14185         * rtl.h: combine_instructions returns an int.
14187 Fri Feb 25 19:49:08 2000  Jeffrey A Law  (law@cygnus.com)
14189         * cse.c (cse_insn): Replace the PATTERN of the insn with an new
14190         jump when changing a computed jump into a jump to a known
14191         target.
14193 Fri Feb 25 19:22:44 2000  Graham Stott <grahams@rcp.co.uk>
14195         * resource.c (mark_referenced_resources): Changed use SET_DEST (...)
14196         to XEXP (..., 0) on RTL nodes which are not SET or CLOBBER.
14198         * i386.md (define_expand "clrstrsi"): Fix typo.
14200 Fri Feb 25 18:49:39 2000  "K. Richard Pixley" <rich@microunity.com>
14202         * rtl.texi: Fix typo.
14204 Fri Feb 25 20:02:35 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14206         * sh.c (calc_live_regs): Multiply value assigned to *COUNT_PTR by
14207         UNITS_PER_WORD.  Change caller initial_elimination_offset.
14208         (rounded_frame_size): Take into account that argument pushed has
14209         changed.  Fix TARGET_ALIGN_DOUBLE problem.
14211 2000-02-25  Geoff Keating  <geoffk@cygnus.com>
14213         * haifa-sched.c (schedule_block): Explain the real reason
14214         we delete REG_SAVE_NOTEs on the first insn of a block.
14215         Don't delete REG_SAVE_NOTES for NOTE_INSN_SETJMP.
14217 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
14219         * input.h (push_srcloc): New function.
14220         (pop_srcloc): Likewise.
14221         * toplev.c (push_srcloc): Define it.
14222         (pop_srcloc): Likewise.
14224 2000-02-24  Richard Henderson  <rth@cygnus.com>
14226         * flow.c (life_analysis): When collecting reg info, clear
14227         regs_ever_live.
14229 Thu Feb 24 22:06:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14231         Fix bug exposed by reload.c no longer rounding the frame
14232         size to BIGGEST_ALIGNMENT:
14233         * sh.c (rounded_frame_size): New function.
14234         (sh_expand_prologue, sh_expand_epilogue): Use it.
14235         (initial_elimination_offset): Likewise.
14237 Thu Feb 24 20:04:11 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14239         Fix breakage from 6th Feb thread_prologue_and_epilogue_insns change:
14240         * sh-protos.h (sh_need_epilogue): Declare.
14241         * sh.c (sh_need_epilogue_known): New static variable.
14242         (sh_need_epilogue): New function.
14243         (function_epilogue): Clear need_epilogue_known.
14244         * sh.md (return): Split into expander / insn pattern.
14245         Make the expander conditional on ! sh_need_epilogue ().
14247 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
14249         * machmode.h (get_mode_alignment): Declare.
14250         (GET_MODE_ALIGNMENT): Call it.
14251         * stor-layout.c (get_mode_alignment): New function. Make
14252         sure alignment is always power of 2.
14254 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14256         * i386.h: Remove useless definition of "I386" and misleading
14257         comment above it.
14259 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14261         * tree.h (TREE_SET_PERMANENT): New macro.  Document conditions
14262         under which TREE_PERMANENT will be set.
14263         * tree.c (make_node, copy_node, make_tree_vec, tree_cons,
14264         build1): Use TREE_SET_PERMANENT.
14265         * print-tree.c (print_node): Don't report value of
14266         TREE_PERMANENT if ggc_p is true.
14268         * c-common.c (c_get_alias_set): Don't use TREE_PERMANENT to
14269         decide whether to give a type a new alias set.
14270         * objc/objc-act.c (build_objc_string_object): Never copy the string.
14271         * tree.c (make_node): Set DECL_IN_SYSTEM_HEADER irrespective
14272         of value of 'obstack'.
14275 2000-02-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14277         * config/c4x/c4x.c (c4x_process_after_reload): Split all insns.
14279 2000-02-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14281         * cpplib.h (enum cpp_token): Added CPP_WCHAR and CPP_WSTRING.
14282         * cpplib.c (cpp_get_token): Produce them.
14283         * cppexp.c (cpp_lex): Handle them.
14285 2000-02-23  Nick Clifton  <nickc@cygnus.com>
14287         * config/arm/arm.c (arm_comp_type_attributes): Simply and
14288         comment tests on type attributes.
14290 Wed Feb 23 16:42:21 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14292         * final.c (shorten_branches): Make value passed to LOOP_ALIGN
14293         conform to documentation.
14294         * sh.h (LOOP_ALIGN): If aligning loops, call sh_loop_align
14295         to check for special cases.
14296         * sh-protos.h (sh_loop_align): Declare.
14297         * sh.c (sh_loop_align): Define.
14299 2000-02-22  Andrew Haley  <aph@cygnus.com>
14301         * config/mips/mips.h (GAS_ASM_SPEC): Pass -mgp32/-mgp64 to gas.
14302         (SIZE_TYPE): Is 32 bits when using -mgp32.
14303         (PTRDIFF_TYPE): Ditto.
14305 Wed Feb 23 07:26:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14307         * diagnostic.c (init_output_buffer): Handle case of null PREFIX.
14309 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14311         * config/i386/i386.h: If IN_TARGET_LIBS is defined, make
14312         BIGGEST_FIELD_ALIGNMENT a constant.
14314 2000-02-21  Jason Merrill  <jason@casey.cygnus.com>
14316         * dwarf2out.c (output_line_info): Put the marker for the end of
14317         the line number info at the actual end.
14318         (gen_struct_or_union_type_die): Use decl_function_context
14319         to check for local classes.
14320         * dwarfout.c (output_type): Likewise.
14322 Tue Feb 22 01:38:57 2000  Jeffrey A Law  (law@cygnus.com)
14324         * pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Handle pass-by-reference
14325         for arguments with a mode, but no type.
14326         (FUNCTION_ARG_CALLEE_COPIES): Similarly.
14327         * t-pa (LIB2FUNCS_EXTRA): Add quadlib.asm.
14328         * pa/long_double.h: New file.
14329         * configure.in (hpux10, hpux11 configurations): hpux10 and hpux11
14330         both have 128bit wide long doubles.
14331         * configure: Rebuilt.
14333 2000-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14335         * defaults.h (ASM_OUTPUT_ASCII): Constify a char*.
14337         * flow.c (get_common_dest, chain_reorder_blocks, make_reorder_chain,
14338         fixup_reorder_chain, skip_insns_between_block): Add static prototypes.
14339         (life_analysis): Wrap variable `i' with macro ELIMINABLE_REGS.
14341         * haifa-sched.c (rank_for_schedule): Don't cast away const-ness.
14343         * integrate.c (compare_blocks, find_block): Likewise.
14345         * rtl.c (fatal_with_file_and_line): Add ATTRIBUTE_PRINTF_2.
14347         * rtl.h (set_file_and_line_for_stmt): Constify a char*.
14349         * stmt.c (stmt_status, set_file_and_line_for_stmt,
14350         expand_asm_operands): Likewise.
14352 Mon Feb 21 17:06:27 2000  Jason Eckhardt  <jle@cygnus.com>
14354         * predict.c (estimate_probability): Added the pointer heuristic to
14355         the collection of static branch predictors.
14357 2000-02-21  Catherine Moore  <clm@cygnus.com>
14359         * config/mips/mips.h (ASM_SPEC): Add -mfix700.
14360         * invoke.texi (-mfix7000): Document.
14362 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
14364         * diagnostic.c (init_output_buffer): Make it possible to output at
14365         least 32 characters if we're given a too long prefix.
14367 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
14369         * varasm.c (initializer_constant_valid_p): Call
14370         lang_expand_constant to simplify the constant.
14372 2000-02-20  Bruce Korb  <bkorb@gnu.org>
14374         * fixinc/inclhack.def(stdio_va_list):
14375         typedef needs to be disabled.
14376         * fixinc/inclhack.sh: regen
14377         * fixinc/fixincl.x: regen
14379 2000-02-20  Geoff Keating  <geoffk@cygnus.com>
14381         * print-rtl.c (print_rtx): Don't print addresses when
14382         flag_dump_unnumbered.
14384 2000-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14386         * sparc.c (sparc_output_scratch_registers): Mark parameter with
14387         ATTRIBUTE_UNUSED.
14388         (sparc_va_arg, sparc_flat_output_function_prologue,
14389         sparc_flat_output_function_epilogue): Cast value to unsigned in
14390         comparison.
14391         (sparc_emit_float_lib_cmp): Remove unused variable `cmp'.
14393         * sparc.md: Add default case in switch.
14395 2000-02-19  Richard Henderson  <rth@cygnus.com>
14397         * c-typeck.c (add_pending_init): Don't abort for multiple
14398         fields at the same offset.
14399         (pending_init_member): Test the correct member.
14401 2000-02-19  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14403         * except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
14404         instead of SImode.
14405         (start_catch_handler) : Same.
14407 2000-02-19  Brad Lucier  (lucier@math.purdue.edu)
14409         * Makefile.in: Have flow.o depend on $(EXPR_H)
14411 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14413         * c-common.c (decl_attributes): Set DECL_SIZE_UNIT.
14414         * c-decl.c (duplicate_decls, finish_enum): Likewise.
14415         (finish_decl): Remove -Wlarger-than code from here.
14416         * flags.h (id_clash_len): Now int.
14417         (larger_than_size): Now HOST_WIDE_INT.
14418         * fold-const.c (size_int_wide): No more HIGH parm; NUMBER is signed.
14419         Clean up checking to see if in table.
14420         (make_bit_field_ref): Remove extra parm to bitsize_int.
14421         * ggc-common.c (ggc_mark_tree_children): Mark DECL_SIZE_UNIT.
14422         * print-tree.c (print_node): Print DECL_SIZE_UNIT and TYPE_SIZE_UNIT.
14423         * stmt.c (expand_decl): Use DECL_SIZE_UNIT for stack checking size
14424         and for computing size of decl.
14425         * stor-layout.c (layout_decl): Set DECL_SIZE_UNIT.
14426         Move -Wlarger-than code to here.
14427         (layout_record): Remove extra arg to bitsize_int.
14428         Set TYPE_BINFO_SIZE_UNIT.
14429         (layout_union): Remove extra arg to bitsize_int.
14430         Use proper type for size of QUAL_UNION.
14431         (layout_type): Remove extra arg to bitsize_int.
14432         * toplev.c (id_clash_len): Now int.
14433         (larger_than_size): Now HOST_WIDE_INT.
14434         (decode_W_option): Clean up id-clash and larger-than- cases.
14435         * tree.c (get_identifier, maybe_get_identifier): Remove unneeded casts.
14436         (expr_align, case FUNCTION_DECL): DECL_ALIGN is not defined.
14437         * tree.h (BINFO_SIZE_UNIT, TYPE_BINFO_SIZE_UNIT, DECL_SIZE_UNIT): New.
14438         (struct tree_decl): New field size_unit.
14439         (size_int_wide): No HIGH operand; NUMBER is now signed.
14440         (size_int_2): Deleted.
14441         (size_int, bitsize_int): Don't use it and rework args.
14442         * varasm.c (assemble_variable, output_constructor): Use DECL_SIZE_UNIT.
14444 Fri Feb 18 20:01:58 2000  Jeffrey A Law  (law@cygnus.com)
14446         * pa/quadlib.asm (_U_QFgt, _U_Qfge): Fix flags for _U_Qfcmp call.
14448 2000-02-18  Geoff Keating  <geoffk@cygnus.com>
14450         * invoke.texi (Warning Options): Add an explanation of why
14451         you might want the -Wfloat-equal flag.
14453 Fri Feb 18 20:08:57 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14455         * bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
14456         * cppinit.c (new_pending_define): Add cast to avoid warning.
14457         * expmed.c (extract_bit_field): Likewise.
14458         * flow.c (enum reorder_skip_type): New type.
14459         (skip_insns_between_blcok): New it.
14460         Rework to avoid warning about possibly undefined variable.
14461         * function.c (assign_parms): Make thisparm_boundary unsigned.
14462         * genrecog.c (write_switch): Cast XWINT result to int.
14463         * lcm.c: Many static fcns and vars now #ifdef OPTIMIZE_MODE_SWITCHING.
14464         * mips-tfile.c (init_file): Make two versions of FDR intializer:
14465         one for MIPS and one for Alpha.
14466         (get_tag, copy_object): Add casts to avoid warnings.
14467         * optabs.c (init_one_libfunc): Cast NAME to (char *).
14468         * reload.c (find_reloads): Make TYPE enum reload_type.
14469         * sbitmap.c (dump_sbitmap): J is unsigned; don't use "1L".
14470         * unroll.c (unroll_loop): Initialize UNROLL_NUMBER.
14471         * varasm.c (compare_constant_1): Add cast to avoid warning.
14472         * config/alpha/alpha.c (alpha_emit_xfloating_libcall): Cast FUNC
14473         to (char *).
14474         (alpha_expand_unaligned_load, alpha_expand_unaligned_store):
14475         Cast switch operand of size to int.
14476         (alpha_expand_epilogue): Always initialize fp_offset and sa_reg.
14477         * config/alpha/alpha.h (INITIAL_ELIMINATION_OFFSET): Add abort
14478         in unhandled case.
14480 2000-02-18  Nick Clifton  <nickc@cygnus.com>
14482         * config/arm/elf.h (ASM_OUTPUT_ALIGN): Do not generate
14483         anything for an alignment of zero.
14485         * config/arm/thumb.h (ASM_OUTPUT_ALIGN): Do not generate
14486         anything for an alignment of zero.
14488 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
14490         * gcc.texi (Bug Reporting): Refer to bugs.html.
14491         (Bug Lists): Likewise.
14492         * system.h (GCCBUGURL): New preprocessor define.
14493         * rtl.c (fancy_abort): Use it.
14494         * gcc.c (main): Likewise.
14496 2000-02-18  Richard Henderson  <rth@cygnus.com>
14498         * flow.c (INSN_VOLATILE, SET_INSN_VOLATILE, uid_volatile): Remove.
14499         (life_analysis_1): Subsume into ...
14500         (life_analysis): ... here.  Force PROP_REG_INFO off after reload.
14501         Use update_life_info for the relaxation.
14502         (update_life_info): Update REG_BASIC_BLOCK for registers live on
14503         entry and regs_live_at_setjmp.
14504         (set_noop_p): Simplify.
14505         (notice_stack_pointer_modification_1): Renamed from s/_1//.
14506         (record_volatile_insns): Split into ...
14507         (delete_noop_moves): ... here,
14508         (notice_stack_pointer_modification): ... here,
14509         (insn_dead_p): ... and here.
14510         (propagate_block): Don't query INSN_VOLATILE.
14511         (mark_used_regs): Mind !PROP_REG_INFO.
14512         * toplev.c (rest_of_compilation): Call mark_constant_function here,
14513         not in life_analysis.
14515 Fri Feb 18 01:29:22 EST 2000  John Wehle  (john@feith.com)
14517         * loop.c (canonicalize_condition): New function,
14518         broken out of get_condition.
14519         (get_condition): Use it.
14520         * expr.h (canonicalize_condition): Prototype it.
14522         * tree.h (tree_int_cst_msb): Declare.
14523         * tree.c (tree_int_cst_msb): New function.
14525 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
14527         * stmt.c (set_file_and_line_for_stmt): Don't crash if cfun->stmt
14528         isn't set.
14530         * invoke.texi (-fmessage-length=n): Document.
14532 2000-02-17  Jason Merrill  <jason@casey.cygnus.com>
14534         * bitmap.c (bitmap_operation): Don't leak bitmap elements.
14536 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
14538         * function.c (thread_prologue_and_epilogue_insns): Put a line note
14539         after the prologue.
14541 2000-02-17  Nick Clifton  <nickc@cygnus.com>
14543         * config/arm/thumb.c: Replace includes of system headers with
14544         #include "system.h".
14546 2000-02-16  Richard Henderson  <rth@cygnus.com>
14548         * configure.in (alpha-linux*, alpha-netbsd) [extra_parts]:
14549         Add crtbeginS.o and crtendS.o.
14550         * alpha/elf.h (STARTFILE_SPEC): Use crtbeginS.o.
14551         (ENDFILE_SPEC): Use crtendS.o.
14552         * alpha/t-crtbe (crtbeginS.o, crtendS.o): New targets.
14554         * alpha/crtbegin.asm (__do_frame_takedown): Merge into ...
14555         (__do_global_dtors_aux): ... here.  Call __cxa_finalize if
14556         shared and present.
14557         (__dso_handle): New variable.
14558         * alpha/crtend.asm (__do_global_ctors_aux): Remove runtime
14559         bias to __CTOR_END__.
14561 2000-02-16  Richard Henderson  <rth@cygnus.com>
14563         * Makefile.in (s-crtS, crtbeginS, crtendS): Prefix usage with $(T).
14565 Wed Feb 16 21:40:04 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14567         * longlong.h (__clz_tab): Declare as static to match definition.
14569 2000-02-16 Mark Elbrecht <snowball3@bigfoot.com>
14571         * i386/xm-djgpp.h (LIBSTDCXX): Delete. Moved to config/i386/djgpp.h.
14572         (XREF_FILE_NAME): Define.
14574         * i386/djgpp.h (DATA_SECTION_ASM_OP): Define.
14575         (EH_FRAME_SECTION_ASM_OP): Define.
14576         (IDENT_ASM_OP): Define.
14577         (TEXT_SECTION_ASM_OP): Define.
14578         (CPP_SPEC): Define.
14579         (CTORS_SECTION_ASM_OP): Define.
14580         (CTOR_SECTION_FUNCTION): Use it.
14581         (DTORS_SECTION_ASM_OP): Define.
14582         (DTOR_SECTION_FUNCTION): Use it.
14584 2000-02-16  Zack Weinberg  <zack@wolery.cumb.org>
14586         * reg-stack.c (emit_swap_insn): Do not put a new insn before a
14587         NOTE_BASIC_BLOCK.
14589         * flow.c (dump_regset, debug_regset, dump_bb, debug_bb,
14590         debug_bb_n): New functions.
14591         (dump_flow_info, print_rtl_with_bb): Use dump_regset.
14592         * basic-block.h: Prototype new functions.
14594 Wed Feb 16 21:07:53 2000  Denis Chertykov  <denisc@overta.ru>
14596         * configure.in: Add support for avr target.
14597         * configure: Rebuilt.
14599         * invoke.texi: Add AVR invocation docs.
14600         * install.texi: Add information about AVR.
14601         * md.texi: Add AVR constraint letters description.
14602         * extend.texi: Add description for AVR specific attributes.
14604 2000-02-16  Jason Merrill  <jason@casey.cygnus.com>
14606         * fixinc/fixinc.svr4: Wrap byteorder.h with extern "C".
14608 2000-02-16  Nick Clifton  <nickc@cygnus.com>
14610         * emit-rtl.c (emit_insn): Move RTL check into make_insn_raw.
14611         (make_insn_raw): Move RTL check here.
14613 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14615         * version.c: Include gansidecl.h and version.h.
14617         * version.h: Wrap entire file in macro __GCC_VERSION_H__.
14619         * configure.in (gcc_version): When setting, narrow search to
14620         lines containing `version_string'.
14622         * Makefile.in (mainversion): Likewise.
14623         (GCC_H): New variable.
14624         (gcc.h): Delete target.
14625         (gcc.o, gccspec.o, cppspec.o): Depend on $(GCC_H), not gcc.h.
14626         (version.o): Depend on version.h.
14627         (dbxout.o): Don't depend on gcc.h.
14629 Wed Feb 16 15:04:49 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14630                           Michael Meissner  <meissner@cygnus.com>
14632         * md.texi (Simple Constraints): Add item about whitespace.
14633         * genoutput.c (strip_whitespace): New.
14634         (scan_operands) [MATCH_OPERAND, MATCH_SCRATCH]: Call
14635         strip_whitespace for constraints.
14636         Test pointer using NULL, not 0.
14638 2000-02-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14640         * cpplib.c (do_line): Pedwarn for #line > 32767.
14642         * c-lex.c (readescape): Warn about '\x', but do not reject it.
14644 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
14646         * gcc.c (default_compilers): Add new __GNUC_PATCHLEVEL__ define
14647         to default cpp spec.
14648         (do_spec_1): Add support for %v3 spec used by __GNUC_PATCHLEVEL__.
14649         * cpp.texi: Document __GNUC_PATCHLEVEL__.
14650         * cpp.1: Likewise.
14652         * objc/lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to
14653         default spec.
14655 2000-02-15  Denis Chertykov  <denisc@overta.ru>
14657         * configure.in: Add support for avr target.
14659 Wed Feb 16 03:21:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14661         * sh.h (OVERRIDE_OPTIONS): Don't set sh_addr_diff_vec_mode.
14662         (sh_addr_diff_vec_mode): Don't declare.
14663         * sh.c (sh_addr_diff_vec_mode): Delete.
14665 Wed Feb 16 01:27:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14667         * sh.md (mulsi3_highpart): Add REG_EQUAL note to last insn.
14669 Wed Feb 16 00:58:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14671         * sh.md (udivsi3_i1, divsi3_i1, umulhisi3_i, mulhisi3_i): Name.
14672         (smulsi3_highpart_i): Name.
14673         (udivsi3): Wrap emitted insns in REG_LIBCALL / REG_RETVAL notes.
14674         (divsi3, mulhisi3, umulhisi3, mulsidi3, umulsidi3): Likewise.
14675         (smulsi3_highpart, umulsi3_highpart): Likewise.
14677         (mulsidi3_i, umulsidi3_i): Make rtl describe operation
14678         correctly independent of endianness.
14679         (mulsidi3, umulsidi3): Now define_insn.  Hide details that
14680         confuse the optimizers.
14681         (mulsidi3+1, umulsidi3+1): New define_split.
14683 Tue Feb 15 23:22:26 2000  Andrew Haley  <aph@cygnus.com>
14685         * config/sh/sh.md: Guard insn splits against illegal registers.
14686         * config/sh/sh.h: Correct comment about macros.
14688 Tue Feb 15 22:30:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14689                           Andrew MacLeod  <amacleod@cygnus.com>
14691         * Makefile.in (lcm.o): Depend on insn-attr.h.
14692         * basic-block.h (optimize_mode_switching): Declare.
14693         * lcm.c (tm_p.h, insn-attr.h): #include.
14694         (seginfo, bb_info): New structs.
14695         (antic, transp, comp, delete, insert) : New file-scope static variables.
14696         (new_seginfo, add_seginfo, make_preds_opaque, reg_dies): New functions.
14697         (reg_becomes_live, optimize_mode_switching): Likewise.
14698         * tm.texi: Add description of mode switching macros.
14699         * toplev.c (rest_of_compilation): Call optimize_mode_switching.
14701         * sh-protos.h (remove_dead_before_cse): Remove prototype.
14702         (fldi_ok, fpscr_set_from_mem): New prototypes.
14703         * sh.h (OPTIMIZATION_OPTION): Remove sh_flag_remove_dead_before_cse set.
14704         (CONST_DOUBLE_OK_FOR_LETTER_P, SECONDARY_INPUT_RELOAD_CLASS):
14705         Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
14706         (sh_flag_remove_dead_before_cse): Remove declaration.
14707         (NUM_MODES_FOR_MODE_SWITCHING, OPTIMIZE_MODE_SWITCHING): New macros.
14708         (MODE_USES_IN_EXIT_BLOCK, MODE_NEEDED, MODE_AT_ENTRY): Likewise.
14709         (MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
14710         * sh.c (broken_move): Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
14711         (barrier_align): Allow for JUMP_INSNS containing a parallel.
14712         (machine_dependent_reorg): Remove sh_flag_remove_dead_before_cse set.
14713         (fldi_ok): New function.
14714         (get_fpscr_rtx): Add fpscr_rtx as GC root.
14715         (emit_sf_insn): Only generate fpu switches when optimize < 1.
14716         (emit_df_insn): Likewise.
14717         (expand_fp_branch, emit_fpscr_use, remove_dead_before_cse): Delete.
14718         (sh_flag_remove_dead_before_cse): Delete.
14719         (get_free_reg, fpscr_set_from_mem): New functions.
14720         * sh.md (movdf, movsf): Remove no_new_pseudos code.
14721         (return): Remove emit_fpscr_use / remove_dead_before_cse calls.
14723 2000-02-15  Loren Rittle  <ljrittle@acm.org>
14725         * ginclude/stddef.h: Correct usage of _BSD_RUNE_T_ for FreeBSD.
14727 2000-02-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14729         * Makefile.in (TREE_H, collect2.o, gcc.h, mips-tfile.o, cccp.o,
14730         cpphash.o, cppinit.o, protoize.o, unprotoize.o): Depend on version.h.
14732         * cccp.c: Include version.h and/or don't declare `version_string'.
14733         * collect2.c: Likewise.
14734         * alpha.c: Likewise.
14735         * arm/aof.h: Likewise.
14736         * arm/coff.h: Likewise.
14737         * arm/elf.h: Likewise.
14738         * arm/pe.h: Likewise.
14739         * arm/tcoff.h: Likewise.
14740         * arm/telf.h: Likewise.
14741         * arm/tpe.h: Likewise.
14742         * arm/vxarm.h: Likewise.
14743         * convex/convex.c: Likewise.
14744         * i386/dgux.c: Likewise.
14745         * i386/sun386.h: Likewise.
14746         * m88k/m88k.c: Likewise.
14747         * mcore/mcore-pe.h: Likewise.
14748         * mips/mips.h: Likewise.
14749         * romp/romp.h: Likewise.
14750         * sh/sh.c: Likewise.
14751         * cpphash.c: Likewise.
14752         * cppinit.c: Likewise.
14753         * dwarf2out.c: Likewise.
14754         * dwarfout.c: Likewise.
14755         * gcc.c: Likewise.
14756         * gcc.h: Likewise.
14757         * mips-tfile.c: Likewise.
14758         * protoize.c: Likewise.
14759         * toplev.c: Likewise.
14760         * tree.h: Likewise.
14762         * version.c (version_string): Constify a char*.
14764         * version.h: New file.
14766 2000-02-14  Nick Clifton  <nickc@cygnus.com>
14768         * configure.in: Add mcore-elf and mcore-pe targets.
14769         * configure: Regenerate.
14771         * NEWS: Add note that MCore port has been contributed.
14773         * invoke.texi: Document command line switches for MCore port.
14774         * install.texi: Add MCore to list of supported targets.
14776 2000-02-14  Geoff Keating  <geoffk@cygnus.com>
14778         * collect2.c (main) [COLLECT_EXPORT_LIST]: If we have frames,
14779         then we will need to import the frame handling functions.
14780         (scan_prog_file) [COLLECT_EXPORT_LIST]: We will also need
14781         to import the frames themselves.
14783 Mon Feb 14 13:31:01 2000  Stan Cox  <scox@cygnus.com>
14784                           Jason Eckhardt  <jle@cygnus.com>
14786         * basic_block.h: Added prototype for reorder_basic_blocks.
14787         * toplev.c: Changes to add -freorder-blocks and graph dump after
14788         block reordering is done.
14789         * flow.c (reorder_block_def): New structure for use during block
14790         reordering.
14791         (REORDER_BLOCK_*): New macros to access members of above structure.
14792         (skip_insns_between_block, get_common_dest, chain_reorder_blocks,
14793         make_reorder_chain, fixup_reorder_chain, reorder_basic_blocks): New
14794         functions for block reordering.
14796 Mon Feb 14 11:24:44 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14798         * gcc.texi (Passes): Fix typo.
14799         * md.texi (Standard Names): Ditto.
14800         * tm.texi (Storage Layout): Ditto.
14802 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
14804         * cpplib.c (do_define): Only free the old definition if it
14805         actually had one.
14807 2000-02-13   Neil Booth  <NeilB@earthling.net>
14809         * cppfiles.c (read_and_prescan): When emitting deferred
14810         newlines, test speccase[] again instead of checking each
14811         possible whitespace character in turn.  When we encounter \r,
14812         look behind for \n first, then ahead.
14814 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
14816         * cse.c (cse_altered): New internal flag.
14817         (cse_insn): Set it if we changed an insn.
14818         (cse_main): Clear cse_altered before each basic block.
14819         Only garbage collect if cse_altered is true afterward.
14821 Sun Feb 13 14:12:28 2000  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
14823         * sparc/sol2.h (LIB_SPEC): Link -ldl if profiling.
14825 Sun Feb 13 13:21:55 2000  Jeffrey A Law  (law@cygnus.com)
14827         * combine.c (simplify_comparison): Fix typo.
14829 Sun Feb 13 12:57:52 2000  Neil Booth <NeilB@earthling.net>
14831         * prefix.c (concat, lookup_key): Use xmalloc and xrealloc
14832         consistently.
14834 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14836         * flow.c (flow_loop_tree_node_add): Use better algorithm by passing
14837         previously inserted node instead of root node.  Caller changed.
14839 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14841         * basic-block.h (FLOW_LOOP_FIRST_BLOCK, FLOW_LOOP_LAST_BLOCK): Delete.
14843 2000-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14845         * crtstuff.c (__do_global_ctors_aux, __reg_frame_ctor,
14846         __dereg_frame_dtor): Add prototype argument.
14848         * gthr-dce.h (__gthread_active_p, __gthread_once): Likewise.
14850         * gthr-posix.h (__gthread_active_p, __gthread_once): Likewise.
14852         * gthr-solaris.h (__gthread_active_p, __gthread_once): Likewise.
14854         * gthr-vxworks.h (__gthread_once): Likewise.
14856         * gthr-win32.h (__gthread_active_p, __gthread_once): Likewise.
14858 Sat Feb 12 01:44:26 MET 2000  Jan Hubicka  <jh@suse.cz>
14860         * i386.c (ix86_emit_restore_regs_using_mov): Break out from ...
14861         (ix86_expand_epilogue): ... here. Use mov instead of add to restore
14862         stack pointer in functions w/o saved registers, output LEAVE more often
14863         on TARGET_USE_LEAVE machines.
14865 2000-02-07  Dmitri Makarov  <dim@wrs.com> & Bernd Schmidt <bernds@redhat.com>
14867         * config/arm/arm.c (arm_init_cumulative_args); New function:
14868         Initlaise the CUMULATIE_ARGS strcuture for a function
14869         defintion.
14870         (arm_function_arg): New function: Determine where to place a
14871         function's argument.  Also handles deciding the function's
14872         call cookie.
14873         (current_file_function_operand): New function: Return true if
14874         the symbol is a function which has already been compiled.
14875         (arm_is_long_call_p): New function: Return true if the
14876         indicated function should be called via a long call.
14877         (arm_valid_type_attribute_p): New function: Return true if the
14878         attribute is a valid, arm specific, attribute.
14879         (arm_comp_type_attribute): New function: Return true if the
14880         two types have compatable, arm specific, attributes.
14882         * config/arm/arm.h (CUMULATIVE_ARGS): Redefine to be a
14883         structure.
14884         (FUNCTION_ARG): Redefine to call arm_function_arg.
14885         (FUNCTION_ARG_PARTIAL_NREGS): Redefine to use correct
14886         structure field.
14887         (INIT_CUMULATIVE_ARGS): Redefine to call
14888         arm_init_cumulative_args.
14889         (FUNCTION_ARG_ADVANCE): Redefine to use correct structure
14890         field.
14891         (SETUP_INCOMING_VARARGS): Redefine to use correct structure
14892         field.
14893         (ARM_MARK_NEARBY_FUNCTION): New macro: Mark already compiled
14894         functions.
14895         (ENCODE_SECTION): Add call to ARM_MARK_NEARBY_FUNCTION.
14896         (VALID_MACHINE_TYPE_ATTRIBUTE): Define.
14897         (COMP_TYPE_ATTRIBUTES): Define.
14899         * config/arm/arm.md (call): Call arm_is_long_call_p to decide
14900         if a long call is needed.
14901         (call_value): Call arm_is_long_call_p to decide if a long call
14902         is needed.
14903         (call_symbol): Call arm_is_long_call_p to decide if a long call
14904         is needed.
14906         * config/arm/arm-protos.h: Add prototype for arm_is_long_call_p.
14908 2000-02-11  Denis Chertykov  <denisc@overta.ru>
14910         * README.AVR: New file with information about the avr ports.
14911         * config/avr: New directory with avr port files.
14913 2000-02-11  Andreas Jaeger  <aj@suse.de>
14915         * fixinc/Makefile.in (FIXINC_DEFS): Remove unneeded @fixinc_defs@.
14917 2000-02-11  Zack Weinberg  <zack@wolery.cumb.org>
14919         * cpphash.c: Fix formatting, update commentary.
14920         (dump_definition): Take three separate arguments instead of a
14921         MACRODEF structure argument.
14922         * cpphash.h: Update prototype of dump_definition.
14923         * cppinit.c (cpp_finish): Update call of dump_definition.
14925         * cpplib.c (do_define): Always create new hash entry with
14926         T_MACRO type.  Remove redundant check for redefinition of
14927         poisoned identifier.  Update call of dump_definition.
14928         (do_undef): Don't call check_macro_name.  Rename sym_length to
14929         len.
14930         (do_error, do_warning): Don't use copy_rest_of_line or
14931         SKIP_WHITE_SPACE.
14932         (do_warning): Don't use pedwarn for the actual warning,
14933         only the notice about its not being in the standard.  (Fixes
14934         bug with #warning in system headers.)
14935         (do_ident): Stricter argument checking - accept only a single
14936         string after #ident.  Also, macro-expand the line.
14937         (do_xifdef): Use cpp_defined.  De-obfuscate.
14939         (do_pragma): Split out specific pragma handling to separate
14940         functions.  Use get_directive_token.  Update commentary.  Do
14941         not pass on #pragma once or #pragma poison to the front end.
14942         (do_pragma_once, do_pragma_implementation, do_pragma_poison,
14943         do_pragma_default): New.
14945 Feb 11 12:30:53 2000  Jeffrey A Law  (law@cygnus.com)
14947         * jump.c (jump_optimize_1): The first operand in a relational
14948         can be a CONST_INT.
14949         * optabs.c (emit_conditional_move): Handle relationals which
14950         have a known true/false result.
14952 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
14954         * function.c (thread_prologue_and_epilogue_insns): Don't insert
14955         a RETURN insn into a block which already ends with a jump.
14957 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
14959         * haifa-sched.c (BUF_LEN): Increase a lot.
14961 2000-02-11  Nick Clifton  <nickc@cygnus.com>
14963         * configure.in: Add tm_p_file specification for thumb targets.
14964         * configure: Regenerate.
14966         * config/arm/thumb-protos.h: New file: Prototypes for exported
14967         functions defined in thumb.c.
14969 2000-02-11  Robert Lipe  <robertl@sco.com>
14971         * Makefile.in (bootstrap-lean): Remove additional files.
14972         (bootstrap2-lean): Likewise.
14973         (VOL_FILES): List of files for above.
14975 2000-02-11  Nathan Sidwell  <nathan@acm.org>
14977         * cpphash.c (special_symbol): Remove spurious argument to
14978         cpp_lookup.
14980 2000-02-11  Joel Sherrill (joel@OARcorp.com>
14982         * configure.in: (i*86-*-rtems*): Swapped elf and coff
14983         stanzas.
14984         * configure: Rebuilt.
14986 2000-02-11  Rodney Brown  <RodneyBrown@pmsc.com>
14988         * pa-protos.h: Wrap function_arg_padding in TREE_CODE #ifdef.
14990 Fri Feb 11 02:59:05 2000  Jeffrey A Law  (law@cygnus.com)
14992         * pa.c, pa.h: Remove trigraph sequences within comments.
14994 Fri Feb 11 02:51:56 2000  Pavel Roskin <pavel_roskin@geocities.com>
14996         * invoke.texi (PPC Options): -mno-new-mnenomics -> -mold-mnemonics.
14998 Fri Feb 11 02:48:30 2000  Brad Lucier  (lucier@math.purdue.edu)
15000         * sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
15002 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15004         * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.
15006 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15008         * config/c4x/c4x.h (ASM_GLOBALIZE_LABEL): Use c4x_global_label.
15009         (ASM_OUTPUT_EXTERNAL): Use c4x_external_ref.
15010         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
15011         (ASM_FILE_END): Use c4x_file_end.
15012         * config/c4x/c4x.c (c4x_global_label): New function.
15013         (c4x_external_ref, c4x_file_end): Likewise.
15015         * config/c4x/c4x-protos.h (c4x_global_label): Add prototype.
15016         (c4x_external_ref, c4x_end_file): Likewise.
15018 2000-02-10  Zack Weinberg  <zack@wolery.cumb.org>
15020         * cppexp.c: Don't include cpphash.h.
15021         (parse_charconst, cpp_lex): Use cpp_defined.
15022         (cpp_lex): Use get_directive_token throughout.  Remove
15023         unnecessary cases from switch.  Move assertion-handling code
15024         down to OTHER case.
15025         (cpp_parse_expr): If we see '+' or '-', check the context to
15026         determine if they are unary or binary operators.  Streamline
15027         the jumps a bit.  Do not call skip_rest_of_line.
15029         * cpplib.c: Make skip_rest_of_line and cpp_skip_hspace
15030         static.  Export get_directive_token.  Update commentary.
15031         (cpp_defined): New function.
15032         (do_define): Remove reference to T_PCSTRING.  Call
15033         free_definition to release memory for old definition, when
15034         redefining a macro.
15035         (eval_if_expression): Set only_seen_white to 0 before calling
15036         cpp_parse_expr.  Call skip_rest_of_line after it returns.
15037         (cpp_read_check_assertion): Don't preserve a pointer into the
15038         token buffer across a call to cpp_get_token.
15040         * Makefile.in (cppexp.o): Don't depend on cpphash.h.
15041         * cppfiles.c (redundant_include_p): Use cpp_defined.
15042         * cpphash.c (free_definition): New function.
15043         (delete_macro): Use it.  Update commentary.
15044         * cpphash.h: Typedef HASHNODE here.  Prototype cpp_lookup and
15045         free_definition.
15046         * cpplib.h: Don't typedef HASHNODE here. Delete T_PCSTRING
15047         from enum node_type.  Prototype cpp_defined and get_directive_token.
15048         Don't prototype cpp_lookup, skip_rest_of_line, or cpp_skip_hspace.
15050         * fix-header.c (check_macro_names): Use cpp_defined.
15051         (read_scan_file): Set inhibit_warnings and inhibit_errors in
15052         the options structure.
15054 2000-02-10  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
15056         * c-pragma.c (maximum_field_alignment): Remove duplicate declaration.
15058 2000-02-10  Jason Merrill  <jason@casey.cygnus.com>
15060         * dwarf2out.c (add_abstract_origin_attribute): Check TREE_CODE (origin)
15061         rather than die->die_tag.
15063 Thu Feb 10 16:26:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15065         * combine.c (make_extraction, force_to_mode): Avoid warning on
15066         mixed-signedness conditionals.
15067         (make_field_assignment, nonzero_bits): Likewise.
15068         * expmed.c (store_fixed_bit_field): ALIGN arg now unsigned.
15069         (store_split_bit_field, extract_split_bit_field): Likewise.
15070         (extract_fixed_bit_field, store_bit_field,
15071         * expr.c: Change alignment to be unsigned everywhere.
15072         (move_by_pieces, store_constructor_field, store_constructor):
15073         Alignment parm is unsigned.
15074         (emit_block_move, emit_group_load, emit_group_store): Likewise.
15075         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
15076         (do_compare_rtx_and_jump): Likewise.
15077         (move_by_pieces_ninsns, clear_by_pieces): Likewise.
15078         Compare align with GET_MODE_ALIGNMENT.
15079         (expand_expr_unaligned): Pointer to alignment is pointer to unsigned.
15080         (get_inner_reference): Likewise.
15081         (copy_blkmode_from_reg, emit_push_insn): Remove unneeded casts.
15082         (expand_assignment): Local vars for alignment now unsigned.
15083         (store_constructor, store_field, expand_expr, do_jump): Likewise.
15084         (do_compare_and_jump): Likewise.
15085         (store_field): Call new function expr_align.
15086         * expr.h (emit_block_move, emit_group_load, emit_group_store):
15087         Alignment arg now unsigned.
15088         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
15089         (do_compare_rtx_and_jump, store_bit_field): Likewise.
15090         (extract_bit_field): Likewise.
15091         * fold-const.c (add_double): Add cast to eliminate signedness warning.
15092         * machmode.h (GET_MODE_ALIGNMENT): Result is unsigned.
15093         (get_best_mode): Alignment arg is unsigned.
15094         * rtl.h (move_by_pieces): Likewise.
15095         * store-layout.c (maximum_field_alignment, set_alignment):
15096         Now unsigned.
15097         (layout_decl): Alignment arg is now unsigned.
15098         Remove unneeded casts.
15099         (layout_record, layout_union, layout_type): Remove unneeded casts.
15100         Local alignment variables now unsigned.
15101         (get_best_mode): Alignment arg now unsigned.
15102         * tree.c (expr_align): New function.
15103         * tree.h (expr_align): Likewise.
15104         (maximum_field_alignment, set_alignment): Now unsigned.
15105         (get_inner_reference): Alignment argument is now pointer to unsigned.
15106         * varasm.c (assemble_variable): Add cast to eliminate warning.
15108 Thu Feb 10 12:56:47 2000  Jim Wilson  <wilson@cygnus.com>
15110         * expmed.c (store_bit_field): If op0 and fieldmode are the same size,
15111         then store directly into op0.
15113         * calls.c (expand_call): When emitting a NOTE_INSN_SETJMP, search for
15114         the CALL_INSN, and emit the note immediately after it.
15116 2000-02-10  Nick Clifton  <nickc@cygnus.com>
15118         * config/arm/thumb.md (epilogue): Include a (return) in the
15119         generated insn, and emit it using emit_jump_insn not
15120         emit_insn.
15122 Thu Feb 10 18:28:59 MET 2000  Jan Hubicka  <jh@suse.cz>
15124         * function.c (assign_temp): Change zero-sized arrays to size 1.
15125         * integrate.c (expand_inline_function): Do not update
15126         stack_alignment_needed
15127         * i386.c (compute_frame_size): Remove #ifdef PREFERRED_FRAME_BOUNDARY,
15128         add some sanity checking, remove optimization for function with
15129         zero frame size.
15131 2000-02-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15133         * flow.c (mark_regs_live_at_end): Delete unused variables.
15135         * ggc-page.c (ggc_page_print_statistics): bzero -> memset.
15137         * integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
15138         in macro FRAME_GROWS_DOWNWARD.
15140         * stmt.c (expand_end_bindings): Delete unused variable.
15142         * unroll.c (iteration_info): Mark parameter `loop' with
15143         ATTRIBUTE_UNUSED.
15145 2000-02-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
15147         * fixinc/server.c (load_data): Return NULL if the marker line is
15148         not found.
15149         (run_shell): If load_data returns NULL, retry the command once, in
15150         a new shell.
15152         * configure: Rebuilt.
15154 2000-02-09  Bruce Korb  <bkorb@gnu.org>
15156         * gcc/fixincludes:  ** DELETED **
15157         * gcc/fixcpp:  ** DELETED **
15158         * gcc/fixinc-nt.sed:  ** DELETED **
15159         * gcc/just-fixinc:  ** DELETED **
15160         * gcc/Makefile.in:  Removed out-dated commentary
15161         * gcc/configure.in: Removed fast-fixincludes disablement.
15162         * MAINTAINERS(Ian Taylor) moved to "Write after approval" group.
15164 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
15165         * function.c (thread_prologue_and_epilogue_insns): Uncomment
15166         last change.
15168 2000-02-09  Richard Henderson  <rth@cygnus.com>
15170         * jump.c (delete_insn): Don't delete user labels at -O0.
15172 2000-02-09  Robert Lipe  <robertl@sco.com>
15174         * Makefile.in (gen-protos): Don't depend on HOST_LIBDEPS.
15175         Don't link with HOST_LIBS.
15177 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15179         * configure.in: Correct --help text for --with-dwarf2.
15180         Put tm-dwarf2.h after other tm files, if it's requested.
15181         * configure: Regenerate.
15182         * config/tm-dwarf2.h: #undef PREFERRED_DEBUGGING_TYPE before
15183         defining it.
15185 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15187         * cpplib.h: Provide HASHNODE typedef and forward decl of
15188         struct hashnode only.  Kill cpp_hashnode typedef.  MACRODEF,
15189         DEFINITION, struct hashnode, struct macrodef, struct
15190         definition, scan_decls prototype, default defn of
15191         INCLUDE_LEN_FUDGE moved elsewhere.
15193         * cpphash.h: MACRODEF, DEFINITION, struct macrodef, struct
15194         definition, and struct hashnode moved here. Remove the unused
15195         'predefined' field from struct definition.  Replace the 'args'
15196         union with its sole member.  All users updated (cpphash.c).
15197         Delete HASHSTEP and MAKE_POS macros, and hashf prototype.  Add
15198         multiple include guard.
15200         * cpphash.c (hashf): Make static; use better algorithm; drop
15201         HASHSIZE parameter; return an unsigned int.
15202         (cpp_lookup): Drop HASH parameter.  PFILE parameter is
15203         used. Calculate HASHSIZE modulus here.
15204         (cpp_install): Drop HASH parameter. Calculate HASHSIZE modulus
15205         here.
15206         (create_definition): Drop PREDEFINITION parameter.
15207         * cpplib.c (do_define): Don't calculate a hash value here.
15208         Don't pass (keyword == NULL) to create_definition.
15210         * scan.h: Prototype scan_decls here.
15211         * cppfiles.c: Move INCLUDE_LEN_FUDGE default defn here.
15212         * cppexp.c, cppfiles.c, cppinit.c, cpplib.c, fix-header.c: All
15213         callers of cpp_lookup and cpp_install updated.
15215         * cpphash.c (macarg): Hoist all the flag diddling out of the
15216         function...
15217         (macroexpand): ... and out of the loop that calls macarg.
15218         Skip over the initial paren before macro arguments with
15219         cpp_get_non_space_token; point may be some distance before
15220         that paren.  Abort if it's not there.
15222         * cpplib.c (parse_clear_mark): Delete function.
15223         (parse_set_mark, parse_goto_mark): Make static.
15224         (ACTIVE_MARK_P): New macro.
15225         (skip_block_comment, skip_line_comment): Do not bump the line
15226         if ACTIVE_MARK_P is true.
15227         (cpp_pop_buffer): The buffer to be popped may not have an
15228         active mark.
15229         (cpp_get_token): When looking for the initial paren before
15230         macro arguments, only set a mark in a file buffer, Always
15231         return to that mark before proceeding to call macroexpand or
15232         return a NAME token.
15234         * cpplib.h: Remove prototypes of parse_set_mark,
15235         parse_clear_mark, parse_goto_mark.
15236         (struct cpp_options): Rename 'put_out_comments' to
15237         'discard_comments' and invert its sense.
15238         * cppinit.c, cpphash.c, cpplib.c: All users of
15239         put_out_comments changed to use discard_comments, with
15240         opposite sense.
15242 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
15244         * function.c (thread_prologue_and_epilogue_insns): Don't delete
15245         the edge from a block that both jumps and falls through to the
15246         fallthru block.
15248 2000-02-09  Scott Bambrough  <scottb@netwinder.org>
15250         * config/arm/arm.md (movsi): In PIC mode, make sure that a
15251         constant source address is legitimate.
15253 2000-02-09  Philip Blundell  <pb@futuretv.com>
15255         * config/arm/arm.c (legitimize_pic_address): Handle LABEL_REF
15256         correctly.
15258         * config/arm/arm.h (LEGITIMATE_CONSTANT_P): Allow anything when
15259         generating PIC.
15260         (LEGITIMATE_PIC_OPERAND): Disallow references to labels.
15262 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15264         * cpplib.c (cpp_define, cpp_undef): Make sure the stacked buffer
15265         ends with a newline and a NUL.  Don't be so clever manipulating
15266         strings.
15268 Wed Feb  9 14:18:08 MET 2000  Jan Hubicka  <jh@suse.cz>
15270         * reload1.c (reload) Align stack frame to cfun->stack_alignment_needed,
15271         not to BIGGEST_ALIGNMENT.
15273 2000-02-08  Geoff Keating  <geoffk@cygnus.com>
15275         * dwarf2.h (DW_CFA_GNU_negative_offset_extended): New constant.
15276         * dwarf2out.c (dwarf_cfi_name): Print name of new constant.
15277         (reg_save): Use DW_CFA_GNU_negative_offset_extended when needed.
15278         (output_cfi): Handle output of DW_CFA_GNU_negative_offset_extended.
15279         * frame.c (execute_cfa_insn): Handle
15280         DW_CFA_GNU_negative_offset_extended.
15282 2000-02-08  Richard Henderson  <rth@cygnus.com>
15284         * flow.c (tidy_fallthru_edges): Split out from ...
15285         (delete_unreachable_blocks): ... here.
15286         (find_basic_blocks): Use it.
15288 Tue Feb  8 15:51:50 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15290         * stmt.c (expand_decl): Do set RTX_UNCHANGING_P for TREE_READONLY.
15292 2000-02-08  Zack Weinberg  <zack@wolery.cumb.org>
15294         * Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
15295         (gen_protos.o): Don't depend on cpplib.h or cpphash.h.
15296         (fix-header.o): Don't depend on cpphash.h.
15298         * scan.c (hashstr): New function.
15299         * scan.h: Prototype it.
15300         * fix-header.c: Don't include cpphash.h.  Use hashstr.
15301         * gen-protos.c: Don't include cpphash.h or cpplib.h.  Use
15302         hashstr.  Report hash table statistics.  Add private
15303         definition of xrealloc.
15305 2000-02-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15307         * i386.h (TARGET_SWITCHES): Fix typo in option name.
15309 2000-02-08  Clinton Popetz  <cpopetz@cygnus.com>
15311         * function.c (thread_prologue_and_epilogue_insns): Don't replace
15312         jumps with returns unless they are jumps to the fallthru block.
15314 Tue Feb  8 07:53:55 2000  Jan Hubicka  <jh@suse.cz>
15316         * i386.md (addqi3_cc): Fix contraints.
15318 Tue Feb  8 01:39:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15320         * function.c (emit_return_into_block): Wrap in #ifdef HAVE_return.
15322 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
15324         * cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
15325         carriage return after a macro name.
15327 2000-02-07  Fred Fish  <fnf@be.com>
15329         * i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing
15330         so the gcc2_compiled symbol doesn't confuse BeOS debuggers.
15332 2000-02-07  Zack Weinberg  <zack@wolery.cumb.org>
15334         * cppfiles.c (deps_output): Count spacers in deps_column.
15336 2000-02-07  Neil Booth  <NeilB@earthling.net>
15338         * cppinit.c (initialize_dependency_output): If there is no
15339         suffix, don't try to look for known suffixes.  Use strrchr.
15340         (cpp_start_read): Remove duplicate initialization.
15342 Mon Feb  7 18:36:41 MET 2000  Jan Hubicka  <jh@suse.cz>
15344         * calls.c (compute_argument_block_size): New argument
15345         preferred_stack_boundary.
15346         (expand_call): update cfun->preferred_stack_boundary, update call of
15347         compute_argument_block_size
15348         (emit_library_call): Increate cfun->preferred_stack_boundary
15349         to PREFERRED_STACK_BOUNDARY
15350         (emit_library_call_value): Likewise.
15351         * explow.c (allocate_dynamic_stack_spave): Likewise.
15352         * function.c (prepare_function_start): Set
15353         cfun->preferred_stack_boundary
15354         * function.h (struct function): Add preferred_stack_boundary field.
15355         * integrate.c (expand_inline_function): Update
15356         cfun->preferred_stack_boundary and cfun->stack_alignment_needed.
15357         (copy_rtx_and_substitute): Align frame to stack_alignment_needed only.
15358         * i386.c (compute_frame_size): Use cfun->preferred_stack_boundary.
15360 2000-02-06  Zack Weinberg  <zack@wolery.cumb.org>
15362         * cpplib.c (my_strerror, cpp_error, cpp_error_with_line,
15363         cpp_error_from_errno, cpp_warning, cpp_warning_with_line,
15364         cpp_pedwarn, cpp_pedwarn_with_line,
15365         cpp_pedwarn_with_file_and_line): Move to cpperror.c.
15366         (cpp_print_file_and_line, v_cpp_error, v_cpp_warning,
15367         v_cpp_error_with_line, v_cpp_warning_with_line,
15368         cpp_message_from_errno, cpp_perror_with_name): Delete.
15370         * cpperror.c (cpp_print_containing_files): Take starting
15371         buffer as argument.
15372         (cpp_file_line_for_message): Rename to cpp_print_file_and_line.
15373         (v_cpp_message): Now called directly by all entry points.
15374         Remove -1 case.
15375         (cpp_pfatal_with_name, cpp_message): Delete.
15376         (cpp_notice_from_errno, cpp_ice): New functions.
15377         (cpp_notice): Is now for reporting error conditions, just
15378         without an associated file.
15379         (cpp_error, cpp_error_with_line): Don't do anything if
15380         opts->inhibit_errors is on.
15381         (cpp_pedwarn_with_file_and_line): Take column argument also.
15383         * cpplib.h: Update prototypes of exported functions.
15384         (struct cpp_options): Add inhibit_errors.
15386         * cppalloc.c, cppfiles.c: Use fprintf not cpp_notice for
15387         non-error messages.  Include intl.h.
15389         * cppinit.c, cppmain.c: Likewise.  Also, use
15390         cpp_notice_from_errno instead of cpp_perror_with_name or
15391         cpp_pfatal_with_name, and cpp_notice instead of cpp_message.
15393         * cppexp.c, cpphash.c, cppinit.c, cpplib.c: Use cpp_ice to
15394         report internal errors.
15396         * cpplib.c (do_define): Switch bcopy to memcpy.
15397         Give cpp_pedwarn_with_file_and_line a dummy column argument.
15399         * cpplib.c (copy_rest_of_line): Revert previous change: don't
15400         bail out early if we hit a line comment.
15402 2000-02-06  Richard Henderson  <rth@cygnus.com>
15404         * flow.c (flow_delete_insn, make_edge, remove_edge): Export.
15405         * basic-block.h: Declare them.
15406         * emit-rtl.h (active_insn_p): New.
15407         (next_active_insn, prev_active_insn): Use it.
15408         * rtl.h: Declare it.
15409         * function.c (emit_return_into_block): New.
15410         (thread_prologue_and_epilogue_insns): Insert return insns instead
15411         of epilogues when possible.
15412         * jump.c (jump_optimize_1): Remove code to insert a return insn
15413         on the fallthru to the exit block.
15415         * i386.c (ix86_can_use_return_insn_p): Fail for large poped args
15416         and for non-empty stack frames.
15417         * i386.md (return): Expand to return-pop as needed.
15419 2000-02-06  Richard Henderson  <rth@cygnus.com>
15421         * simplify-rtx.c (simplify_relational_operation): Canonicalize
15422         constant to op1 for testing.
15424 2000-02-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15426         * config/c4x/c4x.md (*ldi_on_overflow): New pattern.
15427         (fixuns_truncqfqi2): Use it.
15429 2000-02-06  Richard Henderson  <rth@cygnus.com>
15431         * i386.c (ix86_agi_dependant): Handle pro_epilogue_adjust_stack
15432         as a TYPE_LEA insn.
15434         * i386.md (widening and peepholes): Mask the constant instead of
15435         using gen_lowpart.
15437 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
15439         * cppfiles.c (read_and_prescan) [case SPECCASE_QUESTION]: Bump
15440         input pointer before possibly branching off to the backslash
15441         code.
15442         * cpphash.c (macroexpand): Correctly delete \r escapes when
15443         stringifying parameters.
15444         * cpplib.c (copy_rest_of_line): Go directly to skip_block_comment
15445         if we can; bail out early if we hit a line comment.
15446         (handle_directive): Treat '# 123' in an .S file just like
15447         '# <punctuation>'.  Discard the shifted '#' if we hit '#\n'.
15448         Return 1 for '# not_a_directive'.
15449         (get_directive_token): Pop macro buffers here, so that
15450         cpp_get_token can't sneakily move past a newline.
15451         Add sanity checks.
15452         (cpp_get_token): goto randomchar if handle_directive returns 0.
15454         * cppalloc.c: Update copyright.
15455         * cpplib.c: Merge all the static function prototypes into one
15456         block.
15457         * cpplib.h: Remove #if 0 block.
15459         * cpperror.c: Remove #ifdef EMACS block.
15460         * cppmain.c: Likewise.
15461         * cpphash.c: Remove #if 0 blocks.
15462         * cppinit.c: Remove #if 0 blocks, and the -lint option.
15463         * cpplib.c: Remove #if 0 blocks and code referencing
15464         pcp_inside_if or for_lint.  Remove duplicate error message.
15465         Fix error messages for #else after #else or #elif.  Reformat.
15466         Remove archaic TODO list.
15467         * cpplib.h: Remove pcp_inside_if and for_lint flags.
15469 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
15471         * i386/osf1elf.h: Add missing backslash to multiline string.
15473 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15475         * longlong.h [sparc] (udiv_qrnnd): Avoid stringifying macro arg.
15477 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15479         * Makefile.in (c-common.o): Depend on $(EXPR_H).
15481         * c-common.c: Include expr.h.
15483         * c-pragma.c (mark_align_stack): Add prototype.
15485         * caller-save.c (add_stored_regs): Likewise.
15487         * combine.c (record_promoted_value): Likewise.
15489         * i386.c (ix86_sched_reorder_pentium, ix86_sched_reorder_ppro):
15490         Likewise.
15492         * cppinit.c (new_pending_define): Likewise.
15494         * cpplib.c (skip_block_comment, skip_line_comment): Likewise.
15496         * dwarf2out.c (save_rtx, splice_child_die, reverse_die_lists,
15497         AT_class, AT_flag, AT_int, AT_unsigned, AT_string, AT_ref, AT_loc,
15498         AT_addr, AT_lbl, get_AT_ref, free_AT, free_die, local_scope_p,
15499         class_scope_p): Likewise.
15501         * dwarf2out.h (dwarf2out_set_demangle_name_func,
15502         dwarf2out_add_library_unit_info): Likewise.
15504         * ggc.h (ggc_page_print_statistics): Likewise.
15506         * haifa-sched.c (propagate_deps): Likewise.
15508         * reg-stack.c (next_flags_user, record_label_references): Likewise.
15510         * rtl.h (set_stack_check_libfunc): Likewise.
15512         * toplev.h (set_fatal_function): Likewise.
15514         * toplev.c (set_fatal_function): Delete prototype.
15516         * diagnostic.c: Deconstify functions returning malloc'ed ptrs.
15518 2000-02-05  Geoff Keating  <geoffk@cygnus.com>
15520         * ginclude/ppc-asm.h (FUNC_START): Use USER_LABEL_PREFIX.
15521         (FUNC_END): Likewise.
15523 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15525         * caller-save.c: Include tm_p.h.
15527 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15529         * Makefile.in (libgcc.a): Add $(LIBGCC1) to libgcc.a after $(LIBGCC2).
15531 2000-02-04  Neil Booth  <NeilB@earthling.net>
15533         * cccp.c (main): Check 'dir' for a NULL pointer before passing
15534         it to strcmp.
15536 2000-02-04  Zack Weinberg  <zack@wolery.cumb.org>
15538         * recog.h: Remove NO_MD_PROTOTYPES ifdefs.
15539         * genflags.c: Use the max_operand_1 logic from genemit.c to
15540         calculate how many arguments gen_insn prototypes have.  Remove
15541         NO_MD_PROTOTYPES ifdefs from the generated file.
15542         * genoutput.c: Don't define NO_MD_PROTOTYPES in the generated
15543         file.  Cast gen_insn initializers to insn_gen_fn.
15544         * config/alpha/vms.h: Don't define NO_MD_PROTOTYPES.
15545         * gcc.texi: Remove documentation of NO_MD_PROTOTYPES.
15547 2000-02-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15549         * fixinc/Makefile.in (HDR): Add machname.h.
15550         (clean): Likewise.
15552 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15554         * config/c4x/c4x.h (c4x_compare_op0, c4x_compare_op1): Move ...
15555         (c4x_regclass_map, c4x_caller_save_map, c4x_rpts_cycles): Ditto.
15556         (c4x_cpu_version): Ditto.
15557         * config/c4x/c4x-protos.h: ... here.
15559 2000-02-04  Jason Merrill  <jason@casey.cygnus.com>
15561         * dwarf2out.c (add_abstract_origin_attribute): Don't call
15562         gen_abstract_function on our context if we're a nested function.
15564 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15566         * config/c4x/c4x.md (fixuns_truncqfqi2): Rewrite.
15567         * config/c4x/libgcc.S (ufix_truncqfhi2n): Fix.
15569 2000-02-04  Bruce Korb  <bkorb@gnu.org>
15571         * fixinc/genfixes(machname.h):
15572         Move the functionality from gen-machine.h into this file.
15573         UNdef MN_NAME_PAT if there are no names to change.
15574         Also, be a little kinder when AutoGen is not present.
15576         * fixinc/Makefile.in(machname.h):
15577         Change the generation rule to use genfixes.
15579         * fixinc/fixfixes.c(machine_name):
15580         machine_name_fix's functionality now dependent upon whether
15581         MN_NAME_PAT is defined.
15583         * fixinc/fixtests.c(machine_name):
15584         ditto.
15586         * fixinc/fixlib.c(mn_get_regexps): conditional on definition
15587         of MN_NAME_PAT.
15589         * fixinc/fixlib.h(mn_get_regexps):
15590         ditto
15592         * fixinc/gen-machine.h: DELETED
15594 2000-02-04  Jan Hubicka  <jh@suse.cz>
15595             Richard Henderson  <rth@cygnus.com>
15597         * i386.c (SAVE_REGS_FIRST): Remove.
15598         (ix86_initial_elimination_offset): Handle only SAVE_REGS_FIRST mode.
15599         (ix86_compute_frame_size): Likewise.
15600         (ix86_expand_prologue): Likewise.  Use pro_epilogue_adjust_stack.
15601         (ix86_emit_restore_regs): Remove.
15602         (ix86_emit_epilogue_esp_adjustment): Use pro_epilogue_adjust_stack
15603         when a frame pointer is in use.
15604         (ix86_expand_epilogue): Handle only SAVE_REGS_FIRST mode.  Use mov
15605         instead of pop to restore a register when profitable; emit leave
15606         when profitable.
15607         (ix86_attr_length_default): Handle pro_epilogue_adjust_stack
15608         as a TYPE_LEA insn.
15609         (ix86_adjust_cost): Handle pro_epilogue_adjust_stack as TYPE_ALU.
15610         * i386.md (prologue_allocate_stack): Remove.
15611         (epilogue_deallocate_stack): Remove.
15612         (pro_epilogue_adjust_stack): New.
15614 2000-02-04  Richard Henderson  <rth@cygnus.com>
15616         * function.c (diddle_return_value): Rework to use a callback function.
15617         Use current_function_return_rtx if it's been set up.
15618         (do_clobber_return_reg, clobber_return_register): New.
15619         (do_use_return_reg, use_return_register): New.
15620         (expand_function_end): Use them.
15621         * stmt.c (expand_null_return): Likewise.
15622         * function.h: Declare them.
15623         * flow.c (mark_regs_live_at_end): Use diddle_return_value.
15624         (mark_reg): Change arguments as appropriate for callback.
15625         * integrate.c (expand_inline_function): Revert 19 Jan change.
15627 Fri Feb  4 20:25:42 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15629         * tm.texi (Values in Registers): Fix typo: "fo" "for".
15630         (Misc): Say the scheduler, not the Haifa scheduler.
15632 2000-02-04  Clinton Popetz  <cpopetz@cygnus.com>
15634         * jump.c (mark_jump_label): Add in_mem param, check SYMBOL_REFs
15635         when in_mem is set.  Update all callers.
15637 2000-02-04  Richard Henderson  <rth@cygnus.com>
15639         * i386/openbsd.h (INT_ASM_OP): Define.
15641 Fri Feb  4 10:51:30 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15643         * tm.texi: Fix various typos.
15645 Thu Feb  3 17:17:32 2000  Steve Ellcey <sje@cup.hp.com>
15647         * config/pa/pa-hpux11.h (LIB_SPEC): Correct typo in !p case.
15648         (MD_STARTFILE_PREFIX_1): New macro.
15650 Thu Feb  3 15:08:13 MET 2000  Jan Hubicka  <jh@suse.cz>
15652         * i386.md (movstrsi, clrstrsi): Support variable sized copies, align
15653         destination when needed.
15654         (strmovsi, strsetsi): New expander.
15655         (strmovsi_1, strsetsi_1): New pattern.
15656         * i386.h (MASK_NO_ALIGN_STROP, MASK_INLINE_ALL_STROP,
15657         TARGET_ALIGN_STRINGOPS, TARGET_INLINE_ALL_STRINGOPS): New macros.
15658         (TARGET_SWITCHES) Add align-stringops and inline-all-stringops.
15659         * invoke.texi (align-stringops, inline-all-stringops): Document.
15661 Wed Feb  2 23:04:47 2000   Krister Walfridsson <cato@df.lth.se>
15663         * i386/netbsd.h (INT_ASM_OP): Define.
15665 2000-02-02  Zack Weinberg  <zack@wolery.cumb.org>
15667         * cpplib.h (cpp_reader): Add new flag, no_directives.
15668         * cpphash.c (macarg): Set it.
15669         * cpplib.c (handle_directive): If no_directives is on and we
15670         find a directive, issue an error and discard the line.
15672 Wed Feb  2 13:07:10 2000  Jim Wilson  <wilson@cygnus.com>
15674         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Delete 'E' check for
15675         FP constants.  Add ! TARGET_FPU check for FP constants.
15677 2000-02-02  Clinton Popetz  <cpopetz@cygnus.com>
15679         * flow.c (find_basic_blocks): Don't kill label_value_list
15680         here.
15681         (cleanup_cfg): Kill it here.
15683 Wed Feb  2 08:12:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15685         * expr.c (store_field): Ensure ALIGN is no stricter than the
15686         alignment of EXP.
15688 2000-02-02  Richard Henderson  <rth@cygnus.com>
15690         * jump.c (delete_insn): Partially revert 19 Jan change;
15691         don't convert unused code labels to notes at -O0.
15693 2000-02-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15695         * toplev.c (rest_of_compilation): Run rebuild_jump_labels after
15696         split_all_insns to recreate REG_LABEL notes for flow2 pass.
15698 2000-02-01  Richard Henderson  <rth@cygnus.com>
15700         * i386.c (general_no_elim_operand): New.
15701         (nonmemory_no_elim_operand): New.
15702         (ix86_expand_move): Copy eliminable operands before a push.
15703         * i386-protos.h: Declare new functions.
15704         * i386.h (CAN_ELIMINATE): Simplify.
15705         (PREDICATE_CODES): Update.
15706         * i386.md (push insns): Don't allow eliminable register operands.
15708 2000-02-01  Richard Henderson  <rth@cygnus.com>
15710         * flow.c (mark_regs_live_at_end): Follow expand_function_end and
15711         replace BLKmode with DECL_RTL's mode.
15713 2000-02-01  Zack Weinberg  <zack@wolery.cumb.org>
15715         * frame.c (find_fde): Convert for loop to do-while so compiler
15716         sees it's always executed at least once.
15717         * libgcc2.c (BBINBUFSIZE): Kill.
15718         (__bb_init_prg): Use fgets.
15719         (__bb_exit_trace_func): Don't paste strings.
15720         * unroll.c (unroll_loop): Initialize unroll_type, not
15721         unroll_number, and tweak logic to match.
15723         * i386.c (ix86_expand_int_movcc): Add explicit 'return 0' in
15724         all failure paths.
15725         (ix86_flags_dependant): Likewise.  Disentangle control flow.
15726         (ix86_sched_reorder): Break guts out to
15727         ix86_sched_reorder_pentium and ix86_sched_reorder_ppro.
15728         (ix86_sched_reorder_ppro): Initialize pair2 and insnp before
15729         any possible use.
15731         * i386.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Don't
15732         use string concatenation.  Don't save and restore esi.
15734         * fixinc/Makefile.in (fixincl.sh): Don't depend on inclhack.def.
15735         (machname.h): Remove script to separate file.  Use two-step
15736         sequence so target is not created if script fails.
15737         * fixinc/gen-machname.h: New file.  Handle case where no non-reserved
15738         identifiers are defined.
15739         * fixinc/fixlib.c (mn_get_regexps): Return a flag: if MN_NAME_PAT is
15740         an empty string, machine_name doesn't need to do anything at
15741         all.
15742         (is_cxx_header): Add more cases to regexp.
15743         * fixinc/fixlib.h: Update prototype.
15744         * fixinc/fixtests.c, fixinc/fixfixes.c: Update callers of
15745         mn_get_regexps.
15746         * fixinc/fixincl.c: Define NO_BOGOSITY.
15748         * fixinc/inclhack.def (no_double_slash, else_endif_label): Ifdef out.
15749         (hp_sysfile): Add missing comma.
15750         (math_exception): Put the wrapper ifdefs at the beginning and
15751         the end of the file.
15752         * fixinc/fixincl.x, fixinc/inclhack.sh: Regenerate.
15754 2000-02-01  Richard Henderson  <rth@cygnus.com>
15756         * sparc.c (fp_zero_operand): Turn into a normal predicate.
15757         Use CONST0_RTX.  Update all callers.
15758         * sparc.h, sparc-protos.h: Update accordingly.
15759         * sparc.md (fp mov insns): Use fp_zero_operand directly
15760         where applicable.
15762 Wed Feb  2 02:59:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15764         * tm.texi (Values in Registers): Fix typo in HARD_REGNO_NREGS
15765         example.
15767 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15769         * Makefile.in (specs.ready): New target.
15770         (fixinc.sh): Depend on `specs.ready' instead of `specs'.
15772 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15774         * fixinc.irix: Use unique filenames for writing into /tmp,
15775         * fixinc.ptx: Likewise.
15776         * fixinc.sco: Likewise.
15777         * fixinc.svr4: Likewise.
15778         * fixinc.winnt: Likewise.
15780 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15782         * tsystem.h: New file.
15784         * Makefile.in (libgcc2.a, stmp-multilib, crtbegin.o, crtend.o,
15785         s-crtS): Depend on tsystem.h.
15787         * crtstuff.c: Include tsystem.h.
15788         * frame.c: Likewise.
15789         * libgcc2.c: Likewise.
15791 Tue Feb  1 19:53:27 CET 2000  Jan Hubicka  <jh@suse.cz>
15793         * builtins.c (expand_builtin_memset): Expand for variable sized
15794         lengths too.
15796 2000-02-01  David Billinghurst <David.Billinghurst@riotinto.com.au>
15798         * config/mips/iris6.h (SUBTARGET_ASM_SPEC) : Default ISA based
15799         on ABI.
15801 Tue Feb  1 00:57:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15803         * dwarfout.c (SHORT_TYPE_SIZE): Correct default.
15805         * tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE.
15807 2000-01-31  Chandra Chavva <cchavva@cygnus.com>
15809         * combine.c (try_combine) [HAVE_cc0]: Trying to check the missed
15810         case 3->2 combining (combining with splitting) in which 2 is CC0
15811         setter/user and 3 is user. The rest of cases 2->1 and 3->2 are
15812         checked at the begining of the function with the aid of calling
15813         function 'can_combine_p'.
15815 2000-01-31  Dave Brolley  <brolley@redhat.com>
15817         * cccp.c (struct argdata): Redeclare 'newlines' field as 'int'.
15819 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
15821         * jump.c (redirect_jump): Move a NOTE_INSN_FUNCTION_END to the
15822         new label.
15824 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15826         * gansidecl.h (PROTO, VPROTO, PVPROTO): Delete macros.
15828         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit):
15829         PROTO -> PARAMS.
15831 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
15833         * i386/386bsd.h, i386/beos-pe.h, i386/bsd386.h, i386/crtdll.h,
15834         i386/cygwin.h, i386/dgux.h, i386/djgpp-rtems.h, i386/djgpp.h,
15835         i386/freebsd.h, i386/gnu.h, i386/i386-aout.h, i386/i386-coff.h,
15836         i386/i386-interix.h, i386/i386elf.h, i386/linux.h, i386/lynx-ng.h,
15837         i386/lynx.h, i386/mach.h, i386/mingw32.h, i386/moss.h,
15838         i386/netbsd.h, i386/next.h, i386/openbsd.h, i386/osf1elf.h,
15839         i386/ptx4-i.h, i386/rtems.h, i386/rtemself.h, i386/sco.h,
15840         i386/sequent.h, i386/sun.h, i386/sysv4.h, i386/uwin.h, i386/vsta.h,
15841         i386/vxi386.h, i386/win-nt.h, i386/win32.h:
15842         Remove -Di386 -Acpu(i386) -Amachine(i386) from CPP_PREDEFINES.
15844         * i386/osf1elf.h, i386/scodbx.h, i386/seq-sysv3.h, i386/sysv5.h:
15845         Add %(cpp_cpu) to CPP_SPEC.
15847         * i386/osf1elf.h, i386/osfelf.h, i386/osfrose.h:
15848         Add %(cc1_cpu) to CC1_SPEC.
15850 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
15852         * c-decl.c (c_decode_option): Accept optional numeric argument to
15853         -Wformat and set warn_format.
15854         * c-common.c: Don't emit warning about non-constant printf format
15855         string unless warn_format > 1.
15857 2000-01-30  Richard Henderson  <rth@cygnus.com>
15859         * alpha.md (return_internal): Allow after reload only.
15861 2000-01-30  Richard Henderson  <rth@cygnus.com>
15863         * i386.c (ix86_compute_frame_size): Omit padding1 if the
15864         local frame size is zero.
15866 2000-01-30  Richard Henderson  <rth@cygnus.com>
15868         * alpha.c (alpha_expand_epilogue): Don't emit the return insn.
15869         * alpha.h (EPILOGUE_USES): New.  Mark $26 live.
15870         * alpha.md (return): Turn into an expander.
15871         (return_internal): Don't use $26.
15872         (epilogue): Emit the return insn.
15874 2000-01-30  Richard Henderson  <rth@cygnus.com>
15876         * alpha.md (negtf2, abstf2): Fix word order thinko.
15877         (extendsftf2): New.
15878         (trunctfsf2): Avoid intermediate rounding errors.
15880 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
15882         * cppfiles.c (find_position): Drop 'colp' argument, return the
15883         new line base.
15884         (read_and_prescan): Adjust to match.  Don't ever manipulate
15885         line or line_base except via find_position.
15887 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
15889         * c-parse.in: Apply Ulrich's changes from c-parse.y.
15890         * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
15891         Regenerate.
15893 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
15895         * cpperror.c (cpp_file_line_for_message): If 'line' is zero,
15896         just print "<command line>".  If 'filename' is null or an
15897         empty string, print "<stdin>" for the filename.
15898         * cpplib.c (do_define): Don't print the 'location of the
15899         previous definition' message if we're still parsing the
15900         command line.
15901         (cpp_pedwarn_with_file_and_line): Always call
15902         cpp_file_line_for_message.
15904 2000-01-29  Mark Mitchell  <mark@codesourcery.com>
15906         * flow.c (mark_regs_live_at_end): Fix typo.
15908 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
15910         * c-common.c: Adjust variable names, comments, help strings to c99.
15911         * c-lex.c: Likewise.
15912         * c-parse.y: Likewise.
15913         * c-tree.h: Likewise.
15914         * cccp.c: Likewise.
15915         * cpplib.h: Likewise.
15916         * c-decl.c: Likewise.  Recognize options with names "*99" as well.
15917         * cppinit.c: Likewise.
15919 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15921         * c4x.h (INIT_TARGET_OPTABS): Add all missing local optab entries.
15922         * c4x.c: Define the optab rtx values.
15923         (c4x_add_gc_roots): Add the ggc roots for these optab rtx values.
15924         (c4x_emit_libcall): Use new optab rtx values.
15925         (c4x_emit_libcall3): Likewise.
15926         (c4x_emit_libcall_mulhi): Likewise.
15927         * c4x-protos.h: Add prototypes for optab rtx values and change
15928         prototypes for above c4x_emit_libcall functions.
15930 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15932         * c4x.c (c4x_output_ascii): Restrict line length of output when TI
15933         syntax is used.
15934         (c4x_function_prologue): Use regnames intead of float_reg_names when
15935         TI syntax is used.
15936         (c4x_function_epilogue): Likewise.
15937         (c4x_print_operand): Likewise.
15938         * c4x.h (HOST_WIDE_INT_PRINT_HEX): Redefine.
15939         * c4x.md (set_high): Disable for TARGET_TI.
15941 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15943         * c4x.h (PREFERRED_RELOAD_CLASS): Change to restrict the reloading
15944         of framepointer + constant to ADDR_REGS class.
15945         * c4x.md (addqi3, addqi3_noclobber_reload): Update.
15946         * c4x.c (std_or_reg_operand): New function.
15947         * c4x-protos.h (std_or_reg_operand): Prototype it.
15949 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15951         * t-c4x: Change qi,qf,di,df into si,sf,hi,hf to generate same
15952                 object names as libgcc2.c.
15953         * libgcc.S: Use newly defined names.
15955 Fri Jan  7 19:48:04 CET 2000  Jan Hubicka  <jh@suse.cz>
15956         * sbitmap.c (sbitmap_first_set_bit, sbitmap_last_set_bit): New
15957         function.
15958         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit): Declare.
15959         * basic_block.h (FLOW_LOOP_FIRST_BLOCK): New macro.
15960         (FLOW_LOOP_LAST_BLOCK): Likewise.
15962 2000-01-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15964         * basic-block.h (struct loop): New fields 'first' and 'last'.
15965         * flow.c (flow_loops_find): Compute loop->first and loop->last.
15966         (flow_loops_dump): Use loop->first to check for NOTE_INSN_LOOP_BEG
15967         and loop->last to check for NOTE_INSN_LOOP_END.
15969 Fri Jan 28 10:57:58 2000  Jason Eckhardt  <jle@cygnus.com>
15971         * predict.c (estimate_probability): Use the new FIRST and LAST fields
15972         of the loop descriptor rather than HEADER and LATCH. Also added
15973         missing break statements as well making some coding style modifications
15974         as suggested by Michael Hayes.
15976 2000-01-28  Richard Henderson  <rth@cygnus.com>
15978         * flow.c (find_basic_blocks): Remove do_cleanup argument.
15979         Break out that code ...
15980         (cleanup_cfg): ... here.
15981         (commit_one_edge_insertion): Detect a return instruction being
15982         emitted to an edge.  Emit a barrier following; clear fallthru.
15983         (commit_edge_insertions): Verify CFG consistency.
15984         * function.c (expand_function_start): Kill unused variable.
15985         (expand_function_end): Likewise.
15986         (thread_prologue_and_epilogue_insns): Use insert_insn_on_edge
15987         to insert the epilogue.
15989         * gcse.c (gcse_main): Adjust for find_basic_blocks change.
15990         (delete_null_pointer_checks): Likewise.
15991         * output.h: Likewise.
15992         * reg-stack.c (reg_to_stack): Likewise.
15993         * toplev.c (rest_of_compilation): Likewise.  Run
15994         thread_prologue_and_epilogue_insns after rebuilding the CFG.
15996 2000-01-28  Richard Henderson  <rth@cygnus.com>
15998         * Makefile.in (flow.o): Revert 24 Jan change.
15999         * flow.c (mark_regs_live_at_end): Likewise.  Force BLKmode
16000         FUNCTION_VALUE result to DECL_RESULT's mode.
16002         * haifa-sched.c (schedule_insns): Don't recompute reg info
16003         after reload.
16005 2000-01-28  Zack Weinberg  <zack@wolery.cumb.org>
16007         * configure.in: Make --enable-cpplib the default.
16008         * configure: Regenerate.
16009         * gcc.dg/990119-1.c: No longer expected to fail.
16011 2000-01-28  Bernd Schmidt  <bernds@cygnus.co.uk>
16013         * jump.c (jump_optimize_1): Delete an optimization that is also done
16014         by merge_blocks in flow.
16016 2000-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16018         * diagnostic.c (build_message_string, output_printf,
16019         line_wrapper_printf): Add ATTRIBUTE_PRINTF_*.
16020         (build_location_prefix): Fix non-literal format string.
16022 2000-01-27  Richard Henderson  <rth@cygnus.com>
16024         * alpha.md (trunctfsf2): New.
16026 2000-01-27  Andrew Hobson  <ahobson@eng.mindspring.net>
16028         * configure.in (alpha-dec-osf5): Enable MASK_SUPPORT_ARCH.
16030 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
16032         * cppinit.c (cpp_handle_option): Recognize C++ comments under
16033         -std=gnu89.
16034         * cpplib.c (skip_block_comment, skip_line_comment): Split code
16035         out of...
16036         (skip_comment) ... here.  Permit C++ comments in system
16037         headers always.  Warn about C++ comments in user code under
16038         -std=gnu89 -pedantic.
16039         (copy_comment): Use skip_comment.
16040         (cpp_skip_hspace, cpp_get_token): skip_comment can no longer
16041         return EOF.
16042         (consider_directive_while_skipping, do_else, do_endif): Call
16043         validate_else unconditionally.
16044         (validate_else): Check CPP_PEDANTIC here.  Accept non-comment
16045         text after the conditional in a system header.
16046         * cpplib.h (struct cpp_buffer): Add flag
16047         warned_cplusplus_comments.
16049 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
16051         * emit-rtl.c (unshare_all_rtl): Unshare virtual parameters too.
16052         Use unshare_all_rtl_1.
16053         (unshare_all_rtl_again): New function.
16054         (unshare_all_rtl_1): New function split out of unshare_all_rtl.
16056         * function.c (purge_addressof_1): Use unshare_all_rtl_again
16057         rather than resetting the 'used' flags ourself.
16059         * toplev.c (rest_of_compilation): Add current_function_decl
16060         to the unshare_all_rtl call.
16061         * tree.h: Prototype unshare_all_rtl.
16062         * rtl.h: Prototype unshare_all_rtl_again here.
16064 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
16066         * genoutput.c (output_prologue): Include ggc.h in generated
16067         files.
16068         * Makefile.in (insn-output.o): Depends on ggc.h.
16070 2000-01-27  Ian Dall  <ian@sibyl.beware.dropbear.id.au>
16071             Hans-Peter Nilsson  <hp@bitrange.com>
16073         * ns32k/xm-ns32k.h (memcpy, memset, memcmp): Delete.
16074         Remove redundant include of xm-ns32k.h.
16075         * ns32k/xm-genix.h (memcpy, memset, memcmp): Add definitions.
16076         Remove redundant include of xm-ns32k.h.
16077         * ns32k/xm-netbsd.h (memcpy, memset, memcmp): No longer undefine.
16078         Remove redundant include of xm-ns32k.h.
16079         * ns32k/netbsd.h (TARGET_DEFAULT): Enable multiply-add instructions.
16081         * ns32k/ns32k.h: Update comment on multiply-add instructions.
16082         (TARGET_SWITCHES): Add documentation strings.
16083         (DWARF_FRAME_REGNUM): Override default definition.
16084         (REG_CLASS_CONTENTS): Add comments.
16085         (SUBSET_P): Format to reduce line length.
16086         (SMALL_REGISTER_CLASSES): Make a run time option.
16087         (GO_IF_NONINDEXED_ADDRESS): Reformat.
16088         (GO_IF_LEGITIMATE_ADDRESS): Ensure that cfun is non NULL before
16089         dereferencing it.  Braces to avoid "ambiguous else" were misplaced.
16090         (regclass_map): fix typo in comment.
16091         * ns32k/ns32k.c: Add spaces before parentheses for consistant style.
16092         Prefer gen_rtx_FOO(...) to gen_rtx(FOO,...).
16093         (trace, reg_or_mem_operand): Delete, unused function.
16094         (calc_address_cost): Small offsets are cheaper than large ones.
16095         (expand_block_move): Generate more efficient code when bytes is a
16096         known at compile time.
16097         * ns32k/ns32k.md: Alternate constraints for multiply-add instructions.
16098         (udivmodsi4, udivmodhi4, udivmodqi4): Use nonimmediate_operand
16099         instead of reg_or_mem_operand.
16101         * ns32k/ns32k.md: Use nonimmediate_operand or stricter for outputs,
16102         not general_operand.  Similarly use "=rm" or stricter, not "=g".
16103         For input operands, use stricter constraints than "g" if not
16104         general_operand.  Similarly use stricter predicate than
16105         "general_operand" when stricter constraints than "g" are present,
16106         except for matching constraints.
16107         (movstrsi): Use "memory_operand" for operands 0 and 1.
16108         (truncsiqi2, truncsihi2, trunchiqi2): Remove.
16109         (udivmoddisi4_internal): Use nonimmediate_operand for operand 0,
16110         not reg_or_mem_operand.
16111         (udivmoddisi4): Ditto.
16112         Use nonimmediate_operand for operand 1, not reg_or_mem_operand.
16113         Use nonimmediate_operand for operand 3, not register_operand.
16114         (udivmoddiqi4_internal): Use register_operand for operand 1, not
16115         reg_or_mem_operand.
16117 2000-01-27  Fred Fish  <fnf@be.com>
16119         * gthr-posix.h: Fix typo; compatibily -> compatibility.
16120         * gthr-single.h: Likewise.
16121         * gthr-solaris.h: Likewise.
16122         * gthr-vxworks.h: Likewise.
16123         * gthr-win32.h: Likewise.
16124         * gthr.h: Likewise.
16126 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
16128         * cppinit.c: Add " (cpplib)" to end of string printed by
16129         -v / --version.
16131 2000-01-27  Richard Henderson  <rth@cygnus.com>
16133         * alpha.c (alpha_emit_conditional_move): Use VOIDmode when
16134         testing for a signed comparison.
16135         (alpha_emit_floatuns): New.
16136         * alpha-protos.h: Declare it.
16137         * alpha.md (floatunsdisf2, floatunsdidf2): New.
16138         (extendsfdf2): Tidy.
16140 2000-01-27  Jakub Jelinek  <jakub@redhat.com>
16142         * config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but
16143         no -g option specifying debugging format, default to -gstabs+.
16145 Wed Jan 26 22:19:14 1999  J"orn Rennecke  <amylaar@cygnus.co.uk>
16147         * calls.c (special_function_p): New argument fork_or_exec.
16148         (expand_call): When profile_arc_flag is set and the function
16149         is in the fork_or_exec group, call __bb_fork_func first.
16150         * libgcc2.c, _bb module (__bb_fork_func): New function.
16151         (__bb_exit_func): If fcntl F_SETLKW is available, use it to lock
16152         output file.
16153         * config/svr4.h (TARGET_HAS_F_SETLKW): Define.
16154         * tree.h (special_function_p): Update prototype.
16156 2000-01-26  Richard Henderson  <rth@cygnus.com>
16158         * alpha.c (alpha_split_tfmode_pair): New.
16159         * alpha-protos.h: Declare it.
16160         * alpha.md (abstf2, negtf2): New.
16161         (movtf insn): Add input G constraint.
16162         (movtf splitter): Use alpha_split_tfmode_pair.
16164 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16166         * i386/cygwin.h: PROTO -> PARAMS.
16168 2000-01-26  Jakub Jelinek  <jakub@redhat.com>
16170         * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
16171         TARGET_ARCH32 again. Handle ORDERED, UN* and LTGT comparisons
16172         using _Qp_cmp/_Q_cmp and testing the return value.
16173         (print_operand): Call reverse_condition_maybe_unordered if
16174         we are handling CCFPmode or CCFPEmode.
16175         Handle ORDERED, UN* and LTGT comparisons.
16176         * config/sparc/sparc.md (cmptf): Use even on TARGET_ARCH32
16177         if not TARGET_HARD_QUAD.
16178         (seq, sne, sgt, slt, sge, sle, beq, bne, bgt, blt, bge, ble,
16179         bunordered, bordered, bungt, bunlt, buneq, bunge, bunle, bltgt):
16180         Call sparc_emit_float_lib_cmp even on TARGET_ARCH32.
16181         Adjust gen_b* calls so that they reflect return comparison of
16182         sparc_emit_float_lib_cmp.
16184 2000-01-26  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16186         * config/alpha/alpha.c (alpha_emit_xfloating_cvt): Do not assume
16187         incoming operands array is large enough for one more operand.
16188         (alpha_emit_xfloating_arith): Likewise.
16190 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16192         * fixinc/Makefile.in (machname.h): SunOS 4 sed can't handle a
16193         file with one line and no trailing newline.
16194         Patch by Kaveh Ghazi <ghazi@caip.rutgers.edu>.
16195         * fixinc/fixtests.c (machine_name_test): Fix fencepost error
16196         checking if the match is on the line.
16197         * fixinc/gnu-regex.c: Provide regerror not __regerror.
16199 2000-01-25  Richard Henderson  <rth@cygnus.com>
16201         * sparc.c (output_cbranch): Fix accidental squashing of the
16202         fp branch pre-delay nop.
16204 2000-01-25  Richard Henderson  <rth@cygnus.com>
16206         * tree.def (UNNE_EXPR): Remove.
16207         * c-typeck.c (build_binary_op): Don't handle it.
16208         * expr.c (expand_expr, do_jump, do_store_flag): Likewise.
16210         * rtl.def (UNNE): Remove.
16211         (LTGT): Add.
16212         * jump.c (reverse_condition): Update accordingly.
16213         (swap_condition): Likewise.
16214         (comparison_dominates_p): Handle unordered comparisons.
16215         (reverse_condition_maybe_unordered): New.
16216         * rtl.h (reverse_condition_maybe_unordered): Declare.
16218         * sparc.c (select_cc_mode): Update for UNNE/LTGT.
16219         (output_cbranch): Use reverse_condition_maybe_unordered and LTGT.
16220         * sparc.h (REVERSIBLE_CC_MODE): Always true.  Update docs.
16221         * sparc.md (bltgt): New.
16223 2000-01-25  Nick Clifton  <nickc@redhat.com>
16225         * emit-rtl.c (emit_insn): Only check machine class insns for
16226         improper emission of a RETURN.
16228 2000-01-25  Richard Henderson  <rth@cygnus.com>
16230         * Makefile.in (flow.o): Depend on $(EXPR_H).
16231         * flow.c (mark_regs_live_at_end): Use hard_function_value, i.e.
16232         duplicate the structure of diddle_return_value for keeping regs live.
16234 2000-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16236         * loop.c (current_loop_info): Delete.
16237         (consec_sets_invariant_p): Add loop argument, update callers.
16238         (get_condition_for_loop): Likewise.
16239         (count_nonfixed_reads, update_giv_derive): Likewise.
16240         (simplify_giv_expr, general_induction_var): Likewise.
16241         (consec_sets_giv, recombine_givs): Likewise.
16242         (move_movables): Delete loop_start and loop_end arguments,
16243         add loop argument, and update callers.
16244         (find_mem_givs, check_final_value): Likewise.
16245         (record_giv, maybe_eliminate_biv, maybe_eliminate_biv_1): Likewise.
16246         (loop_invariant_p): Rename from invariant_p, add loop argument, and
16247         update callers.
16248         (basic_induction_var): Add loop argument, delete loop_level argument,
16249         and update callers.
16250         * unroll.c (iteration_info): Delete loop_start and loop_end arguments,
16251         add loop argument, and update callers.
16252         (find_splittable_regs, find_splittable_givs): Likewise.
16253         (reg_dead_after_loop, loop_find_equiv_value): Likewise.
16254         (final_biv_value, final_giv_value, back_branch_in_range_p): Likewise.
16255         (biv_total_increment): Delete loop_start and loop_end arguments;
16256         update callers.
16257         (precondition_loop_p): Delete loop_start and loop_info arguments;
16258         update callers.
16259         * loop.h (get_condition_for_loop): Add loop argument.
16260         (biv_total_increment): Delete loop_start and loop_end arguments.
16261         (precondition_loop_p): Delete loop_start and loop_info arguments;
16262         add loop argument.
16263         (final_biv_value): Delete loop_start and loop_end arguments;
16264         add loop argument.
16265         (final_giv_value, back_branch_in_range_p): Likewise.
16267 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
16269         * config/mips/mips.h (LEGITIMATE_CONSTANT_P): Fix for mips16.
16271 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
16273         * Makefile.in (c-gperf.h) : Change the "See" pointer to
16274         point to the new "generated_files" doc.
16276 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
16278         * config/fp-bit.c (_unord_f2): Fix typo.
16280 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16282         * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c,
16283         c-typeck.c, objc/objc-act.c: Remove all references to obstack
16284         functions obsoleted by GC, such as push_obstacks_nochange,
16285         end_temporary_allocation, savealloc, saveable_tree_cons, etc.
16286         and code which existed only to decide whether or not to call
16287         them.  Remove now-unused NESTED argument from start_function;
16288         all callers changed.  Do not change behavior based on ggc_p.
16289         The use of the ixp_obstack in c-iterate.c and the util_obstack
16290         in objc/objc-act.c remain; these are not obsoleted by garbage
16291         collection.
16292         * c-tree.h: Update prototype for start_function.
16294         * c-parse.y, c-parse.c, objc/objc-parse.c, objc/objc-parse.y: Rebuild.
16296 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
16298         * config/mips/mips.md (zero_extendsidi2_internal): Disable for
16299         mips16.
16301 2000-01-25  Richard Henderson  <rth@cygnus.com>
16303         * sparc-protos.h (select_cc_mode): Declare.
16304         * sparc.c (select_cc_mode): New.  Handle unordered compares.
16305         (output_cbranch): Always reverse via code change.  Handle
16306         unordered compares.  Factor tests and string updates.
16307         * sparc.h (SELECT_CC_MODE): Split out to select_cc_mode.
16308         (REVERSIBLE_CC_MODE): Also exclude CCFPmode.
16309         * sparc.md (bunordered, bordered): New.
16310         (bungt, bunlt, buneq, bunge, bunle): New.
16312 2000-01-25  Richard Henderson  <rth@cygnus.com>
16314         * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root.
16315         * ggc-common.c (ggc_add_rtx_varray_root): New.
16316         (ggc_mark_rtx_varray): New.
16317         (ggc_mark_rtx_varray_ptr): New.  Shift all ggc_mark_foo_ptr
16318         functions down below ggc_mark_foo.
16319         * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare.
16321 2000-01-25  Richard Henderson  <rth@cygnus.com>
16323         * alpha.c (secondary_reload_class): Don't allocate a secondary
16324         for integral mode memories into FLOAT_REGS.  Rearrange the more
16325         complicated memory expression inward.
16327 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16329         * inclhack.def: Fixes to play nicer with FreeBSD, and
16330         corrections to comments.
16331         (cxx_unready): Add select expression.
16332         (irix_sockaddr): Add bypass expression.
16333         (machine_ansi_h_va_list): New fix.
16334         (stdio_va_list): No need to edit _BSD_VA_LIST_.
16335         Split out addition of "#include <stdarg.h>" to...
16336         (stdio_stdarg_h): ... here.
16337         (systypes_for_aix): Rename to systypes_stdlib_size_t.  Apply
16338         to stdlib.h also.  Do not munge _BSD_SIZE_T_.
16339         (sysz_stdlib_for_sun): Delete duplicate fix for unprotected
16340         size_t.
16341         (ultrix_ifdef): Tighten up select expression.
16343         * fixincl.tpl: Exorcise 'exesel'.  Rewrite calculations of
16344         re_ct and max_mach to avoid use of shell.  Make printed names
16345         match names in inclhack.def.  Use static copyright date.
16346         Don't count c_test and test expressions as requiring regex_t
16347         slots.  Add some commentary.
16348         * inclhack.tpl: Do not include the 'This script contains N
16349         fixup scripts' line if PROGRAM is defined.  Use static
16350         copyright date.
16352 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
16354         * dwarf2out.c: include "varray.h", not dyn-string.h.
16355         (ASM_OUTPUT_DWARF2_ADDR_CONST, ASM_NAME_TO_STRING): Lose.
16356         (addr_const_to_string, addr_to_string): Lose.
16357         (ASM_OUTPUT_DWARF_ADDR_CONST): Copy from dwarfout.c.
16358         (struct dw_val_struct): val_addr is now an rtx.
16359         (add_AT_addr, AT_addr, free_AT, output_aranges): Adjust.
16360         (used_rtx_varray): New varray.
16361         (dwarf2out_init): Initialize it.
16362         (save_rtx): New fn.
16363         (mem_loc_descriptor, add_const_value_attribute): Call it instead of
16364         addr_to_string.
16365         * arm/telf.h, arm/unknown-elf.h, mn10200.h, mn10300.h,
16366         sparc/sp64-elf.h: Remove definition of ASM_OUTPUT_DWARF2_ADDR_CONST.
16367         * Makefile.in (dwarf2out.o): Update dependencies.
16369 2000-01-24  Richard Henderson  <rth@cygnus.com>
16371         * i386.c (i386_dwarf_output_addr_const): New.
16372         * i386.h (ASM_OUTPUT_DWARF_ADDR_CONST): New.
16374         * dwarf2out.c (mem_loc_descriptor): Call ASM_SIMPLIFY_DWARF_ADDR
16375         if defined.
16376         * dwarfout.c (output_mem_loc_descriptor): Likewise.
16377         * i386.c (i386_simplify_dwarf_addr): New.
16378         * i386.h (ASM_SIMPLIFY_DWARF_ADDR): New.
16380 Mon Jan 24 16:56:10 2000  Jim Wilson  <wilson@cygnus.com>
16382         * dwarf2out.c (gen_struct_or_union_type_die): Set complete if
16383         TYPE_STUB_DECL is NULL.
16385 2000-01-24  Richard Henderson  <rth@cygnus.com>
16387         * builtins.c (expand_tree_builtin): Move ...
16388         * c-common.c (expand_tree_builtin): ... here.
16390 2000-01-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16392         * loop.h (LOOP_INFO): New accessor macro.
16393         * basic-block.h (struct loop): Rename field `info' to `aux'.
16394         * loop.c (scan_loop): Replace loop->info with LOOP_INFO (loop).
16395         (prescan_loop, strength_reduce, check_dbra_loop, insert_bct): Likewise.
16396         * unroll.c (loop_iterations, unroll_loop): Likewise.
16398 2000-01-24  Christopher Faylor <cgf@cygnus.com>
16400         * config/i386/t-cygwin: Accomodate new winsup directory layout
16401         when searching for include files.
16403 2000-01-24  Richard Henderson  <rth@cygnus.com>
16405         * rtl.def: Add unordered fp comparisions.
16406         * tree.def: Likewise.
16407         * tree.h: Add ISO C 9x unordered fp comparision builtins.
16409         * builtins.c (expand_tree_builtin): New function.
16410         * c-typeck.c (build_function_call): Use it.
16411         (build_binary_op): Support unordered compares.
16412         * c-common.c (c_common_nodes_and_builtins): Add unordered compares.
16414         * combine.c (known_cond): Handle reverse_condition returning UNKNOWN.
16415         (reversible_comparison_p): Allow UNORDERED/ORDERED to be reversed.
16416         * cse.c (fold_rtx): Check FLOAT_MODE_P before reversing.
16417         (record_jump_equiv): Handle reverse_condition returning UNKNOWN.
16418         * jump.c (reverse_condition): Don't abort for UNLE etc, but
16419         return UNKNOWN.
16420         (swap_condition): Handle unordered compares.
16421         (thread_jumps): Check can_reverse before reversing.
16422         * loop.c (get_condition): Likewise.  Allow UNORERED/ORDERED to be
16423         reversed for FP.
16425         * optabs.c (can_compare_p): New argument CODE.  Verify branch or
16426         setcc is present before acking for cmp_optab.  Update all callers.
16427         (prepare_float_lib_cmp, init_optabs): Handle UNORDERED.
16428         * expmed.c (do_cmp_and_jump): Update for can_compare_p.
16429         * expr.c (expand_expr): Likewise.  Support unordered compares.
16430         (do_jump, do_store_flag): Likewise.
16431         * expr.h (enum libfunc_index): Add unordered compares.
16433         * Makefile.in (FPBIT_FUNCS): Add _unord_sf.
16434         (DPBIT_FUNCS): Add _unord_df.
16435         * config/fp-bit.c (_unord_f2): New.
16436         * fp-test.c (main): Try unordered compare builtins.
16438         * alpha-protos.h (alpha_fp_comparison_operator): Declare.
16439         * alpha.c (alpha_comparison_operator): Check mode properly.
16440         (alpha_swapped_comparison_operator): Likewise.
16441         (signed_comparison_operator): Likewise.
16442         (alpha_fp_comparison_operator): New.
16443         (alpha_emit_conditional_branch): Handle unordered compares.
16444         * alpha.h (PREDICATE_CODES): Update.
16445         * alpha.md (fp compares): Use alpha_fp_comparison_operator.
16446         (bunordered, bordered): New.
16448 2000-01-24  Richard Henderson  <rth@cygnus.com>
16450         * alpha.c (alpha_emit_xfloating_cvt): Thinko in operand manipulation.
16451         * alpha.md (movtf): New expander, insn, and splitter.
16453 Mon Jan 24 19:49:47 MET 2000  Jan Hubicka  <jh@suse.cz>
16455         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
16456         dead registers.
16458 Mon Jan 24 17:37:31 MET 2000  Jan Hubicka  <jh@suse.cz>
16460         * i386.h (FIRST_PSEUDO_REGISTER): Set to 21.
16461         (FIXED_REGISTERS, CALL_USED_REGISTERS,
16462          REG_ALLOC_ORDER): Add frame pointer
16463         (FRAME_POINTER_REGNUM): Set to 20
16464         (HARD_FRAME_POINTER_REGNUM): New macro.
16465         (ELIMINABLE_REGS): Eliminate ARG_POINTER and FRAME_POINTER
16466         to HARD_FRAME_POINTER.
16467         (REGNO_OK_FOR_BASE_P): Accept FRAME_POINTER_REGNUM
16468         (REG_OK_FOR_INDEX_NONSTRICT_P): Likewise.
16469         (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
16470         (HI_REGISTER_NAMES): Add "frame".
16471         (CAN_ELIMINATE): Handle FRAME_POINTER_REGNUM elimination.
16472         (debug_reg): Handle FRAME_POINTER_REGNUM.
16473         (reg_class): Add arg pointer and frame pointer to NON_Q_REGS,
16474         GENERAL_REGS and INDEX_REGS.
16475         * i386.c (SAVED_REGS_FIRST): new macro.
16476         (AT_BP): Use hard_frame_pointer_rtx instead of frame_pointer_rtx
16477         (ix86_decompose_address, memory_address_length): Likewise.
16478         (regclass_map): Add frame pointer.
16479         (call_insn_operand): Handle frame_pointer_rtx.
16480         (reg_no_sp_operand): Likewise.
16481         (ix86_decompose_address): Handle frame_pointer_rtx as stack_pointer_rtx.
16482         (print_operand, legitimize_pic_address): Fix formating.
16483         (ix86_compute_frame_size): Make static, update prototype, new
16484         parameters padding1, padding2, use ix86_nsaved_regs, use
16485         stack_alignment_needed.
16486         (ix86_initial_elimination_offset): Handle FRAME_POINTER_REGNUM
16487         to HARD_FRAME_POINTER_REGNUM conversions.
16488         (ix86_expand_prologue): Handle SAVED_REGS_FIRST prologues.
16489         (ix86_expand_epilogue): Handle SAVED_REGS_FIRST epilogues.
16490         (print_reg): Abort on FRAME_POINTER_REGNUM
16492 Mon Jan 24 16:50:08 MET 2000  Jan Hubicka  <jh@suse.cz>
16494         * i386.h (PREDICATE_CODES): Add aligned_operand.
16495         * i386.c (aligned_operand): New function.
16496         (ix86_aligned_p): Kill.
16497         * i386.md (movhi_1): Emit mov for aligned operands.
16498         (promoting peep2s): Use aligned_operand.
16500 2000-01-23  Zack Weinberg  <zack@wolery.cumb.org>
16502         * fixinc/fixfixes.c (fix_char_macro_uses): Correct regular
16503         expression to allow underscores in macro names.
16504         (fix_char_macro_defines): Increment scanning pointer.
16506 2000-01-23  Richard Henderson  <rth@cygnus.com>
16508         * alpha/osf.h (TARGET_HAS_XFLOATING_LIBS): Define.
16509         * alpha/osf5.h: New file.
16510         * configure.in (alpha-*-osf5): Add it to tm_file.
16512         * emit-rtl.c (operand_subword): Support TFmode on a 64-bit target.
16514         * alpha-protos.h (alpha_emit_xfloating_arith): Declare.
16515         (alpha_emit_xfloating_cvt, function_arg): Declare.
16516         * alpha.c (alpha_emit_conditional_branch): Call
16517         alpha_emit_xfloating_compare for TFmode compares.
16518         (alpha_lookup_xfloating_lib_func): New.
16519         (alpha_compute_xfloating_mode_arg): New.
16520         (alpha_emit_xfloating_libcall): New.
16521         (alpha_emit_xfloating_arith): New.
16522         (alpha_emit_xfloating_compare): New.
16523         (alpha_emit_xfloating_cvt): New.
16524         (print_operand): Add default abort case.
16525         (function_arg): Mind FUNCTION_ARG_PASS_BY_REFERENCE.
16526         * alpha.h (TARGET_HAS_XFLOATING_LIBS): New.
16527         (BIGGEST_ALIGNMENT): Increase to 128 bits.
16528         (RETURN_IN_MEMORY): True for TF/TCmode.
16529         (ALPHA_ARG_SIZE): TF/TCmode is passed indirect.
16530         (FUNCTION_ARG): Move to function_arg.
16531         (FUNCTION_ARG_PASS_BY_REFERENCE): New.
16532         (ASM_OUTPUT_LONG_DOUBLE): New.
16533         (ASM_OUTPUT_DOUBLE): Always output bits.
16534         * alpha.md (addtf3, divtf3, multf3, subtf3, cmptf): New.
16535         (fix_trunctfdi2, floatditf2, floatunsditf2): New.
16536         (extenddftf2, trunctfdf2): New.
16538 2000-01-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16540         * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Moved...
16541         * config/sparc/sol2.h: ... here.
16543 2000-01-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16545         * basic-block.h (struct loops): New field `levels'.
16546         * flow.c (flow_loops_level_compute): Traverse all outer loops.
16547         (flow_loop_level_compute): Initialise level to 1.
16548         (flow_loops_find): Set loops->levels.
16549         (flow_loops_dump): Print loops->levels.
16551 2000-01-23  Richard Henderson  <rth@cygnus.com>
16553         * libgcc2.c (dwarf_reg_size_table): Size with DWARF_FRAME_REGISTERS.
16554         (throw_helper): Iterate over DWARF_FRAME_REGISTERS.
16556 2000-01-23  Richard Henderson  <rth@cygnus.com>
16558         * i386.c (dbx_register_map, svr4_dbx_register_map): New.
16559         * i386.h (DBX_REGISTER_NUMBER): Use them.
16560         * i386/beos-elf.h, i386/freebsd-elf.h, i386/i386elf.h: Likewise.
16561         * i386/linux.h, i386/osfrose.h, i386/ptx4-i.h: Likewise.
16562         * i386/rtemself.h, i386/sco5.h, i386/sysv4.h: Likewise.
16563         * i386/sequent.h: Kill incorrect comment.
16565 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
16567         * ggc-page.c (struct page_entry): Make `context_depth' an
16568         `unsigned short'.
16569         (struct globals): Likewise.
16571 2000-01-23  Clinton Popetz  <cpopetz@cygnus.com>
16573         * loop.c (check_dbra_loop): When checking a loop for
16574         reversability, check the source of any stores to ensure
16575         they don't depend on an initial value.
16577 2000-01-23  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16579         * config/c4x/c4x.h (ASM_OUTPUT_BSS): Redefine.
16581 2000-01-22  Zack Weinberg  <zack@wolery.cumb.org>
16583         * fixinc/fixincl.c: Move declarations of 'pz_fname' and
16584         'pz_scan' into scope of entire function.  Only affects
16585         compiles with -DDEBUG.
16587 2000-01-22  Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>
16589         * config/elfos.h (UNIQUE_SECTION): Restore uninitialised data
16590         section naming to that prior to 2000-01-07 patch.
16591         * config/mips/elf.h (UNIQUE_SECTION): Ditto.
16592         * config/mips/elf64.h (UNIQUE_SECTION): Ditto.
16593         * config/mips/iris6gld.h (UNIQUE_SECTION): Ditto.
16594         * config/i386/interix.c (UNIQUE_SECTION): Ditto.
16595         * config/i386/winnt.c (UNIQUE_SECTION): Ditto.
16597 2000-01-22  Bernd Schmidt  <bernds@cygnus.co.uk>
16599         * config/arm/arm.c (soft_df_operand): Reject SUBREGs containing a
16600         constant.
16602 2000-01-21  Jim Wilson  <wilson@cygnus.com>
16604         * fixinc/inclhack.tpl: Test for directory before trying to cd into it.
16605         * fixinc/fixincl.sh, fixinc/inclhack.sh: Regenerate.
16607 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
16609         * cpphash.c (change_newlines): Delete function.
16610         (struct argdata): Delete 'newlines' and 'use_count' fields.
16611         (macroexpand): Remove code referencing those fields.
16613 2000-01-22  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16615         * loop.c (loops_info): New variable.
16616         (loop_optimize): Allocate loops->array and free it on exit.
16617         Allocate memory for loops_info and assign to each loop,
16618         replacing alloca.
16619         (find_and_verify_loops): Do not allocate loops->array.
16621 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
16623         * fixinc/fixfixes.c (machine_name_fix): Don't free 'scratch'.
16625 2000-01-21  Jakub Jelinek  <jakub@redhat.com>
16627         * config/sparc/sparc.md (movsi_pic_label_ref): Avoid creating new
16628         pseudos if expanded after first flow.
16629         (movdi_pic_label_ref): Likewise.
16631 2000-01-20  Richard Henderson  <rth@cygnus.com>
16633         * jump.c (jump_optimize_1): Don't do addr_vec optimizations at -O0.
16635 2000-01-20  Zack Weinberg  <zack@wolery.cumb.org>
16637         * Makefile.in (fixinc.sh): Depend on specs.
16638         * fixinc/Makefile.in: Add rule to create machname.h.
16639         (fixlib.o): Depend on machname.h.
16640         * fixinc/fixtests.c (machine_name): New test.
16641         * fixinc/fixfixes.c (machine_name): New fix.
16642         * fixinc/fixlib.c (mn_get_regexps): New helper function for
16643         the machine_name test and fix.
16644         * fixinc/fixlib.h: Prototype it.
16645         * fixinc/inclhack.def (machine_name): Use the C test and fix.
16646         * fixinc/fixincl.x, fixinc/inclhack.sh: Rebuild.
16648         * gcc.c (do_spec_1) [case P]: Take care not to create
16649         identifiers with three leading or trailing underscores.
16651         * fixinc/Makefile.in (FIXINC_DEFS): Add -DIN_GCC.
16652         (fixincl): Don't specify libraries twice on link line.
16653         (gnu-regex.o): Remove special rule.
16654         * fixinc/gnu-regex.c: Define REGEX_MALLOC if C_ALLOCA was
16655         defined by config.h.  Do not define _REGEX_RE_COMP.
16656         (regcomp): Allocate and initialize a fastmap.
16657         * fixinc/gnu-regex.h: Do not define _REGEX_RE_COMP.
16659 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
16661         * Makefile.in (predict.o): Depend on $(EXPR_H), not expr.h.
16663 2000-01-19  Richard Henderson  <rth@cygnus.com>
16665         * flow.c (propagate_block): Replace FIRST, LAST and BNUM
16666         arguments with BB.  Update all callers.  Tidy line wrapping.
16668 2000-01-19  Clinton Popetz  <cpopetz@cygnus.com>
16670         * emit-rtl.c (try_split): Return last_insn if we split the
16671         last_insn.
16673 Thu Jan 20 01:01:23 MET 2000  Jan Hubicka  <jh@suse.cz>
16675         * i386-protos.h (ix86_compute_frame_size): Remove prototype.
16676         (ix86_initial_elimination_offset): Declare.
16677         * i386.c (ix86_nsaved_regs): Break out from ...
16678         (ix86_can_use_return_insn_p): ... here.
16679         (ix86_emit_save_regs): Break out from ...
16680         (ix86_expand_prologue): ... here.
16681         (ix86_emit_epilogue_esp_adjustment, ix86_emit_restore_regs): Break
16682         out from ...
16683         (ix86_expand_epilogue): ... here.
16684         (ix86_compute_frame_size): Make static, add prototype.
16685         (ix86_initial_elimination_offset): Break out from ...
16686         * i386.h (INITIAL_ELIMINATION_OFFSET): ... here.
16688 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16690         * recog.h (OUT_FCN): Delete.
16692         * vax.md: Call `get_insn_template' instead of OUT_FCN.
16694 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16696         * cppalloc.c: PROTO -> PARAMS.
16697         * cpperror.c: Likewise.
16698         * cppfiles.c: Likewise.
16699         * cpplib.c: Likewise.
16700         * cpplib.h: Likewise.
16702         * config/arm/arm-protos.h: PROTO -> PARAMS.
16703         * config/arm/arm.c: Likewise.
16704         * config/c4x/c4x.c: Likewise.
16705         * config/fr30/fr30-protos.h: Likewise.
16706         * config/nextstep.c: Likewise.
16707         * config/pa/pa.c: Likewise.
16708         * config/pj/pj.c: Likewise.
16709         * config/rs6000/rs6000.c: Likewise.
16710         * config/v850/v850-protos.h: Likewise.
16711         * config/v850/v850.c: Likewise.
16713 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16715         * i370-protos.h: New file.
16717         * i370.c: Include tm_p.h.  Fix compile time warnings.
16719         * i370.h: Move prototypes to i370-protos.h.  Fix compile time
16720         warnings.
16722         * i370.md: Likewise.
16724 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16726         * real.c (enan, einan, eiisnan, eiisneg, make_nan): Wrap in NANS.
16727         (target_isinf, target_isnan, eisnan): Mark parameter with
16728         ATTRIBUTE_UNUSED.
16729         (eiisinf): Wrap in INFINITY.
16730         (etoe113, etoe64, etoe53, etoe24): Wrap label `nonorm' in INFINITY.
16731         (ibmtoe): Remove unused variable `rndsav'.
16733 Wed Jan 19 20:23:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16735         * sh.h (PASS_IN_REG_P): Remove extraneous paranthesis.
16736         (GO_IF_LEGITIMATE_ADDRESS): Added missing tab.
16738 2000-01-19  Zack Weinberg  <zack@wolery.cumb.org>
16740         * fixinc/Makefile.in: Correct dependencies of fixincl and fixincl.o.
16741         * fixinc/fixfixes.c (IO_use, CTRL_use, IO_defn, CTRL_defn): New fixes.
16742         (fix_char_macro_defines, fix_char_macro_uses): New functions.
16744         * fixinc/fixlib.c (is_cxx_header): Do the text scan with a regexp.
16745         Recognize Emacs mode markers also.
16746         * fixinc/fixtests.c (else_endif_label): Fix bug in recognition of
16747         C++ comments in C++ headers.  Call is_cxx_header only if
16748         necessary.
16750         * fixinc/inclhack.def (avoid_bool): Add select for the problem and
16751         bypass for ncurses.
16752         (bsd43_io_macros, io_def_quotes, ioctl_fix_ctrl): Replace with...
16753         (io_def_quotes, io_use_quotes, ctrl_def_quotes, ctrl_use_quotes):
16754         ... these, which use the new C fixes.
16755         (math_exception): Escape literal '+' in bypass expression.
16757         * fixinc/fixincl.x, fixinc/fixincl.sh, fixinc/inclhack.sh:
16758         Regenerate.
16760 2000-01-19  Geoff Keating  <geoffk@cygnus.com>
16762         * rtlanal.c (reg_referenced_p): A CLOBBER of a MEM uses any REGs
16763         inside the MEM.
16765 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16767         * loop.c (loop_optimize): Allocate loop_info structure for each loop
16768         prior to calling scan_loop.
16770 Wed Jan 19 19:54:38 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16772         * sh.c (find_barrier, gen_block_redirect): Fix indentation.
16773         (split_branches, calc_live_regs): Likewise.
16775 Wed Jan 19 19:12:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16777         * sh.md (fpu_single, fp_mode): New attributes.
16779 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16781         * loop.c (current_loop_info): Renamed from loop_info_data
16782         and changed to a pointer.
16783         (loop_optimize): Allocate loop_info structure for each loop
16784         and initialise to zero.
16785         (scan_loop): Set current_loop_info.
16787         * unroll.c (loop_iterations): Don't abort if REG_USERVAR_P set
16788         on iteration_var.
16790 2000-01-19  Richard Henderson  <rth@cygnus.com>
16792         * stupid.c: Die die die.
16793         * Makefile.in (OBJS): Remove stupid.o.
16794         (stupid.o): Likewise.
16796         * except.c (emit_eh_context): Don't emit USEs for stupid.
16797         * explow.c (probe_stack_range): Likewise.
16798         * flags.h (obey_regdecls): Remove.
16799         * flow.c (find_basic_blocks): Don't run try_merge_blocks
16800         when not optimizing.
16801         (life_analysis): Limit data collection when not optimizing.
16802         (mark_regs_live_at_end): Always mark the return value registers.
16803         (mark_used_regs): Remove dummy RETURN case.
16804         (print_rtl_with_bb): Don't consult obey_regdecls.
16805         * function.c (use_variable, use_variable_after): Remove.
16806         (assign_parms): Consult optimize not obey_regdecls.
16807         (expand_function_start): Don't emit USEs for stupid.
16808         (expand_function_end): Likewise.
16809         * global.c (build_insn_chain): Export.
16810         * integrate.c (expand_inline_function): Kill return-value USE
16811         handling code.
16812         * jump.c (jump_optimize_1): Do simple jump optimizations and
16813         dead code elimination.
16814         (calculate_can_reach_end): Remove check_deleted argument.
16815         (delete_insn): Patch out insns even when not optimizing.
16816         * local-alloc.c (block_alloc): Don't do tying when not optimizing.
16817         * rtl.h (use_variable, use_variable_after): Remove declarations.
16818         (build_insn_chain): Declare.
16819         * stmt.c (expand_value_return): Don't emit USEs for stupid.
16820         (expand_end_bindings): Likewise.
16821         (expand_decl): Likewise.  Consult optimize not obey_regdecls.
16822         * toplev.c (obey_regdecls): Remove.
16823         (rest_of_compilation): Don't set it.  Kill stupid in favour of
16824         flow1, local-alloc, and reload.
16825         (main): Don't set obey_regdecls.
16827         * config/nextstep.c (handle_pragma): Likewise.
16829         * alpha/alpha.md (allocate_stack): Don't emit USEs for stupid.
16831         * arm/arm.h (CONDITIONAL_REGISTER_USAGE): Don't fix reg 0 for stupid.
16833 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16835         * alpha-protos.h: PROTO -> PARAMS.
16836         * alpha.c: Likewise.
16837         * elf.h: Likewise.
16838         * h8300.c: Likewise.
16839         * i386-protos.h: Likewise.
16840         * i386.c: Likewise.
16841         * m32r-protos.h: Likewise.
16842         * m32r.c: Likewise.
16843         * mips.c: Likewise.
16844         * mips.md: Likewise.
16845         * gmon-sol2.c: Likewise.
16846         * sparc.c: Likewise.
16848 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16850         * ns32k-protos.h: New file.
16852         * ns32k.c: Fix compile time warnings.
16854         * ns32k.h: Move prototypes to ns32k-protos.h.  Fix compile time
16855         warnings.
16857         * ns32k.md: Likewise.
16859 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16861         * vax-protos.h: New file.
16863         * vax.c: Fix compile time warnings.
16865         * vax.h: Move prototypes to vax-protos.h.  Fix compile time
16866         warnings.
16868         * vax.md: Likewise.
16870         * vaxv.md: Likewise.
16872 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16874         * romp-protos.h: New file.
16876         * romp.c: Fix compile time warnings.
16878         * romp.h: Move prototypes to romp-protos.h.  Fix compile time
16879         warnings.
16881         * romp.md: Likewise.
16883 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16885         * we32k-protos.h: New file.
16887         * we32k.c: Fix compile time warnings.
16889         * we32k.h: Move prototypes to we32k-protos.h.  Fix compile time
16890         warnings.
16892 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16894         * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
16896         * except.c (eh_regs): Likewise.
16898         * final.c (output_operand): Likewise.
16900         * fold-const.c (target_isinf, target_isnan): Likewise.
16902 Tue Jan 18 16:19:55 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
16904         * i386.h (BIGGEST_ALIGNMENT): Set to 128.
16905         (BIGGEST_FIELD_ALIGNMENT): Set to (TARGET_ALIGN_DOUBLE ? 64 : 32)
16907         * i386.md (memstr): Do not use rep stosb for counts divisible by 4
16908         when optimize_size.
16909         (clrstrsi): Rewrite.
16910         (strsethi, strsetqi): New expanders.
16911         (strsethi_1, strsetqi_1, rep_stossi, rep_stosqi): New insn patterns.
16912         (cmpstrsi): Emit compare insn before cmpstrsi_1
16913         (cmpstrsi_nz): use flags, set type to str, prefix_length to 1.
16914         (strlensi_1): Likewise.
16915         (cmpstrsi_1): Likewise; do not output compare.
16916         (strlen expander): Do not unroll when optimizing for size.
16917         (*subsi3_carry): Rename to subsi3_carry
16918         (addqi3_cc): New pattern.
16919         * i386.h (processor_costs): Add move_ratio field.
16920         (MOVE_RATIO): Use move_ratio field, set to 3 for OPTIMIZE_SIZE
16921         * i386.c (*_cost): Set move_ratio.
16922         (x86_unroll_strlen): Enable for Athlon, PPro and K6 too.
16923         (x86_expand_strlensi_1): Rewrite the main loop.
16925 2000-01-17  Richard Henderson  <rth@cygnus.com>
16927         * combine.c (combine_simplify_rtx): Give FLOAT_STORE_FLAG_VALUE a mode.
16928         * cse.c (find_comparison_args, fold_rtx): Likewise.
16929         * integrate.c (subst_constants): Likewise.
16930         * loop.c (get_condition): Likewise.
16932         * tm.texi (FLOAT_STORE_FLAG_VALUE): Update docs.
16934         * alpha.h (FLOAT_STORE_FLAG_VALUE): Use REAL_VALUE_ATOF.
16936 2000-01-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16938         * c-parse.in (SAVE_WARN_FLAGS): Create an INTEGER_CST.
16939         (RESTORE_WARN_FLAGS): Unpack it.
16940         Change semantic type of extension to ttype.
16941         * c-common.c (split_specs_attrs): Expect an INTEGER_CST.
16942         * c-parse.y, c-parse.c, objc/objc-parse.y,
16943         objc/objc-parse.c: Regenerate.
16945 2000-01-17  Zack Weinberg  <zack@wolery.cumb.org>
16947         * fixinc/fixlib.c: Add copyright notice.
16948         (compile_re): New function.
16949         * fixinc/fixlib.h: Prototype compile_re.
16951         * fixinc/fixfixes.c, fixinc/fixtests.c, fixinc/fixincl.c:
16952         Use compile_re to compile regular expressions.
16954         * fixinc/fixincl.c (egrep_test): Don't bother asking regexec
16955         where the pattern matched.
16957         * fixinc/inclhack.def (sun_memcpy): Move to AAB_sun_memcpy,
16958         use 'replace'.
16959         (ultrix_ansi_compat): Likewise.
16960         (interactv_add1): Rename to 'isc_omits_with_stdc', remove shell test,
16961         add egrep test.
16962         (interactv_add2, interactv_add3): Delete.
16963         (x11_sprintf): Don't use filename glob.
16964         * fixinc/fixincl.x, fixinc/inclhack.sh, fixinc/fixincl.sh:
16965         Regenerate.
16967 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16969         * print-rtl.c: PROTO -> PARAMS.
16970         * real.c: Likewise.
16971         * reg-stack.c: Likewise.
16972         * resource.c: Likewise.
16973         * sdbout.h: Likewise.
16974         * simplify-rtx.c: Likewise.
16975         * stor-layout.c: Likewise.
16976         * stupid.c: Likewise.
16977         * xcoffout.c: Likewise.
16978         * xcoffout.h: Likewise.
16980 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16982         * toplev.c: PROTO -> PARAMS.
16983         * toplev.h: Likewise.
16984         * tree.c: Likewise.
16985         * tree.h: Likewise.
16986         * unroll.c: Likewise.
16987         * varasm.c: Likewise.
16988         * varray.c: Likewise.
16989         * varray.h: Likewise.
16991 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16993         * reload.c: PROTO -> PARAMS.
16994         * reload.h: Likewise.
16995         * reload1.c: Likewise.
16996         * reorg.c: Likewise.
16997         * resource.h: Likewise.
16998         * rtl.c: Likewise.
16999         * rtl.h: Likewise.
17000         * rtlanal.c: Likewise.
17001         * sbitmap.h: Likewise.
17002         * sdbout.c: Likewise.
17003         * stack.h: Likewise.
17004         * stmt.c: Likewise.
17005         * system.h: Likewise.
17007 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17009         * machmode.h: PROTO -> PARAMS.
17010         * mbchar.h: Likewise.
17011         * mips-tdump.c: Likewise.
17012         * mips-tfile.c: Likewise.
17013         * optabs.c: Likewise.
17014         * output.h: Likewise.
17015         * prefix.c: Likewise.
17016         * profile.c: Likewise.
17017         * protoize.c: Likewise.
17018         * real.h: Likewise.
17019         * recog.c: Likewise.
17020         * recog.h: Likewise.
17021         * regclass.c: Likewise.
17022         * regmove.c: Likewise.
17023         * regs.h: Likewise.
17025 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17027         * ggc-common.c: PROTO -> PARAMS.
17028         * ggc-page.c: Likewise.
17029         * ggc-simple.c: Likewise.
17030         * ggc.h: Likewise.
17031         * global.c: Likewise.
17032         * graph.c: Likewise.
17033         * gthr-win32.h: Likewise.
17034         * haifa-sched.c: Likewise.
17035         * halfpic.h: Likewise.
17036         * integrate.c: Likewise.
17037         * integrate.h: Likewise.
17038         * jump.c: Likewise.
17039         * lcm.c: Likewise.
17040         * local-alloc.c: Likewise.
17041         * loop.c: Likewise.
17042         * loop.h: Likewise.
17044 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17046         * genattr.c: PROTO -> PARAMS.
17047         * genattrtab.c: Likewise.
17048         * gencheck.c: Likewise.
17049         * gencodes.c: Likewise.
17050         * genconfig.c: Likewise.
17051         * genemit.c: Likewise.
17052         * genextract.c: Likewise.
17053         * genflags.c: Likewise.
17054         * gengenrtl.c: Likewise.
17055         * genopinit.c: Likewise.
17056         * genoutput.c: Likewise.
17057         * genpeep.c: Likewise.
17058         * genrecog.c: Likewise.
17060 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
17062         * tree.h (BINFO_VPTR_FIELD): Augment documentation.
17064 2000-01-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17066         * aclocal.m4 (AC_FUNC_MMAP_ZERO): New macro.
17067         * configure.in (AC_FUNC_MMAP_ZERO): Use instead of AC_FUNC_MMAP.
17068         * ggc-page.c: Replace HAVE_MMAP with HAVE_MMAP_ZERO.
17069         * configure, config.in: Rebuilt.
17071 2000-01-16  Zack Weinberg  <zack@wolery.cumb.org>
17073         * config/i386/i386.md: Add peephole to merge successive stack
17074         adjusts.
17076 Sat Jan 15 15:41:14 EST 2000  John Wehle  (john@feith.com)
17078         * gcse.c (insert_insn_end_bb): Use emit_block_insn_before
17079         instead of emit_insn_before.  Also handle NOTE_INSN_BASIC_BLOCK
17080         when walking backwards to find all the parameter loads when
17081         the basic block ends in a call.
17083 2000-01-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17085         * loop.c (this_loop_info): Delete.
17086         (uid_loop): Add in place of uid_loop_num.  All uses updated.
17087         (loop_number_exit_count): Delete and replace with entry in loop
17088         structure.  All uses updated.
17089         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
17090         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
17091         (loop_outer_loop): Likewise.
17092         (loop_invalid, loop_number_exit_labels): Likewise.
17093         (loop_used_count_register): Delete and replace with entry in
17094         loop_info structure.
17095         (find_and_verify_loops): Add loops argument.
17096         (verify_dominator, mark_loop_jump, prescan_loop): Replace loop_start,
17097         loop_end, etc. arguments with loop structure pointer.  All callers
17098         changed.
17099         (loop_reg_used_before_p, scan_loop, strength_reduce): Likewise.
17100         (check_dbra_loop, next_insn_in_loop, try_copy_prop): Likewise.
17101         (load_mems_and_recount_loop_regs_set, load_mems): Likewise.
17102         (insert_bct): Likewise.
17103         (basic_induction_var): New argument level.
17104         * loop.h (struct loop_info): Delete fields num, loops_enclosed,
17105         vtop, and cont.  Add used_count_register.
17106         (uid_loop): Delete declaration.
17107         (loop_number_exit_count): Likewise.
17108         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
17109         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
17110         (loop_outer_loop, loop_used_count_register): Likewise.
17111         (loop_invalid, loop_number_exit_labels): Likewise.
17112         (unroll_loop): Replace loop_start and loop_end arguments
17113         with loop structure pointer.
17114         (loop_precondition_p, loop_iterations): Likewise.
17115         Include basic-block.h.
17116         * unroll.c: (unroll_loop): Replace loop_start and loop_end arguments
17117         with loop structure pointer.
17118         (loop_precondition_p, loop_iterations): Likewise.
17119         * basic-block.h (struct loop): New entries vtop, cont,
17120         cont_dominator, start, end, top, scan_start, exit_labels,
17121         exit_count.
17122         * Makefile.in (LOOP_H): Add basic-block.h to dependencies.
17124 2000-01-15  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17126         * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
17128 2000-01-14  Nathan Sidwell  <sidwell@codesourcery.com>
17130         * config.in: Rebuilt for 2000-01-13 change to acconfig.h.
17132 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17134         * pdp11-protos.h: New file.
17136         * pdp11.c: Include tm_p.h.  Add static prototypes.  Fix compile
17137         time warnings.
17139         * pdp11.h: Move prototypes to pdp11-protos.h.  Fix compile time
17140         warnings.
17142         * pdp11.md: Likewise.
17144         * 2bsd.h: Likewise.
17146 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17148         * mn10300-protos.h: New file.
17150         * mn10300.c: Include tm_p.h.  Add static prototypes.  Fix compile
17151         time warnings.
17153         * mn10300.h: Move prototypes to mn10300-protos.h.  Fix compile time
17154         warnings.
17156         * mn10300.md: Likewise.
17158 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17160         * mn10200-protos.h: New file.
17162         * mn10200.c: Include tm_p.h.  Add static prototypes.  Fix compile
17163         time warnings.
17165         * mn10200.h: Move prototypes to mn10200-protos.h.  Fix compile time
17166         warnings.
17168         * mn10200.md: Likewise.
17170 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17172         * h8300-protos.h: New file.
17174         * h8300.c: Include tm_p.h.  Add static prototypes.  Fix compile
17175         time warnings.
17177         * h8300.h: Move prototypes to h8300-protos.h.  Fix compile time
17178         warnings.
17180         * h8300.md: Likewise.
17182 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17184         * varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
17185         (asm_emit_uninitialised): Likewise.
17187 2000-01-13  Gavin Romig-Koch  <gavin@cygnus.com>
17189         * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New.
17190         * config/mips/mips.md: Use ISA_HAS_INT_CONDMOVE.
17192 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17194         * config/mips/mips.c (override_options): Don't turn on extra
17195         alignment for mips16.
17197 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17199         * config/mips/mips.c (mips_va_arg): Fix fprv for the 32 bit
17200         eabi, and make sure queued POSTINCREMENT rtl is emitted at
17201         the right point.
17203 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17205         * builtins.c (PAD_VARARGS_DOWN): Define.
17206         (std_expand_builtin_va_arg): Use the above macro.
17207         * config/mips/mips.h (PAD_VARARGS_DOWN): Define.
17208         * tm.texi (Register Arguments): Document the above macro.
17210 2000-01-14  Nick Clifton  <nickc@cygnus.com>
17212         * emit-rtl.c (emit_insn): If checking is enabled, make sure
17213         that this function has not been used to emit a jump
17214         instruction.
17216         * jump.c (return_jump_1): Cope with being passed a null rtx.
17218 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17220         * eh-common.h: PROTO -> PARAMS.
17221         * emit-rtl.c: Likewise.
17222         * errors.c: Likewise.
17223         * errors.h: Likewise.
17224         * except.c: Likewise.
17225         * except.h: Likewise.
17226         * explow.c: Likewise.
17227         * expmed.c: Likewise.
17228         * expr.c: Likewise.
17229         * expr.h: Likewise.
17230         * final.c: Likewise.
17231         * fix-header.c: Likewise.
17232         * flow.c: Likewise.
17233         * fold-const.c: Likewise.
17234         * function.c: Likewise.
17235         * function.h: Likewise.
17236         * gcc.c: Likewise.
17237         * gcov-io.h: Likewise.
17238         * gcov.c: Likewise.
17239         * gcse.c: Likewise.
17241 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17243         * sh-protos.h: New file.
17245         * sh.c: Include insn-config.h, toplev.h, recog.h and tm_p.h.
17246         Add static prototypes.  Fix compile time warnings.
17248         * sh.h: Move prototypes to sh-protos.h.  Fix compile time warnings.
17249         * sh.md: Likewise.
17250         * elf.h: Likewise.
17252 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17254         * arc-protos.h: New file.
17256         * arc.c: Include tm_p.h.  Add static prototypes.  Fix compile
17257         time warnings.
17259         * arc.h: Move prototypes to arc-protos.h.  Fix compile time
17260         warnings.
17262         * arc.md: Likewise.
17264 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17266         * dsp16xx-protos.h: New file.
17268         * dsp16xx.c: Include tm_p.h.  Add static prototypes.  Fix compile
17269         time warnings.
17271         * dsp16xx.h: Move prototypes to dsp16xx-protos.h.  Fix compile time
17272         warnings.
17274         * dsp16xx.md: Likewise.
17276 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17278         * convex-protos.h: New file.
17280         * convex.c: Include tm_p.h.  Add static prototypes.  Fix compile
17281         time warnings.
17283         * convex.h: Move prototypes to convex-protos.h.  Fix compile time
17284         warnings.
17286 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17288         * elxsi-protos.h: New file.
17290         * elxsi.c: Include tm_p.h.  Add static prototypes.  Fix compile
17291         time warnings.
17293         * elxsi.h: Move prototypes to elxsi-protos.h.  Fix compile time
17294         warnings.
17296         * elxsi.md: Likewise.
17298 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17300         * config/mips/mips.h (REGISTER_MOVE_COST): Remove redundant
17301         case for moving from HI/LO/HI_LO_REG.  This makes the behavior
17302         match the comment for MIPS16.
17304 Fri Jan 14 00:28:06 2000  Jeffrey A Law  (law@cygnus.com)
17306         * flow.c (split_edge): Do not call set_block_for_insn if we
17307         do not have a basic_block_for_insn structure.
17309         * fr30.h (TRAMPOLINE_TEMPLATE): Use nops to ensure the static chain
17310         and destination functions are 32bit aligned within the trampoline.
17311         (TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE): Corresponding changes.
17312         (TRAMPOLINE_ALIGNMENT): Define.
17314         * cse.c (cse_insn): When changing (set (pc) (reg)) to
17315         (set (pc) (label_ref)), verify the change creates a valid insn.
17317         * fr30.c (call_operand): Tighten and rework to match rules for
17318         call RTL expressions.
17319         * fr30.h (PREDICATE_CODES, case call_operand): Only allow MEMs.
17320         * fr30.md (call patterns): Improve constraints.
17322 Thu Jan 13 23:44:03 2000  Richard Henderson  <rth@cygnus.com>
17324         * fr30.c (fr30_expand_epilogue): Revert last change.
17325         Use emit_jump_insn for the return insn.
17327 Thu Jan 13 14:46:03 2000  Jason Eckhardt  <jle@cygnus.com>
17328                           Stan Cox  <scox@cygnus.com>
17330         * predict.c: New file. Preliminary infrastructure work for static
17331         branch prediction and basic block reordering.
17332         * basic-block.h: Add prototype for estimate_probability.
17333         * Makefile.in: Add rules for predict.o.
17335 2000-01-13  Jason Merrill  <jason@yorick.cygnus.com>
17337         * fixincludes (va_list): Use __not_va_list__ for the dummy.
17338         * fixinc/*: Likewise.
17340 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17342         * cccp.c: PROTO -> PARAMS.
17343         * cexp.y: Likewise.
17344         * collect2.c: Likewise.
17345         * combine.c: Likewise.
17346         * convert.h: Likewise.
17347         * cse.c: Likewise.
17348         * dbxout.c: Likewise.
17349         * dbxout.h: Likewise.
17350         * diagnostic.c: Likewise.
17351         * doprint.c: Likewise.
17352         * dwarf2out.c: Likewise.
17353         * dwarf2out.h: Likewise.
17354         * dwarfout.c: Likewise.
17355         * dwarfout.h: Likewise.
17356         * dyn-string.h: Likewise.
17358 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17360         * calls.c (emit_call_1): Wrap varaible `struct_value_size_rtx' in
17361         macro conditionals guarding use.
17363         * dwarf2out.c: Include "tm_p.h".
17365         * function.c (locate_and_pad_parm): Mark parameter with
17366         ATTRIBUTE_UNUSED.
17367         (expand_function_end): Likewise for variable `context'.
17369         * reorg.c (make_return_insns): Wrap prototype in macro HAVE_return.
17371 2000-01-13  Nick Clifton  <nickc@cygnus.com>
17373         * config/fr30/fr30.c (fr30_expand_epilogue): Emit USEs of pop'ed
17374         register to prevent compile time warnings.
17376 2000-01-13  Zack Weinberg  <zack@wolery.cumb.org>
17378         * longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
17379         to avoid -Wtraditional warning.
17381 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17383         * 1750a-protos.h: New file.
17385         * 1750a.c: Include tm_p.h.  Add static prototypes.  Fix compile
17386         time warnings.
17388         * 1750a.h: Move prototypes to 1750a-protos.h.  Fix compile time
17389         warnings.
17391         * 1750a.md: Likewise.
17393 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17395         * a29k-protos.h: New file.
17397         * a29k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17398         time warnings.
17400         * a29k.h: Move prototypes to a29k-protos.h.  Fix compile time
17401         warnings.
17403 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17405         * clipper-protos.h: New file.
17407         * clipper.c: Include tm_p.h.  Add static prototypes.  Fix compile
17408         time warnings.
17410         * clipper.h: Move prototypes to clipper-protos.h.  Fix compile time
17411         warnings.
17413 Thu Jan 13 16:03:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
17415         * reload1.c (reload_combine_note_store): Use HARD_REGNO_NREGS.
17417 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
17419         * configure.in (--enable-new-gxx-abi): New option.
17420         * acconfig.h (ENABLE_NEW_GXX_ABI): New define.
17421         * Makefile.in (GXX_ABI_FLAG): New variable.
17422         * configure: Regenerate.
17424 2000-01-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17426         * stor-layout.c (layout_type): Use FORCE_STRUCT_BLK.
17427         * tm.texi (FORCE_STRUCT_BLK): Document.
17428         * config/c4x/c4x.h (FORCE_STRUCT_BLK): New macro.
17430 Wed Jan 12 23:12:47 2000  Hans-Peter Nilsson  <hp@axis.com>
17432         * config/ns32k/ns32k.md: Revert Jan 9 change.
17434         * genrecog.c (maybe_both_true_2): Do not compare a predicate-test
17435         to a mode-test, if the predicate is address_operand.
17437 Wed Jan 12 22:34:00 2000  Jeffrey A Law  (law@cygnus.com)
17439         * combine.c (if_then_else_cond): Be careful about what kinds
17440         of RTL expressions are passed to operand_subword.
17442         * flow.c (split_edge): If we have to insert a new jump, make
17443         sure to associate it with a basic block.
17445         * flow.c (commit_one_edge_insertion): A block with one successor
17446         can end in a JUMP_INSN that is not a simplejump.
17448 2000-01-12  Robert Lipe  <robertl@sco.com>
17450         * i386/sco5.h (INIT_SECTION_ASM_OP_COFF): Rename section to "ctor".
17451         (BUILD_VA_LIST_TYPE): Define.
17452         (EH_FRAME_SECTION_ASM_OP): Explictly define to better interact
17453         with crtstuff.c.
17455 2000-01-12  Jason Merrill  <jason@casey.cygnus.com>
17457         * cccp.c (do_pragma): Add cast to (char *).
17459 2000-01-12  Richard Henderson  <rth@cygnus.com>
17460             Fred Fish  <fnf@be.com>
17461             Jason Merrill  <jason@cygnus.com>
17463         * configure.in (i?86-*-beos{pe,elf,}*): Recognize.
17464         * i386/t-beos, i386/x-beos, i386/xm-beos.h: New files.
17465         * i386/beos-elf.h, i386/beos-pe.h: New files.
17467         * Makefile.in (CROSS_SYSTEM_HEADER_DIR): New.
17468         * cross-make (SYSTEM_HEADER_DIR): Define using
17469         CROSS_SYSTEM_HEADER_DIR.
17471         * gcc.c (LIBRARY_PATH_ENV): Provide default.
17472         (process_command): Use it.
17473         (main): Likewise.  Kill trailing = from env vars.
17474         (build_search_list): Put it back.
17475         * collect2.c (main): Use LIBRARY_PATH_ENV.
17477         * configure.in (GCC_NEED_DECLARATIONS): Add environ.
17478         * toplev.c: Use NEED_DECLARATION_ENVIRON.
17480         * tm.texi (Frame Layout): Document SMALL_STACK.
17481         * c-common.c (c_common_nodes_and_builtins): Check it.
17483         * system.h: Undef alloca after including glibc's <stdlib.h>,
17484         if USE_C_ALLOCA is defined.
17486         * gcc.c (set_input): New fn.
17487         (main): After all input files are compiled, reset the input file
17488         info to the first.
17490         * aclocal.m4 (rindex, index): If already defined, don't attempt
17491         to redefine.
17493         * ginclude/varargs.h: (__va_list__): Define ifndef.
17494         * ginclude/stdarg.h: Likewise.
17496         * ginclude/stddef.h (__WCHAR_TYPE__) [BEOS]: Use int
17497         instead of unsigned char.
17499         * hash.h (true, false, boolean): Undef before enum.
17501         * expmed.c (choose_multiplier): Cast &mhigh_lo and &mhigh_hi to be
17502         proper type of "HOST_WIDE_INT *", rather than their natural type of
17503         "unsigned HOST_WIDE_INT *".
17505 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17507         * svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
17509         * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED.
17511         * regclass.c (choose_hard_reg_mode): Likewise.
17513         * reload.c (find_valid_class, strict_memory_address_p): Likewise.
17515         * reorg.c (optimize_skip): Wrap prototype in macro conditionals.
17517 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17519         * c-common.c: PROTO -> PARAMS.
17520         * c-common.h: Likewise.
17521         * c-decl.c: Likewise.
17522         * c-iterate.c: Likewise.
17523         * c-lang.c: Likewise.
17524         * c-lex.c: Likewise.
17525         * c-lex.h: Likewise.
17526         * c-parse.in: Likewise.
17527         * c-pragma.c: Likewise.
17528         * c-pragma.h: Likewise.
17529         * c-tree.h: Likewise.
17530         * c-typeck.c: Likewise.
17531         * objc/objc-act.c: Likewise.
17532         * objc/objc-act.h: Likewise.
17534 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17536         * m88k-protos.h: New file.
17538         * m88k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17539         time warnings.
17541         * m88k.h: Move prototypes to m88k-protos.h.  Fix compile time warnings.
17543         * m88k.md: Likewise.
17545         * tekXD88.h: Likewise.
17547 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17549         * m68k-protos.h: New file.
17551         * m68k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17552         time warnings.
17554         * m68k.h: Move prototypes to m68k-protos.h.  Fix compile time warnings.
17556         * mot3300.h: Likewise.
17558 2000-01-12  Richard Earnshaw <rearnsha@arm.com>
17560         * haifa-sched.c (split_edges): Pass edgeset_size as second arg to
17561         extract_bitlst.
17562         (extract_bitlist): Declare bitlen.
17564 2000-01-12  Zack Weinberg  <zack@wolery.cumb.org
17566         * cccp.c: Accept and ignore -lang-fortran.
17568         * c-typeck.c (build_c_cast): Issue -Wcast-qual warnings if the
17569         qualifiers don't match at any level of pointerness.
17571 2000-01-12  Robert Lipe  <robertl@sco.com>
17573         * i386/sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
17575 2000-01-12  Bernd Schmidt  <bernds@cygnus.co.uk>
17577         * reload1.c (reload_reg_unavailable): New static variable.
17578         (reload_reg_free_p): Test it.
17579         (reload_reg_free_for_value_p): Test it instead of
17580         reload_reg_used.
17581         (choose_reload_regs_init): Compute it.
17583 Wed Jan 12 03:24:41 2000  Toshiyasu Morita (toshi.morita@sega.com)
17585         * reorg.c (fill_slots_from_thread): Check modified_in_p
17586         before replacing.
17588 Wed Jan 12 03:20:31 2000  John Marshall <john_w_marshall@palm.com>
17590         * gcc.texi (Funding, GNU/Linux, Copying, Contributors): Format
17591         these nodes even if INTERNALS is not set.
17593 Wed Jan 12 09:39:22 2000  Nick Burrett  <nick.burrett@btinternet.com>
17595         * gcse.c (delete_null_pointer_checks_1): Cope when
17596         get_condition cannot determine the condition.
17598 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
17600         * toplev.h (set_message_length): Declare.
17602         * diagnostic.c (obstack_chunk_alloc): Define macro.
17603         (obstack_chunk_free): Likewise.
17604         (struct output_buffer): New data structure.
17605         (vmessage): Remove.
17606         (output_maximum_width): New variable.
17607         (doing_line_wrapping, set_message_length, init_output_buffer,
17608         get_output_prefix, output_space_left, emit_output_prefix,
17609         output_newline, output_append, output_puts, dump_output,
17610         vbuild_message_string, build_message_string, build_location_prefix,
17611         voutput_notice, output_printf, line_wrapper_printf,
17612         vline_wrapper_message_with_location):  New functions. Implement
17613         automatic line wrapping.
17614         (v_message_with_decl): Make it handle automatic line wrapping.
17615         (v_error_with_file_and_line): Likewise.
17616         (v_warning_with_file_and_line): Likewise.
17617         (announce_function): Likewise.
17618         (default_print_error_function): Likewise.
17620 2000-01-11 16:24 -0800  Zack Weinberg  <zack@wolery.cumb.org>
17622         * cpplib.h (struct cpp_options): Change lang_asm to char.
17623         Add lang_fortran.
17624         * cppinit.c (builtin_array): Take out __STDC_VERSION__, it's
17625         done in cpp_handle_option now.
17626         (initialize_builtins): Take out special case code used only by
17627         __STDC_VERSION__.
17628         (cpp_handle_option): Turn off trigraphs and trigraph warnings
17629         if -traditional.  Recognize -lang-fortran and set
17630         lang_fortran, also turn off cplusplus_comments.
17631         (print_help): Document -lang-fortran.
17632         * cpplib.c (handle_directive): Ignore `# 123 "file"' if
17633         lang_asm. Ignore all directives other than `# 123 "file"' if
17634         CPP_PREPROCESSED.
17635         (cpp_get_token): If -traditional, don't recognize directives
17636         unless the # is in column 1.
17637         (parse_string): If lang_fortran or lang_asm, silently
17638         terminate strings ('' or "") at end of line.
17639         Remove unnecessary braces.
17641 2000-01-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17642             Richard Henderson  <rth@cygnus.com>
17644         * resource.c (mark_referenced_resources): Mark a set strict_low_part
17645         as used.
17646         * config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
17647         strict_low_part when possible.
17649 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17651         * alias.c: PROTO -> PARAMS.
17652         * basic-block.h: Likewise.
17653         * bitmap.c: Likewise.
17654         * bitmap.h: Likewise.
17655         * builtins.c: Likewise.
17656         * c-aux-info.c: Likewise.
17657         * caller-save.c: Likewise.
17658         * calls.c: Likewise.
17660 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17662         * Makefile.in (toplev.o): Depend on regs.h.
17664         * output.h (tdesc_section): Prototype.
17666         * regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED.
17668         * sdbout.c: Include "tm_p.h".
17670         * toplev.c: Include "regs.h".
17672 Tue Jan 11 11:37:58 2000  Mike Stump  <mrs@wrs.com>
17674         * unroll.c (unroll_loop): Add EH support.
17676 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17678         * pa-protos.h: New file.
17680         * pa.c: Include recog.h and tm_p.h.
17681         (compute_zdepwi_operands, compute_movstrsi_length,
17682         remove_useless_addtr_insns, store_reg, load_reg, set_reg_plus_d,
17683         find_addr_reg, import_milli): Add static prototypes.
17684         (pa_cpu_string, pa_arch_string): Constify a char*.
17685         (legitimize_pic_address): Pass argument `mode' to pic_label_operand.
17686         (read_only_operand): Add argument `mode'.
17687         (singlemove_string, output_move_double, output_fp_move_double,
17688         output_block_move, output_and, output_ior, output_ascii,
17689         remove_useless_addtr_insns, milli_names, output_mul_insn,
17690         output_div_insn, output_mod_insn, output_arg_descriptor,
17691         output_cbranch, output_bb, output_bvb, output_dbra, ,
17692         output_millicode_call, output_call, hppa_encode_label,
17693         output_parallel_movb, output_parallel_addb): Constify a char*.
17694         (hppa_va_start): Mark parameter `stdarg_p' with ATTRIBUTE_UNUSED.
17695         (output_parallel_addb): Remove extra arg to `constrain_operands'
17697         * pa.h:  Move all prototypes to pa-protos.h.
17698         (pa_cpu_string, pa_arch_string): Constify a char*.
17699         (LEGITIMIZE_ADDRESS): Call `symbolic_operand' with mode argument.
17701         * pa.md: Call `function_label_operand' with mode argument.
17702         Likewise for `read_only_operand'.
17703         Fix nesting of parens in call to `symbolic_operand'.
17705 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17707         * i860-protos.h: New file.
17709         * i860.c: Include tm_p.h.  Add static prototypes.  Fix compile
17710         time warnings.
17712         * i860.h: Move prototypes to i860-protos.h.  Fix compile time warnings.
17714         * i860.md: Likewise.
17716 Tue Jan 11 18:59:35 MET 2000  Jan Hubicka <jh@suse.cz>
17718         * i386.md (movstrsi expander): Rewrite.
17719         (movstrsi_1 insn): Deleted.
17720         (strmovhi, strmovqi expander): New expanders.
17721         (movshi_1, movsqi_1, rep_movsi, rep_movqi): New patterns.
17722         * i386.c (x86_single_stringop): New global variable.
17723         * i386.h (x86_single_stringop): Declare.
17724         (TARGET_SINGLE_STRINGOP): New macro.
17726 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
17728         * config/mips/mips.c (mips_va_arg): For EABI, emit the queued
17729         integer vararg POSTINCREMENT before the destination of the jump
17730         for the hard fp case.
17731         (function_arg_pass_by_reference): Pass a copy of CUM to
17732         FUNCTION_ARG.
17734         * config/mips/mips.h (GO_IF_LEGITIMATE_ADDRESS): Move check
17735         for CONSTANT_ADDRESS_P above while loop for subreg.
17737 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
17739         * flow.c (propagate_block): When a prologue/epilogue insn
17740         is marked dead, unconditionally clear libcall_is_dead and
17741         insn_is_dead, and only dump rtl if warnings aren't being
17742         suppressed.
17744 Tue Jan 11 16:26:47 MET 2000  Jan Hubicka <jh@suse.cz>
17746         * i386.c (ix86_attr_length_default): Handle TYPE_STR and TYPE_CLD.
17747         * i386.md (FIRST_PSEUDO_REGISTER): Set to 20.
17748         (FIXED_REGISTERS): Set dirflag as fixed.
17749         (CALL_USED_REGISTERS): Set dirflag as used.
17750         (REG_ALLOC_ORDER): Set dirflag as last one.
17751         (DIRFLAG_REG): New macro.
17752         (MD_ASM_CLOBBERS): Asm clobber dirflag for backward compatibility.
17753         (HI_REGISTER_NAMES): Add dirflag.
17754         (DEBUF_PRINT_REG): Handle dirflag.
17755         * i386.md (type attribute): New cld and str types.
17756         (length_opcode attribute): Set cld and str to 1.
17757         (memory attribute): Set str to unknown - it is not clear from the
17758         patterns.
17759         (pent_np function unit): Prefixed string operations takes 12 cycles
17760         minimally; cld takes 2 cycles.
17761         (ppro_uops attribute): Str is "many" and cld is "few".
17762         (ppro_p0 unit): Handle cld here.
17763         (k6_alux unit): Handle cld and str types.
17764         (k6_load unit): It is ocupied by str opcodes.
17765         (k6_store unit): It is ocupied by str opcodes.
17766         (athlon_decode): Str is vector decoded.
17767         (athlon_ieu): Handle str and cld.
17768         (cld pattern): New.
17769         (movstrsi, clrstr, cmpstr, strlen expander): Emit cld instruction
17770         (movstrsi_1, clrstrsi_1, cmpstrsi_1, strlensi_1,
17771         cmpstrsi_nz_1 insn): Do not output cld instruction
17773 Tue Jan 11 06:14:39 2000  David Starner <dstarner98@aasaa.ofe.org>
17775         * gcc.texi (G++ and GCC): Add Java and Chill.
17776         (Bug Critera): Don't list languages.
17778         * gcc.texi (Incompatibilities): No longer claim most C compilers
17779         are K&R.
17781         * gcc.texi (G++ and GCC): Update other front-ends list.
17783 Tue Jan 11 05:49:01 2000  Jeffrey A Law  (law@cygnus.com)
17785         * i386.c (ix86_expand_setcc): Fix typo.
17786         (ix86_expand_movcc): Similarly.
17788         * Band-aid until haifa's bitset implementation is nuked.
17789         * haifa-sched.c (extract_bitlst): New parameter for size of the
17790         bitset in bits.  All callers changed.  Avoid looking at undefined
17791         bits in the bitset.
17792         (edgeset_bitsize): New variable.
17793         (schedule_region): Initialize edgeset_bitsize.
17795 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17797         * Makefile.in (optabs.o): Depend on real.h
17798         (resource.o): Depend on insn-attr.h
17800         * builtins.c (result_vector): Wrap prototype in macro conditions
17801         governing definition and use.
17803         * c-common.c: Include tm_p.h.
17805         * c-lex.c: Likewise.
17807         * elfos.h: Constify a char*.
17809         * final.c (align_fuzz): Wrap prototype in macro HAVE_ATTR_length.
17810         (get_attr_length, shorten_branches, profile_after_prologue): Mark
17811         parameter with ATTRIBUTE_UNUSED.
17813         * fold-const.c (exact_real_inverse): Wrap variable `i' in
17814         CHECK_FLOAT_VALUE.
17816         * haifa-sched.c (schedule_insns): Mark parameter with
17817         ATTRIBUTE_UNUSED.
17819         * optabs.c: Include real.h.
17821         * real.h (ereal_atof): Add prototype arguments.
17823         * resource.c: Include insn-attr.h.
17825         * sdbout.c (sdbout_queue_anonymous_type,
17826         sdbout_dequeue_anonymous_types): Wrap in macro
17827         SDB_ALLOW_FORWARD_REFERENCES.
17828         (sdbout_init, sdbout_start_new_source_file): Mark parameter with
17829         ATTRIBUTE_UNUSED.
17831         * stmt.c (expand_return): Wrap variable `op0' in macro HAVE_return.
17833         * stupid.c: Include tm_p.h.
17835         * tree.c (real_value_from_int_cst): Mark parameter with
17836         ATTRIBUTE_UNUSED.
17838 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17840         * i960-protos.h: New file.
17842         * i960.c: Include tm_p.h.  Add static prototypes.  Fix compile
17843         time warnings.
17845         * i960.h: Move prototypes to i960-protos.h.  Fix compile time warnings.
17847 2000-01-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17849         * combine.c (expand_field_assignment): Do not discard SUBREGs
17850         while computing nonzero_bits.
17852 2000-01-09  Nick Clifton  <nickc@cygnus.com>
17854         * config/arm/arm.c: Fix compile time warnings about signed vs
17855         unsigned constants.
17856         * config/arm/arm.h: Fix compile time warnings about signed vs
17857         unsigned constants.
17859 2000-01-09  Philip Blundell  <philb@gnu.org>
17861         * config/arm/arm.c (output_return_instruction): Use `ldr' rather
17862         than `ldm' with only one register.
17863         * config/arm/arm.md (push_multi): Use `str' rather than `stm' with
17864         only one register.
17866         * config/arm/linux-gas.h (CLEAR_INSN_CACHE): Say that R0 is
17867         clobbered.
17869 Sun Jan  9 17:50:23 2000  Hans-Peter Nilsson  <hp@axis.com>
17871         * config/ns32k/ns32k.md (load or push effective address): Operand 1
17872         must have SImode.
17874 2000-01-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17876         * elfos.h (ASM_OUTPUT_LIMITED_STRING): Add parentheses around
17877         assignment used as truth value.
17879         * function.c (assign_temp): Mark parameter `dont_promote' with
17880         ATTRIBUTE_UNUSED.  Wrap variable `unsignedp' with macro
17881         PROMOTE_FOR_CALL_ONLY.
17883         * genrecog.c (write_subroutine): Mark variable `operands' with
17884         ATTRIBUTE_UNUSED.
17886         * optabs.c (prepare_cmp_insn): Mark parameter `align' with
17887         ATTRIBUTE_UNUSED.
17889         * sdbout.c (sdbout_init): Likewise for parameter `asm_file'.
17890         (sdbout_begin_block, sdbout_end_block): Likewise for `file'.
17892         * toplev.c (note_deferral_of_defined_inline_function): Likewise
17893         for `decl'.
17895 2000-01-09  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17897         * config/c4x.h: Tidy up comments.
17898         * config/c4x.c: Likewise.
17900 Sun Jan  9 01:02:55 EST 2000  John Wehle  (john@feith.com)
17902         * fold-const.c (lshift_double, rshift_double): Handle
17903         shifting by 2 * HOST_BITS_PER_WIDE_INT correctly.
17905 2000-01-08  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17907         * toplev.c (rest_of_compilation): Initialize cse_not_expected as
17908         in prepare_function_start().
17910 Sat Jan  8 12:12:46 2000  Nick Clifton  <nickc@cygnus.com>
17912         * config/v850/v850.c (expand_epilogue): Interrupt functions no
17913         longer allocate extra stack for function calls.
17915 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17917         * config/c4x/c4x.md (*subqf3_set): Fix typo.
17919 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17921         * config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Define as 0.
17923 2000-01-07  David Edelsohn  <edelsohn@gnu.org>
17925         * rs6000.c (processor_target_table): Add power3 as alias for 630.
17926         * aix43.h: Revert Aug 2 change.
17927         (HAS_INIT_SECTION): Define, not visible yet.
17928         (LD_INIT_SWITCH): Define, not visible yet.
17929         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
17931         * glimits.h (__LONG_MAX__): Recognize 64-bit AIX too.
17933         * collect2.c (main): Expand ld2 size further.
17934         (export_object_lst): Cast assignment to avoid warning.
17935         (main, LD_INIT_SWITCH): Add AIX 4.2+ -binitfini support.
17936         (scan_prog_file, COFF): Do not collect initialization or
17937         finalization functions generated for entire shared object if
17938         init/fini support present.
17940 2000-01-07  Nick Clifton  <nickc@cygnus.com>
17942         * config/elfos.h: Tidy up formatting of marcos.  Make sure
17943         that .section directives are always prefixed by a tab.
17945         * config/svr4.h: Add #include "elfos.h" and remove duplicate
17946         definitions.
17948 2000-01-07  Matt Austern  <austern@sgi.com>
17950         * fold-const.c (real_hex_to_f): Remove duplicate declaration of
17951         expon.
17953 Fri Jan  7 01:55:34 2000  Jeffrey A Law  (law@cygnus.com)
17955         * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
17956         crtstuff.c.
17957         (crtbegin.o, s-crtS): Likewise.
17959 2000-01-06  Richard Henderson  <rth@cygnus.com>
17961         * alpha.md (adddi_2+1): Limit offset such that it will be
17962         loadable with a single ldah+lda pair.
17963         (adddi_2+2): Explicitly fail split if we can't make it work.
17965 2000-01-06  Mumit Khan  <khan@xraylith.wisc.edu>
17967         * protoize.c: Conditionally include unistd.h.
17968         (IS_SAME_PATH_CHAR): New macro.
17969         (IS_SAME_PATH): New macro.
17970         (CPLUS_FILE_SUFFIX): New macro.
17971         (cplus_suffix): New static variable.
17972         (is_abspath): New static function.
17973         (in_system_include_dir): Handle DOS style pathnames.
17974         (file_could_be_converted): Likewise.
17975         (file_normally_convertible): Likewise.
17976         (directory_specified_p): Likewise.
17977         (file_excluded_p): Likewise.
17978         (abspath): Likewise.
17979         (shortpath): Likewise.
17980         (referenced_file_is_newer): Likewise.
17981         (save_def_or_dec): Likewise.
17982         (do_processing): Likewise.
17983         (main): Likewise.
17984         (edit_file): Likewise. Use rename instead of link.
17985         (rename_c_file): Likewise. Don't rename syscalls file.
17986         (munge_compile_params): Define null device for DOS based systems.
17987         (process_aux_info_file): Use binary mode if appliable.
17988         (edit_file): Likewise.
17989         * invoke.texi (Running Protoize): Document C++ suffixes used.
17991         * cccp.c: Delete PATH_SEPARATOR, DIR_SEPARATOR and
17992         IS_DIR_SEPARATOR macros.
17993         * collect2.c: Likewise.
17994         * cppinit.c: Likewise.
17995         * dwarf2out.c: Likewise.
17996         * gcc.c: Likewise.
17997         * gcov.c: Likewise.
17998         * prefix.c: Likewise.
17999         * rtl.c: Likewise.
18000         * toplev.c: Likewise.
18001         * system.h: And move to here.
18003         * prefix.c (update_path): Fix typo in variable name.
18005 2000-01-06  Richard Henderson  <rth@cygnus.com>
18007         * flow.c (mark_set_1): Use loop_depth+1 as reference weight.
18008         (find_auto_inc, mark_used_regs, try_pre_increment_1): Likewise.
18009         (count_reg_sets_1, count_reg_references): Likewise.
18010         (flow_loops_level_compute): Start counting actual loop depth at 1.
18011         (flow_loops_find): Likewise.
18012         * local-alloc.c (update_equiv_regs): Likewise.
18013         * regclass.c (regclass): Re-instate Jan 4 0-based loop_depth change.
18015 2000-01-06  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
18017         * defaults.h (DWARF_FRAME_REGISTERS): if not defined, default to
18018         FIRST_PSEUDO_REGISTER
18019         * dwarf2out.c: Don't include frame.h
18020         * dwarfout.c: Likewise
18021         * Makefile.in (dwarfout.o, dwarf2out.o): Remove dependence on
18022         frame.h
18024 Thu Jan  6 13:44:59 CET 2000  Jan Hubicka  <jh@suse.cz>
18026         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
18027         dead registers.
18029         * i386.c (movsf splitter): Fix typo in my last checkin.
18031 2000-01-05  Nick Clifton  <nickc@cygnus.com>
18033         * varasm.c (IN_NAMED_SECTION): Allow targets to provide their
18034         own definition of this macro.
18035         (asm_emit_uninitialised): Invoke UNIQUE_SECTION if either
18036         flag_data_sections or UNIQUE_SECTION_P are true.
18038         * tm.texi (UNIQUE_SECTION): Document that it can be called for
18039         unitialised data decls.
18041         * config/i386/winnt.c (i386_pe_unique_section): Cope with
18042         being called for uninitialised data.
18044         * config/i386/interix.c (i386_pe_unique_section): Cope with
18045         being called for uninitialised data.
18047         * config/mips/elf.h (UNIQUE_SECTION): Cope with being called
18048         for uninitialised data.
18050         * config/mips/elf64.h (UNIQUE_SECTION): Cope with being called
18051         for uninitialised data.
18053         * config/mips/iri6gld.h (UNIQUE_SECTION): Cope with being called
18054         for uninitialised data.
18056         * config/arm/unknown-elf.h (IN_NAMED_SECTION): Define.
18057         (UNIQUE_SECTION_P): Always generate a unique section if
18058         flag_data_sections is true.
18059         (UNIQUE_SECTION): Also generate unique sections for
18060         uninitialised data.
18061         (ASM_OUTPUT_ALIGNED_BSS): Redefine to use named_section().
18062         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Redefine to use
18063         named_section().
18065 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18067         * config/c4x/t-c4x (TARGET_LIBGCC2_CFLAGS): Don't redefine SF, DF,
18068         SI, or DI.
18070 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18072         * config/c4x/c4x.md (udivqi3, divqi3): Delete.
18073         (umodqi3, modqi3, udivhi3, divhi3, umodhi3, modhi3, ffsqi2): Likewise.
18074         (*smulqi3_highpart_noclobber, *umulqi3_highpart_noclobber): New.
18075         (*lshrqi3_const_noclobber, *lshrqi3_nonconst_noclobber): Likewise.
18076         (*ashrqi3_const_noclobber, *ashrqi3_nonconst_noclobber): Likewise.
18078         * c4x.h (INIT_TARGET_OPTABS): Define to init libcalls.
18080 2000-01-05 11:25 -0800  Zack Weinberg  <zack@rabi.columbia.edu>
18082         * c-decl.c (finish_enum): Simplify code to determine minimum and
18083         maximum values of the enum, and calculate the type.  Remove check
18084         for FUNCTION_DECLs in the values list, which cannot happen.  Replace
18085         the DECL_INITIAL of each enumeration constant with a copy converted
18086         to the enumeration type.  When updating variant types, don't bother
18087         updating the type itself.
18089         * c-typeck.c (build_binary_op): Simplify conditional expressions
18090         when weeding out spurious signed-unsigned warnings.  Add new
18091         spurious warning category: if the unsigned quantity is an enum
18092         and its maximum value fits in signed_type(result_type).  Update
18093         commentary.
18094         (build_conditional_expr): Warn here if one alternative is signed
18095         and the other is unsigned.
18097 2000-01-05  Nick Clifton  <nickc@cygnus.com>
18099         * config/fr30/fr30.h: Remove extraneous comments.
18101 2000-01-05  Bernd Schmidt  <bernds@cygnus.co.uk>
18103         * reload1.c (choose_reload_regs): When disabling a reload, also
18104         set reload_spill_index to -1.
18106 2000-01-04  Joel Sherrill (joel@OARcorp.com>
18108         * configure.in (m68*-*-rtemscoff*): New target, formal name for
18109         old m68*-*-rtems*.
18110         (m68*-*-rtemself*): New target.
18111         (mips64orion-*-rtems*): Remove duplicate definition of tm_file.
18112         (sparc*-*-rtemsaout*): New target, formal name for old sparc*-*-rtems*.
18113         (sparc*-*-rtemself*): New target.
18114         (sparc*-*-rtems*): Now elf not a.out.
18115         * config/i386/rtems.h: Include config/rtems.h.
18116         * config/i386/rtemself.h: Include config/rtems.h.
18117         * config/i960/rtems.h: Include config/rtems.h.
18118         * config/m68k/rtems.h: Include config/rtems.h.
18119         * config/m68k/rtemself.h: Include config/rtems.h.
18120         * config/mips/rtems64.h: Include config/rtems.h.
18121         * config/pa/rtems.h: Include config/rtems.h.
18122         * config/rs6000/rtems.h: Include config/rtems.h.
18123         * config/sh/rtems.h: Include config/rtems.h.
18124         * config/sh/rtemself.h: Include config/rtems.h.
18125         * config/sparc/rtems.h: Include config/rtems.h.
18126         * config/sparc/rtemself.h: Include config/rtems.h
18128 Tue Jan  4 23:59:26 2000  Denis Chertykov <denisc@overta.ru>
18130         * final.c (shorten_branches): Correctly compute length of
18131         asms without operands.
18133 Tue Jan  4 22:55:41 2000  Steve Chamberlain <sac@pobox.com>
18135         * configure.in: Add pj target.
18136         * configure: Regenerate.
18137         * config/pj: New directory.
18138         * config/pj/lib1funcs.S: New file.
18139         * config/pj/linux.h: New file.
18140         * config/pj/pj.c: New file.
18141         * config/pj/pj.md: New file.
18142         * config/pj/pjl.h: New file.
18143         * config/pj/t-pj: New file.
18144         * config/pj/xm-pj.h: New file
18146 Tue Jan  4 22:30:16 2000  Jeffrey A Law  (law@cygnus.com)
18148         * toplev.c (rest_of_compilation): Run shorten-branches before
18149         reg-stack for now.
18151 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18153         * config/c4x/c4x.h (IS_XXX_REG, IS_XXX_REGNO): Swap behaviour of
18154         macros so that they're consistent with their names.
18155         * config/c4x/c4x.c (IS_XXX_REG, IS_XXX_REGNO): Likewise.
18156         * config/c4x/c4x.md (IS_XXX_REG, IS_XXX_REGNO): Likewise.
18158 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18160         * config/c4x/c4x.md (*addqi3_noclobber_reload): Ensure that CC never
18161         modified inadvertently.
18163 2000-01-04  Joel Sherrill <joel@OARcorp.com>
18165         * configure.in (v850*-*-rtems*): New target.
18166         * configure: Regenerate.
18167         * config/v850/rtems.h: New file.
18169 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
18171         * gthr-win32.h (__gthread_active_p): Support Mingw MT runtime.
18172         (__gthread_key_create): Likewise.
18173         (__gthread_key_dtor):  Likewise.
18174         (__gthread_once): Fix logic.
18175         (__gthread_key_delete): Cast away constness.
18177         * i386/cygwin.h (SUBTARGET_SWITCHES): Add -mthreads option.
18178         * invoke.texi: Document.
18179         * i386/mingw32.h (CPP_SPEC): Use.
18180         (LIBGCC_SPEC): Likewise.
18181         * i386/crtdll.h (LIBGCC_SPEC): Likewise.
18183 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
18185         * rs6000/sysv4.h (ASM_OUTPUT_DEF): Undefine.
18186         (HANDLE_PRAGMA_PACK): Undefine.
18187         (SLOW_UNALIGNED_ACCESS): Define.
18189 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
18191         * expmed.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
18192         to default definition.
18193         (store_bit_field): Call SLOW_UNALIGNED_ACCESS with mode and alignment.
18194         (store_fixed_bit_field): Call macro with word_mode and alignment.
18195         (extract_bit_field): Call macro with relevant mode and alignment.
18196         * expr.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
18197         to default definition.
18198         (move_by_pieces): Call SLOW_UNALIGNED_ACCESS with word_mode
18199         and alignment.
18200         (move_by_pieces_ninsns): Likewise.
18201         (clear_by_pieces): Likewise.
18202         (emit_push_insn): Likewise.
18203         (store_field): Call macro with relevant mode and alignment.
18204         (expand_expr): Likewise.
18205         (expand_expr_unaligned): Likewise.
18207         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
18208         (SLOW_UNALIGNED_ACCESS): Define.
18209         (CASE_VECTOR_MODE): Always use 32-bit offsets.
18210         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
18211         (EXTRA_SECTION_FUNCTIONS): Indent .csect pseudo-op.
18212         (toc_section): Likewise and .toc pseudo-op.
18213         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
18214         64-bit mode.
18215         (TEXT_SECTION_ASM_OP): Likewise.
18216         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
18217         32-bit offsets.
18219         * a29k.h (SLOW_UNALIGNED_ACCESS): Add MODE and ALIGN parameters.
18220         * alpha.h (SLOW_UNALIGNED_ACCESS): Likewise.
18221         * arm/thumb.h (SLOW_UNALIGNED_ACCESS): Likewise.
18222         * gmicro.h (SLOW_UNALIGNED_ACCESS): Likewise.
18223         * fr30.h (SLOW_UNALIGNED_ACCESS): Likewise.
18225 Tue Jan  4 11:44:13 2000  Jeffrey A Law  (law@cygnus.com)
18227         * regclass.c: Revert my Jan 4 change to loop cost computation.
18229 Tue Jan  4 19:22:39 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18231         * regclass.c (regclass): Do not obey REG_N_REFS in non-optimizing
18232         compilation.
18234 2000-01-04  Stan Cox  <scox@cygnus.com>
18236         * haifa-sched.c (build_control_flow): Change unreachable simple
18237         loop test to check if current block has only one predecessor.
18238         (find_rgns): Initialize degree.  Use dest as degree index, not src.
18240 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18242         * builtins.c (expand_builtin_strlen): Initialize variable `icode'.
18244         * calls.c (expand_call): Likewise for
18245         `old_stack_arg_under_construction'.
18247         * cpphash.c (macroexpand): Likewise for `args' and `rest_zero'.
18249         * function.c (pad_to_arg_alignment): Likewise for `save_var' and
18250         `save_constant'.
18252         * gcc.c (execute): Likewise for `ut' and `st'.
18254         * genattrtab.c (attr_rtx): Likewise for `rt_val'.
18256         * genopinit.c (gen_insn): Likewise for `m1', `m2' and `op'.
18258         * jump.c (jump_optimize_1): Likewise for `temp2'.
18260         * local-alloc.c (block_alloc): Likewise for `r1'.
18262         * loop.c (recombine_givs): Likewise for `life_start' and `life_end'.
18264         * reg-stack.c (check_asm_stack_operands): Likewise for `clobber_reg'.
18265         (subst_asm_stack_regs): Likewise for `clobber_reg' and `clobber_loc'.
18267         * regmove.c (fixup_match_1): Likewise for `insn_const', `dst_node'
18268         and `set2'.
18270         * reload.c (find_reloads): Likewise for `goal_alternative_number'
18271         and `goal_earlyclobber'.
18273         * scan-decls.c (scan_decls): Likewise for `prev_id_end'.
18275         * sdbout.c (sdbout_one_type): Likewise for `member_scl'.
18277         * stupid.c (stupid_life_analysis): Likewise for `chain'.
18279         * unroll.c (copy_loop_body): Likewise for `copy'.
18281         * varasm.c (output_constructor): Likewise for `byte'.
18283 Tue Jan  4 15:34:34 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18285         * i386.c (ix86_expand_move): Allow pushes of memory, offload to memory
18286         all FP constants for constant->reg moves.
18287         (ix86_split_to_parts): Try to convert memory address into immediate
18288         when available in the constant pool.
18289         * i386.h (PREFERRED_RELOAD_CLASS): Allow CONST_DOUBLE->integer reg
18290         moves.
18291         (LEGITIMATE_CONSTANT_P): Return 1.
18292         * i386.md (pushsf): New splitter to convert constant pool memory
18293         reference to immediate.
18294         (mov?f): Likewise; do not allow CONST_DOUBLE for reg moves before
18295         reload.
18297 2000-01-04  Bernd Schmidt  <bernds@cygnus.co.uk>
18299         * i386.md (ashlsi3_cmpno): Don't accept variables shifts.
18300         (ashlhi3_cmpno, ashlqi3_cmpno, ashrsi3_cmpno, ashrhi3_cmpno,
18301         ashrqi3_cmpno, lshrsi3_cmpno, lshrhi3_cmpno, lshrqi3_cmpno): Likewise.
18302         (rotlsi3_cmpno, rotlhi3_cmpno, rotlqi3_cmpno, rotrsi3_cmpno,
18303         rotrhi3_cmpno, rotrqi3_cmpno): Likewise.
18305 2000-01-04  Martin von Löwis  <loewis@informatik.hu-berlin.de>
18307         * ginclude/stdbool.h:  Support compilation as C++.
18309 Tue Jan  4 01:35:13 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
18311         * fold-const.c (make_range): Don't try to reverse an unbounded range.
18313 Tue Jan  4 00:18:46 2000  Jeffrey A Law  (law@cygnus.com)
18315         * regclass.c (regclass): Properly compute loop_cost.  Adjust
18316         comments.
18318         * regclass.c: Fix minor whitespace problems.
18320 2000-01-03  Anthony Green  <green@cygnus.com>
18322         * config/i386/i386.md (builtin_setjmp_receiver): New pattern.
18323         Restore the pic register if required.
18325 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
18327         * c-common.c (format_char_info): Update comment.
18328         (check_format_info): Recognize 'z' modifier in the same way 'Z'
18329         was recognized.  Emit warning for formats new in ISO C99 only
18330         if flag_isoc9x is not set.
18332 Mon Jan  3 12:59:54 2000  Mark P. Mitchell  <mark@codesourcery.com>
18334         * config/mips/iris6gld.h: Fix typo in -mabi=n32 specs.
18336 Mon Jan  3 15:33:37 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18338         * combine.c (expand_compound_operation): Do not convert ZERO_EXTEND to
18339         SIGN_EXTEND, convert SIGN_EXTEND to ZERO_EXTEND.
18340         (make_compound_operation): Choose cheaper alternative between
18341         ZERO_EXTEND and SIGN_EXTEND when sign bit is not set.
18343         * regclass.c (op_costs): Remove global variable.
18344         (record_reg_classes): New parameter "op_costs" and "reg_pref".
18345         (record_operand_costs): Break out from ...
18346         (scan_one_insn): ... here.
18347         (dump_regclass): Make dumps nicer.
18348         (regclass): Dump preferrences choosed and changes done during passes.
18350 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
18352         * config/sparc/sparc.c (gen_df_reg): Fix for 32bit SPARC.
18354 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
18356         * config/sparc/sparc.c (gen_df_reg): New function.
18357         * config/sparc/sparc-protos.h (gen_df_reg): Add prototype.
18358         * config/sparc/sparc.md (movtf_no_e_insn_sp64+1,
18359         movtf_no_e_insn_sp64+2, movtf_no_e_insn_sp64+3, movtf_cc_sp64+1,
18360         movtf_cc_reg_sp64+1): Use it.
18362 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
18364         * integrate.c (copy_decl_for_inlining): Clear TREE_ADDRESSABLE on
18365         copied LABEL_DECLs.
18367 Mon Jan  3 02:54:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
18369         * config/i386/i386.c (ix86_expand_unary_operator): Function
18370         definition made void.
18371         (ix86_expand_binary_operator): Update outdated preceding comment.
18372         * config/i386/i386-protos.h (ix86_expand_unary_operator): Update
18373         prototype.
18375         * config/i386/i386.c (override_options): Fix option-name typo.
18377 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
18379         * system.h (CEIL): Define.
18380         * builtins.c (CEIL): Remove.
18381         * expmed.c (CEIL): Likewise.
18382         * expr.c (CEIL): Likewise.
18383         * stor-layout.c (CEIL): Likewise.
18385 2000-01-02  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
18387         * expr.c (store_constructor_field): Fix typo introduced with last
18388         gcc2 merge.
18390 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
18392         * tree.h (BINFO_N_BASETYPES): New macro.
18394 2000-01-01  Bernd Schmidt  <bernds@cygnus.co.uk>
18396         * expmed.c (emit_store_flag): Prevent losing a pending stack
18397         adjust the same way we prevent losing queued increments.
18399 See ChangeLog.2 for earlier changes.