OSDN Git Service

bcd6f9bea5e6c97f7b9d3501bafac24fed14e8b0
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2000-07-19  Jim Wilson  <wilson@cygnus.com>
2
3         * config/ia64/ia64.h (HARD_REGNO_MODE_OK): Don't allow XFmode in
4         GR_REGS.
5
6 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
7
8         * tradcpp.c (rescan): Do not recognize directives when the #
9         is indented.
10
11 2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>
12
13         Implement C++ named operators.
14
15         * cpplib.h (TTYPE_TABLE): Move CPP_MIN and CPP_MAX into block
16         of operators allowed in #if and having an _EQ variant.  Add
17         CPP_MIN_EQ, CPP_MAX_EQ, and CPP_DEFINED.
18         (cpp_token flags): Add NAMED_OP.
19         (enum node_type): Add T_OPERATOR.
20         (struct cpp_hashnode): Add code slot to value union.
21         * cpphash.h (spec_nodes): Remove n_defined.
22
23         * cpplex.c (lex_line): Convert T_OPERATOR nodes to their proper types.
24         (spell_token, can_paste, maybe_paste_with_next): Handle named operators.
25         (is_macro_disabled): Tweak error messages.
26
27         * cpplib.c (get_define_node): Disallow all named operators as
28         macro names.  Tweak error messages.
29         (_cpp_init_stacks): Don't set up spec_nodes->n_defined.
30
31         * cppinit.c (builtin_array): Add entries for the named operators.
32         * cppexp.c (lex): Check for CPP_DEFINED token.
33         (priority table): Add entries for CPP_MIN and CPP_MAX.
34         (_cpp_parse_expr): Handle CPP_MIN and CPP_MAX.
35
36 2000-07-19  Bernd Schmidt  <bernds@cygnus.co.uk>
37
38         * gcse.c (INSN_CUID): If ENABLE_CHECKING, abort if the uid is
39         larger than the array of cuids.
40         (alloc_gcse_mem): Use uid_cuid rather than INSN_CUID when computing
41         cuids.
42
43 2000-07-19  Bruce Korb  <bkorb@gnu.org>
44
45         * fixinc/fixincl.c:  Convert to using a table of environment variables
46         and activate the auto-edit marker on the fixed output files.
47         * fixinc/fixlib.h:  Define the environment table
48         * fixinc/fixincl.sh: export the ${INPUT} dir
49         * fixinc/check.tpl: likewise
50
51 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
52
53         * gcc.c (.h spec): Fix typo.
54
55 Wed Jul 19 01:22:15 CEST 2000  Marc Espie  <espie@cvs.openbsd.org>
56
57         * Makefile.in: Fix tradcif.c path.
58
59 2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>
60
61         * cpplib.h (TTYPE_TABLE): Rearrange to use only two per-entry
62           macros, not five.
63
64         * cpphash.h (TOKEN_NAME): New macro.
65         (_cpp_spell_operator): Deleted.
66         (token_spellings): Now _cpp_token_spellings.
67
68         * cppexp.c: Use TOKEN_NAME or TYPE_NAME, not _cpp_spell_operator.
69         * cpplex.c: Use OP and TK macros when expanding the
70         TTYPE_TABLE.  Eliminate token_names.  For non-OPERATOR tokens,
71         store the stringification of the enumeration name (CPP_CHAR,
72         etc.) in the name slot of token_spellings.
73         Use TOKEN_NAME and/or TOKEN_SPELL, do not reference
74         token_spellings directly.
75         * cpplib.c: Use TOKEN_SPELL.
76
77         * cpplex.c (_cpp_push_token): If the token being pushed back
78         is the previous token in this context, just subtract one from
79         context->posn.
80         * cppmacro.c (save_expansion): Clear aux field when storing a
81         placemarker.
82
83 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
84
85         * cpplex.c (cpp_scan_buffer): Output line command even at the stop
86         buffer, provided it is not NULL.
87
88 2000-07-18  Alexandre Oliva  <aoliva@redhat.com>
89
90         * c-decl.c (duplicate_decls): Do not call make_var_volatile() in
91         case of invalid volatile re-declaration.
92
93 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
94
95         * calls.c (store_arg): Return non-zero if sibcall_failure is desired.
96         (expand_call): Adjust caller.
97
98 2000-07-17  Gabriel Dos Reis  <gdr@codesourcery.com>
99
100         * diagnostic.h (report_diagnostic): Change prototype.
101
102         * diagnostic.c (output_do_verbatim, diagnostic_for_asm,
103         diagnostic_for_decl):  Change prototype.
104         (error_with_decl, warning_with_decl, pedwarn_with_decl, warning,
105         error, warning, error_with_file_and_line,
106         warning_with_file_and_line, pedwarn_with_file_and_line, fatal):
107         Adjust call to report_diagnostic, diagnostic_for_decl.
108         (error_for_asm, warning_for_asm): Adjust call to diagnostic_for_asm.
109         (output_verbatim, verbatim): Adjust call to output_do_verbatim.
110
111         * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic. End
112         varaible argument list.
113
114 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
115
116         * cpphash.c: Don't include hashtab.h.  Most macro-handling code
117         moved to cppmacro.c.
118         (hash_HASHNODE, eq_HASHNODE, _cpp_dump_macro_hash,
119         dump_hash_helper): Delete.
120         (expand_hash, higher_prime_number, _cpp_lookup_with_hash,
121         cpp_forall_identifiers): New. Implement specialized version of
122         Vlad's expandable hash table.
123         (cpp_lookup): Use new functions.
124         (_cpp_init_macros, _cpp_cleanup_macros): Adjust for new
125         implementation.
126         * cppmacro.c: New file.
127         * cppinit.c (dump_macros_helper): New.
128         (cpp_finish): Iterate over the identifier table directly.
129         * cpplex.c (parse_name): Calculate the hash of the identifier
130         while we scan it.  Use _cpp_lookup_with_hash when we can.
131
132         * cpphash.h: Update prototypes.
133         (xcnewvec, HASHSTEP): New helper macros.
134         * cpplib.h: Update prototypes.
135         * Makefile.in (LIBCPP_OBJS): Add cppmacro.o.
136         (cppmacro.o): New rule.
137         (cpphash.o): Update deps.
138
139         * cppmain.c: Do not set pfile->printer if no_output is on.
140
141 2000-07-15  Neil Booth  <neilb@earthling.net>
142
143         * cpplib.c: Change all directive-handler functions to return
144         void, not int.
145         * cpphash.h: Update typedefs.
146
147 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
148
149         * configure: Regenerate.
150
151         * extend.texi (Extended Asm): Mention that a memory clobber
152         does not count as a side-effect.
153
154         * unroll.c (copy_loop_body): Fix one instance of using host
155         arithmetic on the target; fixes loop-4 on a 32-bit -> 64-bit
156         cross-compile.
157
158         * tlink.c (scan_linker_output): Tweak for output of AIX ld.
159
160 2000-07-17  Richard Henderson  <rth@cygnus.com>
161
162         * config/ia64/ia64.md (movdi): Split out load address code.
163         New post-reload splitter for symbolic operands.
164         (movdi_internal): Abort if we didn't split symbolic operands
165         when we should have.
166         * config/ia64/ia64.c (ia64_expand_load_address): New, from movdi bits.
167         (ia64_reorg): Split insns when not optimizing.
168         * config/ia64/ia64-protos.h (ia64_expand_load_address): Declare.
169
170 Mon Jul 17 23:43:26 MET DST 2000  Jan Hubicka  <jh@suse.cz>
171
172         * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Use LONG_DOUBLE_TYPE_SIZE
173         instead of MAX_LONG_DOUBLE_TYPE_SIZE to decide output format.
174
175 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
176
177         * loop.c (check_dbra_loop) : Changed loop_continue to loop->cont.
178
179 2000-07-17  Jason Merrill  <jason@redhat.com>
180
181         * Makefile.in (clean): Remove libgcc directory.
182
183         * configure.in (-Wno-long-long check): Use higher-level macros.
184
185 2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>
186
187         * simplify-rtx.c (simplify_binary_operation): Recognize
188            (compare (gt[u] (cc) 0) (lt[u] (cc) 0)).
189         (simplify_ternary_operation):  Do not examine MODE_BITSIZE of
190            a CONST_INT, it will always be zero.
191
192 2000-07-17  Chandrakala Chavva   <cchavva@cygnus.com>
193
194         * loop.c (check_dbra_loop) : Return if more than one condition is
195         present to control the loop.
196
197 Mon Jul 17 08:26:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
198
199         * mips.c (mips_expand_prologue): Don't calculate the last argument
200         register unless we need it.  When we are calculating this, make
201         sure FUNCTION_ARG is giving us a REG.
202
203 2000-07-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
204
205         * flow.c (libcall_dead_p): Use single_set to verify the insn
206         has only one set and get for analysis.
207         (propagate_one_insn): Don't pass the PATTERN of the insn.
208
209 2000-07-17  Mark Klein <mklein@dis.com>
210
211          * pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3.
212
213 2000-07-17  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
214
215         * Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
216         * configure.in (TARGET_GETGROUPS_T): Evaluate.
217         * sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
218         of second argument of getgroups.
219         * configure, config.in: Rebuilt.
220
221 2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>
222
223         * simplify-rtx.c (simplify_relational_operation): Two signed
224         values with equal high words are less/greater than each other if
225         their low words are less/greater when considered as unsigned.
226
227 Mon Jul 17 02:37:06 2000  Marc Espie <espie@openbsd.org>
228
229         * configure.in (vax-*-openbsd):  Change to new style configuration,
230         add collect2/float_format information.
231         * configure:  Rebuilt.
232         * config/vax/openbsd1.h:  New.
233         * config/vax/openbsd.h:  New.
234         * config/vax/t-openbsd:  New.
235
236 2000-07-17  Chip Salzenberg  <chip@valinux.com>
237
238         * c-common.c (shorten_compare): Quiet warnings about unsigned
239         comparisons with zero when they occur in a system header.
240
241 2000-07-17  Joseph S. Myers  <jsm28@cam.ac.uk>
242
243         * invoke.texi (-pedantic): Refer to ISO C instead of ANSI C, and
244         update to describe current practice.
245
246         * glimits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Define for C99.
247
248         * contrib.texi, cpp.texi, extend.texi, invoke.texi: Update
249         references to C9X.  Change references to -fstd and -flang-isoc9x
250         to refer to -std.
251
252         * c-common.c (scan_char_table): Allow "z" length modifiers on
253         diouxXn formats.
254         (check_format_info): Use TYPE_DOMAIN on the type matched against
255         for "z" formats, to retrieve the language size_t rather than the
256         internal one.
257
258         * c-common.c (check_format_info): Do not make a pedantic objection
259         to the 'L' length modifier if used with a floating point type
260         character.
261
262         * c-lex.c (yylex): Don't pedwarn for hexadecimal floating point
263         constants in C99 mode.
264
265 2000-07-17  Kazu Hirata  <kazu@hxi.com>
266
267         * h8300.md: Fix the format of mac.
268         (movsi_h8300hs): Output a tab after stmac instead of a space.
269
270         * h8300.c (two_insn_adds_subs_operand): Improve code for detecting
271         profitable adds/subs sequences.
272
273         * fold-const.c: Fix comment typos.
274
275 2000-07-16  Laurynas Biveinis  <lauras@softhome.net>
276
277         * cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
278
279 2000-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
280
281         * fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation.
282
283 2000-07-16  Neil Booth  <NeilB@earthling.net>
284
285         * cpplex.c: Update comments.
286         * README.Portability: Small update.
287
288 2000-07-16  Neil Booth  <NeilB@earthling.net>
289
290         * README.Portability:  Small update.
291
292 2000-07-15  Richard Henderson  <rth@cygnus.com>
293
294         * config/ia64/ia64-protos.h (ia64_move_ok): Prototype.
295         * config/ia64/ia64.c (ia64_move_ok): New function.
296         * config/ia64/ia64.md (movqi, movqi_internal): Use it.
297         (movhi, movsi, movdi, movsf, movdf, movxf): Likewise.
298
299 2000-07-15  Zack Weinberg  <zack@wolery.cumb.org>
300
301         * cpphash.c (save_expansion): Clear PREV_WHITE on tokens
302         immediately following a paste operator.
303         * cppinit.c (sort_options): New function (only for HOST_EBCDIC).
304         (cpp_reader_init): Call it, if HOST_EBCDIC.
305         (cpp_handle_options): Do not sort option list here.
306         (handle_option): Rename to cpp_handle_option and export.
307         * cpplex.c (cpp_scan_buffer_nooutput, cpp_scan_buffer): Use
308         _cpp_get_token directly.
309         (cpp_scan_line): Return 0 at EOF, 1 otherwise.
310         * cpplib.c (cpp_push_buffer): Don't set new->lineno to 1.
311         * cpplib.h: Prototype cpp_handle_option.  Update prototype of
312         cpp_scan_line.
313
314 2000-07-15  Richard Henderson  <rth@cygnus.com>
315
316         * fold-const.c (extract_muldiv): Don't optimize past an unsigned
317         cast around an expression.  Tidy other unsigned tests.
318
319 2000-07-15  Gabriel Dos Reis  <gdr@codesourcery.com>
320
321         * diagnostic.c (doing_line_wrapping, line_wrapper_printf, notice,
322         v_error_with_decl, v_warning_with_decl, v_pedwarn_with_decl): Remove.
323         (v_message_with_decl): Rename to ...
324         (format_with_decl): ... this. Tweak
325         (diagnostic_for_decl): New function.
326         (fatal_io_error): Use verbatim in lieu of notice.
327         (announce_function): Use verbatim.
328         (default_print_error_function): Likewise.
329         (error_with_decl, warning_with_decl, pedwarn_with_decl): Use new
330         infratructure.
331
332 2000-07-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
333
334         * mips.c (function_arg_pass_by_reference): Don't do automatic
335         aggregate initialization.
336         (machine_dependent_reorg): Initialize variable `mode'.
337
338         * mips.md (absdi2): Change variable `regno1' to unsigned int.
339         (reload_indi): Rename loword/hiword to lo_word/hi_word to avoid
340         conflicts with sys/param.h macro of the same name.
341         (reload_outdi): Likewise.
342
343 2000-07-15  Michael Meissner  <meissner@redhat.com>
344
345         * fold-const.c (fold): When optimizing FOO++ == CONST into ++FOO
346         == CONST + INCREMENT, don't overwrite the tree node for FOO++,
347         create a new node instead.
348
349 2000-07-15  Neil Booth  <NeilB@earthling.net>
350
351         * README.Portability: Correct example about calling a function
352         through a pointer to function.  Format wide paragraphs.
353
354 2000-07-15  Michael Meissner  <meissner@redhat.com>
355
356         * README.Portability: Update integer suffixes and function
357         prototype sections.
358
359 2000-07-15  Neil Booth  <NeilB@earthling.net>
360
361         * README.Portability: Small update.
362
363 2000-07-15  Neil Booth  <NeilB@earthling.net>
364
365         * README.Portability: New file.
366
367 Fri Jul 14 18:13:53 2000  Mark P Mitchell  <mark@codesourcery.com>
368
369         * INSTALL: Give special instructions for building GCC on Irix 6.
370         * config/mips/x-iris6 (CC): Don't set it.
371         (OLDCC): Likewise.
372
373 2000-07-14  Jason Merrill  <jason@redhat.com>
374
375         * dwarf2out.c (dwarf2out_frame_debug_expr): If we store the CFA
376         register in the stack and later in another register, use the new
377         register.
378
379 Fri Jul 14 10:25:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
380
381         * config/mips/mips.md: (absdi2): Handle sign_extend for
382         second operand.
383
384 2000-07-14  Nathan Sidwell  <nathan@codesourcery.com>
385
386         * cpplib.c (do_pragma_dependency): Tidy warning messages.
387
388 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
389
390         * .cvsignore: Correct typo.
391
392 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
393
394         * .cvsignore: Add generated YACC files.
395         * objc/.cvsignore: New file.
396
397 2000-07-14  Neil Booth  <NeilB@earthling.net>
398
399         * cpplex.c (adjust_column): New funcion.
400         (skip_whitespace): Use it.
401         (skip_block_comment): Use it, and warn about /*/* with
402         -Wcomments.
403
404 2000-07-14  Neil Booth  <NeilB@earthling.net>
405
406         * cpphash.c (struct macro_info): Add new members.
407         (_cpp_free_definition): Delete the macro directly.
408         (count_params): Return void, with first token of
409         expansion in struct macro_info on success.
410         (parse_define): Return int.  Hoist syntax checking from
411         save_macro_expansion.  Leave call to save_expansion to
412         _cpp_create_definition.
413         (alloc_macro): Needs just 2 arguments.
414         (free_macro): Delete.
415         (save_expansion): Don't perform syntax check.
416         (_cpp_create_definition): Call save_expansion.
417
418 2000-07-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
419
420         * genrecog.c (write_header): Split long string.
421
422         * cpphash.c (macro_info): Don't use the `signed' keyword.
423
424         * system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.
425
426 2000-07-13  Jakub Jelinek  <jakub@redhat.com>
427
428         * calls.c (stored_args_map): New variable.
429         (check_sibcall_argument_overlap_1): New.
430         (check_sibcall_argument_overlap): New.
431         (expand_call): Initialize stored_args_map.
432         Call check_sibcall_argument_overlap.
433
434 2000-07-13  Bruce Korb  <bkorb@gnu.org>
435
436         * fixinc/fixfixes.c: move EXIT_BROKEN to header, add sub-expr max count
437         (emit_gnu_type): utility procedure for gnu_type_fix
438         (gnu_type_fix): implement various pre-processor guards around
439         standard types so these types can be defined over and over
440         * fixinc/fixincl.tpl: add a "gnu_type_map" that forces the standard
441         types alluded to above will have GNU-compliant base types
442         * fixinc/fixlib.h: add EXIT_BROKEN define and the gnu_type_map struct
443         * fixinc/inclhack.def: add test_text entries and utilize the new
444         "gnu_types" fix for the ptrdiff_t, size_t and wchar_t types.
445         * fixinc/fixincl.x: regenerate
446
447 2000-07-12  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
448
449         * diagnostic.c (vline_wrapper_message_with_location,
450         v_message_with_file_and_line, v_error_with_file_and_file,
451         v_error_for_asm, v_warning_for_asm, vfatal,
452         v_warning_with_file_and_line, v_pedwarn_with_file_and_line,
453         vsorry, verror, vwarning, vpedwarn): Remove.
454         (diagnostic_for_asm): New function.
455         (pedwarn, error, warning, pedwarn_with_file_and_line,
456         error_with_file_and_line, warning_with_file_and_line, sorry,
457         error_for_asm, warning_for_asm, fatal): Reimplement.
458         (finish_diagnostic): Clear diagnostic info as well.
459
460 2000-07-13  Neil Booth  <NeilB@earthling.net>
461
462         * c-common.h (flag_digraphs): New.
463         * c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
464         * c-lex.c (yylex): Use flag_digraphs to decide whether to
465         honour digraphs.
466
467 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
468
469         * gcc.c (do_spec_1): Add new %B operator.
470         (set_input): Prepare for %B.
471
472         (link_command_spec): Move up with the other tm.h-
473         overrideable specs.  Factor out the portion conditional on
474         LINK_LIBGCC_SPECIAL into a new spec, %(link_libgcc).
475         (struct compiler): Just have a single spec string.  All users
476         updated.
477         (default_compilers): Remove unnecessary braces.
478         (static_specs): Update.
479
480         (trad_capable_cpp, cpp_options, cc1_options, asm_options): New
481         named specs.
482         (C and assembly specs): Use the new named specs, as appropriate.
483
484         * objc/lang-specs.h: Use the new named specs.
485         Remove unnecessary braces.
486
487 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
488
489         * gcc.c (execute): If a subprocess gets a fatal signal, report
490         strsignal() of the signal number, and ask for a bug report.
491         Do not do this for SIGPIPE if there's already been an error.
492
493         * tradcpp.c: Don't include signal.h.  Don't catch SIGPIPE.
494         Delete pipe_closed.
495
496         * tradcif.c: Remove.
497
498 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
499
500         * final.c (profile_function): Do not emit profile counters in
501         the data section, if NO_PROFILE_COUNTERS is defined.
502         * tm.texi: Document NO_PROFILE_COUNTERS.  Update doc for
503         FUNCTION_PROFILER.
504
505         * config/i386/linux.h (NO_PROFILE_COUNTERS): Define.
506         (FUNCTION_PROFILER): Just emit a call to mcount.
507
508 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
509
510         * tradcpp.c (main): Rename 'perror' label to 'sys_error'.
511
512         * cppexp.c, cpphash.c, cpphash.h, cppinit.c, cpplex.c,
513         cpplib.c, cpplib.h: Eradicate all traces of code dependent on
514         traditional, lang_chill, or lang_fortran.
515
516         * cppfiles.c: #undef strcmp to suppress warning about macros
517         used without arguments.
518         (_cpp_execute_include): Use f, not fname, in "No include path"
519         error.
520         (_cpp_pop_file_buffer): New function.
521         * cpplib.c: Don't include <sys/mman.h>.
522         (cpp_push_buffer): Set line_base and lineno in new buffer.
523         (cpp_pop_buffer): Use _cpp_pop_file_buffer.
524
525         * cpplex.c: Move all prototypes and structure declarations to the
526         top of the file.  Properly parenthesise some macro arguments.
527         (cpp_scan_line): New function.
528         (special_symbol [case T_INCLUDE_DEPTH]): Use pfile->include_depth,
529         don't need to walk up the stack counting.
530
531 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
532
533         * c-common.c (combine_strings): Emit a pedantic warning when a
534         string length is greater than the minimum ANSI C is required
535         to support.
536
537 Wed Jul 12 13:24:30 2000  Jeffrey A Law  (law@cygnus.com)
538
539         * pa/xm-pa64.h (NO_SYS_SIGLIST): Kill.
540         * d30v/xm-d30v.h (NO_SYS_SIGLIST): Kill.
541
542 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
543
544         * c-decl.c (define_label): Warn about identifier conflicts with
545         labels in traditional C.
546
547         * c-parse.in (unop +): Warn about the unary plus operator for
548         traditional C.
549
550         * c-typeck.c (store_init_value): Warn about automatic aggregate
551         initialization for traditional C.
552
553         * invoke.texi (-Wtraditional): Document new warnings.
554
555 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
556
557         * Makefile.in (c-errors.o): Fix thinko in dependency.
558
559 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
560
561         * gcc.c (C specs [!USE_CPPLIB]): Invoke tradcpp if any of
562         -traditional, -ftraditional, or -traditional-cpp was given.
563         Do not pass -traditional to the preprocessor.
564         (.S spec): Likewise.  Don't bother defining __ASSEMBLER__, the
565         preprocessor does it automatically.
566         * objc/lang-specs.h: Likewise.  Don't bother defining __OBJC__.
567
568         * ch/lang-specs.h: Always use tradcpp.  Do not pass
569         -traditional, -trigraphs, or -pedantic to the preprocessor.
570         * f/lang-specs.h (.F spec): Likewise.  Don't bother defining
571         _LANGUAGE_FORTRAN.
572
573 2000-07-12  Zack Weinberg  <zack@wolery.cumb.org>
574
575         * cppexp.c (LOGICAL): Delete macro.
576         (_cpp_parse_expr): Do not use UNARY for unary +.  Implement ||
577         and && directly.
578
579         * cpphash.c (HASHSIZE): Increase to 4096.
580         (struct hashdummy): Add hash field.
581         (eq_HASHNODE): Compare unreduced hashes, then lengths, then
582         the string values using memcmp.
583         (cpp_lookup): Set dummy.hash.
584
585 Wed Jul 12 13:15:16 2000  Marc Espie <espie@openbsd.org>
586
587         * configure.in (m88k-openbsd): Express configuration using new fragment
588         style.
589         * configure: Rebuilt.
590         * m88k/aout-dbx.h: New.
591         * m88k/openbsd.h: New.
592         * m88k/xm-openbsd.h: New.
593
594 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
595
596         * expr.c (expand_expr): Return const0_rtx, not error_mark_node.
597
598 2000-07-12  Richard Henderson  <rth@cygnus.com>
599
600         * reload.c (push_secondary_reload): Make sure to add the new
601         reload at the end, after acquiring secondary memory.
602
603 2000-07-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
604
605         * cpplex.c (is_macro_disabled): Use CPP_WTRADITIONAL.
606
607         * c-decl.c (set_current_function_name_declared, anon_aggr_type_p,
608         lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED.
609
610         * c-parse.in (stmt): Delete unused variables.
611
612         * convert.c (convert_to_vector): Likewise.
613
614         * gensupport.c (process_rtx): Declare attr as `rtvec' not `rtx'.
615
616         * tree.c (finish_vector_type): Prototype.
617
618 2000-07-12  Bruce Korb  <bkorb@gnu.org>
619
620         * fixinc/fixfixes.c: use xmalloc
621         * fixinc/fixincl.c(initialize): set program name for xmalloc
622         * fixinc/fixlib.c(must_malloc): obsolete
623         (is_cxx_header): no longer used - disabled
624         (skip_quote): inserted and disabled for future use
625         * fixinc/fixlib.h: reflects above
626         * fixinc/fixtests.c: removed dinkleberries
627
628 2000-07-12  Neil Booth  <NeilB@earthling.net>
629
630         * cpphash.h: (TOKEN_SPELL) Pulled from cpplex.c.
631         * cpplex.c (TOKEN_SPELL) Move to cpphash.h.
632
633         * cpphash.c: (struct macro_info, alloc_macro, free_macro,
634         struct toklist_dummy): New.
635         (cpp_free_definition): Free macros with free_macro.
636         (count_params): Don't save paramter spellings.  Save macro
637         information in a struct macro_info.
638         (parse_define): Don't allocate a token list.
639         (save_expansion): Allocate the macro's token list, and
640         save parameter spellings if necessary.  Use TOKEN_SPELL.
641         (cpp_create_definition): Make list const.
642
643 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
644
645         * c-typeck.c (pedwarn_c99): Move to
646         * c-errors.c: ... Here.
647         * toplev.h (verror, vwarning, vpedwarn): Remove prototypes.
648         * diagnostic.c (verror, vwarning, vpedwarn): Make static.
649         * Makefile.in (C_AND_OBJC_OBJS): Include c-errors.o
650         (c-errors.o): List dependency.
651
652 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
653
654         * c-parse.c: Remove.
655         * c-parse.h: Likewise.
656         * c-parse.y: Likewise.
657         * objc/objc-parse.c: Likewise.
658         * objc/objc-pasre.y: Likewise.
659
660 2000-07-11  Rodney Brown  <RodneyBrown@pmsc.com>
661
662         * gcc.texi: Fix minor typos
663         * extend.texi: Fix minor typos
664
665 2000-07-11  Marc Espie <espie@openbsd.org>
666
667         * collect2.c (main): Recognize .lo as object files.
668
669 2000-07-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
670
671         * pa.c (hppa_encode_label): Store labels in gc memory when ggc_p is
672         true.
673
674         * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE): Extend test to detect systems
675         with MAP_ANONYMOUS and MAP_ANON.
676         * configure, config.in: Rebuilt.
677
678 2000-07-12  Gabriel Dos Reis  <gdr@codesourcery.com>
679
680         * diagnostic.c (save_output_state): Remove.
681         (restore_output_state): Likewise.
682         (clear_text_info): New function.
683         (clear_diagnostic_info): Likewise.
684         (output_text_length, is_starting_newline, output_prefix,
685         line_wrap_cutoff, ideal_line_wrap_cutoff, prefix_was_emitted_for,
686         prefixing_policy, output_buffer_ptr_to_format_args): New macros
687         (set_real_maximum_length, output_set_maximum_length,
688         output_set_prefix, output_get_prefix, output_set_maximum_length,
689         output_destroy_prefix, init_output_buffer,
690         reshape_diagnostic_buffer, output_space_left, output_emit_prefix,
691         output_add_newline, output_add_character, output_add_space,
692         output_append_r, output_append, wrap_text, output_format,
693         output_do_printf, output_printf, output_do_verbatim,
694         output_verbatim, verbatim): Use them.
695         (output_clear): Split into cleat_text_info and
696         clear_diagnostic_info.
697         (struct output_state): Move to...
698
699         * diagnostic.h: ...Here
700         (struct output_buffer): Adjust.
701
702 2000-07-11  Zack Weinberg  <zack@wolery.cumb.org>
703
704         * cpplex.c (parse_name): No longer inline (premature optimization).
705         (do_pop_context): Fold into pop_context.
706         (pop_context): Returns int.
707         (lex_next): Hoist test for end of directive into pop_context.
708         (push_macro_context): Returns int; takes just reader and token.
709         Hoist test for excessive nesting to caller.
710         (push_arg_context): Returns void; takes just reader and token.
711         Do not call stringify_arg or get_raw_token.
712         (get_raw_token): Convert tail recursion through push_arg_context
713         to a loop at this level.  Call stringify_arg here if appropriate.
714         (maybe_paste_with_next): Convert tail recursion to a while loop.
715         Hoist test of paste_level to caller.
716
717         (stringify_arg): Push arg context at beginning.
718         (cpp_get_token): Split out core into _cpp_get_token.  Call
719         process_directive here.  Throw away CPP_PLACEMARKER tokens.
720         (_cpp_get_token): Convert tail recursion through
721         push_macro_context to a loop at this level.
722         (_cpp_glue_header_name, is_macro_disabled, stringify_arg,
723         _cpp_get_raw_token): Use _cpp_get_token.
724         (_cpp_skip_rest_of_line): Drop the context stack directly; do
725         not call pop_context.
726         (_cpp_run_directive): Call lex_next directly.
727
728         * cpphash.h: Prototype _cpp_get_token.
729         * cppexp.c (lex): Use it.
730         * cpphash.c (parse_define): Use it.
731         * cpplib.c (get_define_node, do_undef, parse_include,
732         read_line_number, do_line, do_ident, do_pragma, do_pragma_gcc,
733         do_pragma_implementation, do_pragma_poison, do_pragma_dependency,
734         parse_ifdef, validate_else): Use it.
735         (cpp_push_buffer): Tweak error message; abort if anyone tries
736         to push a buffer while macro expansions are stacked.
737
738 2000-07-11  Donn Terry  <donnte@microsoft.com>
739
740         * cpplex.c (free_macro_args, save_token): Cast arg of free
741         and/or xrealloc to PTR.
742         (_cpp_init_input_buffer): Clear all fields of the base context.
743
744 Tue Jul 11 15:28:21 CDT 2000  Clinton Popetz  <cpopetz@cygnus.com>
745
746         * gensupport.c (process_rtx): Make rtl checking stop
747         complaining about the define_insn while it is being
748         converted from a define_insn_and_split.
749
750 Tue Jul 11 16:26:17 2000  Clinton Popetz  <cpopetz@cygnus.com>
751
752         * config/mips/mips.c (simple_memory_operand): Access the
753         INTVAL of the address, not it's containing MEM.
754
755 2000-07-11  Bruce Korb  <bkorb@gnu.org>
756
757         * fixinc/fixtests.c(double_slash): obsolete
758         (else_endif_label): likewise
759         * fixinc/inclhack.def(irix_multiline_cmnt): obsolete
760         (libc1_ifdefd_memx): correct initial comment
761         and omit the #if/#endif pair from the memxxx declarations
762         * fixinc/fixincl.x: regen
763
764 2000-07-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
765
766         * cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
767
768 2000-07-11  Neil Booth  <NeilB@earthling.net>
769
770         * cpp.texi: Update.
771
772 2000-07-11  Neil Booth  <NeilB@earthling.net>
773
774         * cppinit.c: (cpp_reader_init): Allow digraphs by default.
775         (handle_option): Set digraphs according to standard.
776         Merge OPT_lang_c89 handler with OPT_std_c89.
777
778         * cpplex.c: (lex_line, can_paste): Honour digraphs in
779         accordance with the digraphs flag.
780
781         * cpplib.h: (struct cpp_options): New option digraphs.
782
783 2000-07-10  Hans-Peter Nilsson  <hp@axis.com>
784             Bruce Korb  <bkorb@gnu.org>
785
786         * fixinc/inclhack.def (libc1_ifdefd_memx): New fix.
787         * fixinc/fixincl.x: Regenerate.
788         * fixinc/tests/base/testing.h: Add testcase.
789
790 2000-07-10  Richard Henderson  <rth@cygnus.com>
791
792         * config/ia64/ia64.c (got_symbolic_operand): New.
793         (symbolic_operand, move_operand): Revert 0701 change.
794         * config/ia64/ia64.h (PREDICATE_CODES): Update.
795         * config/ia64/ia64-protos.h (got_symbolic_operand): Declare.
796         * config/ia64/ia64.md (movdi): Revert 0701 wrt symbolic_operand;
797         split the offset into a 14-bit low part instead of a 13-bit low part.
798         (load_fptr): Mark the mem as unchanging.
799         (load_symptr): Use got_symbolic_operand.
800
801 2000-07-10  Nick Clifton  <nickc@cygnus.com>
802
803         * libgcc2.c (next_stack_level): Cast result of computation to
804         (void **) so that the assignment does not generate a warning.
805
806 2000-07-10  Chandrakala Chavva  <cchavva@redhat.com>
807
808         * flags.h : Add new variable flag_single_precision_constant.
809         * toplev.c (display_help) : Add -fsingle-precision-constant option.
810         (flag_single_precision_constant): New.
811         * c-lex.c (yylex): Convert floating point constant to single
812         precision constant.
813         * invoke.texi : Add documentation for this new option.
814
815 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
816
817         * diagnostic.c (output_octal): Second parameter is unsigned.
818         (output_long_octal): Likewise.
819         (output_hexadecimal): Likewise.
820         (output_long_hexadecimal): Likewise.
821         (output_format): Adjust arguments extraction. Tweak.
822         (output_verbatim, verbatim): End variable argument list.
823         (report_diagnostic): Improve documentation.
824
825 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
826
827         * c-common.h (build_stmt): Declare.
828         (build_continue_stmt): Likewise.
829         (build_break_stmt): Likewise.
830         (build_return_stmt): Likewise.
831
832         * c-decl.c (do_case): Rewrite to do what previously done in
833         c-parse.in.
834
835         * c-semantics.c (build_stmt): Define.
836         (build_return_stmt): Likewise.
837         (build_break_stmt): Likewise.
838         (build_continue_stmt): Likewise.
839         (build_case_label): Likewise.
840
841         * c-parse.in (BREAK): Change to build tree, then generate RTL.
842         (CONTINUE): Likewise.
843         (RETURN): Likewise.
844         (CASE): Likewise.
845         (DEFAULT): Likewise.
846
847         * c-parse.y: Regenerate.
848         * c-pasre.c: Likewise.
849
850 2000-07-09  Jason Merrill  <jason@redhat.com>
851
852         * expr.c (expand_expr): Bail earlier if we get an error_mark_node.
853
854         * tree.h (STRIP_NOPS): Check for error_mark_node.
855         (STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
856         (dwarf2out_*): Remove duplicate declarations.
857
858         * c-decl.c (duplicate_decls): Copy DECL_ABSTRACT_ORIGIN from
859         DECL_ABSTRACT_ORIGIN, not DECL_ORIGIN.
860
861 2000-07-10  Gabriel Dos Reis  <gdr@codesourcery.com>
862
863         * diagnostic.c (wrap_text): New function.
864         (maybe_wrap_text): Likewise.
865         (output_add_string): Use it.
866         (output_format): Likewise.
867         (count_error): Use verbatim instead of notice.
868         (report_error_function): Likewise. Don't use plain fprintf.
869         (finish_diagnostic): New function.
870         (output_do_verbatim): Tweak.  Commonalize functionalities in
871         output_verbatim and verbatim.
872         (output_verbatim): Adjust.
873         (verbatim): Likewise.
874         (report_diagnostic): Define.
875
876         * diagnostic.h (report_diagnostic): Prototype.
877
878 2000-07-09  Zack Weinberg  <zack@wolery.cumb.org>
879
880         * cppexp.c (_cpp_parse_expr): Don't use unary plus.
881
882 2000-07-09  Neil Booth  <NeilB@earthling.net>
883
884         * cpphash.h: ISvspace, is_vspace, is_nvspace: New.
885         IShspace, ISspace: Update.
886
887         * cppinit.c: ISTABLE: Update.
888         V: New.
889
890         * cpplex.c (IS_HSPACE, S_NEWLINE): Remove.
891         (IS_DIRECTIVE): Rename KNOWN_DIRECTIVE.
892         (skip_block_comment, skip_line_comment, parse_string,
893         lex_line): Use is_vspace rather than IS_NEWLINE.
894         (skip_whitespace, lex_line): Clean up to use is_nvspace.
895         (lex_line): Use KNOWN_DIRECTIVE.  Any kind of directive
896         gets a BOL flag.
897         (lex_next): Unconditionally stop if within a directive.
898         Treat directives within macro invocations as directives
899         (after parse_args emits error), not as the argument.
900
901 2000-07-09  Gabriel Dos Reis  <gdr@codesourcery.com>
902
903         * diagnostic.c (diagnostic_args): New macro.
904         (diagnostic_msg): Likewise.
905         (output_formatted_integer): Likewise.
906         (output_state): New data type.
907         (digit_buffer): Make global.
908         (output_add_integer): Rename to output_decimal. Squeeze
909         digit_buffer.
910         (output_long_decimal, output_unsigned_decimal,
911         output_long_unsigned_decimal, output_octal, output_long_octal,
912         output_hexadecimal, output_long_hexadecimal): New functions.
913         (output_append_r): New function.
914         (output_append): Tweak.
915         (output_flush_on): Rename to output_to_stream.
916         (output_format): Change prototype.  Improve documentation. Handle
917         more format specifiers.
918         (build_location_prefix): Rename to context_as_prefix.
919         (output_notice): Rename to output_do_printf.
920         (output_printf): Tweak.
921         (line_wrapper_printf): Likewise.
922         (vline_wrapper_message_with_location): Adjust call to renamed
923         functions.
924         (v_message_with_decl): Likewise.
925         (default_print_error_function): Likewise.
926         (save_output_state): New function.
927         (restore_output_state): Likewise.
928         (output_do_verbatim): Likewise.
929         (output_verbatim): Define.
930         (verbatim): Likewise.
931
932         * diagnostic.h (printer_fn): Change return type from void to int.
933         Improve documentation.
934         (output_add_integer): Rename to output_decimal.
935         (output_flush_on, output_format): Don't export.
936         (output_verbatim, verbatim): Declare.
937
938 2000-07-08  Toon Moene  <toon@moene.indiv.nluug.nl>
939
940         * fold-const.c (extract_muldiv) case PLUS_EXPR, MINUS_EXPR:
941         Check whether c divides op1 exactly if operation is not
942         multiplication.
943
944 2000-07-08  Richard Henderson  <rth@cygnus.com>
945
946         * final.c (final): Do not abort when reg-stack introduces
947         a new insn.
948
949 2000-07-08  Zack Weinberg  <zack@wolery.cumb.org>
950
951         * cpplib.h (struct cpp_name): Now struct cpp_string.
952         (CPP_INT, CPP_FLOAT, CPP_NUMBER, CPP_COMMENT,
953         CPP_HEADER_NAME): Change to type S.
954         (struct cpp_token): Rename 'name' field to 'str'.  Add 'node'
955         field, a cpp_hashnode *.  All references to val.name updated
956         to use val.str or val.node as appropriate.
957         (struct cpp_reader): Add spec_nodes field.
958         (cpp_idcmp): Now cpp_ideq; takes a token * and a char *.
959
960         * cpphash.h (struct spec_nodes): New.
961         (enum spell_type): Reorder.  Only SPELL_STRING tokens use
962         val.str.  All references to 'spelling > SPELL_NONE' updated to
963         match.
964
965         (CPP_IN_SYSTEM_HEADER): Check pfile->buffer and
966         pfile->buffer->inc are not NULL before dereferencing them.
967
968         * cpplex.c (parse_name): Take a pointer to the current token,
969         plus current position and limit as args; return the new
970         position; don't copy the text of a name into the string
971         buffer, instead call cpp_lookup and store the node pointer.
972         If extending a token, copy out the text of the old into a
973         scratch buffer, append the new, look that up and store the new
974         node pointer.  Inline.
975         (maybe_paste_with_next): If the result of paste is a NAME,
976         then look up the pasted text and store its node pointer.
977         (lex_line): Adjust for new parse_name interface.
978         Check for L"str", L'str' using spec_nodes->n_L.
979         (spell_token): SPELL_IDENT tokens have their spelling in
980         val.node->name.  Handle SPELL_STRING tokens that don't have
981         string delimiters.
982         (_cpp_expand_name_space,
983         (can_paste): Check for L ## "str" using spec_nodes->n_L.
984         (cpp_get_token, special_symbol): No need to call cpp_lookup.
985         (cpp_idcmp): Now cpp_ideq; take a token * and a const char *;
986         return 1=equal 0=not, not a tristate.
987
988         * cpphash.c (var_args_str): Delete.
989         (find_param): Compare node fields directly.
990         (is__va_args__): Use CPP_PEDANTIC.  Just compare
991         token->val.node with spec_nodes->n__VA_ARGS__.
992         (dump_funlike_macro): Don't use var_args_str.
993
994         * cpplib.c (_cpp_check_directive): Just walk through
995         spec_nodes->dirs comparing pointers.
996         (get_define_node, do_pragma_poison, detect_if_not_defined,
997         parse_ifdef): The identifier has already been looked up.
998         (do_ifdef, do_ifndef): parse_ifdef won't return a poisoned
999         node.
1000         (do_if): Only call detect_if_not_defined at beginning of file.
1001         (_cpp_parse_assertion): Only copy string pointers for
1002         SPELL_STRING tokens.
1003         (pragma_dispatch): Take a node pointer and examine its name
1004         field.
1005         (_cpp_init_stacks): Also initialize the spec_nodes structure.
1006
1007         * cppinit.c (cpp_reader_init): Call _cpp_init_stacks after
1008         _cpp_init_macros.
1009         (cpp_cleanup): Free pfile->spec_nodes.  Call _cpp_cleanup_* in
1010         reverse order from the corresponding _cpp_init_* routines.
1011
1012         * cppexp.c (parse_number, parse_charconst, parse_defined,
1013         lex): Check val.node->type instead of calling cpp_defined.
1014         Use spec_nodes entries where appropriate.
1015
1016         * fix-header.c, scan-decls.c: Update for interface changes.
1017
1018 2000-07-08  Geoffrey Keating  <geoffk@cygnus.com>
1019
1020         * config/rs6000/rs6000.c (rs6000_emit_move): Fix conditions for
1021         emitting aux_truncdfsf2.
1022
1023 2000-07-03  Donn Terry  (donnte@microsoft.com)
1024
1025         * cppinit.c (print_help): split overlong line into ISO C89
1026         maximum chunks.
1027
1028 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
1029
1030         * cppexp.c: Update all code for new lexer interface.
1031         (op_t, operator codes, struct token, tokentab2, op_to_str): Remove.
1032         (struct suffix, vsuf_1, vsuf_2, vsuf_3, op_to_prio): New.
1033         * cpplex.c (token_names): Trim leading CPP_ from names; make
1034         the strings unsigned.
1035         (_cpp_spell_operator): New.
1036         (is_macro_disabled): Disable all macros if rescanning
1037         preprocessed text.
1038         (_cpp_get_directive_token): Remove.
1039
1040         * cppinit.c: Don't set no_macro_expand.
1041         * cpplib.c (read_line_number, do_line): Check only for EOF,
1042         not VSPACE.
1043         * cpphash.h: Update prototypes.
1044         * cpplib.h (CPP_VSPACE): Remove.
1045         (struct cpp_reader): Remove no_macro_expand.
1046
1047 2000-07-08  Neil Booth  <NeilB@earthling.net>
1048
1049         * cpphash.c (is__va_args__): New function.
1050         (count_params): Fix line reported in error messages.  Use
1051         is__va_args__.  Don't return ')' on error.  Flag GNU style
1052         rest args macro definitions.
1053         (parse_define): Check macro name is not __VA_ARGS__.
1054         (save_expansion): Check identifier in non-varargs-macro is
1055         not __VA_ARGS__.  Don't flag GNU_VARARGS.
1056         * cpplex.c (parse_args): Accept no argument iff GNU_REST_ARGS.
1057         (maybe_paste_with_next): Use per-macro GNU_REST_ARGS rather
1058          than per-token GNU_VARARGS.
1059         * cpplib.h (GNU_VARARGS): Remove.
1060         (GNU_REST_ARGS): New.
1061
1062 Sat Jul  8 01:38:25 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1063
1064         * i386.md (call_pop, call, call_value_pop): Do not set
1065         current_function_uses_pic_offset_table for calls to static
1066         functions or indirect calls.
1067
1068 2000-07-07  Jim Wilson  <wilson@cygnus.com>
1069
1070         * config/ia64/ia64.c (rws_access_reg): New local write_count.  If
1071         is_predicate_reg, then take max write_count of register pair.
1072
1073 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1074
1075         * tradcpp.c (main): Rename label `include' to `add_include' to
1076         avoid conflicts with variable `include' in traditional C.
1077
1078 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
1079
1080         * integrate.c (copy_insn_list): Remove REG_LABEL notes.
1081
1082 2000-07-07  Jakub Jelinek  <jakub@redhat.com>
1083
1084         * sibcall.c (uses_addressof): Add INMEM argument, check for
1085         current_function_internal_arg_pointer outside of MEM rtxs in addition
1086         to ADDRESSOFs.
1087         (sequence_uses_addressof): Update caller.
1088
1089 2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>
1090
1091         * tradcpp.c (initialize_builtins): Honor NO_BUILTIN_SIZE_TYPE
1092         and friends.
1093
1094 2000-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1095
1096         * system.h (UNION_INIT_ZERO): New macro for initializing union
1097         members in structs.
1098
1099         * cpplex.c (placemarker_token, eof_token): Use UNION_INIT_ZERO.
1100
1101 2000-07-07  Neil Booth  <NeilB@earthling.net>
1102
1103         * cpp.texi: Update.
1104
1105 Fri Jul  7 07:47:35 2000  Jeffrey A Law  (law@cygnus.com)
1106
1107         * final.c (final): Detect out of bounds array access to
1108         the insn_lengths array.
1109
1110 2000-07-07  Kazu Hirata  <kazu@hxi.com>
1111
1112         * fold-const.c (fold): Fix a comment typo.
1113
1114 2000-07-07  Neil Booth  <NeilB@earthling.net>
1115
1116         * cpp.texi: Update to new lexer.
1117
1118 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
1119
1120         * tradcpp.c: New file.
1121         * tradcif.y: New file.
1122         * tradcif.c: New generated file.
1123
1124         * Makefile.in: Add rules to build tradcpp.o, tradcif.o,
1125         $(srcdir)/tradcif.c.  Add tradcpp to STAGESTUFF and
1126         dependencies of C.  Install tradcpp from install-common, in
1127         $(libsubdir).
1128
1129 2000-07-06  Zack Weinberg  <zack@wolery.cumb.org>
1130
1131         * cppinit.c: Include cppdefault.h.  Refer to
1132         cpp_GCC_INCLUDE_DIR and cpp_GCC_INCLUDE_DIR_len, not directly
1133         to GCC_INCLUDE_DIR and its length.
1134         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
1135         USER_LABEL_PREFIX, REGISTER_PREFIX, struct default_include,
1136         STANDARD_INCLUDE_DIR, STANDARD_INCLUDE_COMPONENT):  Move to
1137         cppdefault.h.
1138         (include_defaults_array): Move to cppdefault.c.
1139
1140         * cppdefault.h: New file.
1141         * cppdefault.c: New file.
1142
1143         * Makefile.in (LIBCPP_OBJS): Add cppdefault.o.
1144         (cppinit.o): Don't apply $(PREPROCESSOR_DEFINES) to this file.
1145         (cppdefault.o): New rule; apply $(PREPROCESSOR_DEFINES) to
1146         this file.
1147
1148 Thu Jul  6 18:30:36 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1149
1150         * reload.c (push_reload): When seeing if can reuse a register,
1151         check extra registers against widest of INMODE and OUTMODE.
1152
1153 2000-07-06  Neil Booth  <NeilB@earthling.net>
1154
1155         * cpplib.c: (_cpp_parse_assertion):  Perform hash lookups
1156         based on full length of predicate.
1157
1158 2000-07-06  Hans-Peter Nilsson  <hp@axis.com>
1159
1160         * timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.
1161         [NEED_DECLARATION_GETRUSAGE]: Declare getrusage.
1162
1163 2000-07-05  Kazu Hirata  <kazu@hxi.com>
1164
1165         * h8300-proto.h: Fix formatting.
1166         * h8300.c: Likewise.
1167         * h8300.h: Likewise.
1168
1169 2000-07-05  Jim Wilson  <wilson@cygnus.com>
1170
1171         * config/ia64/ia64.h (HARD_REGNO_MODE_OK): If FR_REGNO_P, disallow
1172         CCmode.
1173
1174 2000-07-05  Rodney Brown  <RodneyBrown@pmsc.com>
1175
1176         * invoke.texi: Fix minor typos
1177         * md.texi: Fix minor typos
1178
1179 2000-07-05  Zack Weinberg  <zack@wolery.cumb.org>
1180
1181         * cpplib.c (_cpp_parse_assertion): Fix buffer overrun.
1182
1183 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
1184
1185         * cpplex.c: Don't include sys/mman.h.
1186         (cpp_push_buffer, cpp_pop_buffer): Moved to cpplib.c.
1187
1188         * cpplib.c: Include sys/mman.h and obstack.h.
1189         (cpp_push_buffer): Moved from cpplex.c; allocate buffers on an
1190         obstack.
1191         (cpp_pop_buffer): Moved from cpplex.c; free buffers from an obstack.
1192         (_cpp_unwind_if_stack): Now static, unwind_if_stack.  Don't
1193         bother freeing if stack entries (they will be freed with their buffer).
1194         (do_endif): Free if stack entries from the buffer obstack.
1195         (push_conditional): Allocate if stack entries from the buffer obstack.
1196
1197         (find_answer): Rename to _cpp_find_answer.
1198         (do_assert, do_unassert): Update.
1199
1200         * cpphash.h: Update prototypes.
1201         (xobnew): New convenience macro.
1202         * cpplib.h (struct cpp_reader): Add hash_ob and buffer_ob fields.
1203         Update comments.
1204         (struct cpp_hashnode): Remove disabled field.
1205
1206         * cppinit.c: Don't include hashtab.h or splay-tree.h.
1207         (report_missing_guard): Moved to cppfiles.c.
1208         (cpp_reader_init): Call cpp_init_stacks, cpp_init_macros,
1209         cpp_init_includes.
1210         (cpp_cleanup): Call cpp_cleanup_stacks, cpp_cleanup_macros,
1211         cpp_cleanup_includes.  Don't destroy hashtab or
1212         all_include_files here.
1213         (cpp_finish): Use _cpp_report_missing_guards.
1214
1215         * cppfiles.c (report_missing_guard): Moved from cppinit.c.
1216         (_cpp_init_include_table): Rename _cpp_init_includes.
1217         (_cpp_cleanup_includes, _cpp_report_missing_guards): New.
1218
1219         * cppexp.c (parse_assertion): Update for new name of
1220         find_answer.
1221
1222         * Makefile.in (cpplib.o, cpphash.o, cppinit.o): Update deps.
1223
1224 2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>
1225
1226         * cpplib.c (do_ident): s/VSPACE/EOF/
1227
1228 2000-07-05  Neil Booth  <NeilB@earthling.net>
1229
1230         * cpplex.c: Fix trigraph replacement within strings.
1231
1232 2000-07-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1233
1234         * rs6000/aix.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier.
1235
1236         * xcoffout.c (assign_type_number): Constify.
1237         (xcoffout_source_file): Add static prototype.  Don't needlessly
1238         cast away const-ness.
1239
1240 2000-07-04  Jason Merrill  <jason@redhat.com>
1241
1242         * frame.h (frame_state): Move base_offset to end.
1243
1244 Mon Jul  3 21:31:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
1245
1246         * calls.c (emit_library_call_value_1): Revert previous change.
1247
1248 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
1249
1250         * fix-header.c (struct partial_proto): Remove unnecessary fields.
1251         (recognized_extern, recognized_function, read_scan_file):
1252         Update for new scheme.
1253         (check_protection): It's still a multiple include guard even
1254         if it doesn't always trigger.
1255         * scan-decls.c (skip_to_closing_brace, scan_decls): Update for
1256         new scheme.
1257         * scan.h: Declare struct cpp_token.  Update prototypes.
1258
1259 2000-07-03  Neil Booth  <neilb@earthling.net>
1260             Zack Weinberg  <zack@wolery.cumb.org>
1261
1262         Complete overhaul of the lexer and macro expander.
1263
1264         * cpphash.c (object_defn, funct_defn, push_macro_expansion,
1265         arg, arglist, argdata, reflist, collect_objlike_expansion,
1266         collect_funlike_expansion, collect_params,
1267         warn_trad_stringify, trad_stringify, duplicate_arg_p, add_pat,
1268         unsafe_chars, macarg, compare_defs, special_symbol,
1269         scan_arguments, stringify, funlike_macroexpand,
1270         _cpp_quote_string, monthnames): Delete.
1271         (cpp_lookup, _cpp_free_definition, dump_funlike_macro,
1272         _cpp_create_definition, _cpp_dump_definition,
1273         dump_hash_helper): Adjust.
1274         (find_param, count_params, parse_define, var_args_str,
1275         check_macro_redefinition, save_expansion): New.
1276
1277         * cpplex.c (skip_block_comment, skip_line_comment, parse_name,
1278         parse_string, output_line_command, trigraph_replace,
1279         lex_line, cpp_push_buffer, cpp_pop_buffer, cpp_output_tokens,
1280         cpp_scan_buffer_nooutput, cpp_scan_buffer, cpp_free_toklist,
1281         cpp_idcmp, _cpp_get_directive_token, _cpp_init_input_buffer,
1282         _cpp_skip_rest_of_line): Modify.
1283
1284         (maybe_macroexpand, skip_comment, copy_comment, skip_string,
1285         find_position, null_warning, bump_column, expand_name_space,
1286         pedantic_whitespace, _cpp_output_list, _cpp_slice_toklist,
1287         _cpp_squeeze_toklist, _cpp_scan_until, _cpp_skip_hspace,
1288         _cpp_parse_name, _cpp_lex_token, cpp_get_non_space_token,
1289         _cpp_prescan): Delete.
1290
1291         (dump_param_spelling, process_directive, lex_next,
1292         is_macro_disabled, stringify_arg, expand_context_stack,
1293         output_token, make_string_token, alloc_number_token,
1294         special_symbol, duplicate_token, maybe_paste_with_next,
1295         can_paste, prevent_macro_expansion, restore_macro_expansion,
1296         get_temp_token, release_temp_tokens, quote_string,
1297         token_names, token_spellings, _cpp_expand_name_space,
1298         _cpp_glue_header_name, _cpp_reserve_name_space,
1299         digraph_spellings, trigraph_ok, skip_whitespace, save_comment,
1300         placemarker_token, eof_token, cpp_context, macro_args,
1301         get_raw_token, parse_arg, parse_args, save_token,
1302         push_arg_context, push_macro_context, pop_context,
1303         do_pop_context, free_macro_args, _cpp_get_line,
1304         _cpp_run_directive): New.
1305
1306         * cpplib.c (validate_else, parse_include, push_conditional,
1307         pass_thru_directive, read_line_number, parse_ifdef,
1308         detect_if_not_defined, _cpp_check_directive, do_define,
1309         do_undef, do_include, do_import, do_include_next, do_error,
1310         do_warning, do_ident, do_pragma, pragma_dispatch, gcc_pragmas,
1311         top_pragmas, do_pragma_gcc, do_pragma_implementation,
1312         do_pragma_poison, do_pragma_system_header,
1313         do_pragma_dependency, do_sccs, do_ifdef, do_ifndef, do_else,
1314         dl_elif, do_endif, _cpp_unwind_if_stack, do_assert,
1315         do_unassert, cpp_define, cpp_undef, cpp_assert, cpp_unassert,
1316         cpp_defined): Update for new scheme.
1317         (strtoul_for_line, get_define_node, dump_macro_name,
1318         _cpp_check_linemarker, _cpp_parse_assertion): New.
1319         (_cpp_handle_directive, do_pragma_default): Delete.
1320
1321         * cpphash.h (struct predicate): Now struct answer.
1322         (enum spell_type, struct token_spelling, struct directive,
1323         directive_handler): New.
1324         Update prototypes.  Remove unused macros.
1325         * cpplib.h: Update prototypes.  Remove unused macros,
1326         structure definitions, and fields.
1327
1328         * cpperror.c (print_containing_files, v_message): Adjust.
1329         * cppexp.c (parse_assertion, lex, parse_escape,
1330         _cpp_parse_expr): Adjust.
1331         * cppfiles.c (open_include_file, _cpp_execute_include,
1332         _cpp_compare_file_date, cpp_read_file, read_include_file):
1333         Adjust.
1334         * cppinit.c (dump_special_to_buffer): Delete.
1335         (append_include_chain, merge_include_chains, cpp_reader_init,
1336         cpp_cleanup, initialize_builtins, builtin_array, cpp_start_read,
1337         cpp_finish, handle_option, print_help): Adjust.
1338         * cppmain.c (main): Adjust.
1339
1340 2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>
1341
1342         * cppspec.c (lang_specific_driver): Use double quotes in error
1343         message.
1344
1345 Mon Jul  3 16:53:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
1346
1347         * calls.c (emit_library_call_value_1): Use valreg instead
1348         of hard_libcall_value.
1349
1350 2000-07-03  Geoff Keating  <geoffk@cygnus.com>
1351
1352         * config/rs6000/rs6000.c (rs6000_emit_move): New function.
1353         * config/rs6000/rs6000-proto.h: Prototype rs6000_emit_move.
1354         * config/rs6000/rs6000.md (movsi): Use rs6000_emit_move.
1355         (movhi): Likewise.
1356         (movqi): Likewise.
1357         (movdf): Likewise.
1358         (movsf): Likewise.
1359         (movdi): Likewise.
1360         (movti): Likewise.
1361
1362         * expmed.c (expand_mult_highpart): Use op1 instead of wide_op1 when
1363         mode instead of wider_mode is being used.
1364
1365 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
1366
1367         * config/i386/i386.md (movstrictqi_xor): Use 'q' constraint instead
1368         of 'r'. Use q_regs_operand.
1369         (andsi_1+2): Use q_regs_operand.
1370
1371 2000-07-03  Jakub Jelinek  <jakub@redhat.com>
1372
1373         * builtins.c (get_memory_rtx): Always put into alias set 0.
1374
1375 2000-07-03  Nick Clifton  <nickc@cygnus.com>
1376
1377         * config/arm/arm.md: Fix post increment and pre increment
1378         peepholes so that they do not generate UNPREDICATBLE opcodes.
1379         (ie ones where the increment clobbers the source/destination).
1380
1381 2000-07-01  Marek Michalkiewicz  <marekm@linux.org.pl>
1382
1383         * config/avr/avr.c (out_adj_frame_ptr): Make "frame pointer
1384         change too big for -mtiny-stack" a warning, if larger than 63.
1385         (out_set_stack_ptr): Change the logic so -mno-interrupts is
1386         always safe to use on possible future devices.
1387         (function_prologue): Write SPH before SPL, for consistency.
1388         If interrupt_func_p true, we know we have enabled interrupts.
1389         (avr_num_arg_regs): New function.  Round up to even number of
1390         bytes if no -mpack-args or if calling a libgcc function.
1391         (function_arg, function_arg_advance): Use it.
1392         (output_movsisf, ashlsi3_out, ashrsi3_out, lshrsi3_out):
1393         Output "movw" if available.
1394         (out_tsthi, out_tstsi, ashlqi3_out, lshrqi3_out): Change uses
1395         of TEST_HARD_REG_CLASS macro to test_hard_reg_class function.
1396         (asm_output_section_name): Add blanks for consistent output.
1397         (encode_section_info): Set TREE_READONLY for progmem data to
1398         avoid gas warnings about changed section attributes.
1399         (avr_hard_regno_mode_ok): Force non-QImode data to start in
1400         even numbered registers on devices with "movw".
1401         * config/avr/avr.h (MASK_*): Define bits for target_flags.
1402         (TARGET_SWITCHES): Mark help strings for translation.
1403         Add new -mpack-args and -menhanced switches.
1404         (TARGET_OPTIONS): Mark help strings for translation.
1405         (progmem_section): Add section attributes.
1406         * config/avr/avr.md (*movhi, call_insn, call_value_insn):
1407         Output "movw" if available.
1408         (mulqi3, mulqihi3, umulqihi3, mulhi3, *tablejump_enh):
1409         New patterns.
1410         * config/avr/libgcc.S (_mulqi3, _divqi3): Update to the new
1411         call convention (arguments aligned on even registers).
1412         (_cleanup, _exit): Make weak symbols libc can override.
1413
1414 2000-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1415
1416         * fp-bit.h: New file.
1417
1418         * fp-bit.c: Move common code, prototypes, etc into fp-bit.h.
1419         Comment #endif statements.
1420         (__thenan_sf, __thenan_df): Add missing braces around initializer.
1421
1422 Mon Jul  3 00:32:47 2000  Jeffrey A Law  (law@cygnus.com)
1423
1424         * gcse.c (compute_pre_data): Compute ae_kill using other local
1425         properties instead of calling compute_ae_kill.
1426
1427         * alias.c (init_alias_analysis): Do not call
1428         prologue_epilogue_contains until after reload has completed.
1429
1430 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
1431
1432         * c-common.h (genrtl_begin_compound_stmt): Remove declaration.
1433         (genrtl_finish_compound_stmt): Likewise.
1434         (genrtl_compound_stmt): Change to return void.
1435
1436         * c-semantics.c (genrtl_begin_compound_stmt): Remove function and
1437         move code from here to ...
1438         (genrtl_compound_stmt): ... here.
1439         (genrtl_finish_compound_stmt): Remove.
1440         (expand_stmt): Add comment.
1441
1442 2000-07-02  Zack Weinberg  <zack@wolery.cumb.org>
1443
1444         * c-typeck.c (build_indirect_ref): Use COMPLETE_OR_VOID_TYPE_P
1445         and VOID_TYPE_P.
1446
1447 2000-07-02  Jakub Jelinek  <jakub@redhat.com>
1448
1449         * cpplib.h (struct cpp_reader): New field include_depth.
1450         (struct cpp_printer): Rename last_bsd to last_id.
1451         * cppfiles.c (read_include_file): Bump include_depth.
1452         * cpplex.c (cpp_pop_buffer): Decrement include_depth.
1453         (output_line_command): Output correct #line if a header
1454         is including itself and is not protected against multiple inclusion.
1455         Use include_depth instead of buffer_stack_depth, last_id instead of
1456         last_bsd.
1457         * cppinit.c (cpp_start_read): Initialize last_id instead of
1458         last_bsd.
1459
1460 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
1461
1462         * Makefile.in (C_AND_OBJC_OBJS): Added c-semantics.o.
1463         (c-semantics.o): New target.
1464
1465         * c-common.h (TREE_LANG_FLAG_?): Added documentation.
1466         (genrtl_do_pushlevel): Moved from cp/cp-tree.h.
1467         (genrtl_clear_out_block): Likewise.
1468         (genrtl_goto_stmt): Likewise.
1469         (genrtl_expr_stmt): Likewise.
1470         (genrtl_decl_stmt): Likewise.
1471         (genrtl_if_stmt): Likewise.
1472         (genrtl_while_stmt): Likewise.
1473         (genrtl_do_stmt): Likewise.
1474         (genrtl_return_stmt): Likewise.
1475         (genrtl_for_stmt): Likewise.
1476         (genrtl_break_stmt): Likewise.
1477         (genrtl_continue_stmt): Likewise.
1478         (genrtl_scope_stmt): Likewise.
1479         (genrtl_switch_stmt): Likewise.
1480         (genrtl_case_label): Likewise.
1481         (genrtl_begin_compound_stmt): Likewise.
1482         (gerntl_finish_compound_stmt): Likewise.
1483         (genrtl_compound_stmt): Likewise.
1484         (genrtl_asm_stmt): Likewise.
1485         (genrtl_decl_cleanup): Likewise.
1486         (DECL_ANON_UNION_ELEMS): Likewise.
1487         (emit_local_var): Likewise.
1488         (make_rtl_for_local_static): Likewise.
1489         (expand_cond): Likewise.
1490         (expand_stmt): Likewise.
1491         (c_expand_return): Likewise.
1492         (c_expand_start_case): Likewise.
1493         (do_case): Likewise.
1494         (COMPOUND_STMT_NO_SCOPE): Likewise.
1495         (c_expand_asm_operands): Likewise.
1496         (NEW_FOR_SCOPE_P): New macro.
1497         (expand_expr_stmt_fn): New type.
1498
1499         (set_current_function_name_declared): Likewise.
1500         (current_function_name_declared): Likewise.
1501         (lang_expand_stmt): Likewise.
1502         (stmts_are_full_exprs_p): Likewise.
1503         (anon_aggr_type_p): Likewise.
1504         (lang_expand_expr_stmt): Likewise.
1505         (build_case_label): Likewise.
1506
1507         * c-decl.c (lang_expand_expr_stmt): Initialize.
1508         (stmts_are_full_exprs_p): Define.
1509         (current_function_name_declared): Likewise.
1510         (do_case): Likewise.
1511         (lang_expand_stmt): Likewise.
1512         (set_current_function_name_declared): Likewise.
1513         (anon_aggr_type_p): Likewise.
1514
1515         * c-semantics.c: New file.
1516         (expand_cond): Moved from cp/semantics.c.
1517         (genrtl_do_pushlevel): Likewise.
1518         (genrtl_clear_out_block): Likewise.
1519         (genrtl_goto_stmt): Likewise.
1520         (genrtl_expr_stmt): Likewise.
1521         (genrtl_decl_stmt): Likewise.
1522         (genrtl_if_stmt): Likewise.
1523         (genrtl_while_stmt): Likewise.
1524         (genrtl_do_stmt): Likewise.
1525         (genrtl_return_stmt): Likewise.
1526         (genrtl_for_stmt): Likewise.
1527         (genrtl_break_stmt): Likewise.
1528         (genrtl_continue_stmt): Likewise.
1529         (genrtl_scope_stmt): Likewise.
1530         (genrtl_switch_stmt): Likewise.
1531         (genrtl_case_label): Likewise.
1532         (genrtl_begin_compound_stmt): Likewise.
1533         (genrtl_finish_compound_stmt): Likewise.
1534         (genrtl_compound_stmt): Likewise.
1535         (genrtl_asm_stmt): Likewise.
1536         (genrtl_decl_cleanup): Likewise.
1537         (make_rtl_for_local_static): Moved from cp/decl.c.
1538         (emit_local_var): Likewise.
1539         (expand_stmt): Define.
1540
1541         * c-tree.h: (c_expand_asm_operands): Moved to c-common.h.
1542         (c_expand_return): Likewise.
1543         (c_expand_start_case): Likewise.
1544
1545 2000-07-01  Richard Henderson  <rth@cygnus.com>
1546
1547         * config/ia64/ia64.c (symbolic_operand): Reject CONST expressions
1548         with the low 13 bits set.
1549         (move_operand): Check for CONST|SYMBOL_REF|LABEL_REF directly.
1550         * config/ia64/ia64.md (movdi): Likewise.  Expand a CONST with one
1551         of the low 13 bits into a CONST plus an adddi3.
1552         (load_symptr): Set RTX_UNCHANGING_P.
1553
1554 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
1555
1556         * Makefile.in (c-common.o): Don't depend on c-tree.h or c-lex.h.
1557         * c-common.c (ridpointers): Declare.
1558         * c-common.h (enum rid): Declare.
1559         (NORID): Likewise.
1560         (ridpointers): Likewise.
1561         * c-lex.c (ridpointers): Don't declare.
1562         (init_lex): Initialize ridpointers.
1563         * c-lex.h (enum rid): Don't declare.
1564         (NORID): Likewise.
1565         (RID_FIRST_MODIFIER): Likewise.
1566         (ridpointers): Likewise.
1567
1568 2000-06-30  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1569
1570         * pa/som.h (ASM_WEAKEN_LABEL): Export weak data symbols so that they
1571         have global scope.
1572
1573 2000-06-30  Martin von Loewis  <loewis@informatik.hu-berlin.de>
1574
1575         * invoke.texi (-Wreturn-type): In C++, a missing return type is
1576         always an error.
1577
1578 2000-06-30  Catherine Moore  <clm@cygnus.com>
1579
1580         * c-common.c (decl_attributes):  Differentiate between
1581         types and type decls for alignment.
1582
1583 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
1584
1585         * cpp.texi: Document #pragma GCC dependency
1586         * cppfiles.c (open_include_file): Set date to unknown.
1587         (_cpp_compare_file_date): New function.
1588         (read_include_file): Set file date.
1589         * cpphash.h (struct include_file): Add date member.
1590         (_cpp_compare_file_date): Prototype.
1591         * cpplib.c (parse_include): Add trail parameter. Adjust.
1592         (do_include): Adjust parse_include call.
1593         (do_import): Likewise.
1594         (do_include_next): Likewise.
1595         (gcc_pragmas): Add dependency pragma.
1596         (do_pragma_dependancy): New pragma.
1597
1598 2000-06-29  Jason Merrill  <jason@redhat.com>
1599
1600         * dwarf2out.c (output_loc_operands): Don't abort on codes that have
1601         no operands.
1602
1603 2000-06-29  Jim Wilson  <wilson@cygnus.com>
1604
1605         * config/ia64/ia64.h (PREFERRED_RELOAD_CLASS): Return NO_REGS for
1606         a volatile mem and FR_REGS.
1607
1608 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
1609
1610         * c-common.c: Include c-common.h, not c-lex.h or c-tree.h.
1611         * c-common.h (flag_const_strings): Declare.
1612         (warn_format): Likewise.
1613         (flag_traditional): Likewise.
1614         (flag_isoc99): Likewise.
1615         (warn_parentheses): Likewise.
1616         (warn_conversion): Likewise.
1617         (C_TYPE_OBJECT_P): Likewise.
1618         (C_TYPE_INCOMPLETE_P): Likewise.
1619         (C_TYPE_FUNCTION_P): Likewise.
1620         (C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
1621         (C_EXP_ORIGINAL_CODE): Likewise.
1622         (build_unary_op): Likewise.
1623         (build_binary_op): Likewise.
1624         (lvalue_p): Likewise.
1625         (default_conversion): Likewise.
1626         (common_type): Likewise.
1627         * c-tree.h (C_TYPE_OBJECT_P): Remove.
1628         (C_TYPE_INCOMPLETE_P): Likewise.
1629         (C_TYPE_FUNCTION_P): Likewise.
1630         (C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
1631         (C_EXP_ORIGINAL_CODE): Likewise.
1632         (common_type): Likewise.
1633         (default_conversion): Likewise.
1634         (build_binary_op): Likewise.
1635         (build_unary_op): Likewise.
1636         (lvalue_p): Likewise.
1637         (flag_const_strings): Likewise.
1638         (warn_format): Likewise.
1639         (warn_conversion): Likewise.
1640         (flag_traditional): Likewise.
1641         (flag_isoc99): Likewise.
1642         (warn_parentheses): Likewise.
1643
1644 2000-06-29  James E. Wilson  <wilson@cygnus.com>
1645
1646         * config/ia64/linux.h (LINK_SPEC): Change so.1 to so.2.
1647
1648         * config/ia64/ia64.h (MODES_TIEABLE_P): Only tie if mode class is the
1649         same.  Only tie XFmode with XFmode.
1650
1651 2000-06-29  Zack Weinberg  <zack@wolery.cumb.org>
1652
1653         * c-decl.c, timevar.c, tlink.c: Include intl.h.
1654         * Makefile.in: Update deps.
1655
1656 2000-06-29  Andrew Haley  <aph@cygnus.com>
1657
1658         * toplev.c (main): On an IA-64, make flag_unwind_tables defauit
1659         to true.
1660
1661 2000-06-29  Andrew Haley  <aph@cygnus.com>
1662
1663         * config/ia64/linux.h (JMP_BUF_SIZE): Size is in Pmode units, not
1664         bytes: remove the multiply by 8.
1665
1666 2000-06-29  Philipp Thomas  <pthomas@suse.de>
1667
1668         * rtl.c : Revert NLS changes.
1669         * gcc.c : Fix bug in display_help introced by my last changes.
1670
1671 Wed Jun 28 21:09:33 2000   Raja R Harinath <harinath@cs.umn.edu>
1672
1673         * dbxout.c (dbxout_symbol, case RESULT_DECL, VAR_DECL): Use
1674         DECL_CONTEXT, not DECL_FIELD_CONTEXT.
1675
1676 2000-06-29  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1677
1678         * flow.c (flow_depth_first_order_compute): Fix algorithm.
1679
1680 2000-06-28  Philipp Thomas  <pthomas@suse.de>
1681
1682         * c-decl.c : Mark strings for translation.
1683         (parmlist_tags_warning): Use distinct messages instead
1684         of conditional expressions.
1685         * diagnostic.c (v_message_with_decl): Mark string for translation.
1686         * gcc.c: Mark messages for translation.
1687         (display_help): Combine messages into one string where necessary.
1688         * mips-tfile: Add intl.h. Mark messages for translation.
1689         * rtl.c (fatal_with_file_and_line): Modify function for NLS. Mark
1690         messages for translation.
1691         * timevar.c: Mark messages for translation.
1692         * tlink.c: Likewise.
1693         * toplev.c: Likewise.
1694
1695 Wed Jun 28 15:39:26 2000  Donn Terry (donnte@microsoft.com)
1696
1697         * i386-interix.h (STRIP_NAME_ENCODING): Declare _new_name properly.
1698
1699         * alpha/alpha-interix.h: Delete redundant -Asystem(interix),
1700         use -isystem instead of -idirafter.
1701         * i386/i386-interix.h: Likewise.
1702
1703 2000-06-28  Jason Merrill  <jason@redhat.com>
1704
1705         * dwarf2out.c (output_loc_operands): Don't support >1 byte output
1706         unless DWARF2_DEBUGGING_INFO is defined.
1707         (ASM_OUTPUT_DWARF_*): Wrap normal output defs with #ifndefs.
1708
1709 2000-06-28  Richard Henderson  <rth@cygnus.com>
1710
1711         * config/alpha/alpha.c (summarize_insn): Ignore SCRATCH.
1712
1713 2000-06-28  Jakub Jelinek  <jakub@redhat.com>
1714
1715         * cpplex.c (output_line_command): Output correct #line if a header
1716         is including itself and is not protected against multiple inclusion.
1717
1718 2000-06-28  Zack Weinberg  <zack@wolery.cumb.org>
1719
1720         * cppfiles.c (open_include_file): If open(2) returns EMFILE or
1721         ENFILE, close all cached file descriptors and try again.
1722         (_cpp_execute_include): Keep a count of the number of times
1723         each header is included.
1724         (close_cached_fd): New function.
1725         * cpphash.h (struct include_file): Rename before to
1726         include_count; all users updated.  Make include_count and sysp
1727         unsigned short.
1728         * cppinit.c (cpp_finish): If -H, report headers that could use
1729         reinclude guards.
1730         (report_missing_guard): New function.
1731
1732 Wed Jun 28 14:46:58 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1733
1734         * i386.md (prologue_set_got): Set length_immediate field.
1735         (testqi_ccno_1):  Add missing '@' character.
1736
1737 2000-06-27  Jason Merrill  <jason@redhat.com>
1738
1739         * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Use
1740         DWARF_FRAME_REGNUM.
1741
1742 2000-06-27  Andrew Macleod <amacleod@cygnus.com>
1743
1744         * dwarf2out.c (ASM_OUTPUT_DWARF_DATA2): Provide default when no
1745         unsigned macros available.
1746
1747 2000-06-27  Richard Henderson  <rth@cygnus.com>
1748
1749         * config/ia64/ia64.c (emit_insn_group_barriers): Special case
1750         epilogue_deallocate_stack.
1751
1752         * config/ia64/ia64.c (ia64_print_operand) [case D]: Emit
1753         completers for UNORDERED and ORDERED as well.
1754         * config/ia64/ia64.md (bunordered, bordered): New.
1755         (sunordered, sordered): New.
1756
1757 Tue Jun 27 12:14:12 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1758
1759         * genattrtab.c (write_attr_value): Do not abort for CONST_INT operands.
1760         * i386.c (ix86_attr_length_default): Kill.
1761         (ix86_attr_length_immediate_default, ix86_attr_length_address_default):
1762         New.
1763         * i386-protos.h (ix86_attr_length_default): Kill
1764         (ix86_attr_length_immediate_default, ix86_attr_length_address_default):
1765         Add prototype
1766         * i386.md (attribute type): Add "test".
1767         (attribute length_prefix): Kill.
1768         (attribute length_opcode): Kill.
1769         (attribute i387, mode, length_immediate, length_address, prefix_data16,
1770         prefix_rep, prefix_0f, modrm): New.
1771         (attribute length): Compute using the new attributes.
1772         (attribute pent_prefix): New.
1773         (attribute pent_pair): Compute using pent_prefix.
1774         (all insn patterns): Set mode,modrm and immediate_length attributes where
1775         needed.
1776         (cmpsi patterns): Compute sizes propertly for test instruction.
1777         (movsi, movhi patterns): Compute sizes propertly for eax shortcuts.
1778         (movstricthi_xor, movstrictqi_xor): New patterns.
1779         (andsi/andhi): Use splitters to generate xor instructions.
1780         (xorqi_ext_1): New pattern.
1781         (movstricthi->movstricthi_xor peep2): New.
1782
1783 Tue Jun 27 12:03:03 MET DST 2000  Jan Hubicka  <jh@suse.cz>
1784
1785         * i386.md (addqi_low_1): Remove.
1786
1787 2000-06-27  Philipp Thomas  <pthomas@suse.de>
1788
1789         * 1750a.h: Mark help strings for options/switches for translation.
1790         * a29k.h: Likewise.
1791         * alpha.h: Likewise.
1792         * arm.h: Likewise.
1793         * pe.h: Likewise.
1794         * riscix.h: Likewise.
1795         * c4x.h: Likewise.
1796         * clipper.h: Likewise.
1797         * convex.h: Likewise.
1798         * elxsi.h: Likewise.
1799         * fr30.h: Likewise.
1800         * fx80.h: Likewise.
1801         * h8300.h: Likewise.
1802         * i370.h: Likewise.
1803         * cygwin.h: Likewise.
1804         * dgux.h: Likewise.
1805         * djgpp.h: Likewise.
1806         * i386.h: Likewise.
1807         * osf1elf.h: Likewise.
1808         * osfrose.h: Likewise.
1809         * sco5.h: Likewise.
1810         * win32.h: Likewise.
1811         * i860.h: Likewise.
1812         * paragon.h: Likewise.
1813         * i960.h: Likewise.
1814         * ia64.h: Likewise.
1815         * m32r.h: Likewise.
1816         * mcore.h: Likewise.
1817         * mips.h: Likewise.
1818         * mn10300.h: Likewise.
1819         * ns32k.h: Likewise.
1820         * pdp11.h: Likewise.
1821         * pj.h: Likewise.
1822         * aix.h: Likewise.
1823         * aix41.h: Likewise.
1824         * aix43.h: Likewise.
1825         * beos.h: Likewise.
1826         * rs6000.h: Likewise.
1827         * sysv4.h: Likewise.
1828         * linux.h: Likewise.
1829         * linux64.h: Likewise.
1830         * sp64-elf.h: Likewise.
1831         * sparc.h: Likewise.
1832         * splet.h: Likewise.
1833         * v850.h: Likewise.
1834         * convex.h (TARGET_SWITCHES): Provide descriptions and mark them
1835         for translation.
1836         * sp86x-aout.h: Remove bogus first definition of SUBTARGET_SWITCHES.
1837         Properly document option and mark for translation.
1838         * sp86x-elf.h: Likewise.
1839
1840 2000-06-27  Bernd Schmidt  <bernds@cygnus.co.uk>
1841
1842         Add MMX and SSE registers to i386 machine description.
1843         * i386-protos.h (ix86_constant_alignment, ix86_data_alignment,
1844         ix86_local_alignment): Declare.
1845
1846         * i386.h (TARGET_MMX, TARGET_SSE): New.
1847         (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS, CALL_USED_REGISTERS,
1848         REG_ALLOC_ORDER, HARD_REGNO_NREGS, HARD_REGNO_MODE_OK,
1849         REG_CLASS_NAMES, REG_CLASS_CONTENTS,REG_CLASS_FROM_LETTER,
1850         enum reg_class, HI_REGISTER_NAMES): Added MMX/SSE registers.
1851         (FIRST_SSE_REG, LAST_SSE_REG, SSE_REGNO_P): New.
1852         (FIRST_MMX_REG, LAST_MMX_REG, MMX_REGNO_P, MMX_REG_P): New macros.
1853         (RETURN_IN_MEMORY): Handle MMX/SSE.
1854         (REG_PARM_STACK_SPACE): Added so the first three TImode parameters
1855         also get stack space.
1856         (MUST_PASS_IN_STACK): Added TImode to the default definition.
1857         (CUMULATIVE_ARGS): Added sse_nregs, sse_regno and sse_words.
1858         (MMX_REGISTER_NAMES): New.
1859         (ALIGN_MODE_128): New macro.
1860         (CONSTANT_ALIGNMENT): Code moved out-of-line; just call the function.
1861         (DATA_ALIGNMENT): Likewise.
1862         (LOCAL_ALIGNMENT): Likewise.
1863         (CONDITIONAL_REGISTER_USAGE): Make MMX/SSE regs fixed if not
1864         TARGET_MMX/TARGET_SSE.
1865         (VALID_SSE_REG_MODE, VALID_MMX_REG_MODE): New macros.
1866         (REG_CLASS_FROM_LETTER): 'y' for MMX regs.
1867         (SECONDARY_MEMORY_NEEDED): Be conservative about copying between
1868         SSE/MMX regs and something else.
1869         (CLASS_MAX_NREGS): 1 for SSE and MMX regs.
1870         (REGISTER_MOVE_COST): 10 if trying to move between MMX and SSE regs,
1871         3 if moving between MMX regs and something else.
1872
1873         * i386.c (reg_class): Add SSE_REGS, MMX_REGS.
1874         (regclass_map): Add MMX/SSE registers.
1875         (print_operand): Add code to print XMMWORD as appropriate.
1876         (ix86_split_movdi): Abort for MMX regs.
1877         (init_cumulative_args): Also allow SSE_REGS
1878         (function_arg_advance, function_arg): Likewise
1879         (print_reg): Support 'm'.  Add case for TImode.
1880         (override_options): TARGET_SSE implies TARGET_MMX.
1881         (ix86_constant_alignment, ix86_data_alignment, ix86_local_alignment):
1882         New functions.
1883
1884         * config/i386/unix.h (VALUE_REGNO): VECTOR_MODE values go to
1885         FIRST_SSE_REG.
1886         * config/i386/ptx4-i.h (RETURN_IN_MEMORY): Return MMX values in
1887         memory.
1888         * config/i386/sysv4.h (RETURN_IN_MEMORY): Likewise.
1889         * config/i386/i386elf.h (RETURN_IN_MEMORY): Likewise.
1890
1891 2000-06-26  Geoff Keating  <geoffk@cygnus.com>
1892
1893         * ssa.c (struct rename_set_data): Change the name of field
1894         'set_dest' to 'old_reg'.  Add comments.
1895         (struct rename_context): Change the name of 'set_data' to
1896         'new_renames'.  Add new field 'done_renames'.
1897         (create_delayed_rename): New function.
1898         (apply_delayed_renames): New function.
1899         (rename_insn_1): Use the new functions.  Handle CLOBBERS.  Handle
1900         SUBREGs and similar by emitting a move.
1901         (new_registers_for_updates): Delete, functionality moved to
1902         apply_delayed_renames.
1903         (rename_block): Handle moves emitted by rename_insn_1 by putting
1904         them into a SEQUENCE with the original insn.  Add sanity checks
1905         and comments.
1906         (rename_equivalent_regs_in_insn): Don't handle SUBREGs specially.
1907         (rename_equivalent_regs): Expand SEQUENCEs out to individual insns.
1908
1909 2000-06-26  Andrew Macleod <amacleod@cygnus.com>
1910             Jason Merrill <jason@redhat.com>
1911
1912         * dwarf2.h (enum dwarf_call_frame_info): Add
1913         DW_CFA_def_cfa_expression.
1914         * dwarf2out.c (union dw_cfi_oprnd_struct): Add a pointer to a
1915         dw_loc_descr_struct entry.
1916         (struct cfa_loc): New structure to track a CFA location.
1917         (lookup_cfa): Take a cfa_loc parameter instead of a reg and an offset.
1918         (lookup_cfa_1): Take a cfa_loc parameter instead of a reg and an
1919         offset, plus handle DW_CFA_def_cfa_expression.
1920         (def_cfa_1): Use to be dwarf2out_def_cfa, only now it uses a
1921         cfa_loc record.
1922         (dwarf2out_def_cfa): Entry point maintained for compatability.
1923         (dwarf_cfi_name): Add DW_CFA_def_cfa_expression.
1924         (cfa_reg, cfa_offset): Replace with cfa_loc record 'cfa'.
1925         (cfa_store_reg, cfa_store_offset): Replace with cfa_loc 'cfa_store'.
1926         (initial_return_save, dwarf2out_stack_adjust): Use cfa.reg, not
1927         cfa_reg.
1928         (dwarf2out_frame_debug_expr): Use new cfa_loc records. Recognize rtl
1929         sequences for the new DW_CFA_def_cfa_expression record.
1930         (dwarf2out_frame_debug): Use new variables/fields.A
1931         (output_cfi): Handle DW_CFA_def_cfa_expression.
1932         (output_cfa_loc): New function to generate a CFI record for
1933         DW_CFA_def_cfa_expression.
1934         (get_cfa_from_loc_descr): New function to get a cfa_loc record from
1935         a dw_loc_descr sequeunce.
1936         (build_loc_descr): Build a dw_loc_descr from a cfa_loc record.
1937         (dwarf_stack_op_name, new_loc_descr, add_loc_descr, size_of_loc_descr,
1938         size_of_locs, output_loc_operands, output_loc_sequence): Move into
1939         unwind info section.
1940         * frame.h (frame_state): Add base_offset and indirect fields.
1941         * frame-dwarf2.c (decode_stack_op): New function to interpret a
1942         dw_loc_descr operation.
1943         (execute_cfa_insn): Add support for DW_CFA_def_cfa_expression.
1944         (struct frame_state): Add base offset and indirect fields.
1945         * libgcc2.c (next_stack_level): Support indirect loading for CFA.
1946
1947 2000-06-26  Joseph S. Myers  <jsm28@cam.ac.uk>
1948
1949         * c-decl.c (grokdeclarator): Don't warn about `long long' in C99.
1950         Make warnings about implicit int be pedwarns in C99.  Don't warn
1951         about duplicate type qualifiers in C99.
1952         (start_function): Make warning about implict int return type be a
1953         pedwarn in C99.
1954         * c-lex.c (yylex): Don't warn about `long long' in C99.
1955         * c-typeck.c (c_expand_return): In C99, always pedwarn about
1956         `return' with no value in function returning non-void.
1957
1958 2000-06-26  Richard Henderson  <rth@cygnus.com>
1959
1960         * c-typeck.c (pedwarn_c99): New.
1961         * diagnostic.c (verror, vwarning, vpedwarn): Export.
1962         * toplev.h: Prototype them.
1963
1964 2000-06-26  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1965
1966         * c-typeck.c (digest_init): Return error_mark_node node when
1967         TREE_TYPE (init)  == error_mark_node.
1968
1969 2000-06-26  Philipp Thomas  <pthomas@suse.de>
1970
1971         * aclocal.m4 (AM_WITH_NLS): Don't set MSGFMT or GMSGFMT to no,
1972         test for msgfmt without path instead.
1973         * configure: Rebuilt.
1974
1975 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
1976
1977         * gengenrtl.c (special_rtx): Fix typo in comment.
1978
1979 2000-06-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
1980
1981         * mklibgcc.in (LIB2FUNCS): Add missing space.
1982
1983 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
1984
1985         * tree.h (enum tree_index): Add vector type nodes.
1986         Add accessor macros for them.
1987         (TYPE_REPRESENATION_TYPE): New macro.
1988         * tree.c (build_common_tree_nodes_2): Build these nodes.
1989         (finish_vector_type): New function.
1990         * c-common.c (type_for_mode): Handle vector modes.
1991         * tm.texi (VECTOR_MODE_SUPPORTED_P): Document.
1992
1993         * dbxout.c (dbxout_type): Handle VECTOR_TYPEs.
1994         * dwarf.h (enum dwarf_fundamental_type): Add 128 bit integers.
1995         * dwarf2out.c (lookup_type_die): Handle VECTOR_TYPEs.
1996         (gen_type_die): Likewise.
1997         * dwarfout.c (dwarf_fund_type_name): Handle 128 bit integers.
1998         (fundamental_type_code): Likewise.
1999         (type_is_fundamental): VECTOR_TYPEs aren't.
2000         (output_type): Handle VECTOR_TYPEs.
2001
2002 2000-06-25  Kazu Hirata  <kazu@hxi.com>
2003
2004         * config/arm.c: Fix a comment typo.
2005         * config/arm.h: Likewise.
2006
2007 2000-06-25  Philipp Thomas  <pthomas@suse.de>
2008
2009         * aclocal.m4 (AM_WITH_NLS): Set create_catalogs=no if no catalog
2010         compiler found.
2011         AM_GNU_GETTEXT: Don't set CATALOGS if create_catalogs=no.
2012         * configure: Rebuilt.
2013
2014 2000-06-25  John David Anglin  <dave.anglin@nrc.ca>
2015
2016         * config/vax/vax.h (TARGET_SWITCHES): Provide descriptions.
2017
2018 2000-06-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
2019
2020         * mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2FUNCS when generating
2021         libgcc.a.
2022
2023 2000-06-24  Marc Espie <espie@cvs.openbsd.org>
2024
2025         * collect2.c (resolve_lib_name): Move '/' check out of loop.
2026
2027 2000-06-24  Dirk Duellmann  <Dirk.Duellmann@cern.ch>
2028
2029         * ginclude/stddef.h (NULL): define for non-gnu C++ parsers as 0.
2030
2031 2000-06-24  Jakub Jelinek  <jakub@redhat.com>
2032
2033         * stmt.c (expand_decl_cleanup): Emit a dummy insn after
2034         last_unconditional_cleanup.
2035
2036 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
2037
2038         * tree.def (VECTOR_TYPE): New node type.
2039         * tree.h: Adjust some comments to reflect addition of vector types.
2040         (TYPE_VECTOR_SUBPARTS): New macro.
2041         * stor-layout.c (layout_type): Handle VECTOR_TYPE.
2042         * c-convert.c (convert): Likewise.
2043         * convert.c (convert_to_integer): Handle vector modes.
2044         (convert_to_vector): New function.
2045         * convert.h (convert_to_vector): Declare.
2046         * expr.c (convert_move): Handle vector modes.
2047         * expmed.c (extract_bit_field): Don't abort for vector modes.
2048
2049 2000-06-24  Marek Michalkiewicz  <marekm@linux.org.pl>
2050
2051         * config/avr/avr-protos.h (avr_hard_regno_mode_ok): New prototype.
2052         * config/avr/avr.c (out_adj_frame_ptr, out_set_stack_ptr):
2053         New functions, common code moved from function_{prologue,epilogue}
2054         and extended to support the -mtiny-stack option.
2055         (function_prologue, function_epilogue): Use them.
2056         Use lo8/hi8 consistently for asm output readability.
2057         (avr_hard_regno_mode_ok): New function.
2058         * config/avr/avr.h (TARGET_SWITCHES): Fix typo.  Add -mtiny-stack.
2059         (UNITS_PER_WORD): Define as 4 (not 1) when compiling libgcc2.c.
2060         (HARD_REGNO_MODE_OK): Call the avr_hard_regno_mode_ok function.
2061         * config/avr/avr.md (*mov_sp_r): Add support for -mtiny-stack.
2062         Write SPH before SPL.
2063         (*movqi): No need to disable interrupts for just one "out"
2064         in alternative 5.  Change length attribute from 4 to 1.
2065         * config/avr/libgcc.S (__prologue_saves__, __epilogue_restores__):
2066         Write SPH before SPL.
2067
2068 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
2069
2070         * rtl.texi (Vector Operations): New node.
2071         (Arithmetic): Add ss_plus, us_plus, ss_minus, us_minus.
2072         (Conversions): Add ss_truncate, us_truncate.
2073         * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_REORDER,
2074         VEC_CONST, VEC_DUPLICATE, SS_PLUS, SS_MINUS, SS_TRUNCATE,
2075         US_TRUNCATE): New rtx codes.
2076         * machmode.def: Add vector modes.
2077         * machmode.h (enum mode_class): Add MODE_VECTOR_INT and
2078         MODE_VECTOR_FLOAT.
2079         (INTEGER_MODE_P): Check for MODE_VECTOR_INT.
2080         (FLOAT_MODE_P): Check for MODE_VECTOR_FLOAT.
2081         (VECTOR_MODE_P): New.
2082
2083 2000-06-24  Nathan Sidwell  <nathan@codesourcery.com>
2084
2085         * cpp.texi: Clarify #pragma GCC namespace.
2086
2087 2000-06-24  Philipp Thomas  <pthomas@suse.de>
2088
2089         * aclocal.m4(AM_GNU_GETTEXT): If LINGUAS isn't set, build
2090         all catalogs specified in ALL_LINGUAS.
2091         * configure: Rebuilt.
2092
2093 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
2094
2095         * config/sparc/sparc.md (reload_outdi+1): Handle
2096         HOST_BITS_PER_WIDE_INT == 64 case correctly.
2097         (adddi3_insn_sp32+1, adddi3_insn_sp32+2, andsi3+2): Likewise.
2098
2099 2000-06-23  Geoffrey Keating  <geoffk@cygnus.com>
2100
2101         * alias.c (fixed_scalar_and_varying_struct_p): Don't examine
2102         struct vs. scalar-ness when -fno-strict-aliasing.
2103
2104 2000-06-23  Nathan Sidwell  <nathan@codesourcery.com>
2105
2106         * cpplib.c (struct pragma_entry): New structure.
2107         (pragma_dispatch): Pragma dispatcher.
2108         (top_pragmas, gcc_pragmas): New static variables.
2109         (do_pragma): Use pragma_dispatch.
2110         (do_pragma_gcc): New pragma handler.
2111         * cpp.texi: Update.
2112
2113 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
2114
2115         * calls.c (compute_argument_addresses): Force stack slots into
2116         alias set 0.
2117         * expr.c (emit_push_insn): Force pushes into alias set 0.
2118
2119 2000-06-23  Richard Henderson  <rth@cygnus.com>
2120
2121         * config/ia64/ia64.md (pred_rel_mutex): Only take one register.
2122         * config/ia64/ia64.c (emit_predicate_relation_info): Adjust to match.
2123
2124 2000-06-22  Jason Merrill  <jason@redhat.com>
2125
2126         * toplev.c (compile_file): Always call timevar_print.
2127         * Makefile.in (calls.o): Depend on TIMEVAR_H.
2128
2129 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
2130
2131         * varasm.c (constant_descriptor): Make contents unsigned char.
2132         (mark_const_hash_entry): Adjust.
2133         (const_hash): Just hash the code of unknown nodes.
2134         (compare_constant_1): Adjust for unsigned char.
2135         Use language specific expander on unknown nodes.
2136         (record_constant_1): Likewise.
2137
2138 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
2139
2140         * cppfiles.c (cpp_make_system_header): New function.
2141         * cpplib.h: Prototype it.
2142         * cpplib.c (do_line, do_pragma_system_header): Use it.
2143         * fix-header.c (read_scan_file): Use it.
2144
2145         * fix-header.c (check_macro_names): Cast second arg of
2146         cpp_defined to const unsigned char *.
2147         (read_scan_file): Make getchar_call const unsigned char.
2148
2149 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
2150
2151         * cppfiles.c: Include splay-tree.h, not hashtab.h.
2152         (redundant_include_p, make_IHASH, hash_IHASH, eq_IHASH): Delete.
2153         (destroy_include_file_node): New.
2154         (_cpp_init_include_hash): Rename _cpp_init_include_table.
2155         Create a splay tree, not a hash table.
2156         (open_include_file): Look up the path in the include table,
2157         do the multiple include optimization here, etc.
2158         (cpp_included): Walk the path.
2159         (find_include_file): Just walk the path calling
2160         open_include_file, or call it directly for an absolute path.
2161         (_cpp_fake_ihash): Rename _cpp_fake_include and update for new
2162         scheme.
2163         (read_include_file): Update for new scheme.  Don't close the
2164         file unless reading fails.
2165         (_cpp_execute_include, cpp_read_file): Tweak for new scheme.
2166
2167         * cpphash.h (struct ihash, NEVER_REINCLUDE): Delete.
2168         (struct include_file): New.
2169         (NEVER_REREAD, DO_NOT_REREAD, CPP_IN_SYSTEM_HEADER): New
2170         macros.
2171         (CPP_PEDANTIC, CPP_WTRADITIONAL): Update.
2172         Update prototypes.
2173
2174         * cppinit.c: Include splay-tree.h.
2175         (cpp_reader_init, cpp_cleanup): Update.
2176
2177         * cpplib.h (struct cpp_buffer): Change ihash field to
2178         'struct include_file *inc'.  Remove system_header_p.
2179         (struct cpp_reader): Change all_include_files to a
2180         struct splay_tree_s *.
2181
2182         * cpplex.c: Update all references to cpp_buffer->ihash and/or
2183         cpp_buffer->system_header_p.
2184         (cpp_pop_buffer): Close file here, only if DO_NOT_REREAD.
2185
2186         * Makefile.in (SPLAY_TREE_H): New macro.
2187         (cppfiles.o, cppinit.o): Update dependencies.
2188
2189 Wed Jun 21 11:05:48 2000  Martin Buchholz <martin@xemacs.org>
2190
2191         * invoke.texi (g++): "g++" is not a script anymore.
2192
2193 2000-06-20  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2194
2195         * function.c (round_down): Delete obsolete prototype.
2196
2197         * pa.h (CPP_SPEC): Add whitespace after -D__STDC_EXT__.
2198
2199 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
2200
2201         * configure.in: Use 'test a = b' not 'test a == b'.
2202         * configure: Regen.
2203
2204         * Makefile.in (fix-header): Link with $(LIBS) not $(HOST_LIBS).
2205
2206         * Makefile.in: Remove all references to HOST_INTLLIBS.
2207
2208         * cpplex.c (parse_name): Don't warn about $ in identifiers if
2209         skipping.
2210
2211 2000-06-20  Philipp Thomas  <pthomas@suse.de>
2212
2213         * config/pa/pa.h(TARGET_SWITCHES): Require binutils 2.10 or later
2214         for PA 2.0.
2215
2216 Mon Jun 19 23:26:40 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2217
2218         * Take REG_INC notes into account.
2219
2220 2000-06-19  Zack Weinberg  <zack@wolery.cumb.org>
2221
2222         * c-parse.in (undeclared_variable_notice): Moved to c-typeck.c.
2223         (primary: IDENTIFIER): Just call build_external_ref.
2224         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
2225         Regenerate.
2226         * c-lex.c (lastiddecl): Remove.
2227         (yylex): Replace all instances of lastiddecl with local
2228         variables.
2229
2230         * c-typeck.c (build_external_ref): New function.  Treat decls
2231         with C_DECL_ANTICIPATED mostly the same as nonexistent decls.
2232         Look up the decl from the id here.  Call lookup_objc_ivar.
2233         * c-lang.c (lookup_objc_ivar): Stub.
2234         * objc/objc-act.c (lookup_objc_ivar): New function.
2235
2236         * c-tree.h: Prototype lookup_objc_ivar and build_external_ref.
2237         * c-lex.h: Don't declare lastiddecl.
2238
2239 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
2240
2241         * c-common.h (IF_COND): Added documentation.
2242         (THEN_CLAUSE): Likewise.
2243         (ELSE_CLAUSE): Likewise.
2244         (WHILE_COND): Likewise.
2245         (WHILE_BODY): Likewise.
2246         (DO_COND): Likewise.
2247         (DO_BODY): Likewise.
2248         (RETURN_EXPR): Likewise.
2249         (EXPR_STMT_EXPR): Likewise.
2250         (FOR_INIT_STMT): Likewise.
2251         (FOR_COND): Likewise.
2252         (FOR_EXPR): Likewise.
2253         (FOR_BODY): Likewise.
2254         (SWITCH_COND): Likewise.
2255         (SWITCH_BODY): Likewise.
2256         (CASE_LOW): Likewise.
2257         (CASE_HIGH): Likewise.
2258         (GOTO_DESTINATION): Likewise.
2259         (COMPOUND_BODY): Likewise.
2260         (ASM_CV_QUAL): Likewise.
2261         (ASM_STRING): Likewise.
2262         (ASM_OUTPUTS): Likewise.
2263         (ASM_INPUTS): Likewise.
2264         (ASM_CLOBBERS): Likewise.
2265         (DECL_STMT_DECL): Likewise.
2266         (STMT_EXPR_STMT): Likewise.
2267         (LABEL_STMT_LABEL): Likewise.
2268
2269         * c-common.def: Added documenetion for SRCLOC, EXPR_STMT,
2270         COMPOUND_STMT, DECL_STMT, IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT,
2271         RETURN_STMT, BREAK_STMT, CONTINUE_STMT, SWITCH_STMT, GOTO_STMT,
2272         LABEL_STMT, ASM_STMT, SCOPE_STMT, CASE_LABEL, STMT_EXPR.
2273
2274 2000-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2275
2276         * configure.in (--enable-checking): Update --help doc to reflect
2277         new defaults.  Ensure $ac_save_IFS is set before $IFS is changed.
2278
2279 Sun Jun 18 21:42:15 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2280
2281         * gcse.c (insert_insn_end_bb): Always put after NOTE_INSN_BASIC_BLOCK.
2282
2283         * function.c (put_var_into_stack): Don't reference DECL_ fields
2284         if input is a SAVE_EXPR.
2285         Use set_mem_attributes in COMPLEX case.
2286
2287 2000-06-18  Richard Henderson  <rth@cygnus.com>
2288
2289         * config/ia64/ia64-protos.h (process_for_unwind_directive): Declare.
2290         (ia64_file_start): Declare.
2291         * config/ia64/ia64.h (ADDL_REGNO_P): Don't compare unsigned against 0.
2292         (GR_REGNO_P): Likewise.
2293         * config/ia64/ia64.c: Many prototypes.
2294         (ia64_reg_numbers): Constify.
2295         (ia64_input_reg_names, ia64_local_reg_names): Likewise.
2296         (ia64_section_threshold): Make unsigned.
2297         (ia64_print_operand): Constify.
2298         (fix_range): Constify.
2299         (ia64_init_builtins): Don't compare signed vs unsigned.
2300         (ia64_expand_builtin): Likewise.
2301
2302         * config/ia64/ia64.h (EXTRA_CONSTRAINT): New.
2303         (CONSTRAINT_OK_FOR_Q): New.
2304         * config/ia64/ia64.md (movdi_internal): Use Q for fp<->mem.
2305         (movsf_internal, movdf_internal): Likewise.
2306         (cmovdi_internal): Rewrite so that constraints and predicates match;
2307         simplify splitters.
2308         (cmovsi_internal): Likewise.
2309
2310         * config/ia64/ia64.h (ASM_SPEC): Add -x for gas.
2311         (ASM_FILE_START): New.
2312         * config/ia64/ia64.c (ia64_file_start): New.
2313         (rtx_needs_barrier): Handle pred.rel.mutex.
2314         (emit_predicate_relation_info): New.
2315         * config/ia64/ia64.md (pred_rel_mutex): New.
2316         * config/ia64/linux.h (ASM_SPEC): Define.
2317         * config/ia64/sysv4.h (ASM_FILE_START): Define.
2318
2319         * config/ia64/ia64.c (ia64_encode_section_info): Fix thinko
2320         filtering global register variables.
2321
2322 2000-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2323
2324         * c-common.c (add_c_tree_codes): Fix definition for traditional C.
2325
2326 2000-06-17  Michael Meissner  <meissner@redhat.com>
2327
2328         * gcc.c (do_spec_1, '%v3' case): Do not abort if patch level is
2329         not present and there is a field after a '-'.
2330
2331 2000-06-17  Bruce Korb  <bkorb@gnu.org>
2332
2333         * fixinc/check.tpl:  finish the implementation of multiple tests
2334         for a single fix
2335         * fixinc/inclhack.def(ctrl_quotes_def): add a second test
2336         (io_quotes_def): add a second test
2337         (various): reorder `files' so that "limits.h" is never first
2338         * fixinc/tests/base/*: update the testing output
2339
2340 Sat Jun 17 10:33:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2341
2342         * gcc.texi: Remove reference to stupid.c.
2343
2344 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
2345
2346         * c-common.c (c_tree_code_type): New array.
2347         (c_tree_code_length): Likewise.
2348         (c_tree_code_name): Likewise.
2349         (add_c_tree_codes): New function.
2350
2351         * c-common.h (add_c_tree_codes): Declare.
2352         (enum c_tree_code): New enum.
2353
2354         * c-lex.c (init_parse): Added call to add_c_tree_codes.
2355
2356 2000-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2357
2358         * fixinc/inclhack.def (ctrl_quotes_def, io_quotes_def): Modify
2359         select pattern to also match macro defs with only one argument.
2360
2361 Thu Jun 15 18:56:12 2000  Jeffrey A Law  (law@cygnus.com)
2362
2363         * i386.md: Create new [right,left] rotate and right shift
2364         patterns to optimize shift by 1 bit for certain ia32 processors.
2365         Update patterns which perform left shifts to optimize shift by
2366         1 bit for certain ia32 processors.
2367         * i386.c (const_int_1_operand): New predicate.
2368         * i386.h (PREDICATE_CODES): Handle const_int_1_operand.
2369         * i386-protos.h (const_int_1_operand): Prototype.
2370
2371 Wed Jun 14 23:46:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2372
2373         * mips.c (machine_dependent_reorg): Fix braces for nested if.
2374
2375 2000-06-14  Geoff Keating  <geoffk@cygnus.com>
2376
2377         * rs6000.c (toc_hash_eq): Use CODE_LABEL_NUMBER to compare
2378         LABEL_REFs.
2379
2380 2000-06-14  Richard Henderson  <rth@cygnus.com>
2381
2382         * conflict.c (conflict_graph_compute): Don't look for REG_INC.
2383
2384         * config/ia64/ia64.c (ia64_setup_incoming_varargs): Don't emit
2385         auto-inc code.
2386
2387         * print-rtl.c (print_rtx): Emit space before mem alias set.
2388
2389 2000-06-14  David Edelsohn  <edelsohn@gnu.org>
2390
2391         * rs6000.c (expand_block_move): Fix typo in earlier change.
2392         (print_operand): Remove unused variables neg and op.
2393         (toc_hash_mark_entry): Fix prototype.
2394
2395 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
2396
2397         * c-common.h (IF_COND): Moved here from cp/cp-tree.h.
2398         (THEN_CLAUSE): Likewise.
2399         (ELSE_CLAUSE): Likewise.
2400         (WHILE_COND): Likewise.
2401         (WHILE_BODY): Likewise.
2402         (DO_COND): Likewise.
2403         (DO_BODY): Likewise.
2404         (RETURN_EXPR): Likewise.
2405         (EXPR_STMT_EXPR): Likewise.
2406         (FOR_INIT_STMT): Likewise.
2407         (FOR_COND): Likewise.
2408         (FOR_EXPR): Likewise.
2409         (FOR_BODY): Likewise.
2410         (SWITCH_COND): Likewise.
2411         (SWITCH_BODY): Likewise.
2412         (CASE_LOW): Likewise.
2413         (CASE_HIGH): Likewise.
2414         (GOTO_DESTINATION): Likewise.
2415         (COMPOUND_BODY): Likewise.
2416         (ASM_CV_QUAL): Likewise.
2417         (ASM_STRING): Likewise.
2418         (ASM_OUTPUTS): Likewise.
2419         (ASM_INPUTS): Likewise.
2420         (ASM_CLOBBERS): Likewise.
2421         (DECL_STMT_DECL): Likewise.
2422         (STMT_EXPR_STMT): Likewise.
2423         (LABEL_STMT_LABEL): Likewise.
2424         (SCOPE_BEGIN_P): Likewise.
2425         (SCOPE_END_P): Likewise.
2426         (SCOPE_STMT_BLOCK): Likewise.
2427         (SCOPE_NULLIFIED_P): Likewise.
2428         (SCOPE_NO_CLEANUPS_P): Likewise.
2429         (SCOPE_PARTIAL_P): Likewise.
2430         (ASM_VOLATILE_P): Likewise.
2431         (STMT_LINENO): Likewise.
2432         (STMT_LINENO_FOR_FN_P): Likewise.
2433
2434         * c-common.def: New file. Added SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
2435         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
2436         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
2437         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
2438         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
2439
2440         * gencheck.c (tree_codes[]): Added '#include "c-common.def"'.
2441
2442 2000-06-14  David O'Brien  <obrien@FreeBSD.org>
2443
2444         * gcc.c (main): Quiet compiler warnings.  argv is assumed to be
2445         writable in parts of the GCC code.
2446
2447         * config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
2448         specification match cast.
2449
2450 Wed Jun 14 09:25:57 2000  Jeffrey A Law  (law@cygnus.com)
2451
2452         * configure.in: Revert AC_TYPE_GETGROUPS patch from June 13.
2453         * configure, config.in: Rebuilt.
2454         * sys-protos.h: Similarly.
2455
2456 Wed Jun 14 03:39:58 EDT 2000  John Wehle  (john@feith.com)
2457
2458         * ifcvt.c (EDGE_COMPLEX): Move definition ...
2459         * basic-block.h (EDGE_COMPLEX): ... here.
2460
2461         * loop.c (check_dbra_loop): Specify the register when
2462         generating REG_NONNEG notes and don't generate duplicates.
2463
2464 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
2465
2466         * tree.h (TYPE_USER_ALIGN, DECL_USER_ALIGN): Define.
2467         (struct tree_type, struct tree_decl): Add user_align member.
2468         * stor-layout.c (layout_decl): Set DECL_USER_ALIGN.
2469         (place_union_field): If BIGGEST_FIELD_ALIGNMENT is defined
2470         and DECL_USER_ALIGN 0, cap alignment to this value.
2471         (place_field): Likewise.
2472         (finalize_type_size): Set TYPE_USER_ALIGN.
2473         (layout_type): Likewise.
2474         (initialize_sizetypes): Likewise.
2475         * c-common.c (decl_attributes): Set TYPE_USER_ALIGN resp.
2476         DECL_USER_ALIGN to 1.
2477         * c-decl.c (duplicate_decls): Set DECL_USER_ALIGN.
2478         (xfer_tag): Set TYPE_USER_ALIGN.
2479         (finish_struct): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
2480         (finish_enum): Likewise.
2481         * stmt.c (expand_decl): Set DECL_USER_ALIGN.
2482         (expand_anon_union_decl): Likewise.
2483         * tree.c (make_node): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
2484         (build_index_type): Set TYPE_USER_ALIGN.
2485         (build_range_type): Likewise.
2486         (build_common_tree_nodes_2): Likewise.
2487         * tm.texi (BIGGEST_FIELD_ALIGNMENT): Document the changed meaning.
2488
2489 2000-06-13  Andreas Jaeger  <aj@suse.de>
2490
2491         * configure.in: Use --enable-checking=misc,tree,gc by default if
2492         no --enable-checking option is given and for
2493         --enable-checking=yes.
2494         * configure: Rebuilt.
2495
2496 2000-06-13  Richard Henderson  <rth@cygnus.com>
2497
2498         * libgcc2.c (ia64_throw_helper): Use __builtin_return_address.
2499         (__throw): Don't pass the address of a label.
2500
2501         * config/ia64/ia64.c (ia64_compute_frame_size): Use
2502         current_function_is_leaf.
2503         (ia64_expand_prologue): Likewise.  Modify return_address_pointer_rtx
2504         instead of reg_names[RETURN_ADDRESS_REGNUM].
2505         (ia64_init_machine_status): Reset return_address_pointer_rtx.
2506         * config/ia64/ia64.h (RETURN_ADDRESS_POINTER_REGNUM): Rename
2507         from RETURN_ADDRESS_REGNUM.  Update all uses.
2508         (RETURN_ADDR_RTX): Use return_address_pointer_rtx; return
2509         zero instead of null on failure.
2510         (ELIMINABLE_REGS): Add ra->b0 elimination.
2511         (CAN_ELIMINATE): Update accordingly.
2512         (INITIAL_ELIMINATION_OFFSET): Likewise.
2513         (REGISTER_NAMES): Use an illegal assembler name for
2514         RETURN_ADDRESS_POINTER_REGNUM.
2515
2516 2000-06-13  Richard Henderson  <rth@cygnus.com>
2517
2518         * config/ia64/ia64.h (enum reg_class): Remove FR_INT_REGS, FR_FP_REGS,
2519         GR_AND_FR_INT_REGS, GR_AND_FR_FP_REGS.
2520         (REG_CLASS_NAMES): Likewise.
2521         (REG_CLASS_CONTENTS): Likewise.
2522         (FR_FP_REGNO_P, FR_INT_REGNO_P): Remove.
2523         (HARD_REGNO_MODE_OK): Remove references to them.
2524         (REGNO_REG_CLASS): Likewise.
2525         (REG_CLASS_FROM_LETTER): Likewise.
2526         (CLASS_MAX_NREGS): Likewise.
2527         (REGISTER_MOVE_COST): Likewise.
2528         * config/ia64/ia64.c (ia64_secondary_reload_class): Likewise.
2529         * config/ia64/ia64.md (*): Replace "e" constraints with "f".
2530         (movqi_internal): Special case moves from zero.
2531         (movhi_internal, movsi_internal): Likewise.
2532         (movdi_internal): Likewise.  Fill out "f" constraints.
2533         (movsf_internal): Fill out "r" constraints.
2534         (movdf_internal): Likewise.
2535
2536 2000-06-13  Richard Henderson  <rth@cygnus.com>
2537
2538         * flow.c (insn_dead_p): Keep sets to PIC_OFFSET_TABLE_REGNUM
2539         alive before reload.
2540
2541         * haifa-sched.c (struct deps): Add in_post_call_group_p.
2542         (add_dependence): Handle notes between SCHED_GROUP_P insns.
2543         (remove_dependence): Always define.
2544         (set_sched_group_p): New.
2545         (sched_analyze_2): Use it.
2546         (sched_analyze_insn): Don't special-case naked uses.  Look for
2547         and extend in_post_call_group_p.
2548         (sched_analyze): Clear stale SCHED_GROUP_P.  Set in_post_call_group_p.
2549         (init_deps): Clear in_post_call_group_p.
2550
2551 2000-06-13  Richard Henderson  <rth@cygnus.com>
2552
2553         * combine.c (subst): Use CLASS_CANNOT_CHANGE_MODE and
2554         CLASS_CANNOT_CHANGE_MODE_P instead of CLASS_CANNOT_CHANGE_SIZE
2555         and hard-coded tests.
2556         (simplify_set): Likewise.
2557         (gen_lowpart_for_combine): Likewise.
2558         * emit-rtl.c (gen_lowpart_common): Likewise.
2559         * global.c (find_reg): Likewise.
2560         * local-alloc.c (find_free_reg): Likewise.
2561         * recog.c (register_operand): Likewise.
2562         * regclass.c (init_reg_sets_1): Likewise.
2563         (record_operand_costs, regclass): Likewise.
2564         * reload.c (push_reload): Likewise.
2565         * reload1.c (choose_reload_regs): Likewise.
2566         * flow.c (mark_used_regs): Conditionally set REG_CHANGES_MODE.
2567         * local-alloc.c (struct qty): Rename changes_size to changes_mode.
2568         Update all references.
2569         * regs.h (struct reg_info_def): Likewise.
2570         (REG_CHANGES_MODE): Rename from REG_CHANGES_SIZE.
2571         * tm.texi (CLASS_CANNOT_CHANGE_MODE): Document.
2572         (CLASS_CANNOT_CHANGE_MODE_P): Likewise.
2573
2574         * config/alpha/alpha.h (CLASS_CANNOT_CHANGE_MODE): Rename.
2575         (CLASS_CANNOT_CHANGE_MODE_P): New.
2576         * config/mips/mips.h: Likewise.
2577         * config/pa/pa32-regs.h: Likewise.
2578         * config/pa/pa64-regs.h: Likewise.
2579         * config/rs6000/rs6000.h: Likewise.
2580         * config/sh/sh.h: Likewise.
2581         * config/ia64/ia64.h (CLASS_CANNOT_CHANGE_MODE): New.
2582         (CLASS_CANNOT_CHANGE_MODE_P): New.
2583         * config/avr/avr.h (CLASS_CANNOT_CHANGE_SIZE): Remove dead code.
2584         * config/d30v/d30v.h: Likewise.
2585
2586 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2587
2588         * configure.in: Add AC_TYPE_GETGROUPS test.
2589         * sys-protos.h: Use GETGROUPS_T * for second arg of getgroups.
2590         * configure: Rebuilt.
2591         * config.in: Rebuilt.
2592
2593 2000-06-13  Richard Henderson  <rth@cygnus.com>
2594
2595         * explow.c (set_mem_attributes): Do nothing for NULL type.
2596
2597 Tue Jun 13 14:45:10 2000  Jeffrey A Law  (law@cygnus.com)
2598
2599         * config/m68k/openbsd.h (ASM_SPEC): pass down options to assembler
2600         correctly.
2601
2602 2000-06-13  James E. Wilson  <wilson@cygnus.com>
2603
2604         * config/ia64/ia64.md (movxf_internal): Add missing "e" to ldf/stf.
2605
2606 Tue Jun 13 14:05:35 2000  Jeffrey A Law  (law@cygnus.com)
2607
2608         * Makefile.in (gensupport.o): Remove bogus $(HOST_PREFIX) reference.
2609
2610 2000-06-13  Philipp Thomas  <pthomas@suse.de>
2611
2612         * configure.in(ALL_LINGUAS): Changed en_UK to en_GB.
2613         * configure: Rebuilt.
2614
2615 2000-06-07  David O'Brien  <obrien@FreeBSD.org>
2616
2617         * configure.in:  Adjust FreeBSD bits to match changes to config.guess.
2618         We now default to ELF for the i386, and a.out is the special case.
2619         * configure:  Rebuilt.
2620
2621 Tue Jun 13 10:05:30 2000  Hans-Peter Nilsson  <hp@axis.com>
2622
2623         * final.c (final_scan_insn): Delete notes between cc0 setter and
2624         user when restarting from setter.
2625
2626 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2627
2628         * vax.h (INDEX_TERM_P): Define evaluation order of &&'s in || and
2629         cast to squelch signed/unsigned warnings.
2630
2631 2000-06-13  Zack Weinberg  <zack@wolery.cumb.org>
2632
2633         * cpplib.c (handle_directive): Print non-NUL-terminated string
2634         with %.*s.
2635
2636 2000-06-12  Michael Meissner  <meissner@redhat.com>
2637
2638         * ifcvt.c (dead_or_predicable): Don't do conditional execution
2639         path if the machine needs extra support to do conditional
2640         execution.
2641
2642 Mon Jun 12 17:04:17 2000  Jeffrey A Law  (law@cygnus.com)
2643
2644         * print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
2645         to print the alias set.
2646         * print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.
2647
2648 2000-06-12  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2649
2650         * config/float-vax.h: Add GFLOAT defines.
2651
2652 Mon Jun  12  9:44:00 2000  Mark Klein  <mklein@dis.com>
2653
2654         * configure.in: Update tm dependencies for MPE.
2655         * configure: Rebuilt.
2656
2657 2000-06-12  H.J. Lu  <hjl@gnu.org>
2658
2659         * gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.
2660
2661 2000-06-12  David Edelsohn  <edelsohn@gnu.org>
2662
2663         * aix41.h (SUBTARGET_SWITCHES): Delete threads.
2664         (CPP_SPEC): Change mthreads to pthread.
2665         (LIB_SPEC): Likewise.
2666         (STARTFILE_SPEC): Likewise.
2667         * aix43.h (SUBTARGET_SWITCHES): Delete threads.
2668         (CPP_SPEC): Change mthreads to pthread.
2669         (LIB_SPEC): Likewise.
2670         (STARTFILE_SPEC): Likewise.
2671         * rs6000-protos.h (reg_or_arith_cint_operand): New.
2672         * rs6000.c (reg_or_arith_cint_operand): New.
2673         (num_insns_constant_wide): Decorate unsigned constant.
2674         * rs6000.h (PREDICATE_CODES): Add reg_or_arith_cint_operand.
2675         * rs6000.md (addsi3): Use new predicate.
2676         (subsi3, adddi3, subdi3): Likewise.
2677
2678 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
2679
2680         * c-common.c (lang_get_alias_set): Fix typo.
2681
2682 2000-06-12  Richard Earnshaw <rearnsha@arm.com>
2683
2684         * flow.c (mark_used_regs): Revert last change.
2685         (life_analysis): Remove PROP_AUTOINC if running after reload.
2686         (propagate_one_insn): PROP_AUTOINC is always off after reload.
2687
2688 2000-06-11  Richard Earnshaw <rearnsha@arm.com>
2689
2690         * flow.c (mark_used_regs): Don't call find_auto_inc after reload
2691         has run.
2692
2693 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2694
2695         * bb-reorder.c (build_scope_forest): Initialize variable
2696         `curr_scope'.
2697
2698         * calls.c (expand_call): Likewise for variables
2699         `save_pending_stack_adjust' and `save_stack_pointer_delta'.
2700
2701         * i386.c (function_arg_advance, function_arg): Cast to avoid
2702         signed/unsigned warnings.
2703
2704         * i386.h (MEMORY_MOVE_COST): Likewise.
2705
2706         * ifcvt.c (cond_exec_process_if_block): Initialize variables
2707         `else_start' and `else_end'.
2708
2709         * libgcc2.h (__eh_alloc, __eh_free): Prototype.
2710
2711         * regrename.c (rr_replace_reg): Initialize variable `dest_subregno'.
2712
2713 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
2714
2715         * Makefile.in (libintl.a): Depend on intl.all.
2716
2717 2000-06-09  H.J. Lu  (hjl@gnu.org)
2718
2719         * Makefile.in (c-parse.o): Also depend on output.h.
2720
2721 2000-06-09  Rodney Brown  <RodneyBrown@mynd.com>
2722
2723         * mcore-protos.h: discards const warning removal.
2724         * mcore.c: discards const warning removal.
2725
2726 2000-06-09  Kazu Hirata  <kazu@hxi.com>
2727
2728         * config/h8300/lib1funcs.asm: Declare the machine architecture at
2729         the beginning of the file.
2730
2731 2000-06-09  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2732
2733         * real.h:  Add prototype for ldexp.
2734
2735 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
2736
2737         * ggc-none.c, ggc-simple.c, ggc-page.c (ggc_alloc_obj): Rename
2738         it ggc_alloc, drop second argument, never clear returned memory.
2739         * ggc-common.c (ggc_alloc_string): Use ggc_alloc.
2740         (ggc_alloc_cleared): New.
2741         * ggc.h: Prototype ggc_alloc and ggc_alloc_cleared, not
2742         ggc_alloc_obj.  Remove ggc_alloc macro.
2743         (ggc_alloc_rtx, ggc_alloc_rtvec, ggc_alloc_tree): Use ggc_alloc.
2744
2745         * rtl.c (rtvec_alloc): Clear the vector always.
2746         (rtx_alloc): Clear the first word always.  Remove dirty
2747         obstack tricks (this routine is no longer a bottleneck).
2748         * tree.c (make_node): Clear the new node always.
2749         (make_tree_vec): Likewise.
2750         (tree_cons): Clear the common structure always.
2751         (build1): Likewise; also, clear TREE_COMPLEXITY.
2752         * gengenrtl.c: Use puts wherever possible.  Remove extra
2753         newlines.
2754         (gendef): Clear the first word of an RTX in the generator
2755         function, irrespective of ggc_p.  Initialize '0' slots to
2756         NULL.
2757         (genlegend): Don't generate obstack_alloc_rtx routine, just a
2758         thin wrapper macro around obstack_alloc.
2759
2760         * stmt.c (expand_fixup): Use ggc_alloc.
2761         * c-typeck.c (add_pending_init): Use ggc_alloc.
2762         * emit-rtl.c (init_emit_once): Clear CONST_DOUBLE_CHAIN(tem).
2763         * varasm.c (immed_double_const): Set CONST_DOUBLE_MEM(r) to
2764         const0_rtx when it is created.
2765         (immed_real_const_1): Set CONST_DOUBLE_CHAIN(r) to NULL_RTX if
2766         we are not in a function.
2767
2768         * tree.c (tree_class_check_failed): Make second arg an int.
2769         * tree.h: Update prototype.
2770
2771 2000-06-09  Geoff Keating  <geoffk@cygnus.com>
2772
2773         * tree.h (VOID_TYPE_P): Don't look at the TYPE_MAIN_VARIANT
2774         of an error_mark_node.
2775
2776 Fri Jun  9 20:35:13 2000  Denis Chertykov  <denisc@overta.ru>
2777
2778         * config/avr/avr.c (asm_output_section_name): bugfix.
2779
2780 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
2781
2782         * timevar.def: Add TV_EXPAND.
2783         * timevar.c (timevar_print): Update timing information.
2784         * calls.c (try_to_integrate): Push to TV_INTEGRATION for inlining.
2785
2786         * stmt.c (expand_return): Check for error_mark_node.
2787
2788 2000-06-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2789
2790         * configure.in: Also avoid wrapping auto-build.h with IN_GCC.
2791
2792         * scan-types.sh (VALUE) Wrap use with double quotes to protect
2793         variable against filename expansion when it contains "char *".
2794
2795         * system.h (SSIZE_MAX): Delete backup definition.
2796
2797         * cppfiles.c (read_include_file): Use INTTYPE_MAXIMUM(ssize_t)
2798         instead of SSIZE_MAX.
2799
2800 2000-06-09  Jakub Jelinek  <jakub@redhat.com>
2801
2802         * configure.in: Check whether gas supports -relax.
2803         * configure, config.in: Rebuilt.
2804         * config/sparc/sparc.h (ASM_RELAX_SPEC): Define.
2805         (EXTRA_SPECS): Add asm_relax.
2806         (ASM_SPEC): Add %(asm_relax).
2807         (TARGET_SWITCHES): Add -mrelax and -mno-relax.
2808         * config/sparc/linux64.h (LINK_ARCH_SPEC): Rename to LINK_SPEC.
2809         (LINK_SPEC): Pass -relax to linker unless -mno-relax or -r.
2810         (ASM_SPEC): Add %(asm_relax).
2811         * config/sparc/linux.h (LINK_SPEC, ASM_SPEC): Likewise.
2812         * config/sparc/sparc.c (output_sibcall): If HAVE_AS_RELAX_OPTION,
2813         never use sethi/jmpl for leaf tail calls.  Use or with rs2 %g0
2814         instead of mov, so that gas can further optimize it.
2815
2816 2000-06-08  James E. Wilson  <wilson@bletchleypark.cygnus.com>
2817
2818         * dwarf2out.c (size_of_die, case dw_val_class_const): Use
2819         size_of_sleb128.
2820         (value_format, case dw_val_class_const): Use sdata format.
2821         (output_die): Call output_sleb128.
2822
2823 2000-06-08  James E. Wilson  <wilson@cygnus.com>
2824
2825         * dwarf2out.c (ASM_OUTPUT_DWARF_DATA8): Add new macro that uses
2826         UNALIGNED_DOUBLE_INT_ASM_OP.  Rename old macro to
2827         ASM_OUTPUT_DWARF_CONST_DOUBLE.
2828         (output_die, case dw_val_class_unsigned_const): Correct call to
2829         ASM_OUTPUT_DWARF_DATA8.
2830         (output_die, case dw_val_class_long_long): Use
2831         ASM_OUTPUT_DWARF_CONST_DOUBLE.
2832         * tree.c (host_integerp): Accept unsigned HOST_WIDE_INT values when
2833         pos is zero.
2834
2835         * config/ia64/ia64-protos.h (ia64_output_end_prologue): Add.
2836         (output_function_prologue): Fix mispelling.
2837         (output_function_prologue, output_function_epilogue): Reorder to
2838         match ia64.c definition order.
2839         * config/ia64/ia64.c (ia64_expand_prologue): Add comment.
2840         (ia64_expand_epilogue): Set RTX_FRAME_RELATED_P on stack restore insns.
2841         Use r3 instead of r2 for large stack restores.
2842         (ia64_output_end_prologue): New function.
2843         (process_set): Emit ".restore sp" for epilogue stack restores.
2844         * config/ia64/ia64.h (FUNCTION_END_PROLOGUE): Define.
2845
2846 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
2847
2848         * dbxout.c (dbxout_type_fields): Don't segfault on fields with
2849         incomplete types.
2850
2851 2000-06-08  Nathan Sidwell  <nathan@codesourcery.com>
2852
2853         * frame.c (end_fde_sort): Remove extraneous erratic array test.
2854
2855 2000-06-08  Denis Perchine <dyp@perchine.com>
2856
2857         * frame.c (start_fde_sort): Don't malloc (0).
2858
2859 2000-06-07  Zack Weinberg  <zack@wolery.cumb.org>
2860
2861         * c-decl.c (pushdecl): Do not call COMPLETE_TYPE_P on
2862         error_mark_node.
2863         * print-tree.c (print_node): The transparent_union_flag means
2864         different things for unions and arrays.  Do not inspect it
2865         with TYPE_TRANSPARENT_UNION.
2866
2867 2000-06-06  Jakub Jelinek  <jakub@redhat.com>
2868
2869         * cpplib.c (do_ifdef, do_ifndef): Don't segfault if parse_ifdef
2870         returned NULL.
2871
2872 Wed Jun  7 20:34:33 2000  Denis Chertykov  <denisc@overta.ru>
2873
2874         * config/avr/avr.c (asm_output_section_name): output section
2875         attributes.
2876         * config/avr/libgcc.S (.text.libgcc): declare section attributes.
2877
2878 2000-06-06  James E. Wilson  <wilson@cygnus.com>
2879
2880         * frame.h (struct unwind_info_ptr): Collapse version, flags, and length
2881         fields into header field.
2882         (IA64_UNW_HDR_LENGTH, IA64_UNW_HDR_FLAGS, IA64_UNW_HDR_VERSION): New
2883         macros to access length, flags, and version info from header field.
2884         * config/ia64/crtbegin.asm (__do_frame_setup_aux): Delete here.
2885         * config/ia64/crtend.asm (__do_frame_setup_aux): Add here.
2886         (__do_global_ctors_aux): Fix caller.
2887         * config/ia64/frame-ia64.c (get_unwind_record): Change parameter
2888         prologue_flag to header.  Pass to read_P_record.
2889         (read_P_record): New argument header.  Implement P4 format.
2890         Multiply P7_T_SIZE by 16.
2891         (execute_one_ia64_descriptor): New static local region_header.  Pass to
2892         get_unwind_record.  Copy r to region_header if r is a header record.
2893         (print_all_records): Likewise.
2894         (__build_ia64_frame_state): Use IA64_UNW_HDR_LENGTH.
2895         (__get_personality, __get_except_table): Likewise.
2896         * config/ia64/ia64.c (process_set): Do not divide offsets by 4.
2897
2898 2000-06-06  Philipp Thomas  <pthomas@suse.de>
2899
2900         * configure.in (AC_C_INLINE): Added.
2901         * aclocal.m4 (AM_WITH_NLS): Enable --with-included-gettext by default.
2902         * configure: Regenerate.
2903
2904 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
2905
2906         * c-common.h (c_language_kind): New type.
2907         (c_language): New variab.e
2908         * c-common.c (lang_get_alias_set): Don't put structures in
2909         non-zero alias sets in C++.
2910         * c-decl.c (c_language): Define it.
2911         * c-lex.c (doing_objc_thang): Remove.
2912         * c-tree.h (doing_objc_thang): Make it a macro.
2913         * objc/objc-act.c (lang_decode_option): Set c_language, not
2914         doing_objc_thang.
2915
2916 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
2917
2918         * diagnostic.c (output_maximum_width): Remove.
2919         (doing_line_wrapping): Tweak.
2920         (diagnostic_buffer): New object.
2921         (global_output_buffer): New object.
2922         (output_destroy_prefix): New function.
2923         (default_initialize_buffer): Likewise.
2924         (reshape_diagnostic_buffer): Likewise.
2925         (initialize_diagnostics): Likewise.
2926         (output_clear): Tweak.
2927         (line_wrapper_printf): Adjust call to init_output_buffer.
2928         (vline_wrapper_message_with_location): Likewise.  Use
2929         output_destroy_prefix.
2930         (v_message_with_decl): Likewise.
2931
2932         * diagnostic.h (struct output_buffer): Constify prefix.
2933         (init_output_buffer, output_get_prefix): Constify.
2934         (diagnostic_message_length_per_line): Likewise.
2935         (reshape_diagnostic_buffer): Declare.
2936         (default_initialize_buffer): Declare.
2937         (initialize_diagnostics): Declare.
2938         (diagnostic_buffer): Declare new obbject.
2939
2940         * toplev.c: #include diagnostic.h
2941         (display_help): Document diagnostic formatting options.
2942         (decode_f_option): Handle diagnostic formatting options.
2943         (main): Setup initialization for diagnostic messages outputter.
2944
2945         * toplev.h (set_message_length): Remove.
2946
2947         * Makefile.in (toplev.o): Depends upon diagnostic.h
2948
2949         * invoke.texi : Document diagnostics formatting options.
2950
2951 Tue Jun  6 19:25:32 2000  Philippe De Muyter  <phdm@macqel.be>
2952
2953         * configure.in (Make the links): Typo fix : the file that must be
2954         included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'.
2955         * configure: File rebuilt.
2956
2957 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
2958
2959         * eh-common.h (EH_ALLOC_SIZE, EH_ALLOC_ALIGN): New #defines.
2960         (eh_context): Add alloc_mask and alloc_buffer emergency fallback
2961         space.
2962         * libgcc2.c (__eh_alloc): Moved from cp/exception.cc. Fallback on
2963         emergency eh_context buffer, if malloc fails.
2964         (__eh_free): Moved from cp/exception.cc. Release to emergency
2965         eh_context buffer, if appropriate.
2966
2967 2000-06-06  Jason Merrill  <jason@casey.soma.redhat.com>
2968
2969         * expr.c (store_expr): Fix typo.
2970
2971 2000-06-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2972
2973         * m68k.c (legitimize_pic_address): Move prototype ...
2974
2975         * m68k-protos.h (legitimize_pic_address): ... here.
2976
2977         * m68k.md (legitimize_pic_address): Delete prototypes.
2978         (untyped_call): Invoke GEN_CALL(), not gen_call().
2979
2980         * nextstep.c: Include system.h and toplev.h.
2981         (get_directive_line): Don't prototype.
2982         (handle_pragma): Mark parameters with ATTRIBUTE_UNUSED and constify.
2983
2984         * nextstep.h (handle_pragma): Prototype.
2985         (SECTION_FUNCTION): Prototype FUNCTION().  Move prototype of
2986         objc_section_init ...
2987         (EXTRA_SECTION_FUNCTIONS): ... here.
2988
2989 Tue Jun  6 08:17:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2990
2991         * sdbout.c (struct sdb_file): NAME now const.
2992         (sdbout_init): input_file_name now const.
2993         (sdbout_start_new_source_file): FILENAME now const.
2994         * sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above.
2995
2996 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
2997
2998         * c-typeck.c (build_conditional_expr): Handle complex data types.
2999
3000 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
3001
3002         * explow.c (maybe_set_unchanging): New function, broken out from...
3003         (set_mem_attributes): Here.
3004         * expr.h: Declare it.
3005         * stmt.c (expand_decl): Call it.
3006
3007 2000-06-05  Richard Henderson  <rth@cygnus.com>
3008
3009         * reload1.c (choose_reload_regs): Mind CLASS_CANNOT_CHANGE_SIZE
3010         while looking for a register to inherit from.
3011
3012 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
3013
3014         * Makefile.in (libgcc.ready): Lose.
3015         (libgcc.mk): Just use mv, not move-if-change.
3016         (LIBGCC_DEPS): New macro.
3017         (libgcc.a): Use it.
3018         (stmp-multilib): Likewise.
3019         * mklibgcc.in (stmp-dirs): New target.  Make everything depend on
3020         it rather than the directories themselves.
3021         (LIB2ADD): Depend on the list file rather than 'force'.
3022
3023         * fold-const.c (fold, case COND_EXPR): Elide conversion between
3024         cv-qualified versions of types.
3025
3026 Mon Jun  5 14:06:18 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3027
3028         * config/sparc/sparc.c (short_branch): Correct error in range
3029         computation.
3030
3031 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3032
3033         * fixinc/inclhack.def: New include hacks for ultrix.
3034         * (nested_ultrix): Replaced by ultrix_nested_svc.
3035         * (ultrix_atof_param): test_text string added.
3036         * (ultrix_ifdef): Modified select string.
3037
3038 2000-06-05  Zack Weinberg  <zack@wolery.cumb.org>
3039
3040         * objc/objc-act.c (generate_method_descriptors): Register
3041         objc_method_prototype_template as a GC root.
3042         (comp_method_with_proto): Register function_type as a GC root.
3043         (comp_proto_with_proto): Replace function_type1 and
3044         function_type2 with a two-element array; register it as a GC root.
3045
3046         (generate_protocols, build_protocol_initializer,
3047         generate_protocol_list, build_category_initializer,
3048         build_shared_structure_initializer): Do not cache cast_type
3049         and/or cast_type2.
3050
3051 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3052
3053         * function.c (assign_parms): Add missing argument to set_mem_attributes
3054         call.
3055
3056 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
3057
3058         * tree.h (VOID_TYPE_P): New macro.
3059         (COMPLETE_OR_VOID_TYPE_P): Use VOID_TYPE_P.
3060         * c-decl.c (grokdeclarator): Use VOID_TYPE_P.
3061         (get_parm_info): Likewise.
3062         (store_parm_decls): Likewise.
3063         (combine_parm_decls): Likewise.
3064         (finish_function): Likewise.
3065         * c-typeck.c (build_function_call): Likewise.
3066         (build_binary_op): Likewise.
3067         (build_conditional_expr): Likewise.
3068         (internal_build_compound_expr): Likewise.
3069         (convert_for_assignment): Likewise.
3070         * stmt.c (expend_expr_stmt): Likewise.
3071         (warn_if_unused_value): Likewise.
3072         (expand_return): Likewise.
3073         * c-parse.in (primary): Likewise.
3074         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
3075         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
3076
3077 Mon Jun  5 06:46:28 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3078
3079         * alias.c (get_alias_set): If compnent is addressable, use alias
3080         set of component.
3081         * c-decl.c (init_decl_processing): Don't call record_component_aliases.
3082         (grokdeclarator): Likewise.
3083         * c-typeck.c (common_type): Likewise.
3084
3085 2000-06-04  Alex Samuel  <samuel@codesourcery.com>
3086
3087         * Makefile.in (OBJS): Remove dyn_string.o
3088         (dyn-string.o): Delete rule.
3089         * dyn-string.c: Delete file
3090         * dyn-string.h: Likewise.
3091
3092 2000-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3093
3094         * Makefile.in (intl.*): Honor non-zero exit codes in the intl
3095         subdir.
3096
3097 2000-06-03  Geoff Keating  <geoffk@cygnus.com>
3098
3099         * alias.c (record_component_aliases): Don't inspect
3100         DECL_NONADDRESSABLE_P of non-FIELD_DECL components of structures.
3101
3102 Sat Jun  3 19:05:30 2000  Michael Meissner  <meissner@redhat.com>
3103
3104         * ifcvt.c (process_insns): If IFCVT_MODIFY_INSN is defined, call
3105         it with the pattern to do machine dependent work.
3106         (cond_exec_process_if_block): If IFCVT_MODIFY_TESTS is defined,
3107         use it to modify the true/false tests used in conditional
3108         execution.  If IFCVT_MODIFY_FINAL and IFCVT_MODIFY_CANCEL are
3109         defined, invoke them if the conversion to conditional execution
3110         was successful or not.
3111
3112         * tm.texi (IFCVT_MODIFY_TESTS): Document.
3113         (IFCVT_MODIFY_INSN): Ditto.
3114         (IFCVT_MODIFY_FINAL): Ditto.
3115         (IFCVT_MODIFY_CANCEL): Ditto.
3116
3117 Sat Jun  3 15:26:13 2000  Matt Kraai <kraai@alumni.carnegiemellon.edu>
3118
3119         * toplev.c (main): Fix misspellings of possibility and language.
3120
3121 2000-06-03  Richard Henderson  <rth@cygnus.com>
3122
3123         * alias.c (record_alias_subset): Initialize has_zero_child in the
3124         superset.
3125
3126 2000-06-03  Richard Earnshaw (rearnsha@arm.com)
3127
3128         * arm.md (untyped_call): Use GEN_CALL macro.
3129
3130 2000-06-02  Pekka Nikander  <pnr@teldanex.tcm.hut.fi>
3131
3132         * Makefile.in: Use $(MAKE) not "make"
3133
3134 Fri Jun  2 19:31:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3135
3136         * alias.c (struct alias_set_entry): New field has_zero_child.
3137         (mem_in_disjoint_alias_sets_p): Return 0 if set in either ase.
3138         (get_alias_set): If language-dependent routine set TYPE_ALIAS_SET,
3139         do nothing.
3140         Call record_component_aliases for aggregate types.
3141         (record_alias_subset): Set has_zero_child.
3142         (record_component_aliases, case ARRAY_TYPE): Do nothing if
3143         TYPE_NONALIASES_COMPONENT.
3144         (record_component_aliases, case RECORD_TYPE): Test
3145         DECL_NONADDRESSABLE_P.
3146         * c-decl.c (grokdeclarator): Set DECL_NONADDRESSABLE_P instead
3147         of TREE_ADDRESSABLE.
3148         * calls.c (initialize_argument_information): Only test
3149         TYPE_TRANSPARENT_UNION for UNION_TYPE.
3150         * function.c (assign_parms): Likewise.
3151         * integrate.c (function_cannot_inline_p): Likewise.
3152         * stor-layout.c (finish_record_layout): Don't call
3153         record_component_aliases.
3154         * tree.h (struct tree_int_cst): Use struct tree_common.
3155         (struct tree_real_cst, struct tree_string): Likewise.
3156         (struct tree_complex, struct tree_identifier): Likewise.
3157         (struct tree_list, struct tree_vec, struct tree_exp): Likewise.
3158         (struct tree_block, struct tree_type, struct tree_decl): Likewise.
3159         (TYPE_TRANSPARENT_UNION): Use UNION_TYPE_CHECK.
3160         (TYPE_NONALIASES_COMPONENT): New macro.
3161         (TYPE_AMBIENT_BOUNDEDNESS): Use FUNCTION_TYPE_CHECK.
3162         (DECL_NONADDRESSABLE_P): New macro.
3163         (struct tree_decl): Reorder bits for clarity of how many left;
3164         add non_adressable.
3165
3166 2000-06-02  Jason Merrill  <jason@casey.soma.redhat.com>
3167
3168         * Makefile.in (libgcc.a): Also depend on $(LIB2ADD).
3169         * mklibgcc.in (force): New target.
3170         Make LIB2ADD stuff depend on it.
3171
3172 2000-06-02  Richard Henderson  <rth@cygnus.com>
3173
3174         * alias.c (lang_get_alias_set): Remove.
3175         (get_alias_set): Call it directly, not indirectly.
3176         * c-common.c (lang_get_alias_set): Rename from c_get_alias_set.
3177         * c-common.h (c_get_alias_set): Don't declare.
3178         * c-decl.c (init_decl_processing): Don't set lang_get_alias_set.
3179         * expr.h (lang_get_alias_set): Declare as function, not pointer.
3180
3181 2000-06-02  Bruce Korb  <bkorb@gnu.org>
3182
3183         * fixinc/server.c(sig_handler):  resume closing server on SIGPIPE
3184         (server_setup):  define the server's master pid
3185         (close_server):  actually do the deed IFF we are the server's master
3186
3187 2000-06-02  Jakub Jelinek  <jakub@redhat.com>
3188
3189         * c-common.c (c_get_alias_set): Check whether signed_type did not
3190         return its argument before calling get_alias_set on the result.
3191
3192 2000-06-02  Andrew MacLeod  <amacleod@cygnus.com>
3193
3194         * expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.
3195
3196 Fri Jun  2 00:22:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
3197
3198         * sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
3199         (CONDITIONAL_REGISTER_USAGE): Mac registers are call used
3200         for TARGET_NOMACSAVE.
3201         (NOMACSAVE_BIT): Define.
3202         (TARGET_NOMACSAVE): Define.
3203         (TARGET_SWITCHES): Add "nomacsave".
3204
3205 2000-06-02  Toshiyasu Morita  <toshi.morita@sega.com>
3206
3207         * sh.md (untyped_call): Remove excess parameters
3208
3209 2000-06-01  Loren J. Rittle  <ljrittle@acm.org>
3210
3211         * fixinc/inclhack.def (osf_namespace_a): Relax expression to
3212         match that used before the conversion to c_fix style.
3213         * fixinc/fixincl.x: regenerate
3214
3215 2000-06-01  Stan Cox  <scox@cygnus.com>
3216
3217         * varray.h (VARRAY_PUSH_GENERIC_PTR, VARRAY_PUSH_CHAR_PTR): Fix
3218         macro argument typo.
3219
3220 2000-06-01  Zack Weinberg  <zack@wolery.cumb.org>
3221
3222         * cpplex.c (maybe_macroexpand): Use CPP_WTRADITIONAL.  Improve
3223         error message.
3224         * cpplib.c (parse_include): Remove support for VAX-C
3225         "#include starlet" misfeature.
3226
3227 2000-05-31 Laurynas Biveinis <lauras@softhome.net>
3228
3229         * cppfiles.c: conditionally define O_BINARY.
3230         (open_include_file): pass O_BINARY to open().
3231
3232 2000-06-01  Richard Henderson  <rth@cygnus.com>
3233
3234         * i960.c (i960_br_predict_opcode): Remove.
3235         (i960_print_operand) [+]: Emit branch prediction hints.
3236         (i960_function_arg): Return early for VOIDmode.
3237         (i960_round_align): Return early for incomplete types.
3238         * i960.h (PRINT_OPERAND_PUNCT_VALID_P): New.
3239         * i960.md (all conditional branches): Add "%+".
3240
3241 Thu Jun  1 12:24:21 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3242
3243         * alias.c (get_alias_set): Don't call language-specific routine more
3244         than is needed and clean up code a bit.
3245         * c-common.c (c_get_alias_set): All references whose type
3246         is char get alias set 0, but character types need not.
3247         * varasm.c (make_function_rtl): Don't call set_mem_attributes.
3248         (make_decl_rtl): Don't call it for FUNCTION_DECL.
3249
3250 2000-06-01  Bruce Korb  <bkorb@gnu.org>
3251
3252         * fixinc/tests/base/...: new base result files
3253
3254 Thu Jun  1 09:37:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
3255
3256         * config/i386/i386.c (ix86_use_fcomi_compare): Make global.
3257         * config/i386/i386-protos.h (ix86_use_fcomi_compare): Declare.
3258         * config/i386/i386.md (*fp_jcc_3, *fp_jcc_4): Disable if we
3259         will use FCOMI.
3260
3261 2000-06-01  Richard Henderson  <rth@cygnus.com>
3262
3263         * Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h.
3264
3265         * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
3266
3267 2000-05-31  Richard Henderson  <rth@cygnus.com>
3268
3269         * config/ia64/ia64.c (sdata_symbolic_operand): Consider small
3270         CONSTANT_POOL_ADDRESS_P addresses for .sdata.
3271         * config/ia64/sysv4.h (SELECT_RTX_SECTION): New.
3272
3273 2000-05-31  Richard Henderson  <rth@cygnus.com>
3274
3275         * config/ia64/ia64-protos.h (ia64_expand_prediction): Remove.
3276         * config/ia64/ia64.c (ia64_expand_prediction): Move code ...
3277         (ia64_print_operand) [+]: ... here.  Use current_output_insn.
3278         * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): New.
3279         * config/ia64/ia64.md (all branch/call patterns): Use %+.
3280
3281 2000-05-31  Richard Henderson  <rth@cygnus.com>
3282
3283         * ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
3284
3285 2000-05-31  Richard Henderson  <rth@cygnus.com>
3286
3287         * ifcvt.c (merge_if_block): Be prepared for JOIN to have no
3288         remaining edges.
3289         (find_if_block): Allow THEN with no outgoing edges.
3290         * flow.c (merge_blocks_nomove): Remove a barrier not following
3291         a jump as well.
3292
3293 2000-05-31  Richard Henderson  <rth@cygnus.com>
3294
3295         * flow.c (propagate_block): Move initialization of mem_set_list ...
3296         (init_propagate_block_info): ... here.  Also track blocks with
3297         no successors; don't scan insns if ! PROP_SCAN_DEAD_CODE.
3298
3299 2000-05-31  Richard Henderson  <rth@cygnus.com>
3300
3301         * jump.c (jump_optimize_1): Revert 05-18 change.
3302
3303 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
3304
3305         * invoke.texi: Remove documentation for -fguiding-decls.
3306
3307 2000-05-31  Richard Henderson  <rth@cygnus.com>
3308
3309         * configure.in: Fix typo last change.
3310
3311 2000-05-31  Philipp Thomas  <pthomas@suse.de>
3312
3313         * configure.in (enable-nls): Enable if build == host, i.e. when
3314         not building a canadian cross compiler.
3315         (enable-maintainer-mode): Added for use with i18n.
3316         * aclocal.m4 (AM_GNU_GETTEXT): Only build catalogs that are a
3317         cross section of ALL_LINGUAS and LINGUAS.
3318         * configure: Rebuild.
3319
3320 2000-05-31  Bruce Korb  <bkorb@gnu.org>
3321
3322         * fixinc/check.tpl: rework to use test result tree
3323         * fixinc/Makefile.in: change invocation of check script
3324         * fixinc/check.diff: No longer needed
3325         * fixinc/fixincl.x: regenerate
3326         * fixinc/inclhack.def:  add new tests
3327         * fixinc/tests/base/arch/i960/archI960.h:  New test result
3328         * fixinc/tests/base/curses.h: modified test result
3329         * fixinc/tests/base/stdio.h: ditto
3330         * fixinc/tests/base/time.h: ditto
3331         * fixinc/tests/base/sys/asm.h: ditto
3332         * fixinc/tests/base/sys/stat.h: ditto
3333         * fixinc/tests/base/sys/wait.h: ditto
3334
3335 Wed May 31 13:17:20 2000  Philippe De Muyter  <phdm@macqel.be>
3336
3337         * except.c (clear_function_eh_region): Do not free NULL.
3338
3339 Wed May 31 08:07:52 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3340
3341         * Makefile.in (c-decl.o): Depend on rtl.h and expr.h.
3342         * alias.c (struct alias_entry): alias_set is HOST_WIDE_INT.
3343         (REG_BASE_VALUE): Remove unneeded cast to unsigned.
3344         (get_alias_set_entry): ALIAS_SET arg is HOST_WIDE_INT.
3345         (find_base_decl): New function, from c_find_base_decl in c-common.c.
3346         (new_alias_set): Moved from tree.c; return is HOST_WIDE_INT.
3347         (get_alias_set): Likewise.
3348         Major rework to do more things and allow language-specific code
3349         to just handle special-cases.
3350         (record_alias_subset): Args are HOST_WIDE_INT.
3351         (record_component_alias): Local vars are HOST_WIDE_INT.
3352         Don't handle COMPLEX_EXPR.
3353         (get_varargs_alias_set): Moved from builtins.c.
3354         (get_frame_alias_set): New function.
3355         * builtins.c (expand_builtin_return_address): Use frame alias set.
3356         (expand_builtin_setjmp, expand_builtin_longjmp): Use alias set
3357         for setjmp buffer.
3358         (get_memory_rtx): Rework to use set_mem_attributes.
3359         (get_varargs_alias_set): Deleted from here.
3360         * c-common.c (c_apply_type_quals_to_decl): Alias sets now HOST_WIDE_INT.
3361         (c_find_base_decl): Deleted from here.
3362         (c_get_alias_set): Remove many cases and rework to just handle
3363         C-specific cases.
3364         * c-common.h (c_get_alias_set): Returns HOST_WIDE_INT.
3365         * c-decl.c (rtl.h, expr.h): Now included.
3366         (init_decl_processing): Call record_component_aliases on array types.
3367         (grokdeclarator): Likewise.
3368         Set TREE_ADDRESSABLE for all fields that are not bitfields.
3369         * c-typeck.c (common_type): Call record_component_aliases for array.
3370         * caller-save.c (setup_save_areas): Rework register loop for unsigned.
3371         Set all save areas to the frame alias set.
3372         * calls.c (initialie_argument_information): Call set_mem_attributes.
3373         (compute_argument_addresses, expand_call): Likewise.
3374         * explow.c (set_mem_attributes): New function.
3375         (stabilize): Use MEM_COPY_ATTRIBUTES and force_reg.
3376         * expr.c (struct move_by_pieces): Remove {to,from}_{struct,readonly}.
3377         LEN and OFFSET now HOST_WIDE_INT.
3378         (clear_by_pieces): Similar changes.
3379         (move_by_pieces): LEN now HOST_WIDE_INT; don't set deleted fields.
3380         (move_by_pieces_ninsns): Now returns unsigned HOST_WIDE_INT.
3381         (move_by_pieces_1): Don't use deleted fields, use MEM_COPY_ATTRIBUTES.
3382         (clear_by_pieces_1): Likewise.
3383         (emit_push_insn): Call set_mem_attributes.
3384         (expand_expr, case INDIRECT_REF): Likewise.
3385         (expand_expr, case VAR_DECL): Call change_address.
3386         * expr.h (ADD_PARM_SIZE, SUB_PARM_SIZE): Use host_integerp and
3387         tree_low_cst.
3388         (get_varargs_alias_set, get_frame_alias_set): New decls.
3389         (record_base_value, record_alias_subset, lang_get_alias_set): Likewise.
3390         (new_alias_set, set_mem_attributes): Likewse.
3391         * function.c (struct temp_slot): ALIAS_SET is HOST_WIDE_INT.
3392         (assign_stack_temp_for_type): Likewise.
3393         Can split slot even if alias set since can copy.
3394         Set MEM_ALIAS_SET and MEM_SET_IN_STRUCT_P.
3395         (assign_temp): Use host_integerp and tree_low_cst.
3396         (put_var_into_stack): Properly handle SAVE_EXPR.
3397         (put_addressof_into_stack): Likewise.
3398         (assign_parms): Call set_mem_attributes.
3399         Delete #if 0 code.
3400         (fix_lexical_address): Put reference to chain into frame alias set.
3401         (expand_function_start): Call set_mem_attributes.
3402         * integrate.c (expand_inline_function): Likewise.
3403         * recog.c (adj_offsettable_operand): Use MEM_COPY_ATTRIBUTES.
3404         * regmove.c (try_apply_stack_adjustment): Likewise.
3405         * reload.c (push_reload, make_memloc): Likewise.
3406         * reload1.c (alter_reg): Make alias sets for spilled pseudos.
3407         * rtl.def (MEM): Update comment.
3408         * rtl.h (MEM_ALIAS_SET): Now uses XCWINT.
3409         (move_by_pieces): Change length to HOST_WIDE_INT.
3410         (record_base_value, record_alias_subset): Delete from here.
3411         * stmt.c (expand_decl): Call set_mem_attributes.
3412         * stor-layout.c (finish_record_layout): Call record_component_aliases.i
3413         * toplev.c (compile_file): Call init_alias_once earlier.
3414         * tree.c (lang_get_alias_set, get_alias_set, new_alias_set): Deleted
3415         from here: now in alias.c.
3416         * tree.h (struct tree_type): alias_set is HOST_WIDE_INT.
3417         (struct tree_decl): Likewise.
3418         (get_alias_set, new_alias_set, lang_get_alias_set): Deleted from here.
3419         * varasm.c (make_function_rtl, make_decl_rtl): Call set_mem_attributes.
3420         (output_constant_def, force_const_mem): Likewise.
3421
3422         * flow.c (propagate_block): If block has no successors, stores to
3423         frame are dead if not used.
3424
3425 2000-05-31  Nathan Sidwell  <nathan@codesourcery.com>
3426
3427         * stmt (expand_end_case): Reorder conversion sequence for jump
3428         table to avoid extra truncations.
3429
3430 Wed May 31 01:31:42 2000  Jeffrey A Law  (law@cygnus.com)
3431
3432         * ifcvt.c (cond_exec_process_if_block): Do nothing if the last insn
3433         in the block is more than just a simple conditional branch.
3434         (noce_process_if_block): Similarly.
3435
3436 Tue May 30 22:25:57 2000  Alexandre Oliva  <aoliva@cygnus.com>
3437
3438         * optabs.c (prepare_float_lib_cmp): Protect *px and *py from
3439         queue.
3440
3441 2000-05-30  Michael Meissner  <meissner@redhat.com>
3442
3443         * dwarf2out.c (dwarf2out_frame_debug_expr): Ignore HIGH
3444         instructions.  Treat LO_SUM operations as loading the full integer
3445         constant.
3446
3447 2000-05-30  Richard Henderson  <rth@cygnus.com>
3448
3449         * combine.c (get_pos_from_mask): Test exact_log2 result as signed.
3450
3451 2000-05-30  Richard Henderson  <rth@cygnus.com>
3452
3453         * bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
3454
3455 2000-05-30  Bruce Korb  <bkorb@gnu.org>
3456
3457         * fixinc/tests/*:  Added expected result files for fixinc's make check
3458         * fixinc/fixfixes(char_macro_*_fix): Restore original algorithm
3459
3460 2000-05-30  Richard Henderson  <rth@cygnus.com>
3461
3462         * config/alpha/alpha.md (*setne_internal): Use match_operator
3463         instead of working down from insn.
3464
3465 2000-05-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3466
3467         * invoke.texi (-Wtraditional): Update WRT function macros.
3468
3469 Tue May 30 09:57:32 2000  Philippe De Muyter  <phdm@macqel.be>
3470
3471         * except.c (free_exception_table): Do not free NULL.
3472
3473 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
3474
3475         * cpplib.c (do_if): Don't save and restore only_seen_white here.
3476         * cppexp.c (_cpp_parse_expr): Save and restore only_seen_white
3477         and skipping here.
3478
3479 2000-05-29  Richard Earnshaw (rearnsha@arm.com)
3480
3481         * flow.c (mark_used_reg): If a register is unconditionally live,
3482         remove any conditional death information.
3483
3484 2000-05-29  Richard Henderson  <rth@cygnus.com>
3485
3486         * final.c (current_output_insn): New.
3487         (final_scan_insn): Set it.
3488         * output.h: Declare it.
3489
3490 2000-05-29  Richard Henderson  <rth@cygnus.com>
3491
3492         * stor-layout.c (finalize_record_size): Fix typo.
3493
3494         * jump.c (redirect_jump): Don't emit NOTE_INSN_FUNCTION_END
3495         if nlabel is null.
3496
3497 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
3498
3499         * cpplib.h (cpp_reader): Remove if_stack.  Change
3500         potential_control_macro to a cpp_hashnode *.  Add skipping flag.
3501         * cpphash.h (struct ihash): Change control_macro to a
3502         cpp_hashnode * and shorten name to cmacro.
3503         Add NEVER_REINCLUDE constant.
3504
3505         * cppfiles.c (redundant_include_p): Drop cpp_reader argument.
3506         Examine the cmacro node directly, no need to call cpp_defined.
3507         (_cpp_execute_include, read_include_file): Set cmacro to
3508         NEVER_REINCLUDE, not U"".
3509         * cpplex.c (cpp_push_buffer): Don't set new->if_stack.
3510         (cpp_get_token): If pfile->skipping is true, discard text and
3511         keep scanning until we hit a directive; don't expand macros.
3512
3513         * cpplib.c (struct if_stack): Remove if_succeeded, add
3514         was_skipping. Change control_macro to a cpp_hashnode * and
3515         shorten name to cmacro.  Remove typedef IF_STACK.
3516         (parse_ifdef), detect_if_not_defined): Return a cpp_hashnode *.
3517         (conditional_skip, skip_if_group,
3518         consider_directive_while_skipping): Delete.
3519         (push_conditional): New.
3520         (_cpp_handle_directive): Don't process directives other than
3521         conditionals if we are skipping.
3522
3523         (do_ifdef, do_ifndef, do_if, do_else, do_elif, do_endif):
3524         Update to new scheme.
3525         (validate_else): Skip rest of line here, unconditionally.
3526         (_cpp_unwind_if_stack): The stack is per-buffer.  Force
3527         pfile->skipping off.
3528
3529         (all): Remove `scare quotes' from error messages.
3530
3531 2000-05-29  Richard Henderson  <rth@cygnus.com>
3532
3533         * function.c (emit_return_into_block): New line_note arg; emit it.
3534         (thread_prologue_and_epilogue_insns): Attempt to locate a line note
3535         for the close brace to accompany HAVE_return.  Move all line notes
3536         following the epilogue to before the NOTE_INSN_EPILOGUE_BEG.
3537
3538 2000-05-29  Richard Henderson  <rth@cygnus.com>
3539
3540         * longlong.h [__alpha] (count_leading_zeros): New.
3541         (count_trailing_zeros): New.
3542         (COUNT_LEADING_ZEROS_0): New.
3543
3544         * config/alpha/alpha.c (alpha_zero_comparison_operator): New.
3545         (alpha_split_conditional_move): New.
3546         * config/alpha/alpha-protos.h: Prototype them.
3547         * config/alpha/alpha.h (PREDICATE_CODES): Update.
3548         (CPP_CPU_DEFAULT_SPEC): Fix typo for EV67.
3549         * config/alpha/alpha.md: Update ffs cix commentary.
3550         (*ze_and_ne): New.
3551         (*nabssf2, *nabsdf2): New.
3552         (*mov[qhsd]icc_internal): Use add_operand.
3553         (if_then_else constant splitters): New.
3554         (*cmp_sadd_di, *cmp_sadd_si, *cmp_sadd_sidi): New.
3555         (*cmp_ssub_di, *cmp_ssub_si, *cmp_ssub_sidi): New.
3556
3557 2000-05-29  Richard Henderson  <rth@cygnus.com>
3558
3559         * combine.c (force_to_mode) [MINUS]: Convert subtraction from
3560         a constant to NEG or NOT when conditions allow.
3561
3562         * combine.c (combine_simplify_rtx): Don't create an if_then_else
3563         unless both args are general_operand.  Don't canonicalize plus
3564         to ior unless it helps.
3565
3566         * toplev.c (rest_of_compilation): Set no_new_pseudos after flow1;
3567         instead track register_life_up_to_date.  Toggle no_new_pseudos
3568         around if_convert.
3569
3570 2000-05-28  Geoff Keating  <geoffk@cygnus.com>
3571
3572         * config/rs6000/rs6000.c (output_cbranch): Escape '%' characters
3573         so output_operand doesn't see them.
3574
3575 Sun May 28 18:37:07 2000  Clinton Popetz  <cpopetz@cygnus.com>
3576
3577         * lcm.c (make_preds_opaque): Fix comment.
3578         (optimize_mode_switching): Use NORMAL_MODE instead of
3579         MODE_USES_IN_EXIT_BLOCK.  Change leftover instance of
3580         FP_MODE_NONE to no_mode.  Rename MODE_AT_ENTRY to NORMAL_MODE.
3581         Handle insertions before an existing NOTE_INSN_BASIC_BLOCK.
3582         * tm.texi (OPTIMIZE_MODE_SWITCHING): Refer to NORMAL_MODE.
3583         (MODE_USES_IN_EXIT_BLOCK): Delete.
3584         (MODE_AT_ENTRY) Rename to NORMAL_MODE.
3585         * sh.h (MODE_USES_IN_EXIT_BLOCK): Delete.
3586         (MODE_AT_ENTRY): Rename to NORMAL_MODE.
3587         (MODE_NEEDED): Don't look for USE.
3588         (EPILOGUE_USES): Define.
3589
3590 Sun May 28 23:26:59 2000  Philippe De Muyter <phdm@macqel.be>
3591
3592         * mklibgcc.in (all): Variable initialised to `libgcc'.
3593
3594 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
3595
3596         * toplev.h (skip_leading_substring): New macro.
3597         * toplev.c (decode_f_option): Use skip_leading_substring instead
3598         of strncmp.
3599         (decode_W_option): Likewise.
3600
3601 2000-05-28  Nick Clifton  <nickc@cygnus.com>
3602
3603         * tm.texi (CONDITIONAL_REGISTER_USAGE): Document that it can
3604         modify reg_names.
3605
3606 2000-05-28  Richard Henderson  <rth@cygnus.com>
3607
3608         * regclass.c (record_operand_costs): Protect reg_changes_size
3609         with CLASS_CANNOT_CHANGE_SIZE.
3610
3611         * loop.c (instrument_loop_bct): Set JUMP_LABEL on the new insn.
3612
3613 2000-05-28  Richard Henderson  <rth@cygnus.com>
3614
3615         * function.c (diddle_return_value): A pcc-style struct return
3616         returns a pointer.
3617
3618 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
3619
3620         * cppfiles.c: Read files in, using mmap if possible, then
3621         prescan them separately.
3622         (read_file, read_with_read): New functions.
3623         * cpplex.c: Don't define UCHAR_MAX.
3624         (_cpp_read_and_prescan): Rename to _cpp_prescan.  Don't read
3625         the file here.
3626
3627         * cppinit.c (handle_option): Automatically define __cplusplus,
3628         __OBJC__, __ASEEMBLER__, _LANGUAGE_FORTRAN here when we see
3629         the respective -lang switch.
3630
3631         * cpphash.h (enum node_type, struct hashnode, _cpp_lookup
3632         prototype): Move to...
3633         * cpplib.h: ... here.  Rename struct hashnode to struct
3634         cpp_hashnode and give it a typedef.  Rename _cpp_lookup to
3635         cpp_lookup.  Add 'fe_value' slot, a union tree_node *.
3636
3637 2000-05-27  Geoffrey Keating  <geoffk@cygnus.com>
3638
3639         * config/rs6000/rs6000.md (movsi): Constify 'name'.
3640
3641         * regclass.c [CLASS_CANNOT_CHANGE_SIZE]
3642         (class_can_change_size): New variable.
3643         (reg_changes_size): New variable.
3644         (init_reg_sets_1): Initialise class_can_change_size.
3645         (record_operand_costs): Remove subreg_changes_size.
3646         Don't pass it around.  Instead update reg_changes_size.
3647         (regclass): Initialise and free reg_changes_size.  If a register
3648         changes size, don't preference it to a class that contains
3649         registers that can't change size.
3650         (record_reg_classes): Don't look at subreg_changes_size.
3651
3652 2000-05-27  Richard Henderson  <rth@cygnus.com>
3653
3654         * print-rtl.c (reg_names): Remove const.
3655         * regclass.c (reg_names): Likewise.
3656         * regs.h (reg_names): Likewise.
3657         * hard-reg-set.h (reg_names): Likewise.
3658
3659 2000-05-27  Richard Henderson  <rth@cygnus.com>
3660
3661         * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.
3662
3663 2000-05-27  Richard Henderson  <rth@cygnus.com>
3664
3665         * config/alpha/alpha.c (alpha_does_function_need_gp): Test
3666         TARGET_PROFILING_NEEDS_GP in the if, instead of with an ifdef.
3667         (alpha_expand_prologue): Emit prologue_mcount if needed.
3668         * config/alpha/alpha.h (TARGET_PROFILING_NEEDS_GP): Default to 0.
3669         * config/alpha/alpha.md (prologue_mcount): New.
3670         * config/alpha/linux.h (FUNCTION_PROFILER): Remove.
3671         (TARGET_PROFILING_NEEDS_GP): Undef before redefining.
3672         * config/alpha/netbsd.h: Likewise.
3673
3674 2000-05-27  Richard Henderson  <rth@cygnus.com>
3675
3676         * config/alpha/elf.h (SELECT_SECTION): Mirror Kenner's May 19
3677         change to config/elfos.h.
3678
3679 2000-05-27  Richard Henderson  <rth@cygnus.com>
3680
3681         * Makefile.in (resource.o): Depend on except.h.
3682         * except.h (output_exception_table_data): Prototype.
3683         * genconfig.c (gen_peephole2): Prototype.
3684         * genemit.c (main): Include ggc.h.
3685         * genoutput.c: Revert parts of last change: include errors.h
3686         (main): Set progname.
3687         * recog.c: Include hard-reg-set.h before recog.h.
3688         * resource.c: Include except.h.
3689
3690         * config/alpha/alpha-protos.h (alpha_arg_info_reg_val): Protect
3691         with RTX_CODE.
3692         (alpha_write_linkage): Protect with BUFSIZ.
3693         (alpha_need_linkage): Update prototype.
3694         * config/alpha/alpha.c (function_arg): Move VMS code here.
3695         (alpha_links_base): Remove.
3696         (alpha_links): New.
3697         (mark_alpha_links_node, mark_alpha_links): New.
3698         (alpha_write_one_linkage): New.
3699         (alpha_need_linkage): Use a splay tree.  Build the linkage symbol.
3700         (alpha_write_linkage): Use splay_tree_foreach.
3701         * config/alpha/alpha.md (call_vms): Use alpha_need_linkage
3702         to get the linkage symbol.
3703         (call_value_vms): Likewise.
3704         * config/alpha/elf.h (output_file_directive): Remove decl.
3705         (ctors_section, dtors_section): Prototype.
3706         (sbss_section, sdata_section): Prototype.
3707         * config/alpha/vms.h (FUNCTION_ARG): Remove.
3708         (readonly_section, link_section, literals_section): Prototype.
3709         (ctors_section, dtors_section): Prototype.
3710         (vms_valid_decl_attribute_p): Remove decl.
3711         (alpha_arg_type, alpha_arg_info_reg_val): Likewise.
3712
3713 2000-05-27  Geoff Keating  <geoffk@cygnus.com>
3714
3715         * reload.c (get_secondary_mem): Don't widen floating-point modes.
3716
3717         * combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
3718         substituting the REG in a (subreg:X (reg:Y ...)).
3719
3720 2000-05-28  Neil Booth  <NeilB@earthling.net>
3721
3722         * cpplex.c (_cpp_lex_line): Merge vertical space.  Flag
3723         first token of a line BOL.  Update EOF code for this.
3724         Remove illegal directive check - it appears in the (not
3725         yet committed) caller.
3726         * cpplib.h (BOL): New flag.
3727
3728 2000-05-28  Neil Booth  <NeilB@earthling.net>
3729
3730         * cpplex.c (_cpp_init_toklist): No comment space to initialise.
3731         (_cpp_free_toklist): No comment space to free.
3732         (expand_comment_space): Remove.
3733         (save_comment_space): Place the comment in the current token and
3734         not in a separate comment space.
3735         (_cpp_lex_line): Save comments during plain code and #define
3736         directives only.
3737         * cpplib.h (struct _cpp_toklist): Remove comment space.
3738
3739 2000-05-28  Neil Booth  <NeilB@earthling.net>
3740
3741         * cppexp.c (parse_assertion): Supply extra argument to
3742         _cpp_init_toklist.
3743         * cpplib.c (do_assert, do_unassert): Similarly.
3744         * cpphash.h (_cpp_init_toklist) Update.
3745         (_cpp_expand_token_space): New.
3746         (DUMMY_TOKEN, NO_DUMMY_TOKEN): New.
3747         * cpplex.c (_cpp_init_toklist): New argument.
3748         (parse_string2): New argument multiline_ok.
3749         (spell_token): Take a const cpp_token *.
3750         (INIT_NAME): Replace with INIT_TOKEN_NAME.  Update tokens_used.
3751         (SPELL_ macros): Replace with enum.
3752         (expand_token_space): Replace with _cpp_expand_token_space.
3753         Take COUNT argument.
3754         (IS_DIRECTIVE): Update.
3755         (_cpp_lex_line): Update token structure before parsing number.
3756         Don't assume start at beginning of token list.
3757         (save_comment): Use INIT_TOKEN_NAME.
3758
3759 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
3760
3761         * configure.in (stage1_warn_cflags): Add -Wstrict-prototypes
3762         -Wmissing-prototypes.
3763         * configure: Regenerate.
3764         * gcc.texi: Remove explanation of MD_CALL_PROTOTYPES.
3765
3766         * builtins.c, calls.c: Change all instances of gen_call_* or
3767         gen_sibcall_* to GEN_CALL_* and GEN_SIBCALL_*.
3768         * calls.c (struct_value_size_rtx): Separate definition from
3769         initialization to avoid unused variable warning.
3770
3771         * genflags.c (gen_macro): New function.
3772         (gen_proto): Call it for gen_call_* and gen_sibcall_*.
3773         (gen_nonproto): Delete.
3774         (gen_insn): Put all insns on the same obstack.
3775         (main): Generate prototypes for everything unconditionally.
3776
3777         * configure.in: Add AC_CHECK_TYPE(ssize_t).  Remove commented
3778         out check for wchar_t.
3779         * acconfig.h: Add template for ssize_t.  Remove @TOP@.
3780         * system.h: Add infrastructure for defining missing
3781         TYPE_MAX/TYPE_MIN macros.  Use it to provide fallback
3782         definitions of UCHAR_MAX and SSIZE_MAX.
3783         * configure: Regenerate.
3784         * config.in: Regenerate.
3785
3786         * Makefile.in (libgcc2.ready): Rename to libgcc.ready.
3787         Depend on $(LANGUAGES) as well as $(GCC_PATCHES) and fixed
3788         headers.
3789         (clean): No need to delete libgcc1.a, libgcc1-asm.a,
3790         libgcc2.a, or libgcc1.null.
3791
3792 2000-05-27  Richard Henderson  <rth@cygnus.com>
3793
3794         * Makefile.in (recog.o): Don't depend on resource.h.
3795         * recog.c: Don't include resource.h.
3796         (recog_last_allowed_insn): Remove.
3797         (recog_next_insn): Remove.
3798         (struct peep2_insn_data): New.
3799         (peep2_insn_data, peep2_current): New.
3800         (peep2_next_insn): New.
3801         (peep2_regno_dead_p, peep2_reg_dead_p): New.
3802         (peep2_find_free_register): New.
3803         (peephole2_optimize): Track life information by insn as we go.
3804         * recog.h: Update declarations.
3805         * resource.c (find_free_register, reg_dead_p): Remove.
3806         * resource.h: Remove their declarations.
3807         * toplev.c: Include hard-reg-set.h before recog.h.
3808
3809         * genconfig.c (max_insns_per_peep2): New.
3810         (gen_peephole2): New.
3811         (main): Call it.
3812         * genemit.c (output_peephole2_scratches): Generate calls to
3813         peep2_find_free_register; adjust surrounding code.
3814         (main): Have insn-emit.c include hard-reg-set.h before recog.h.
3815         * genrecog.c (change_state): Don't track last_insn.
3816         (write_action): Write into *_pmatch_len before accepting.
3817         (write_tree): Adjust peephole2_insns and subroutines to match.
3818
3819         * config/i386/i386.md (all peepholes): Use peep2_regno_dead_p.
3820
3821         * config/alpha/alpha.c (hard_fp_register_operand): Mind the mode.
3822         (hard_int_register_operand): New.
3823         * config/alpha/alpha-protos.h: Declare it.
3824         * config/alpha/alpha.h (PREDICATE_CODES): Update.
3825         * config/alpha/alpha.md (peep2 patterns): Use hard_int_register_operand
3826         as needed; use peep2_reg_dead_p instead of dead_or_set_p.
3827
3828 2000-05-27  Richard Henderson  <rth@cygnus.com>
3829
3830         * function.c (thread_prologue_epilogue_insns): Don't move the
3831         line note at the head of the chain.  Only force a lineno note
3832         before the end of block 0.
3833
3834 2000-05-27  Richard Henderson  <rth@cygnus.com>
3835
3836         * gensupport.c (collect_insn_data): Record the maximum number
3837         of alternatives, not the last seen.
3838
3839         * genoutput.c: Don't include errors.h.
3840         (struct data): Add lineno member.
3841         (have_error): New.
3842         (scan_operands): Use message_with_line instead of error.
3843         (validate_insn_alternatives): Likewise.
3844         (gen_insn): Accept and store the pattern's line number.
3845         (gen_peephole, gen_expand, gen_split): Likewise.
3846         (main): Don't set progname.  Pass line_no to gen_foo.
3847
3848 2000-05-27  Richard Henderson  <rth@cygnus.com>
3849
3850         * config/d30v/d30v.c (d30v_print_operand): Handle ':'.
3851         * config/d30v/d30v.h (PRINT_OPERAND_PUNCT_VALID_P): Accept ':'.
3852         * config/d30v/d30v.md (attr predicable): New.
3853         (all insn patterns): Mark non-predicable patterns; use %: on the rest.
3854         (andsi3*): Unify into one pattern.
3855         (iorsi3*, xorsi3*): Likewise.
3856         (peephole2 patterns): Use peep2_reg_dead_p; verify not a
3857         conditional return.
3858         (old cond_exec patterns): Remove.
3859         (define_cond_exec): New.
3860
3861 Sat May 27 11:01:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3862
3863         * tree.h (TREE_CODE_LENGTH): New macro.
3864         * c-common.c (c_find_base_decl): Use it.
3865         * expr.c (safe_from_p): Likewise.
3866         * print-tree.c (print_node): Likewise.
3867         * tree.c (make_node, copy_node, get_identifier): Likewie.
3868         (first_rtl_op, contains_placeholder_p, substitute_in_expr): Likewise.
3869         (build, build_nt, build_parse_node, simple_cst_equal): Likewise.
3870         * fold-const.c (make_range): Likewise.
3871         (fold): Likewise; also use first_rtl_op.
3872         * c-iterate.c (collect_iterators): Use first_rtl_op.
3873         * calls.c (calls_function_1): Likewise; also rename TYPE to CLASS.
3874         Use IS_EXPR_CODE_CLASS.
3875         (preexpand_calls): Likewise.
3876         * ggc-common.c (ggc_mark_trees): Rework to use first_rtl_op
3877         and TREE_CODE_LENGTH.
3878         * stmt.c (warn_if_unused_value): If no operands, no unused value.
3879
3880 2000-05-26  Geoffrey Keating  <geoffk@cygnus.com>
3881
3882         * config/rs6000/rs6000.md (movsi_internal1): Use '%a1' rather
3883         than '%1(%*)'.
3884         (movdi_internal64): Likewise.
3885
3886         * config/rs6000/rs6000.md: Correct order of operands for DImode
3887         boolean patterns.
3888
3889         * config/rs6000/rs6000.c (boolean_or_operator): New function.
3890         * config/rs6000/rs6000-protos.h (boolean_or_operator): Prototype it.
3891         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_or_operator.
3892         * config/rs6000/rs6000.md: Use boolean_or_operator instead of
3893         boolean_operator for the boolean patterns without NOTs.
3894
3895         * config/rs6000/rs6000.c (reg_or_logical_cint_operand): Rename
3896         from reg_or_u_cint_operand.  Change comment and behaviour.
3897         (logical_operand): Clean up, add assertion.
3898         (non_logical_cint_operand): Also check for
3899         reg_or_logical_cint_operand.
3900         * config/rs6000/rs6000.h (PREDICATE_CODES): Update.
3901         * config/rs6000/rs6000.md (iorsi3): Use reg_or_logical_cint_operand
3902         in the expander.
3903         (xorsi3): Likewise.
3904         (iordi3): Likewise.
3905         (xordi3): Likewise.
3906
3907 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
3908
3909         * tree.h (struct record_layout_info): Rename to (struct
3910         record_layout_info_s).
3911         * stor-layout.c (start_record_layout): Replace
3912         `record_layout_info' with `record_layout_info_s'.
3913
3914 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
3915
3916         * flow.c (find_label_refs): New function.
3917         (find_basic_blocks_1): Call it for each alternative of a call
3918         placeholder.
3919
3920 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
3921
3922         * ifcvt.c (cond_exec_get_condition): Set test_if to the SET_SRC
3923         of get_pc.
3924
3925 2000-05-25  Richard Henderson  <rth@cygnus.com>
3926
3927         * config/alpha/alpha.c (alpha_comparison_operator): Don't be
3928         so strict about DImode.
3929         (alpha_swapped_comparison_operator): Likewise.
3930         * config/alpha/alpha.md (*setne_internal): Name it.  Allow
3931         any integer output mode.
3932         (*setcc_internal): Likewise.
3933         (*setcc_swapped_internal): Likewise.
3934         (*movdicc_internal, *movdicc_lbc, *movdicc_lbs): Name them.
3935         (*mov[qhs]icc_internal): New.
3936         (*mov[qhs]icc_lbc, *mov[qhs]icc_lbs): New.
3937
3938 2000-05-25  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3939
3940         * vax.h (CPP_SPEC): Define __GFLOAT and GFLOAT when -mg is specified.
3941
3942 2000-05-25  Richard Henderson  <rth@cygnus.com>
3943
3944         * bb-reorder.c (reorder_block_def): Reorder elements for size.
3945         Remove add_jump; add next; replace flags with visited.
3946         (rbd_init): Remove.
3947         (REORDER_BLOCK_HEAD, REORDER_BLOCK_VISITED): Remove.
3948         (REORDER_BLOCK_FLAGS, REORDER_BLOCK_INDEX): Remove.
3949         (REORDER_BLOCK_ADD_JUMP, REORDER_BLOCK_EFF_HEAD): Remove.
3950         (REORDER_BLOCK_EFF_END, REORDER_BLOCK_SCOPE): Remove.
3951         (RBI): New.
3952         (reorder_index, reorder_last_visited): Remove.
3953         (skip_insns_after_block): Rewrite to use a switch.
3954         (get_common_dest): Remove.
3955         (chain_reorder_blocks): Remove.
3956         (record_effective_endpoints): Split out from reorder_basic_blocks.
3957         (make_reorder_chain): Likewise.  Loop until all blocks are placed.
3958         (make_reorder_chain_1): Renamed from old make_reorder_chain.
3959         Only construct the reorder chain, do not move insns.  Try harder
3960         to tail recurse.
3961         (label_for_bb, emit_jump_to_block_after): New.
3962         (fixup_reorder_chain): Use them.  Do bulk block movement.  Examine
3963         and adjust the jump insns appropriately.  Fixup basic_block_info.
3964         (verify_insn_chain): Always define.
3965         (relate_bbs_with_scopes): Call xmalloc, not xcalloc.  Fix thinko
3966         in allocation size.
3967         (make_new_scope): Don't write zeros to calloc'd space.
3968         (build_scope_forest): Rely on xrealloc to DTRT.
3969         (reorder_basic_blocks): Don't build loop nest.  Don't fail if
3970         profile_arc_flag.  Streamline EH test.
3971
3972         * flow.c (redirect_edge_succ, redirect_edge_pred): New.
3973         * basic-block.h: Declare them.
3974
3975 2000-05-25  Alexandre Oliva  <aoliva@cygnus.com>
3976
3977         * emit-rtl.c (reset_used_decls): New function.
3978         (unshare_all_rtl_again): Call it.
3979
3980 2000-05-25  Zack Weinberg  <zack@wolery.cumb.org>
3981
3982         * cpplex.c (maybe_macroexpand): Warn about function-like
3983         macros used in non-function context, if -Wtraditional.
3984
3985 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
3986
3987         * recog.c (peephole2_optimize): Use INSN_P.
3988
3989 2000-05-25  Richard Henderson  <rth@cygnus.com>
3990
3991         * ifcvt.c (seq_contains_jump): New.
3992         (noce_try_store_flag_constants): Use it to fail conversion.
3993         (noce_try_store_flag_inc, noce_try_store_flag_mask): Likewise.
3994
3995 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
3996
3997         * except.h (can_throw): Declare it.
3998         * except.c (can_throw): Give it external linkage.
3999         * resource.c (find_dead_or_set_registers): Use can_throw.
4000
4001 2000-05-25  Richard Henderson  <rth@cygnus.com>
4002
4003         * flow.c (mark_set_1): Don't record conditionally dead memory.
4004
4005 2000-05-25  Jan Hubicka  <jh@suse.cz>
4006
4007         * combine.c (try_combine): Use any_condjump_p, any_uncondjump_p
4008         and pc_set at the place of simplejump_p and condjump_p.
4009         * cse.c (record_jump_equiv): Likewise.
4010         * emit-rtl.c (emit): Likewise.
4011         * explow.c (find_next_ref): Likewise.
4012         * flow.c (tidy_fallthru_edge): Likewise.
4013         (init_propagate_block_info): Likewise.
4014         * gcse.c (delete_null_pointer_checks): Likewise.
4015         * ifcvt.c (cond_exec_get_condition, noce_get_condition,
4016         dead_or_predicable): Likewise.
4017         * integrate.c (copy_insn_list): Likewise.
4018         * loop.c (scan_loop, verify_dominator, find_and_verify_loops,
4019         for_each_insn_in_loop, check_dbra_loop, get_condition,
4020         insert_bct, load_mems): Likewise.
4021         * resource.c (find_dead_or_set_registers): Likewise.
4022         * sibcalls.c (simplejump_p): Likewise.
4023         * unroll.c (copy_loop_body, reg_dead_after_loop): Likewise.
4024
4025 2000-05-25  David Edelsohn  <edelsohn@gnu.org>
4026
4027         * rs6000.c (expand_block_move): Add 64-bit PowerPC doubleword move
4028         to STRING case.  Use doubleword STRING move for TARGET_POWERPC64
4029         when unaligned.
4030         * rs6000.h (CONST_OK_FOR_LETTER_P, 'J'): unsigned HOST_WIDE_INT.
4031         (RETURN_ADDR_RTX): Use COUNT and FRAME, not count and frame.
4032         (LEGITIMIZE_RELOAD_ADDRESS): unsigned HOST_WIDE_INT high.
4033         * rs6000.md: Name various internal patterns.
4034
4035 2000-05-25  Jan Hubicka  <jh@suse.cz>
4036
4037         * jump.c (invert_exp_1): Remove first argument, use pc_set
4038         to get the expression.
4039         (redirect_exp): Make static; redirect only the pc_set expression,
4040         remove first argument.
4041         (invert_exp): Remove first argument, make static.
4042         (jump_optimize): Use any_condjump_p, any_uncondjump_p and
4043         any_onlyjump at most places where we originaly did condjump_p
4044         and simplejump_p.
4045         (jump_back_p, follow_jumps, thread_jumps): Likewise.
4046         (delete_barrier_succesors): Use pc_set.
4047         (invert_jump_1, invert_jump, redirect_jump_1, redirect_jump): Update
4048         calls of invert_exp and redirect_exp.
4049         * rtl.h (redirect_exp, invert_exp): Remove.
4050         * unroll.c (copy_loop_body): Use invert_jump and redirect_jump.
4051
4052 2000-05-25  Richard Henderson  <rth@cygnus.com>
4053
4054         * stmt.c (expand_end_bindings): Fix thinko last change.
4055
4056 2000-05-25  Andrew MacLeod  <amacleod@cygnus.com>
4057             Andrew Haley  <aph@cygnus.com>
4058
4059         * except.c  (func_eh_entry): Add emitted field.
4060         (new_eh_region_entry): Set emitted field to 0;
4061         (output_exception_table_entry): Only emit previously un-emitted data,
4062         and send it to the eh_data section.
4063         (output_exception_table): Break out common parts. Output
4064         exception table for entire compilation unit to eh_data section.
4065         (output_exception_table_data): Common parts of output_exception_table.
4066         Send output to eh_data section.
4067         (output_function_exception_table): Output exception table data for
4068         a single function to eh_data section.
4069         (free_exception_table): New external to free the table.
4070         * except.h (free_exception_table): Add prototype.
4071         (output_function_exception_table): Add prototype.
4072         * final.c (final_end_function): Output function exception table
4073         for IA64_UNWIND_INFO.
4074         (final_scan_insn): Emit any unwind directives for an insn.
4075
4076         * frame-dwarf2.c: New file containing all DWARF 2 specific code
4077         from frame.c.
4078         * frame.c: Remove all DWARF 2 specific code.
4079         * config/ia64/frame-ia64.c: New file.
4080         (gthread_stuff): Make all gthread available with
4081         IA64_UNWIND_INFO.
4082         (dwarf_fde): Define an IA64 struct for dwarf_fde.
4083         (__register_frame_info, __register_frame): Move to common area of file.
4084         (__register_frame_info_table, __register_frame_table): Move to common i
4085         area.
4086         (__deregister_frame_info, __deregister_frame): Move to common area.
4087         (__frame_init, find_fde): New versions for IA64_UNWIND_INFO.
4088         (read_uleb128): New version for ia64.
4089         (get_unwind_record): Read the next IA-64 unwind record.
4090         (read_R_record): Read a region header record.
4091         (process_a_b_reg_code): X record helper.
4092         (read_X_record): Read an X format record.
4093         (read_B_record): Read a B format record.
4094         (P3_record_types): List of record types matching the P3 format.
4095         (P7_record_types): List of record types matching the P7 format.
4096         (P8_record_types): List of record types matching the P8 format.
4097         (read_P_record): Read a P format record.
4098         (init_ia64_reg_loc): Set default fields for a register.
4099         (init_ia64_unwind_frame): Set defaults for all register records.
4100         (execute_one_ia64_descriptor): Execute one descriptor record.
4101         (rse_address_add): Calculate the position of a local reg in memory.
4102         (normalize_reg_loc): Turn a location descriptor into a memory address.
4103         (maybe_normalize_reg_loc): Only normalize a descriptor if it falls
4104         within a specified PC offset range.
4105         (get_real_reg_value): Given a register location, retrieve its value.
4106         (set_real_reg_value): Change the value of a register location.
4107         (copy_reg_value): Copy reg values, if needed.
4108         (copy_saved_reg_state): Copy all registers that need to be copied.
4109         (process_state_between): Normalize all frame register records that
4110         fall within the specified PC range.
4111         (frame_translate): Take a processed frame description, and turn
4112         everything into addresses.
4113         (build_ia64_frame_state ): Find and create frame state record for a PC.
4114         (get_personality): Get the personality routine for a given frame.
4115         (get_except_table): Get the exception table for a given frame.
4116         (record_name): Unwind record names for debugging.
4117         (print_record): Print and unwind record.
4118         (print_all_records): Print an entire unwind image.
4119         (__ia64_backtrace): Print a backtrace.
4120         (ia64_backtrace_helper): New function.
4121         (__register_frame_info_aux): New function.
4122         * config/ia64/crtend.asm (__do_frame_setup_aux): New function.
4123
4124         * frame.h (enum unw_record_type): New unwind record types.
4125         (struct unw_p_record, unw_b_record, unw_x_record) : New unwind records.
4126         (struct unw_r_record, unwind_record): New unwind record structs.
4127         (struct unwind_info_ptr): Unwind information layout.
4128         (IA64_UNW_LOC_TYPE_*): Macros for different types for location
4129         descriptors.
4130         (struct ia64_reg_loc): Register location description.
4131         (struct ia64_frame_state): Location of all registers in a frame.
4132         (struct object): Add pc_base and fde_end for IA64_UNWIND_INFO.
4133         * libgcc2.c (__ia64_personality_v1): Personality routine.
4134         (__calc_caller_bsp): Calculate the bsp register for the caller's
4135         frame.
4136         (ia64_throw_helper): Figure out who to return to and set up the
4137         registers.
4138         (__throw): Throw routine.
4139
4140         * output.h (assemble_eh_align, assemble_eh_label): New functions
4141         to generate EH info where we want it.
4142         (assemble_eh_integer): New function.
4143         * toplev.c (compile_file): Output module level exception table for
4144         non-ia64 targets.
4145         (main): Set exceptions_via_longjump and flag_new_exceptions based
4146         on IA64_UNWIND_INFO too.
4147
4148         * varasm.c (assemble_eh_label): Generate a label via
4149         ASM_OUTPUT_EH_LABEL if it has been specified.
4150         (assemble_eh_align): Generate an alignment directive via
4151         ASM_OUTPUT_EH_ALIGN if it has been specified.
4152         (assemble_eh_label): Generate an integer value via
4153         ASM_OUTPUT_EH_type if they have been specified.
4154         * config/ia64/ia64.c (rtx_needs_barrier): Add flushrs.
4155         (ia64_init_builtins): Add __builtin_ia64_bsp
4156         and __builtin_ia64_flushrs.
4157         (ia64_expand_builtin): Add IA64_BUILTIN_BSP and
4158         IA64_BUILTIN_FLUSHRS.
4159         * config/ia64/ia64.h (ia64_builtins): Add IA64_BUILTIN_BSP and
4160         IA64_BUILTIN_FLUSHRS.
4161
4162         * config/ia64/ia64.md (flushrs): New insn to flush the register
4163         stack.  Add to unspec list.
4164
4165         * config/ia64/crtbegin.asm (frame_object): Change size.
4166         (__do_frame_setup_aux): New function.
4167         * config/ia64/crtend.asm: call __do_frame_setup_aux.
4168         * config/ia64/t-ia64 (LIB2ADDEH): Add.
4169         * Makefile.in (LIB2ADDEH): Add.
4170         (LIB2ADD): Use LIB2ADDEH.
4171
4172 2000-05-24  Richard Henderson  <rth@cygnus.com>
4173
4174         * recog.c (offsettable_address_p): If mode size is zero, assume
4175         BIGGEST_ALIGNMENT.
4176
4177 2000-05-24  J. David Anglin  <dave@hiauly.hia.nrc.ca>
4178
4179         * configure.in: Check for -Wno-long-long option support and improve
4180         handling of warning CFLAGS for stages 1 and 2.
4181         * Makefile.in (WARN_CFLAGS): Move definition to configure.in.
4182         * configure: Regenerate.
4183
4184 Wed May 24 19:37:53 2000  Jeffrey A Law  (law@cygnus.com)
4185
4186         * gcc.texi: Remove contributor list.  Instead include contrib.texi.
4187         * contrib.texi: New file.
4188
4189 Thu May 25 02:27:22 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4190
4191         * loop.c (basic_induction_var): Avoid double recording of an increment.
4192
4193 Thu May 25 02:19:27 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4194
4195         * Back out this patch:
4196         Tue Dec  7 19:22:06 1999  Richard Henderson  <rth@cygnus.com>
4197           * loop.h (struct induction): Add multi_insn_incr.
4198           * loop.c (basic_induction_var): New multi_insn_incr argument.
4199           Set it if we search back through previous insns for the biv.
4200           (record_biv): New multi_insn_incr argument; fill in struct induction.
4201           (strength_reduce): Discard an iv with multiple bivs, any of
4202           which require multiple insns to increment.
4203
4204         * loop.c (check_insn_for_bivs): Remove bits copied from above patch.
4205
4206 Thu May 25 02:09:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4207
4208         * rtl.h (loc_mentioned_in_p): Declare.
4209         * reload.c (loc_mentioned_in_p): Moved from here...
4210         * rtlanal.c (loc_mentioned_in_p): to here.  No longer static.
4211         Fix loop increment for 'E' handling.
4212         * loop.c (strength_reduce): When doing biv->giv conversion,
4213         take multi-insn biv increments into account.
4214
4215 2000-05-24  Jason Merrill  <jason@casey.soma.redhat.com>
4216
4217         * stmt.c (expand_end_bindings): Look through NOTEs to find a
4218         BARRIER.
4219
4220 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
4221
4222         * calls.c (expand_call): Handle cleanups in tail-recursion
4223         arguments analagously to cleanups in sibling calls.
4224
4225 2000-05-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4226
4227         * simplify-rtx.c: Rename macro SIGN_EXTEND to HWI_SIGN_EXTEND.
4228         All callers changed.
4229
4230 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
4231
4232         * expr.c (expand_assignment, store_expr, expand_expr,
4233         expand_expr_unaligned): Set in_check_memory_usage while emitting
4234         chkr_check_addr libcall.
4235
4236 2000-05-24  Nick Clifton  <nickc@cygnus.com>
4237
4238         * fold-const.c (extract_muldiv): When constructing a
4239         multiplier/divisor, do not expect const_binop to correctly
4240         determine if overflow has occured, so check explicitly.
4241
4242 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
4243
4244         * c-decl.c (build_enumerator): Don't modify the value's type,
4245         convert it.
4246
4247 2000-05-24  Andreas Jaeger  <aj@suse.de>
4248
4249         * mips.h (LINKER_ENDIAN_SPEC): Pass -EL to linker by default.
4250
4251 2000-05-24  Eric Christopher <echristo@cygnus.com>
4252
4253         * configure.in: Redefine inhibit_libc conditions.
4254         * libgcc2.c: Remove inhibit_libc conditional define.
4255         * configure: Regenerate.
4256
4257 2000-05-24  Phil Edwards  <pme@sourceware.cygnus.com>
4258
4259         * configure.in:  For --enable-languages=LIST, check for empty LIST.
4260         * configure:  Regenerate.
4261
4262 2000-05-24  Lars Brinkhoff  <lars@nocrew.org>
4263
4264         * pdp11.h (STACK_BOUNDARY): Define.
4265
4266 2000-05-24  Jakub Jelinek  <jakub@redhat.com>
4267
4268         * ifcvt.c (if_convert): Update life info globally.
4269
4270 2000-05-24  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
4271
4272         * emit-rtl.c (unshare_all_decls): New function.
4273         (unshare_all_rtl): Call it.
4274
4275 2000-05-23  Nick Clifton  <nickc@cygnus.com>
4276
4277         * configure.in: Treat 'strongarm' as if it were 'arm' when
4278         determining cpu type.
4279
4280         * configure: Regenerate.
4281
4282         * config/arm/arm.c: Change 'char *' to 'const char *' for cases
4283         where constant strings are involved.
4284
4285         * config/arm/arm.h (arm_condition_codes): Change type to 'const
4286         char *'.
4287
4288         * config/arm/arm-protos.h: Change 'char *' to 'const char *' for
4289         cases where constant strings are involved.
4290
4291 Tue May 23 15:08:31 2000  Clinton Popetz  <cpopetz@cygnus.com>
4292
4293         * config/sh/sh.c (gen_far_branch, split_branches): Update
4294         to reflect new prototypes for redirect_jump and invert_jump.
4295         (sh_insn_length_adjustment): Get rid of const warnings.
4296
4297 2000-05-23  Kazu Hirata  <kazu@hxi.com>
4298
4299         * invoke.texi (Options for Debugging Your Program or GCC): Update
4300         the names of dump files.
4301
4302 Tue May 23 13:58:52 2000  Philippe De Muyter  <phdm@macqel.be>
4303
4304         * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
4305         * configure: Regenerated.
4306
4307 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
4308
4309         * simplify-rtx.c (SIGN_EXTEND): New macro.
4310         (simplify_unary_operation, simplify_binary_operation,
4311         simplify_relational_operation): Use SIGN_EXTEND.  Make low
4312         halves of (low, high) pairs unsigned if they weren't already.
4313         (simplify_ternary_operation): Cast INTVAL to unsigned before
4314         comparing to a MODE_BITSIZE.
4315
4316 2000-05-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4317
4318         * aclocal.m4 (gcc_AC_CHECK_DECL, gcc_AC_CHECK_DECLS): New macros
4319         rewritten from the internals of gcc_AC_NEED_DECLARATION{S}.
4320
4321         * configure.in (gcc_AC_CHECK_DECLS): Call this instead of
4322         gcc_AC_NEED_DECLARATIONS.
4323
4324         * dwarfout.c: Don't prototype time().
4325
4326         * gcc.c: Check HAVE_DECL_* instead of NEED_DECLARATION_*.
4327
4328         * system.h: Likewise.
4329
4330         * toplev.c: Likewise.
4331
4332 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
4333
4334         * c-decl.c (pushdecl): Invert sense of test for non-global types.
4335
4336 Tue May 23 18:11:42 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
4337
4338         * reload1.c (reload_cse_move2add): Honor TRULY_NOOP_TRUNCATION.
4339
4340 2000-05-23  Jonathan Larmour  <jlarmour@redhat.co.uk>
4341
4342         * config/mips/elf64.h (CTOR_LISTS_DEFINED_EXTERNALLY): Define
4343
4344 Tue May 23 06:50:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4345
4346         * config/alpha/alpha.c: Remove #ifdef HAIFA since now only scheduler.
4347         (alpha_start_function): Never write ..ng label if VMS or NT.
4348         (alpha_align_insns): Remove GP_IN_USE arg.
4349         Alignment now unsigned.
4350         (alpha_reorg): Don't pass GP_IN_USE arg to alpha_align_insns.
4351         * config/alpha/alpha.md (prologue_ldgp): Split into one define_expand
4352         and two define_insn's.
4353
4354 2000-05-22  Richard Henderson  <rth@cygnus.com>
4355
4356         * combine.c (simplify_comparison): Use trunc_int_for_mode.
4357
4358 2000-05-22  Richard Henderson  <rth@cygnus.com>
4359
4360         * stor-layout.c (place_field): Change rli->size to rli->offset.
4361
4362 2000-05-22  Richard Henderson  <rth@cygnus.com>
4363
4364         * function.c (thread_prologue_and_epilogue_insns): Make sure
4365         existing line number notes appear after the prologue.
4366
4367 Mon May 22 21:49:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4368
4369         * config/alpha/alpha.c (alpha_fnname): New static variable.
4370         (print_operand, case '~'): New case.
4371         (alpha_expand_prologue): Emit prologue_ldgp insn if needed.
4372         (alpha_start_function): Set alpha_fnname.
4373         Write "ng" label if no ldgp; don't write ldgp insn.
4374         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): New case '~'.
4375         * config/alpha/alpha.md (prologue_ldgp): New define_insn.
4376
4377 Mon May 22 11:30:48 2000  Clinton Popetz  <cpopetz@cygnus.com>
4378
4379         * jump.c (jump_optimize_1): Don't increment LABEL_NUSES
4380         on deleted labels.
4381
4382 2000-05-22  Zack Weinberg  <zack@wolery.cumb.org>
4383
4384         * varasm.c (eh_frame_section): Revert change to argument list.
4385
4386 Mon May 22 13:14:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4387
4388         * optabs.c (can_extend_p): Allow unsignedp to have any nonzero value.
4389         (gen_extend_insn, can_fix_p, can_float_p): Likewise.
4390
4391         * final.c (final_scan_insn, case NOTE_INSN_FUNCTION_BEG): Remove
4392         dangling "else" that causes "break" to be conditional.
4393         Also remove unneeded code at start.
4394
4395 Mon May 22 17:31:35 2000  Philippe De Muyter  <phdm@macqel.be>
4396
4397         * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1.
4398         * fx80/fx80.h, i370/i370.h, m88k/m88k.h (STORE_FLAG_VALUE): Ditto.
4399         * gmicro/gmicro.h, we32k/we32k.h (STORE_FLAG_VALUE): Ditto.
4400
4401 2000-05-22  Jakub Jelinek  <jakub@redhat.com>
4402
4403         * config/sparc/sparc.md (movdf_insn_v9only_vis): fzero has
4404         just one argument.
4405
4406 Mon May 22 06:57:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4407
4408         * alias.c (record_component_aliases): New function.
4409         * tree.h: Clean up some declarations and comments.
4410         (record_component_aliases): New declaration.
4411         * tree.c (get_alias_set): If type and has alias set, use it.
4412
4413 2000-05-22  Richard Henderson  <rth@cygnus.com>
4414
4415         * simplify-rtx.c (simplify_ternary_operation): Try to simplify
4416         IF_THEN_ELSE to a setcc form.
4417         * jump.c (can_reverse_comparison_p): Be prepared for insn null.
4418
4419 2000-05-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4420
4421         * fixinc/inclhack.def (sun_malloc): Handle `calloc'.
4422         (sun_malloc, sysz_stdtypes_for_sun): Add test_text.
4423
4424 Sun May 21 16:42:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4425
4426         * combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is
4427         not a PARALLEL.
4428
4429 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
4430
4431         * config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
4432         * config/mn10300/mn10300.c (print_operand): Likewise.
4433
4434         * final.c (split_double): Right shift of negative values is not
4435         portable.
4436
4437         * ifcvt.c (if_convert): Scan and kill dead code.
4438
4439         * emit-rtl.c (unshare_all_rtl): Store the copied rtx.
4440
4441 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
4442
4443         * diagnostic.c: Eliminate implicit int.
4444         * except.c, gcc.c: Add static prototypes.
4445         * final.c (final_end_function): Mark file arg ATTRIBUTE_UNUSED.
4446         * gensupport.c (process_rtx): Use XVEC to initialize vector
4447         slot of 'split'.
4448
4449         * print-rtl.c: If DEBUG_REGISTER_NAMES, define static
4450         debug_reg_names instead of static reg_names.  If not, define
4451         global reg_names.
4452         * regclass.c: Don't define global reg_names unless
4453         DEBUG_REGISTER_NAMES is defined.
4454
4455         * reload1.c (order_regs_for_reload): Remove unused variable.
4456         * varasm.c: Include output.h after defaults.h.  Define
4457         eh_frame_section as function of no args, not of unspecified args.
4458
4459         * gcc.c: Constify argbuf; arguments to store_arg,
4460         process_command, main; elements of struct command and struct
4461         switchstr; local variables in execute, process_command, main.
4462
4463 2000-05-20  Bruce Korb  <bkorb@gnu.org>
4464
4465         * fixinc/inclhack.def:  many applications of c_fix=format + tests
4466         * fixinc/check.diff:  regenerated
4467         * fixinc/fixincl.x:  regenerated
4468
4469 Sat May 20 09:30:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4470
4471         * alias.c: Clarify some comments.
4472         (record_base_value): REGNO is unsigned.
4473         * rtl.h (record_base_value): Likewise.
4474
4475         * alias.c (aliases_everything_p): Don't special-case QImode here.
4476         * c-common.c (c_get_alias_set): Do it here.
4477         Handle BIT_FIELD_REF by getting alias info for arg.
4478         Use POINTER_TYPE_P.
4479
4480 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
4481
4482         * mklibgcc.in: Restore rule to create ${dir}.
4483
4484 Sat May 20 08:45:41 2000  H.J. Lu  <hjl@gnu.org>
4485
4486         * Makefile.in (libgcc.mk): Depend on xgcc$(exeext) for
4487         GCC_FOR_TARGET used by MULTILIBS.
4488         * mklibgcc.in: Make sure each .o file depends on the
4489         directory it will be in.
4490         Make the multilib directory depends libgcc.
4491
4492 Sat May 20 08:29:28 2000  H.J. Lu  <hjl@gnu.org>
4493
4494         * Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1.
4495
4496 Sat May 20 07:27:35 2000  Alexandre Oliva  <aoliva@cygnus.com>
4497
4498         * fold-const.c (make_range): Handle degenerated intervals.
4499         Fixes c-torture/execute/991221-1.c
4500
4501 Fri May 19 18:16:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4502
4503         * cse.c (cse_basic_block): Only call find_reg_note if REG_NOTES not 0.
4504         * reload.c (find_equiv_reg): Likewise.
4505         * alias.c (init_alias_analysis): Likewise.
4506         Only call prologue_epilogue_contains on insns.
4507         * basic-block.h (REG_SET_TO_HARD_REG_SET): Call new function.
4508         * bb-reorder.c (hard-reg-set.h): Include earlier.
4509         * haifa-sched.c (hard-reg-set.h): Likewise.
4510         * ifcvt.c (hard-reg-set.h): Likewise.
4511         * local-alloc.c (hard-reg-set.h): Likewise.
4512         * loop.c (hard-reg-set.h): Likewise.
4513         * predict.c (hard-reg-set.h): Likewise.
4514         * regrename.c (hard-reg-set.h): Likewise.
4515         * flow.c (hard-reg-set.h): Likewise.
4516         (reg_set_to_hard_reg_set): New function.
4517         * bitmap.c (regs.h, basic-block.h): No longer include.
4518         (bitmap.h): Now include.
4519         * conflict.c (hard-reg-set.h): Include.
4520         * profile.c (hard-reg-set.h): Likewise.
4521         * print-rtl.c (hard-reg-set.h): Likewise.
4522         * sbitmap.c (hard-reg-set.h): Likewise.
4523         * toplev.c (hard-reg-set.h): Likewise.
4524         * unroll.c (hard-reg-set.h, basic-block.h): Likewise.
4525         * hard-reg-set.h (reg_names): Now constant.
4526         * regs.h (reg_names): Likewise.
4527         * regclass.c (reg_names): Likewise.
4528         * loop.h (basic-block.h): No longer include.
4529         (bitmap.h): Now include.
4530         * reload1.c (order_regs_for_reload): Avoid loop over reg sets.
4531         * Makefile.in (LOOP_H, sbitmap.o, profile.o): Reflect above changes.
4532         (toplev.o, print-rtl.o, conflict.o, unroll.o, bitmap.o): Likewise.
4533
4534 2000-05-19  Jan Hubicka  <jh@suse.cz>
4535             Richard Henderson  <rth@cygnus.com>
4536
4537         * basic-block.h (struct edge_def): New field "count".
4538         (struct basic_block_def): Likewise.
4539         * flow.c (entry_exit_blocks): Add count fileds.
4540         (split_edge): Keep count information up-to-date.
4541         (dump_edge_info, dump_flow_info): Dump count fields.
4542
4543         * final.c (count_instrumented_edges): Rename to edge from arc.
4544         (end_final): Update users.
4545         * profile.c: Include expr.h, basic-block.h.
4546         (struct adj_list, ARC_TARGET, ARC_SOURCE, ARC_COUNT): Kill.
4547         (struct bb_info, label_to_bb, label_to_bb_size, bb_graph): Kill.
4548         (ignore_next_note, return_label_execution_count): Kill.
4549         (bbg_file_name, da_file_name): Kill.
4550         (edge_info, bb_info): New structures.
4551         (EDGE_INFO, BB_INFO, GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): New macros.
4552         (count_instrumented_edges, total_num_edges): Rename to edge from arc.
4553         (total_num_edges_instrumented): Likewise.
4554         (init_arc, expand_spanning_tree): Kill.
4555         (fill_spanning_tree, tablejump_entry_p): Kill.
4556         (instrument_edges):  Rewrite from instrument_arcs to use
4557         commit_edge_insertions infrastructure.
4558         (compute_branch_probabilities): Remove arguments; rewrite for
4559         CFG infrastructure; use rtl_dump_file directly.
4560         (branch_prob, find_spanning_tree): Likewise.
4561         (union_groups, find_group): New.
4562         (init_branch_prob): Make bbg_file_name and da_file_name local.
4563         (end_branch_prob): Use rtl_dump_file directly.
4564         (init_edge_profiler): Rename to edge from arc.
4565         (output_arc_profiler): Kill.
4566         (gen_edge_profiler): New.
4567         (output_func_start_profiler): Turn off profiling.  Make the
4568         constructor static when we can.
4569         * rtl.h (branch_prob, end_branch_prob): Update prototypes.
4570
4571         * toplev.c (DFI_flow): Remove.
4572         (DFI_cfg, DFI_life): New.
4573         (dump_file): Update accordingly.
4574         (compile_file): Call end_branch_prob if profile_arc_flag too.
4575         (rest_of_compilation): Move flow1 cfg creation to DFI_cfg.  Do edge
4576         profiling after the CFG is built.  Move flow1 life analysis to
4577         DFI_life.  Always estimate remaining probabilities.
4578
4579 2000-05-19  Richard Henderson  <rth@cygnus.com>
4580
4581         * ifcvt.c (find_if_case_2): Don't allow THEN to be EXIT.
4582
4583         * flow.c (make_edges): The sibling call edge to exit is abnormal.
4584
4585 2000-05-19  Richard Henderson  <rth@cygnus.com>
4586
4587         * jump.c (redirect_jump): Add delete_unused argument.  Don't
4588         remove labels and code following when LABEL_NUSES goes to zero.
4589         (invert_jump): Likewise.
4590         (jump_optimize_1): Fix redirect/invert arguments.
4591         (do_cross_jump, thread_jumps): Likewise.
4592         * flow.c (split_edge): Likewise.
4593         * reorg.c (optimize_skip): Likewise.
4594         (reorg_redirect_jump, relax_delay_slots, dbr_schedule): Likewise.
4595         * profile.c (instrument_arcs): Likewise.
4596         * loop.c (find_and_verify_loops): Likewise.  Fix indentation.
4597         * rtl.h: Update prototypes.
4598
4599 Fri May 19 12:05:13 2000  Clinton Popetz  <cpopetz@cygnus.com>
4600
4601         * ssa.c (convert_from_ssa): Tell life_analysis we need death
4602         notes.
4603         (make_regs_equivalent_over_bad_edges): Only look at abnormal
4604         critical edges.
4605
4606 2000-05-19  Zack Weinberg  <zack@wolery.cumb.org>
4607
4608         * cpphash.c (funlike_macroexpand): Make sure not to walk p1
4609         past l1 when deleting whitespace and markers.
4610
4611         * cpplex.c (_cpp_scan_until): Clear AUX field of tokens.
4612         * cpplib.c (do_unassert): Put the list to compare against on
4613         the stack.
4614
4615 2000-05-19  Bruce Korb  <bkorb@gnu.org>
4616
4617         * fixinc/README:  cleaned up old documentation
4618         * fixinc/check.diff: regenerated & verified on OSR5 on ix86
4619         * fixinc/check.tpl: compute the list of needed directories
4620         emit "#if defined(name)" because of conflict
4621         omit machine name differences from output differences
4622         * fixinc/inclhack.def( m88k_multi_incl ):  Use `wrap' function
4623         (machine_name): change test text to use `sed' markers
4624         * fixinc/fixincl.x: regen
4625
4626 Fri May 19 06:49:35 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4627
4628         * config/elfos.h (SELECT_SECTION): Don't access DECL_INITIAL of
4629         a CONSTRUCTOR.
4630
4631 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
4632
4633         * gcc.texi (MULTILIB_EXCEPTIONS): Correct example and update
4634         it to match the current practice.
4635
4636 2000-05-18  Mark Mitchell  <mark@codesourcery.com>
4637
4638         * Makefile.in (STAGESTUFF): Fix typo in spelling of s-under.
4639
4640 2000-05-18  Richard Henderson  <rth@cygnus.com>
4641
4642         * rtlanal.c (insn_dependant_p, insn_dependant_p_1): New.
4643         * rtl.h (insn_dependant_p): Declare it.
4644         * loop.c (strength_reduce): Use it.
4645
4646 2000-05-18  Alexandre Oliva  <aoliva@cygnus.com>
4647
4648         * config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
4649         16-bit and 64-bit clean-up.
4650
4651 2000-05-18 Mark Elbrecht <snowball3@bigfoot.com>
4652
4653         * configure.in (*-pc-msdosdjgpp): Set float_format to none.
4654         * configure: Rebuilt.
4655
4656 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
4657
4658         * genopinit.c: Use $ for escape sequences in optab patterns.
4659         Remove backslashes from optab patterns.  Change $A, $B, $C to
4660         expand to (int) whatever instead of just whatever; remove
4661         explicit (int) from all optab patterns.
4662
4663         * gensupport.c (xmalloc, xrealloc, xstrdup): Provide.
4664         * genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c,
4665         genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c,
4666         genrecog.c: Remove private copies of xmalloc, xrealloc, and
4667         xstrdup.
4668
4669 2000-05-18  Richard Henderson  <rth@cygnus.com>
4670
4671         * jump.c (jump_optimize_1): Base minimum insn count during
4672         find_cross_jump on BRANCH_COST.
4673
4674 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
4675
4676         * print-rtl.c (print_rtx): Only print note line number as string
4677         if between NOTE_INSN_BIAS and NOTE_INSN_MAX.
4678         * final.c (final_scan_insn): Do nothing for note line number 0.
4679
4680 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
4681
4682         * gcc-common.c (ggc_mark_rtx_children): Mark NOTE_EXPECTED_VALUE
4683         from NOTE_INSN_EXPECTED_VALUE notes and NOTE_SOURCE_FILE from
4684         NOTE_INSN_DELETED_LABEL.
4685
4686 2000-05-18  Nick Clifton  <nickc@cygnus.com>
4687
4688         * config/arm/unknown-elf.h (UNIQUE_SECTION): Place constant,
4689         uninitialised data in .rodata not .bss, and do not interpret an
4690         error in the initialisation value as meaning that the variable
4691         should be placed in the .bss section.
4692
4693 Thu May 18 12:10:18 2000  Philippe De Muyter  <phdm@macqel.be>
4694
4695         * configure.in (NO_MINUS_C_MINUS_O): Test `$ac_cv_prog_cc_${ac_cc}_c_o',
4696         not `$ac_cv_prog_cc_cc_c_o'.
4697         * configure: Regenerated.
4698
4699 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
4700             Richard Henderson  <rth@cygnus.com>
4701
4702         * c-common.h (enum c_tree_index): Add g77 type entries.
4703         (g77_integer_type_node, g77_uinteger_type_node): New.
4704         (g77_longint_type_node, g77_ulongint_type_node): New.
4705         * c-decl.c (init_decl_processing): Initialize them.
4706
4707 2000-05-18  Richard Henderson  <rth@cygnus.com>
4708
4709         * config/h8300/h8300.md (subs patterns): Use %G to negate.
4710
4711         * config/h8300/h8300.c (ok_for_bclr): Take a HOST_WIDE_INT.
4712         (small_power_of_two): Likewise; use exact_log2.
4713         (adds_subs_operand, one_insn_adds_subs_operand): Remove.
4714         (output_adds_subs): Remove.
4715         (two_insn_adds_subs_operand): New.
4716         (split_adds_subs): New.
4717         * config/h8300/h8300-protos.h: Update.
4718         * config/h8300/h8300.h (CONST_OK_FOR_J): Cast to uns HOST_WIDE_INT.
4719         (CONST_OK_FOR_L): Match strict adds operands.
4720         (CONST_OK_FOR_N): Match struct subs operands.
4721         * config/h8300/h8300.md (adds_subs insns): Remove.
4722         (addhi patterns): Output adds/subs directly.
4723         (addsi_h8300h): Likewise.
4724         (addhi/addsi splitters): New.  Decompose two_insn_adds_subs_operand.
4725
4726 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
4727
4728         * cppexp.c (parse_assertion): New.
4729         (lex): Call it for CPP_HASH.  Remove CPP_ASSERTION case.
4730         (_cpp_parse_expr): Remove case '#'.  Don't set
4731         parsing_if_directive.
4732         * cpphash.c (collect_objlike_expansion,
4733         collect_funlike_expansion, collect_params,
4734         _cpp_create_definition): The list no longer has a trailing
4735         VSPACE token.
4736         * cpphash.h (enum node_type): Add T_ASSERTION.
4737         (struct hashnode): Remove aschain, add pred.
4738         (struct predicate): New.
4739         Update prototypes.
4740
4741         * cpplex.c (expand_token_space): Handle both offset and
4742         nonoffset lists.
4743         (init_token_list, _cpp_free_token_list, _cpp_parse_assertion): Delete.
4744         (_cpp_init_toklist, _cpp_clear_toklist, _cpp_free_toklist,
4745         _cpp_slice_toklist, _cpp_squeeze_toklist, _cpp_equiv_tokens,
4746         _cpp_equiv_toklists): New.
4747         (_cpp_scan_line): Rename to _cpp_scan_until; add ability to
4748         stop at any single-character token, not just newline.
4749         (_cpp_lex_token): Remove special cases for #define and #if.
4750         (cpp_get_token): Expect # as a separate token type.  Remove
4751         DIRECTIVE case.
4752         (_cpp_get_directive_token): Remove DIRECTIVE case.
4753         (_cpp_lex_line, _cpp_lex_file, _cpp_init_input_buffer): Update.
4754
4755         * cpplib.c (_cpp_check_directive): Set dirno and
4756         SYNTAX_INCLUDE bit of flags, not dir_handler and dir_flags.
4757         (_cpp_handle_directive): Run # <number> through the same logic
4758         as normal directives.
4759         (do_define): Don't set parsing_define_directive.  Use
4760         _cpp_scan_until.  The list does not have a VSPACE at the end.
4761         (do_if): Save, clear, and restore only_seen_white around
4762         _cpp_parse_expr.
4763         (skip_if_group): s/CPP_DIRECTIVE/CPP_HASH/
4764         (do_assert, do_unassert): Rewrite.
4765
4766         * cpplib.h (TTYPE_TABLE): Remove CPP_ASSERTION.
4767         (LIST_OFFSET): New flag.
4768         (struct cpp_toklist): Replace dir_handler and dir_flags with
4769         dirno and flags.
4770         (struct cpp_reader): Remove parsing_if_directive and
4771         parsing_define_directive.
4772
4773 2000-05-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4774
4775         * fixinc/inclhack.def (broken_cabs): Update fix to handle comments
4776         following the cabs decl which terminate on the following line.
4777         Add the corresponding test_text case.
4778
4779 2000-05-18  Neil Booth  <NeilB@earthling.net>
4780
4781         * cppinit.c (cpp_reader_init): Initialise col_adjust and
4782         default tab stop size.
4783         (no_num, OPT_ftabstop): New.
4784         (handle_option): Handle "ftabstop=" command-line option.
4785         (print_help): Document it.
4786         * cpplex.c (COLUMN): Remove.
4787         (handle_newline): Reset col_adjust.
4788         (skip_whitespace): Update col_adjust as tabs encountered.
4789         (_cpp_lex_line): Update to use col_adjust.  Call
4790         skip_whitespace for all whitespace.
4791         * cpplib.h (struct cpp_options): New member tabstop.
4792         (struct cpp_reader): New member col_adjust.
4793         (CPP_BUF_COL): Update.
4794         (CPP_BUF_COLUMN): New.
4795         * cpp.texi: Document "-ftabstop=" command line option.
4796
4797 Wed May 17 18:19:41 2000  Philippe De Muyter  <phdm@macqel.be>
4798
4799         * configure.in (NO_MINUS_C_MINUS_O): Macro made availabe for AC_OUTPUT
4800         files.
4801         * configure: Rebuilt.
4802
4803 Wed May 17 18:06:12 2000  John David Anglin <dave@hiauly1.hia.nrc.ca>
4804
4805         * mklibgcc.in Add missing -DL$name when compiling modules in libgcc1.c.
4806
4807         * tree.c (build_common_tree_nodes): Do not build TI nodes unless
4808         HOST_BITS_PER_WIDE_INT is >= 64.
4809
4810 2000-05-17  Richard Henderson  <rth@cygnus.com>
4811
4812         * jump.c (jump_optimize_1): Remove inactive but real insns
4813         in jump-to-next-insn optimization.
4814
4815 2000-05-17  Richard Henderson  <rth@cygnus.com>
4816
4817         * toplev.c (rest_of_compilation): Don't call optimize_mode_switching
4818         unless OPTIMIZE_MODE_SWITCHING.  Conditionally set no_new_pseudos.
4819         Don't call recompute_reg_usage if no_new_pseudos is true.
4820         * lcm.c (optimize_mode_switching): Move ifdefs outside function.
4821         Return true if we did work; update global life information.
4822         * basic-block.h (optimize_mode_switching): Update decl.
4823
4824 2000-05-17  Neil Booth  <neilb@earthling.net>
4825
4826         * cpplex.c (expand_name_space): Don't use ptrdiff_t.
4827
4828 2000-05-17  Zack Weinberg  <zack@wolery.cumb.org>
4829
4830         * cpplib.c: New feature, #pragma system_header.
4831         * cpp.texi: Document special treatment of system headers, and
4832         the various mechanisms to get a header that special treatment.
4833
4834 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4835
4836         * system.h (offsetof): Define at the very end, to ensure we prefer
4837         the platform's definition if available.
4838
4839 2000-05-16  Bruce Korb  <bkorb@gnu.org>
4840
4841         * fixinc/fixincl.c: improve the debug displays, ignore SIGPIPE
4842         * fixinc/server.c: likewise
4843         * fixinc/fixfixes.c( char_macro_def_fix ): fix regex
4844         + #ifdef debugging code + use #def constant for
4845         sub-pattern count
4846         * fixinc/inclhack.def( hpux11_fabsf ): Keep HP-UX 11 from stomping
4847         on C++ math namespace
4848
4849 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4850
4851         * fixinc/fixfixes.c (char_macro_use_fix, char_macro_def_fix):
4852         Don't check the return value of sprintf.  Use asprintf to avoid
4853         buffer overflows.
4854
4855 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
4856
4857         * flags.h (warn_unused_function, warn_unused_label,
4858         warn_unused_parameter, warn_unused_variable, warn_unused_value):
4859         Replace ``warn_unused''.
4860         (set_Wunused): Add declaration.
4861         * toplev.c (set_Wunused): New function.
4862         (warn_unused_function, warn_unused_label, warn_unused_parameter,
4863         warn_unused_variable, warn_unused_value): New variables.
4864         (W_options): Add -Wunused-function, -Wunused-function,
4865         -Wunused-label, -Wunused-parameter, -Wunused-variable and
4866         -Wunused-value.  Delete -Wunused.  Handled in decode_W_option.
4867
4868         * toplev.c (decode_W_option): Update -Wunused flags by calling
4869         set_Wunused.
4870         * c-decl.c (c_decode_option): Ditto for -Wall.
4871
4872         * stmt.c (expand_expr_stmt, expand_expr_stmt,
4873         warn_about_unused_variables): Replace warn_unused with more
4874         explicit warn_unused_value et.al.
4875         * function.c (expand_function_end): Ditto.
4876         * c-typeck.c (internal_build_compound_expr,
4877         internal_build_compound_expr): Ditto.
4878         * c-decl.c (poplevel, pop_label_level): Ditto.
4879         * toplev.c (check_global_declarations): Replace warn_unused with
4880         check for either warn_unused_function or warn_unused_variable.
4881
4882         * gcc.1, invoke.texi (Warning Options): Document
4883         -Wunused-function, -Wunused-function, -Wunused-label,
4884         -Wunused-parameter, -Wunused-variable and -Wunused-value options.
4885
4886 Wed May 17 10:28:12 2000  Philippe De Muyter  <phdm@macqel.be>
4887
4888         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
4889         $(srcdir), not in the current directory.
4890
4891 2000-05-16  Richard Henderson  <rth@cygnus.com>
4892
4893         * config/ia64/crtbegin.asm (__dso_handle): Mark hidden if the
4894         assembler supports it.
4895         (.fini, .init): Use a gp-relative indirect call.
4896         (__do_global_dtors_aux): Preserve the gp; rebundle.
4897         (__do_frame_setup): Likewise.
4898         * config/ia64/crtend.asm (.IA_64.unwind): Don't terminate with -1.
4899         (.init): Use a gp-relative indirect call.
4900         (__do_global_ctors_aux): Preserve the gp.
4901
4902 2000-05-16  Richard Henderson  <rth@cygnus.com>
4903
4904         * flow.c (commit_one_edge_insertion): Be prepared for a return
4905         insn to be inserted on the edge with a normal jump.
4906         * jump.c (jump_optimize_1): Don't look to create return isns.
4907
4908         * flow.c (flow_delete_insn): Don't adjust reference count of notes.
4909         * jump.c (jump_optimize_1): Likewise.
4910         (returnjump_p): Verify the argument is a JUMP_INSN.
4911         * rtl.def (NOTE): Add 5th element for NOTE_INSN_DELETED_LABEL.
4912
4913 2000-05-16  Nick Clifton  <nickc@cygnus.com>
4914
4915         * config/m32r/m32r.c (small_insn_p): Use INSN_P() to replace
4916         GET_RTX_CLASS (GET_CODE ()) == 'i'.
4917         (large_insn_p): Ditto.
4918         (m32r_is_insn): New function: Return true if the insn contains
4919         an executable instruction.
4920         (m32r_adjust_insn): Use m32r_is_insn.
4921         (m32r_sched_reorder): Use m32r_is_insn.
4922         (m32r_sched_variable_issue): Use m32r_is_insn.
4923
4924 2000-05-16  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4925
4926         * rs6000/rs6000.c (rs6000_select_section): Treat CONSTRUCTOR like
4927         VAR_DECL.
4928
4929         * rs6000/sysv4.h (ASM_OUTPUT_DWARF_ADDR): Delete unused variable.
4930
4931         * rs6000/sysv4.h (CPP_OS_LINUX_SPEC): Define __unix and __linux
4932         according to given options.
4933
4934 Tue May 16 12:17:31 2000  Jeffrey A Law  (law@cygnus.com)
4935
4936         * mn10200.h (PREFERRED_RELOAD_CLASS): Do not prefer DATA_REGS
4937         if X has VOIDmode either.
4938         (LIMIT_RELOAD_CLASS): Similarly.
4939
4940         * mn10200.md (indirect_jump, tablejump): Use "register_operand",
4941         not "general_operand" to match the processor's capabilities.
4942
4943 2000-05-16  Bruce Korb  <bkorb@gnu.org>
4944
4945         * fixinc/README:  corrected return address
4946         * fixinc/check.diff:  regenerate, now that test works
4947         * fixinc/fixfixes.c(format_fix,format_write): reformatted
4948         (char_macro_def_fix,char_macro_use_fix): corrected and
4949         rewrote to use regex to parse the text
4950         * fixinc/inclhack.def: more testing
4951         * fixinc/fixincl.x:  regenerated
4952
4953         * fixinc/inclhack.def: added several "test_text" attributes
4954         changed several fixes to use `c_fix = format'
4955         re-alphabetized the fixes
4956
4957         * fixinc/check.diff: regenerate
4958         * fixinc/fixincl.x: regenerate
4959         * fixinc/check.tpl: added `sparc' and `netinet' to the list
4960         of created dirs
4961
4962
4963 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
4964
4965         * config/mn10300/mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Remove.
4966
4967 2000-05-15  Richard Henderson  <rth@cygnus.com>
4968
4969         * toplev.c (rest_of_compilation): Run full jump pass before
4970         find_basic_blocks of flow2.
4971
4972 2000-05-15  Richard Henderson  <rth@cygnus.com>
4973
4974         * jump.c: Fix typos and clarify commentary from last change.
4975         (any_condjump_p): Verify SET_SRC is an IF_THEN_ELSE.
4976         (safe_to_remove_jump_p): Remove.
4977         (condjump_label): Use pc_set.
4978
4979 2000-05-15  Richard Henderson  <rth@cygnus.com>
4980
4981         * ifcvt.c (cond_exec_process_insns): Drop USE and CLOBBER insns
4982         that get in the way after reload.
4983         (cond_exec_process_if_block): Skip a label heading THEN block.
4984
4985 2000-05-15  Richard Henderson  <rth@cygnus.com>
4986
4987         * varasm.c (output_constant_pool): Abort instead of converting
4988         (improperly) deleted labels to zero.
4989
4990 2000-05-16  Neil Booth  <NeilB@earthling.net>
4991
4992         * cpplex.c (parse_string2): Update comment.
4993         (cpp_lex_line): No special assertion treatment for '('.
4994         * cpplib.c (DIRECTIVE_TABLE): Remove SYNTAX_ASSERT.
4995         * cpplib.h (SYNTAX_ASSERT): Remove.
4996
4997 Mon May 15 21:45:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4998
4999         * jump.c (condjump_p):  Mark as depreached.
5000         (any_condump_p): New.
5001         (any_uncondump_p): New.
5002         (pc_set): New.
5003         (safe_to_remove_jump_p): New.
5004         * rtl.h (any_condump_p, any_uncondjump_p, pc_set
5005         safe_to_remove_jump_p): Declare.
5006
5007 Mon May 15 21:07:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5008
5009         * calls.c: Re-install both patches reverted by last patch.
5010         (struct arg_data): New field tail_call_reg.
5011         (initialize_argument_information): Initialize tail_call_reg
5012         (load_register_parameters): New argument flags, use
5013         tail_call_reg when emiting tail call sequence.
5014         (expand_call): Update call of load_register_parameters;
5015         copy unadjusted_args_size to adjusted_args_size.
5016
5017 Mon May 15 19:01:42 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5018
5019         * loop.c (scan_loop, strength_reduce, loop_optimize): Change unroll_p
5020         and bct_p parameters to flags.
5021         * loop.h (LOOP_UNROLL, LOOP_BCT): New constants.
5022         * rtl.h (loop_optimize): Update prototype.
5023         * toplev.c (rest_of_compilation): Update call of loop_optimize.
5024
5025 2000-05-15  Jakub Jelinek  <jakub@redhat.com>
5026
5027         * calls.c (expand_call): Move expand_start_target_temps call after
5028         start_sequence().
5029
5030 2000-05-15  Neil Booth  <NeilB@earthling.net>
5031
5032         * cpphash.c (trad_stringify, warn_trad_stringify,
5033         collect_params): Make some pointers pointers to const.
5034         * cpplex.c (auto_expand_name_space) Guaranteed to always
5035         expand by at least one character.
5036         (SPELL_CHAR, SPELL_NONE): Temporarily reverse order.
5037         (struct token_spelling): Use const U_CHAR * rather than PTR.
5038         (expand_name_space): Fix up token pointers if name space
5039         is moved when expanding.
5040         (INIT_NAME, cpp_scan_line, parse_name, parse_number,
5041         parse_string2, save_comment, spell_token, cpp_output_list):
5042         Update so the routines handle tokens with a direct pointer to
5043         their text, rather than an offset into the token's list's namebuf.
5044         (_cpp_lex_line): Rearrange for clarity.
5045
5046         * cpplib.c (_cpp_check_directive): Similarly.
5047         (do_define): Make SYM a pointer to const.
5048         * cpplib.h (struct cpp_name): Replace offset with direct pointer.
5049         (CPP_INT, CPP_FLOAT): Spelling type should be SPELL_IDENT.
5050         (TOK_OFFSET): Delete.
5051         (TOK_NAME): Update.
5052
5053 2000-05-14  Geoffrey Keating  <geoffk@cygnus.com>
5054
5055         * config/rs6000/rs6000.h (RETURN_ADDRESS_OFFSET): Correct for
5056         64-bit ABI.
5057
5058         * config/rs6000/rs6000.c (logical_operand): Rewrite to take MODE
5059         into account.
5060         (logical_u_operand): Delete.
5061         (non_logical_cint_operand): Rewrite to take MODE into account.
5062         (non_logical_u_cint_operand): Delete.
5063         (boolean_operator): New function.
5064         (print_operand): Add new %q operand.
5065         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_operator,
5066         remove logical_u_operand and non_logical_u_cint_operand,
5067         update logical_operand and non_logical_cint_operand.
5068         * config/rs6000/rs6000.md: Rewrite the patterns for performing
5069         logical operations to use %q.
5070
5071         * config/rs6000/rs6000.md (movsi): Don't modify RTL in-place.
5072         (movdi): Make similar to movsi.
5073         * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): There
5074         is no such thing as a DImode CONST_DOUBLE.
5075         * config/rs6000/rs6000.c (output_toc): Likewise.
5076
5077         * config/rs6000/rs6000.c (output_cbranch): Don't output prediction
5078         codes when old mnemonics are in use.  Print register names
5079         for cc registers when requested.
5080
5081         * optabs.c (expand_float): Don't allow mode widening that causes
5082         double rounding.
5083
5084         * invoke.texi (RS/6000 and PowerPC Options): Update -m64/-m32
5085         flags to their current names -maix64 and -maix32.
5086
5087 2000-05-14  Bruce Korb  <bkorb@gnu.org>
5088
5089         * fixinc/fixfixes.c(wrap_fix): new fix - inserts text before
5090         and/or after current text of file
5091         * fixinc/fixlib.c(must_malloc):
5092         * fixinc/fixlib.h(must_malloc): + reformatting
5093         * fixinc/inclhack.def: replace the "1i" and "$a" sed commands
5094         with usages of ``c_fix = wrap;''
5095         Add several tests and use the ``c_fix = format'' fixer more.
5096         * fixinc/fixincl.x: regen
5097         * fixinc/check.diff: regen
5098         * fixinc/check.tpl: emit the associated header with the missing
5099         test message
5100
5101 Sun May 14 17:58:59 2000  Hans-Peter Nilsson  <hp@axis.com>
5102
5103         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Do not use unset
5104         variables $src and $dst.
5105
5106 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
5107
5108         * diagnostic.h (DIAGNOSTICS_SHOW_PREFIX_ONCE): New macro.
5109         (DIAGNOSTICS_SHOW_PREFIX_NEVER): Likewise.
5110         (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE): Likewise.
5111         (struct output_buffer: emitted_prefix_p, prefixing_rule): New
5112         fields.
5113         (set_message_prefixing_rule): Declare.
5114
5115         * diagnostic.c: (current_prefixing_rule): New variable.
5116         (set_message_prefixing_rule): Define.
5117         (output_set_prefix): Adjust buffer->emitted_prefix_p.
5118         (init_output_buffer): Adjust Initialization.
5119         (output_emit_prefix): Rewrite.  Take prefixing rules into account.
5120
5121 Sat May 13 11:05:47 2000  Philippe De Muyter  <phdm@macqel.be>
5122
5123         * ifcvt.c (if_convert): Do not free NULL.
5124
5125 2000-05-12  H.J. Lu  (hjl@gnu.org)
5126
5127         * gthr-dce.h: Add support for libobjc.
5128         * gthr-posix.h: Likewise.
5129         * gthr-solaris.h: Likewise.
5130         * gthr-vxworks.h: Likewise.
5131         * gthr-single.h: Likewise.
5132         * gthr-win32.h: Likewise.
5133
5134 2000-05-12  Nick Clifton  <nickc@cygnus.com>
5135
5136         * config/fr30/fr30.c (fr30_move_double): New function:  Emit code
5137         to move a double word value.
5138         (di_operand): New function: Return true if the operand is suitbale
5139         for a double word move operation.
5140         (nonimmediate_di_operand): New function: Return true if the
5141         operand is a DImode register or MEM.
5142
5143         * config/fr30/fr30.h (PREDICATE_CODES): Add di_operand and
5144         nonimmediate_di_operand.
5145
5146         * config/fr30/fr30-protos.h Add fr30_move_double, di_operand, and
5147         nonimmediate_di_operand.
5148
5149         * config/fr30/fr30.md (movdi): New pattern.  Required because
5150         other patterns generate DImode results.
5151         (movdi_insn): New pattern.
5152
5153 2000-05-12  Richard Henderson  <rth@cygnus.com>
5154
5155         * config/alpha/alpha.c (struct shadow_summary): Define
5156         bitfields as type unsigned int.
5157
5158 Sat May 13 00:09:59 2000  Denis Chertykov  <denisc@overta.ru>
5159
5160         * config/avr/t-avr: Added definition of FLOAT while generates
5161         fp-bit.c
5162
5163         * config/avr/avr.md: `NEXT_INSN (insn)' substituted to `insn' in
5164         peepholes for tst+jump = sbrs/sbrc optimization.
5165
5166 Fry May 12 20:03:00 CEST 2000  Jan Hubicka  <jh@suse.cz>
5167
5168         * expr.c (emit_push_insn): Do not adjust stack pointer when
5169         preallocating.
5170
5171 Fri May 12 19:03:58 2000  Philippe De Muyter  <phdm@macqel.be>
5172
5173         * ggc-simple.c (offsetof): Macro fallback definition moved from here ..
5174         * system.h (offsetof): ... to here.
5175
5176 2000-05-12  Richard Henderson  <rth@cygnus.com>
5177
5178         * Makefile.in (final.o): Depend on BASIC_BLOCK_H.
5179         * final.c (final_end_function): Use app_disable.  Rearrange note
5180         handling into a switch.  Emit deleted labels.
5181         (output_asm_label): Generate label strings for deleted labels.
5182         * flow.c (tail_recursion_label_list): New.
5183         (find_basic_blocks_1): Set label_value_list directly.  Collect list
5184         of tail recursion labels from call_placeholders.  Don't add deleted
5185         labels to the label value list.
5186         (cleanup_cfg): Use free_EXPR_LIST_list.
5187         (flow_delete_insn_chain): Turn non-removable labels into notes.
5188         (flow_delete_block): Don't disable deleting the block because of
5189         a non-removable label.
5190         (tail_recursion_label_p): New.
5191         (merge_blocks_move_predecessor_nojumps): Don't disable the merge
5192         because of a label.
5193         (merge_blocks_move_successor_nojumps): Likewise.  Also move a
5194         jump table.
5195         (merge_blocks): Disable a merge because of tail recursion labels.
5196         * ifcvt.c (merge_if_block): Don't disable a merge because of a label.
5197         Use a more accurate measure of not merging the join block.
5198         (find_if_block): Don't disable conversion because of a label.
5199         (find_if_case_1, find_if_case_2): Likewise.
5200         * jump.c (duplicate_loop_exit_test): Preserve the kind of list
5201         element when copying.
5202         (squeeze_notes): Also leave EH notes.
5203         (mark_jump_label): Ignore deleted labels.  Use an INSN_LIST for
5204         REG_LABEL notes.
5205         (delete_insn): Preserve LABEL_NAME in NOTE_SOURCE_FILE when
5206         deleting a label.
5207         * print-rtl.c (print_rtx): Print NOTE_SOURCE_FILE for
5208         NOTE_INSN_DELETED_LABEL.  Print `[# deleted]' for a label_ref
5209         referring to a deleted label.  Convert tail handling to a switch.
5210         * rtl.def (CODE_LABEL): Rearrange elements to be compatible with NOTE
5211         for NOTE_INSN_DELETED_LABEL.
5212         (NOTE): Fix commentary.
5213         * rtl.h (REG_LABEL): Update commentary wrt INSN_LIST.
5214         (REG_CC_SETTER, REG_CC_USER, REG_LIBCALL): Likewise.
5215         (CODE_LABEL_NUMBER, LABEL_NAME): Update index.
5216         (LABEL_NUSES, LABEL_REFS): Likewise.
5217         * unroll.c (copy_loop_body): Don't copy NOTE_INSN_DELETED_LABEL.
5218
5219 2000-05-12  Bruce Korb  <bkorb@gnu.org>
5220
5221         * fixinc/fixfixes.c(format_write): buglet & relaxed rules
5222         * fixinc/check.diff: updated
5223         * fixinc/inclhack.def: corrected & added some test_text-s
5224         * fixinc/genfixes: removed unneeded options to autogen invocation
5225         * fixinc/fixincl.tpl: Specified the output file
5226         * fixinc/fixfixes.c: visual appearance
5227         * fixinc/fixincl.x: regenerate
5228
5229 2000-05-12  Zack Weinberg <zack@wolery.cumb.org>
5230
5231         * fixinc/fixfixes.c (IO_use_fix, IO_defn_fix, CTRL_use_fix,
5232         CTRL_defn_fix): Delete.
5233         (fix_char_macro_defines, fix_char_macro_uses): Rename to
5234         char_macro_def_fix and char_macro_use_fix, respectively.  Put
5235         them into the FIXUP_TABLE.  Get the string to search for from
5236         a c_fix_arg.
5237
5238         (format_write): New function.
5239         (format_fix): Use it.
5240
5241         (FIX_PROC_HEAD): Constify text parameter.
5242         (machine_name_fix): Constify all char *s.
5243         * fixtests.c (skip_quote): Remove double static.
5244
5245         * inclhack.def (io_def_quotes, io_use_quotes, ctrl_def_quotes,
5246         ctrl_use_quotes): Update for new scheme.
5247         * fixincl.x: Regenerate.
5248
5249 2000-05-12  Alexandre Oliva  <aoliva@cygnus.com>
5250
5251         * config/mn10300/mn10300.h (PREFERRED_DEBUGGING_TYPE): Redefine as
5252         DWARF2_DEBUG.
5253         (DWARF2_ASM_LINE_DEBUG_INFO): Define.
5254         (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
5255
5256 2000-05-11  Robert Lipe <robertlipe@usa.net>
5257
5258         * fixinc/inclhack.def (hpux8_bogus_inlines): Delete bypass for SCO.
5259         * fixincl.x: Regenerate.
5260
5261 2000-05-11  Richard Henderson  <rth@cygnus.com>
5262
5263         * calls.c: Revert both 05-09 patches.
5264
5265 2000-05-11  Alexandre Oliva  <aoliva@cygnus.com>
5266
5267         * config/mn10300/mn10300.c (print_operand): Print FP constants in
5268         hexadecimal.
5269         * config/mn10300/mn10300.md (movsf, movdf): Use the `F' constraint
5270         for FP values.
5271
5272         * mklibgcc.in (EQ): Define it to an equal sign in the Makefile,
5273         and replace any occurrences of `=' in multilib dirs with `$(EQ)'.
5274
5275 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
5276
5277         * fixinc/fixincl.c (run_compiles): Don't crash on null pz_machine.
5278
5279 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
5280
5281         * fixinc/fixfixes.c, fixinc/fixtests.c: Update commentary.
5282
5283 Thu May 11 22:28:05 2000  Denis Chertykov  <denisc@overta.ru>
5284
5285         * config/avr/avr-protos.c (jump_over_one_insn_p): New declaration.
5286         * config/avr/avr.c (jump_over_one_insn_p): New function.
5287         * config/avr/avr.md: New peepholes added. Output test and
5288         conditional jump to "sbrc" or "sbrs" command.
5289
5290 2000-05-11  Mark Elbrecht  <snowball3@bigfoot.com>
5291
5292         * cppmain.c (main): Use IS_DIR_SEPARATOR.
5293
5294 2000-05-11  Jakub Jelinek  <jakub@redhat.com>
5295
5296         * except.c (find_exception_handler_labels_1): New function.
5297         (find_exception_handler_labels): Split into two functions, dive
5298         into CALL_PLACEHOLDERs when looking for exception handler labels.
5299
5300 2000-05-11 Stan Cox <scox@cygnus.com>
5301
5302         * regrename.c (replace_reg_in_block): Improve REG_DEAD handling.
5303         * timevar.def (TV_RENAME_REGISTERS): Move before TV_SCHED2.
5304         * toplev.c (rest_of_compilation): Call regrename_optimize before sched2.
5305
5306 2000-05-11  Bruce Korb  <bkorb@gnu.org>
5307
5308         * fixinc/fixfixes.c (double_slash_fix):  obsolete
5309         (else_endif_label_fix): obsolete
5310         (format_fix):  new, unused as yet
5311         (main): obsolete
5312         * fixinc/fixlib.h: added fix description struct for use by format_fix
5313         * fixinc/fixincl.c: removed the struct & test for SIGIOT befure using
5314         * fixinc/Makefile.in:  compile fixfixes.c and fixtests.c as separate
5315         modules.  Removed the vestiges of the script version.
5316         Added support for "make check".
5317         * fixinc/check.diff: base diff file (needs work!!)
5318         * fixinc/check.tpl: quiet the fixup output
5319         * fixinc/fixtests.c (main): obsolete
5320         * fixinc/fixincl.sh:  don't bother copying fixincl to ..
5321         * fixinc/fixincl.tpl:  provide for arguments to c_fix routines
5322
5323 Thu May 11 11:57:02 MET DST 2000  Jan Hubicka <jh@suse.cz>
5324
5325         * toplev.c (rest_of_compilation): Remove dead code after
5326         combine.
5327
5328 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
5329
5330         * cpphash.c (collect_funlike_expansion): Make "# is not
5331         followed by a macro argument name" a pedwarn, not an error.
5332         Preserve the # in the output.  Suppress the warning if lang_asm.
5333
5334 Thu May 11 01:19:31 2000  Jeffrey A Law  (law@cygnus.com)
5335
5336         * configure.in (hppa*64*-*-hpux11*): New target for PA64 support.
5337         * configure: Rebuilt.
5338
5339 2000-05-10 Laurynas Biveinis <lauras@softhome.net>
5340
5341         * i386/xm-djgpp.h (XREF_FILE_NAME): Add mising brace.
5342
5343 2000-05-10  Kazu Hirata  <kazu@hxi.com>
5344
5345         * combine.c (try_combine): Fix a typo.
5346
5347 Wed May 10 21:31:44 2000  Jim Wilson  <wilson@cygnus.com>
5348
5349         * config/ia64/ia64.md (insv): Add comment.
5350
5351 2000-05-10  Richard Henderson  <rth@cygnus.com>
5352
5353         * Makefile.in (libgcc.a, stmp-multilib): Depend on FPBIT and DPBIT.
5354         * mklibgcc.in: Rewrite to not use functions.  Don't shortcut
5355         dependancies on FPBIT and DPBIT.
5356
5357 2000-05-10  Nick Clifton  <nickc@redhat.com>
5358
5359         * flow.c (find_auto_inc): Do not bias REG_N_REFS by loop_depth
5360         when optimising for size.
5361         (mark_used_regs:) Ditto.
5362         (try_pre_increment_1): Ditto.
5363
5364 2000-05-10  Zack Weinberg  <zack@wolery.cumb.org>
5365
5366         * cppexp.c (lex): Use %.*s to print non-NUL-terminated string.
5367         Make error message friendlier.
5368
5369         * cpphash.h (struct hashnode): Use struct hack for name
5370         member.
5371         * cpphash.c (struct hashdummy): New.
5372         (eq_HASHNODE): Second argument is a hashdummy, not a HASHNODE.
5373         (make_HASHNODE): No need to set ->name pointer.  Correct
5374         setting of p.
5375         (cpp_lookup): Make 'dummy' a struct hashdummy.  Tidy up a bit.
5376
5377 2000-05-10  Richard Henderson  <rth@cygnus.com>
5378
5379         * flow.c (find_basic_blocks_1): Remove any spare bb_note
5380         after completion.
5381
5382 2000-05-10  Bruce Korb  <bkorb@gnu.org>
5383
5384         * fixinc/gnu-regex.c:  reg_syntax_t re_syntax_options must be static
5385
5386 2000-05-10  Eric Schweitz  <schweitz@nortelnetworks.com>
5387
5388         * dwarfout.c (dwarfout_finish): Call retry_incomplete_types
5389         after we enter .debug.
5390
5391 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
5392
5393         * dwarf2out.c (gen_subprogram_die): Fixup die_parent for the
5394         abstract instance of a nested inline function.
5395
5396         * stor-layout.c (finish_record_layout): finalize_type_size
5397         before laying out the pending_statics.
5398
5399 Wed 10 May 09:36:47 2000  Neil Booth  <NeilB@earthling.net>
5400
5401         * cpplex.c (spell_token): New function.
5402         (spell_string, spell_comment, spell_name): fold into
5403         spell_token.
5404         (I, S): Add macros.
5405         (E, H): Remove macros.
5406         (save_comment): Save comment opening characters too.
5407         (_cpp_lex_file): Update to use spell_token.  Tidy up comment
5408         handling.
5409         * cpplib.h (I, S): Add macros.
5410         (E, H): Remove macros.
5411         (TTYPE_TABLE): Update entries for new speller.
5412         (SYNTAX_ASSERT): Remove.
5413
5414 Wed 10 May 09:08:30 2000  Neil Booth  <NeilB@earthling.net>
5415
5416         * cpplex.c (_cpp_lex_line): Maintain PREV_WHITESPACE flag
5417         when removing escaped newlines.  Reverse sense of test for
5418         escaped newline.
5419
5420 2000-05-09  Richard Henderson  <rth@cygnus.com>
5421
5422         * flow.c (find_basic_blocks_1): Do not delete the first
5423         bb_note we run across.
5424         (create_basic_block): Use reorder_insns to move an existing
5425         bb_note to the correct place.
5426
5427 2000-05-09  Richard Henderson  <rth@cygnus.com>
5428
5429         * calls.c (expand_call): Increment currently_expanding_call
5430         before calling optimize_tail_recursion.
5431
5432 Tue May  9 18:54:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5433
5434         * reload1.c (reload_combine): Fix errors in last change.
5435
5436 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
5437
5438         * gcc.c (used_arg): Skip over a semicolon at the end of the
5439         split-up loop; don't break out of it.
5440
5441         * Makefile.in (WARN_CFLAGS): Add -Wwrite-strings.
5442         (tree.o): Depend on output.h.
5443
5444         * c-decl.c (pending_invalid_xref_file,
5445         current_function_prototype_file): Constify.
5446         (pushdecl): Constify a local char *.
5447         (define_label): Constify filename parameter.
5448         * c-lex.c (init_parse): Constify parameter and return value.
5449         * c-typeck.c (c_expand_asm_operands): Constify filename parameter.
5450         * c-tree.h: Update prototypes.
5451         * c-parse.in: Constify filename member of %union, and if_stmt_file.
5452         * c-parse.y, c-parse.c, c-parse.h, objc/objc-parse.y,
5453         objc/objc-parse.c: Regenerate.
5454
5455         * dwarfout.c (dwarfout_init): Constify main_input_filename parameter.
5456         * dwarfout.h: Update prototypes.
5457         * expr.c (expand_expr): Constify a local char *.
5458         * flags.h: Constify main_input_filename.
5459         * function.c (expand_function_end): Constify filename parameter.
5460         * genrecog.c (make_insn_sequence): Use a character array for
5461         c_test_pos.
5462         (main): Remove unused variables.
5463         * input.h: Constify input_filename, main_input_filename, and
5464         file_stack.name.  Update prototypes.
5465         * output.h: Declare first_global_object_name and
5466         weak_global_object_name here, as const char *.
5467         * stmt.c (expand_asm_operands): Constify filename parameter.
5468         * toplev.c (compile_file, push_srcloc, debug_start_source_file):
5469         Constify filename parameter.
5470         (input_filename, main_input_filename): Constify.
5471         * toplev.h: Update prototypes.
5472         * tree.c: Include output.h.  Don't declare
5473         first_global_object_name or weak_global_object_name.  Clean up string
5474         bashing in get_file_function_name_long.
5475         * tree.h (struct tree_decl): Constify filename member.
5476         (input_filename): Constify.
5477         Update prototypes.
5478         * varasm.c (first_global_object_name, weak_global_object_name):
5479         Constify.
5480         (assemble_start_function, assemble_variable): Clean up string bashing.
5481
5482         * gcc.c: Constify all spec-related strings initialized,
5483         transitively, from string constants.  Constify all strings
5484         and string variables related to multilibs.
5485         (set_spec, read_specs): Cast argument to free to PTR.
5486         (used_arg): Do not modify multilib_matches.  Use strncmp plus
5487         length comparison to compare multilib switches.
5488         * genmultilib: Constify everything declared in multilib.h.
5489
5490 Tue May  9 22:28:03 2000  Denis Chertykov  <denisc@overta.ru>
5491
5492         * flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn
5493         as deleted.
5494
5495 Tue May  9 20:52:43 2000  Denis Chertykov  <denisc@overta.ru>
5496
5497         * config/avr/avr-protos.h (extra_constraint): change a type of
5498         second argument from char to int to avoid warnings.
5499         (asm_output_byte): Likewise.
5500
5501         * config/avr/avr.c (MAX_LD_OFFSET) New macro.
5502         (initial_elimination_offset): Handle elimination from
5503         FRAME_POINTER_REGNUM to STACK_POINTER_REGNUM.
5504         (legitimate_address_p): Use MAX_LD_OFFSET.
5505         (legitimize_address): Likewise.
5506         (out_movqi_r_mr): Likewise.
5507         (out_movhi_r_mr): Likewise, use `fatal_insn' instead of `fatal'.
5508         (out_movsi_r_mr): Use MAX_LD_OFFSET.
5509         (out_movsi_mr_r): Likewise.
5510         (out_movqi_mr_r): Likewise.
5511         (out_movhi_mr_r): Likewise.
5512         (notice_update_cc): Correct CC for the ashrqi3 with the shift
5513         count as CONST_INT != 6.
5514         (ashlqi3_out): Coding style modifications. Run `fatal_insn' if
5515         shift count is a CONSTANT_P, but not a CONST_INT.
5516         (ashlhi3_out): Coding style modifications.
5517         (ashlsi3_out): Likewise.
5518         (ashrhi3_out): Likewise.
5519         (ashrsi3_out): Likewise.
5520         (lshrhi3_out): Likewise.
5521         (lshrsi3_out): Likewise.
5522         (ashrqi3_out): Generate shift for any known constant count without
5523         scratch register. Run `fatal_insn' if shift count is a CONSTANT_P,
5524         but not a CONST_INT.
5525         (lshrqi3_out): Coding style modifications. Run `fatal_insn' if
5526         shift count is a CONSTANT_P, but not a CONST_INT.
5527         (extra_constraint): change a type of
5528         second argument from char to int to avoid warnings.
5529         (asm_output_byte): Likewise.
5530         (asm_file_end): Output size generated commands count as a hex
5531         number too.
5532
5533         * config/avr/avr.h (RETURN_ADDR_RTX): New macro.
5534
5535         * config/avr/avr.md (addhi3): Fragment commented by &&0 is
5536         removed.
5537         (ashlqi3): Values of "length" attribute changed. Shift count
5538         uses constraints 'n' instead of 'i'.
5539         (ashrqi3): Likewise. Values of "cc" attribute changed. Generate
5540         shifts without clobber register.
5541         (lshrqi3): Shift count uses constraints 'n' instead of 'i'.
5542         (call_insn): Correct test for which_alternative == 1 (was 0).
5543         (call_value_insn): Likewise.
5544
5545         * config/avr/t-avr: Remove definition of FLOAT while generates
5546         fp-bit.c
5547
5548 2000-05-09  Bruce Korb  <bkorb@gnu.org>
5549
5550         * fixinc/check.tpl:  Template for checking fixes
5551         * fixinc/inclhack.def:  Added 'test_text' for many fixes
5552         disable hpux8_bogus_inlines on SCO
5553         * fixinc/fixinc.sco:  Oh, yes, we don't need this any more.
5554
5555 Tue May  9 16:30:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5556
5557         * calls.c (expand_call): Reorganize somewhat in order
5558         to avoid unnecesary recalculation inside loop and make
5559         tail call failure code cleaner.
5560
5561 Tue May  9 06:30:20 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5562
5563         * alias.c (nonlocal_reference_p): Minor reformatting.
5564         * reload.c (find_equiv_reg): Simplify logic for
5565         CALL_INSN_FUNCTION_USAGE since can't have SUBREG or pseudos and
5566         some some reformatting.
5567         * reload1.c (reload_combine): Don't assume everything in
5568         CALL_INSN_FUNCTION_USAGE is a REG and clean up code a bit.
5569
5570 2000-05-08  Richard Henderson  <rth@cygnus.com>
5571
5572         * final.c (current_insn_predicate): New.
5573         (final_scan_insn): Set it.
5574         * output.h (current_insn_predicate): Declare.
5575
5576         * ifcvt.c (cond_exec_process_insns): New argument prob_val.
5577         Attach it to call insns.
5578         (cond_exec_process_if_block): Track probability for true and
5579         false branches.
5580         (dead_or_predicable): Likewise.
5581
5582         * predict.c (PROB_NEVER, PROB_VERY_UNLIKELY): New.
5583         (PROB_UNLIKELY, PROB_EVEN, PROB_LIKELY): New.
5584         (PROB_VERY_LIKELY, PROB_ALWAYS): New.
5585         (estimate_probability, expected_value_to_br_prob): Use them.
5586
5587         * config/ia64/ia64-protos.h (ia64_expand_prediction): Declare.
5588         * config/ia64/ia64.c (ia64_print_operand_address): Handle 'j'.
5589         (ia64_expand_prediction): New.
5590         (emit_insn_group_barriers): Don't look at notes.  Emit barriers
5591         as needed after calls.
5592         (ia64_epilogue_uses): Mark b0 used.
5593         * config/ia64/ia64.md (beq_true, beq_false): Remove.
5594         (bne_true, bne_false): Remove.
5595         (eq_return, eq_not_return, ne_return, ne_not_return): Remove.
5596         (br_true, br_false): New.  Use predicate_operator and
5597         ia64_expand_prediction.
5598         (return_true, return_false): Likewise.
5599         (call_internal): Use ia64_expand_prediction.  Don't emit stop bit.
5600         (call_internal1, call_value_internal): Likewise.
5601         (call_value_internal1, call_multiple_values_internal1): Likewise.
5602
5603         * config/ia64/ia64.c (ia64_direct_return): Require frame size zero.
5604
5605         * config/ia64/ia64.md (extendsfdf2): Split only after reload.
5606
5607 2000-05-08  Richard Henderson  <rth@cygnus.com>
5608
5609         * rtlanal.c (may_trap_p): Consider old-style and volatile
5610         asms to trap.
5611
5612 Mon May  8 17:16:48 2000  Jim Wilson  <wilson@cygnus.com>
5613
5614         * config/ia64/ia64.h (RETURN_ADDR_RTX): Use COUNT not count.
5615
5616 2000-05-08  Richard Henderson  <rth@cygnus.com>
5617
5618         * config/ia64/ia64.h (predicate_operator): Declare.
5619
5620         * config/ia64/ia64.md (extendsfdf2): Split the nop case out
5621         of existance.
5622
5623         * gensupport.c (process_rtx): Copy and post-process each member
5624         of the define_insn rtvec individually.
5625
5626 Mon  8 May 22:17:35 2000  Neil Booth  <NeilB@earthling.net>
5627
5628         * cpplex.c (spell_token): New function.
5629         (TOKEN_LEN): Add 1 for whitespace.
5630         (_cpp_lex_file): Update to use spell_token.
5631         * cpplib.h (E): Remove.
5632         (TTYPE_TABLE): Update CPP_VSPACE entry.
5633
5634 2000-05-08  Richard Henderson  <rth@cygnus.com>
5635
5636         * flow.c (init_propagate_block_info): Watch out for conditional
5637         branch to next instruction, and thus one outgoing edge.
5638
5639         * config/ia64/ia64.c (ia64_encode_section_info): Exit early
5640         for global register variables; don't special case __[CD]TOR_LIST__;
5641         mind ggc_p for string allocation.
5642
5643 2000-05-08  Nick Clifton  <nickc@cygnus.com>
5644
5645         * config/i386/i386.h (ELIMINABLE_REGS): Fix comment.
5646
5647 2000-05-08  Bruce Korb  <bkorb@gnu.org>
5648
5649         * fixinc/mkfixinc.sh:  fixinc.sco is no longer used
5650         i?86-*-msdosdjgpp* no longer uses fixincludes
5651         * fixinc/genfixes:  inclhack.sh and fixincl.sh are no longer generated
5652         * fixinc/inclhack.sh:  deleted
5653         * fixinc/hackshell.tpl:  deleted
5654         * fixinc/inclhack.tpl:  deleted
5655         * fixinc/Makefile.in:  Remove dependencies on above
5656         * fixinc/fixincl.sh:  "DO NOT EDIT" text modified
5657
5658 2000-05-08  Andreas Jaeger  <aj@suse.de>
5659
5660         * config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
5661         support.
5662
5663 2000-05-07  Zack Weinberg  <zack@wolery.cumb.org>
5664
5665         * Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
5666         substitutions.
5667
5668 Sun  7 May 08:43:53 2000  Neil Booth  <NeilB@earthling.net>
5669
5670         * cpplex.c: Move new lexer definitions and prototypes
5671         to top.  Conditional include these and the code if
5672         NEW_LEXER is defined.  Rename functions whose names
5673         clash if this code included.
5674
5675 Sun May  7 00:54:57 EDT 2000  John Wehle  (john@feith.com)
5676
5677         * rtl.def (COND_EXEC): Clarify.
5678
5679         * i386.md (extendsidi2): Clobber (reg:CC 17) in the
5680         same fashion as zero_extendsidi2.
5681
5682 2000-05-06  Richard Henderson  <rth@cygnus.com>
5683
5684         * config/ia64/ia64.c (predicate_operator): New.
5685         (ia64_print_operand): Handle 'J'.
5686         (rtx_needs_barrier): Handle COND_EXEC.
5687         * config/ia64/ia64.h (BRANCH_COST): Define.
5688         (PREDICATE_CODES): Update.
5689         * config/ia64/ia64.md: Docuement used unspec values.
5690         (attr predicable): New.
5691         (movxf, movxf_internal): New.
5692         (extendsfdf2): Don't comment out nop.
5693         (floatdidf2): Remove.
5694         (truncxfsf2, truncxfdf2, floatdixf2): New.
5695         (abssi2, absdi2): Put the neg in the "true" slot.
5696         (conditional branch instructions): Mark not predicable.
5697         (cmov*_internal): Use predicate_operator.  Split to cond_exec.
5698         (abs*_internal): Likewise.
5699         (alloc, set_bsp): Mark not predicable.
5700         (barrier, insn_group_barrier, flush_cache): Likewise.
5701         (define_cond_exec): New.
5702
5703 2000-05-06  Richard Henderson  <rth@cygnus.com>
5704
5705         * c-decl.c: Include "tm_p.h".
5706
5707         * config/ia64/ia64-protos.h: Rearrange decls to reduce ifdef madness.
5708         (fetchadd_operand, ia64_expand_fetch_and_op): Declare.
5709         (ia64_expand_op_and_fetch): Declare.
5710         * config/ia64/ia64.c: Include "toplev.h".  Kill trailing whitespace.
5711         (setjmp_operand): Constify variables for XSTR.
5712         (ia64_encode_section_info): Likewise.
5713         (ia64_print_operand): Use %d for exact_log2; cast 32-bit printed
5714         values to int.
5715         (ia64_asm_output_external): Constify name.
5716         (process_set): Use HOST_WIDE_INT_PRINT_DEC for frame size.
5717         (process_for_unwind_directive): Provide switch default.
5718         (ia64_expand_compare_and_swap): Remove unused variables.
5719         (ia64_expand_builtin): Likewise.
5720         * config/ia64/ia64.h (ASM_OUTPUT_BYTE): Mask and cast value to int
5721         for printing.
5722
5723         * config/ia64/ia64.c (sdata_symbolic_operand): Mark unused args.
5724         (symbolic_operand, function_operand, setjmp_operand): Likewise.
5725         (shift_count_operand, shift_32bit_count_operand): Likewise.
5726         (shladd_operand, fetchadd_operand, ia64_function_prologue): Likewise.
5727         (ia64_function_epilogue, ia64_setup_incoming_varargs): Likewise.
5728         (ia64_function_arg_partial_nregs, ia64_function_value): Likewise.
5729         (ia64_print_operand_address, ia64_secondary_reload_class): Likewise.
5730         (ia64_expand_builtin): Likewise.
5731         (call_multiple_values_operation): Make dest_regno unsigned.
5732
5733 2000-05-06  Richard Henderson  <rth@cygnus.com>
5734
5735         * rtl.def (DEFINE_COND_EXEC): New.
5736         * md.texi: Document it.
5737
5738         * gensupport.c (input_file): Remove.
5739         (struct queue_elem): Add lineno.
5740         (rtx_ready_queue): Remove.
5741         (errors): New.
5742         (predicable_default): New.
5743         (predicable_true, predicable_false): New.
5744         (define_attr_queue, define_attr_tail): New.
5745         (define_insn_queue, define_insn_tail): New.
5746         (define_cond_exec_queue, define_cond_exec_tail): New.
5747         (other_queue, other_tail): New.
5748         (queue_pattern): New.
5749         (process_rtx): Add patterns to the appropriate queues.
5750         (is_predicable, identify_predicable_attribute): New.
5751         (n_alternatives, collect_insn_data): New.
5752         (alter_predicate_for_insn, alter_test_for_insn): New.
5753         (shift_output_template, alter_output_for_insn): New.
5754         (process_one_cond_exec, process_define_cond_exec): New.
5755         (init_md_reader): Read the entire file.  Process define_cond_exec.
5756         (read_md_rtx): Return elements from the queues.
5757
5758 2000-05-06  Richard Henderson  <rth@cygnus.com>
5759
5760         * flow.c (mark_set_1): Don't update conditional life info
5761         if the register is not_dead.
5762
5763 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
5764
5765         * Makefile.in (STAGESTUFF): Add genrtl.c and genrtl.h.
5766         (mostlyclean): Also delete fixincl, fixinc.sh, and
5767         specs.ready, and make clean in the fixinc subdir.
5768
5769 2000-05-06  Richard Henderson  <rth@cygnus.com>
5770
5771         * Makefile.in (gensupport.o): Compile for the host.
5772         (host-prefix gensuuprt.o): Remove.
5773         (genflags.o): Depend on gensupport.h and OBSTACK_H.
5774         (genattrtab.o): Likewise.
5775         (gencodes.o): Depend on gensupport.h.
5776         (genemit.o, genopinit.o, genrecog.o, genextract.o): Likewise.
5777         (genpeep.o, genattr.o, genoutput.o): Likewise.
5778
5779         * gensupport.c (obstack, rtl_obstack): New.
5780         (init_md_reader): Initialize rtl_obstack.
5781         * gensupport.h (rtl_obstack): Declare.
5782         (message_with_line): Declare.
5783
5784         * genattr.c: Remove all traces of obstack manipulation.
5785         * gencodes.c, genconfig.c, genemit.c, genextract.c: Likewise.
5786         * genopinit.c, genoutput.c, genpeep.c, genrecog.c: Likewise.
5787
5788         * genattrtab.c (obstack, rtl_obstack): Remove.
5789         (main): Don't init rtl_obstack.
5790         * genflags.c: Likewise.
5791
5792         * genrecog.c (message_with_line): Move ...
5793         * gensupport.c: ... here.
5794
5795 2000-05-06  Richard Henderson  <rth@cygnus.com>
5796
5797         * c-typeck.c (build_c_cast): Remove dead code.
5798
5799 2000-05-06  Richard Henderson  <rth@cygnus.com>
5800
5801         * flow.c (split_edge): Don't allocate global_live_at_start for
5802         the new block unless the old blocks had them as well.
5803
5804         * flow.c (mark_set_1): Respect not_dead when updating reg_live.
5805
5806         * ifcvt.c (noce_process_if_block): Don't use an insn_b from
5807         test_bb if a or b uses x.
5808
5809 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
5810
5811         * cpphash.h: Remove conditional #define of __extension__.
5812         * rtl.h: Add __extension__ to RTL_CHECK1, RTL_CHECK2,
5813         RTL_CHECKC1, RTL_CHECKC2, and RTVEC_ELT macros
5814         (ENABLE_RTL_CHECKING only).
5815         * tree.h: Add __extension__ to TREE_CHECK, TREE_CLASS_CHECK,
5816         CST_OR_CONSTRUCTOR_CHECK, and EXPR_CHECK macros
5817         (ENABLE_TREE_CHECKING only).
5818         * varray.h: Add __extension__ to VARRAY_CHECK macro
5819         (ENABLE_CHECKING only).
5820
5821 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5822
5823         Use new tail-calling mechanism on ARM.
5824         * arm.md (sibcall, sibcall_value): New expands.
5825         (sibcall_insn, sibcall_value_insn, sibcall_epilogue): New insns.
5826         (tailcalling peepholes): Delete.
5827         (push_multi): Simplify.
5828         * arm.c (lr_save_eliminated): Delete definition.
5829         (pattern_really_clobbers_lr, function_really_clobbers_lr): Delete.
5830         (output_return_instruction): Remove checks on lr_save_eliminated.
5831         (output_arm_prologue): Remove old tail-calling code.
5832         (arm_output_epilogue): New parameter, really_return.  All callers
5833         changed.  Handle tail-calling epilogues.
5834         * arm.h (lr_save_eliminated): Delete declaration.
5835         (frame_pointer_needed): Delete declaration.
5836         * arm-protos.h (arm_output_epilogue): Adjust prototype.
5837
5838         * arm.md (is_thumb): Examine symbol thumb_code, not expression
5839         TARGET_ARM.
5840         * arm.c (thumb_code): Define it.
5841         (arm_override_options): Set it.
5842         * arm.h (thumb_code): Declare it.
5843
5844 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5845
5846         * arm-protos.h (arm_dllexport_name_p, arm_dllimport_name_p): Constify.
5847
5848 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
5849
5850         * arm.c (arm_gen_load_multiple, arm_gen_store_mulitple): Don't add
5851         bogus clobber to insns.
5852         (load_multiple_operation, store_mulitple_operation): Don't check
5853         for it.
5854         * arm.md (ldmsi_postinc, stmsi_postinc): Adjust accordingly.
5855
5856         * arm.md (and_scc, ior_scc): Add missing mode.
5857
5858         * arm.md (call_value_symbol): Remove predicate from op2.
5859
5860         * arm.h (SPECIAL_MODE_PREDICATES): Define.
5861
5862 Sat May  6 06:25:56 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5863
5864         * expr.c (get_subtarget): New function.
5865         (force_operand, expand_expr, do_store_flag): Use it.
5866
5867         * toplev.c (compile_file): Don't take strlen of NAME if null.
5868
5869 2000-05-06  David Edelsohn  <edelsohn@gnu.org>
5870
5871         * xcoffout.c (xcoff_current_include_file,
5872         xcoff_current_function_file, xcoff_lastfile): Constify char *.
5873         (xcoffout_source_file, xcoffout_source_line): Make filename 'const
5874         char *'.
5875         (xcoffout_declare_function): Make name 'const char *'.
5876         (xcoffout_end_epilogue): Make fname 'const char *'
5877         * xcoffout.h (xcoff_current_include_file, xcoff_lastfile,
5878         xcoffout_declare_function, xcoffout_source_line): Match above.
5879
5880         * aix43.h (SUBTARGET_OVERRIDE_OPTIONS): -mpowerpc64 without
5881         -maix64 is error.
5882         * rs6000.c (print_operand): Fix lossage typo.
5883         (output_cbranch): Remove "cr" decoration for now.
5884         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): Make alias 'const char *'.
5885
5886 Sat May  6 06:55:32 2000  Denis Chertykov  <denisc@overta.ru>
5887
5888         * config/avr/avr.c (out_shift_with_cnt): Bugfix for shift by
5889         constant count.
5890
5891 2000-05-05  Bruce Korb  <bkorb@gnu.org>
5892
5893         * fixinc/genfixes: Improve the matching for make target names
5894
5895 2000-05-05  Catherine Moore  <clm@cygnus.com>
5896
5897         * c-common.c (decl_attributes):  For TYPE_DECLs attach the
5898         attribute to the decl.
5899         * c-decl.c (pushdecl): Propagate the USED attribute to the
5900         type copy.
5901
5902 2000-05-05  Richard Henderson  <rth@cygnus.com>
5903
5904         * rtlanal.c (reg_overlap_mentioned_p): Treat parallels in the
5905         same way emit_group_load does.
5906
5907 2000-05-05 Mark Elbrecht <snowball3@bigfoot.com>
5908
5909         * gcc.c (set_input) [HAVE_DOS_STYLE_FILE_SYSTEM]: Skip drive name.
5910
5911         * toplev.c (output_file_directive): Use IS_DIR_SEPARATOR.
5912         (main): Likewise.
5913
5914 2000-05-05 Rodney Brown <RodneyBrown@mynd.com>
5915
5916         * pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
5917
5918 Fri May  5 10:29:21 2000  Marc Espie <espie@cvs.openbsd.org>
5919
5920         * config/openbsd.h (LINK_SPEC): pass correct flags to ld
5921         to support -shared, on platforms with dynamic libraries.
5922
5923 Fri May  5 10:27:06 2000  Philippe De Muyter  <phdm@macqel.be>
5924
5925         * system.h (S_ISBLK): Provide fallback definition.
5926
5927 2000-05-05  Geoff Berry  <geoffb@bops.com>
5928
5929         * extend.texi (Extended Asm): Document inability to give asm
5930         statements access to condition codes.
5931
5932 2000-05-05  Marek Michalkiewicz  <marekm@linux.org.pl>
5933
5934         * varasm.c (asm_emit_uninitialised): Use 0, not NULL
5935         as arg 2 of UNIQUE_SECTION.
5936
5937 Fri May  5 10:11:41 2000  Jeffrey A Law  (law@cygnus.com)
5938
5939         * predict.c: Remove May 4 change.
5940         * bb-reorder.c (make_reorder_chain): Do not perform block movement
5941         if we have predicted the branch at 50-50 probability.
5942
5943 2000-05-05  Richard Henderson  <rth@cygnus.com>
5944
5945         * flow.c (init_propagate_block_info): Fix merge error
5946         in HAVE_conditional_execution code.
5947
5948 Fri May  5 07:43:50 2000  Denis Chertykov  <denisc@overta.ru>
5949
5950         * config/avr/avr.c (out_shift_with_cnt): Genetare a more optimal
5951         shift cycle for unknown shift count. Also generates dec + brpl.
5952         (ashlqi3_out): Don't generate dec + brpl which now generates by
5953         `out_shift_with_cnt'.
5954         (ashlhi3_out): Likewise.
5955         (ashlsi3_out): Likewise.
5956         (ashrqi3_out): Likewise.
5957         (ashrhi3_out): Likewise.
5958         (ashrsi3_out): Likewise.
5959         (lshrqi3_out): Likewise.
5960         (lshrhi3_out): Likewise.
5961         (lshrsi3_out): Likewise.
5962
5963 2000-05-04 Mark Elbrecht <snowball3@bigfoot.com>
5964
5965         * gcc.c (free_split_directories): Correct typo in explanation
5966         of make_relative_prefix.
5967
5968 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
5969
5970         * config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point
5971         comparison codes to branch_comparison_operator.
5972
5973 2000-05-04  Richard Henderson  <rth@cygnus.com>
5974
5975         * ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
5976
5977 2000-05-04  Richard Henderson  <rth@cygnus.com>
5978
5979         * Makefile.in (FPBIT_FUNCS): Remove _df_to_usi.
5980         (DPBIT_FUNCS): Remove _sf_to_usi.
5981         (stmp-multilib): Pass LIB1ASMSRC to libgcc.mk.
5982
5983         * ifcvt.c (noce_process_if_block): Fail if A or B modified
5984         between condition and jump.
5985
5986         * libgcc2.c (near eh_context_specific): Comment #endif string.
5987         * longlong.h: Don't use strings with embedded newlines.
5988
5989 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
5990
5991         * config/rs6000/rs6000-protos.h: Add output_cbranch.
5992         * config/rs6000/rs6000.c (ccr_bit_negated_p): Delete.
5993         (print_operand): Delete %t and %T codes.
5994         (output_cbranch): New function.  Support branch prediction.
5995         * config/rs6000/rs6000.md: Use output_cbranch for
5996         conditional branches and returns.
5997
5998 2000-05-04  Jason Merrill  <jason@casey.cygnus.com>
5999
6000         * simplify-rtx.c (simplify_ternary_operation): Cast to unsigned.
6001         * stor-layout.c (place_field): Likewise.
6002         * integrate.h (struct inline_remap): Make regno_pointer_align unsigned.
6003         * expr.c (store_expr): Make align unsigned.
6004         * explow.c (plus_constant_wide): Make low words unsigned.
6005         * expmed.c (choose_multiplier): Likewise.
6006         * fold-const.c (fold):  Likewise.
6007         * tree.h (build_int_2): Likewise.
6008         * tree.c (build_int_2_wide, tree_int_cst_msb): Likewise.
6009         * emit-rtl.c (gen_reg_rtx): Add cast to unsigned char*.
6010         (init_emit): Change cast to unsigned char*.
6011         * varasm.c (compare_constant_1): Add cast to char*.
6012         * gcse.c (delete_null_pointer_checks): Change cast to unsigned int*.
6013         * reload1.c (reload): Likewise.
6014
6015         * rtl.h (MEM_SET_IN_STRUCT_P): Use do { } while (0).
6016
6017 Thu May  4 14:37:23 2000  Jeffrey A Law  (law@cygnus.com)
6018
6019         * predict.c (estimate_probability): If no prediction was found, then
6020         predict the successor that is the next physical block (if such a
6021         successor exists).
6022
6023 2000-05-04  Richard Henderson  <rth@cygnus.com>
6024
6025         * config/alpha/t-alpha (LIB2FUNCS_EXTRA): Use qrrnd.asm in place.
6026
6027 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6028
6029         * system.h: Don't wrap <sys/types.h> with HAVE_SYS_TYPES_H.
6030
6031 2000-05-04  Mumit Khan  <khan@xraylith.wisc.edu>
6032
6033         * i386/cygwin.h (CPP_PREDEFINES): Don't define __STDC__. Move
6034         attribute macros from here ...
6035         (CPP_SPEC): to here.
6036         * i386/mingw32.h (CPP_PREDEFINES): Likewise.
6037         (CPP_SPEC): Likewise.
6038         * i386/crtdll.h (CPP_PREDEFINES): Delete attribute macros.
6039
6040         * Makefile.in ($(HOST_PREFIX_1)gensupport.o): Add build rule.
6041         (libgcc.a): Pass LIB1ASMSRC to libgcc.mk.
6042
6043 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6044
6045         * bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
6046
6047         * diagnostic (vbuild_message_string, build_message_string,
6048         build_location_prefix, output_get_prefix, init_output_buffer,
6049         output_notice, vline_wrapper_message_with_location,
6050         v_message_with_decl, default_print_error_function): De-constify.
6051         (set_real_maximum_length): Prototype.
6052
6053         * diagnostic.h (struct output_buffer, init_output_buffer,
6054         output_get_prefix, output_set_prefix): De-constify.
6055
6056         * function.c (init_function_start): Constify.
6057
6058         * gensupport.c (remove_constraints, process_rtx): Prototype.
6059
6060         * gthr-posix.h: Indent uses of #pragma.
6061
6062         * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
6063         Prototype.
6064
6065         * predict.c (find_expected_value): Delete prototype.
6066         (expected_value_to_br_prob): Initialize variable `ev_reg'.
6067
6068         * sbitmap.h (debug_sbitmap): Prototype.
6069
6070         * ssa.c (compute_coalesced_reg_partition): Prototype.
6071
6072         * stor-layout.c (debug_rli): Prototype.
6073
6074         * tree.h (round_down): Prototype.
6075         (init_function_start): Constify.
6076
6077 2000-05-04  Zack Weinberg  <zack@wolery.cumb.org>
6078
6079         * cpphash.h: #define __extension__ away if GCC_VERSION < 2095
6080         (overly conservative).  Change extern inline wrappers to
6081         static inline, define them always, use PARAMS properly.
6082         * cpplex.c (_cpp_get_directive_token): Don't issue pedantic
6083         whitespace warnings for \f and \v at the beginning of a line.
6084
6085 Thu May  4 10:03:50 2000  Jeffrey A Law  (law@cygnus.com)
6086
6087         * haifa-sched.c (schedule_insns): Free the flow edge list when it
6088         is no longer needed
6089
6090 2000-05-04  Bruce Korb  <bkorb@gnu.org>
6091
6092         * fixincl/inclhack.def: added broken_cabs -
6093         Remove `extern double cabs' declarations from math.h
6094         * fixincl/inclhack.sh: regen
6095         * fixincl/fixincl.x: regen
6096         * fixincl/fixincl.c: Remove BOGOSITY code
6097         * fixincl/mkfixinc.sh: Remove code for installing "shell" version
6098
6099 Thu May  4 09:45:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6100
6101         * rtl.h (MEM_COPY_ATTRIBUTES): Also copy RTX_UNCHANGING_P and
6102         MEM_ALIAS_SET.
6103         * alias.c (canon_rtx): Don't copy RTX_UNCHANGING_P or MEM_ALIAS_SET
6104         when calling MEM_COPY_ATTRIBUTES.
6105         * emit-rtl.c (operand_subword, change_address): Likewise.
6106         * explow.c (stabilize): Likewise.
6107         * expr.c (protect_from_queue, emit_move_insn_1): Likewise.
6108         * integrate.c (copy_rtx_and_substitute): Likewise.
6109         * combine.c (combine_simplify_rtx): Don't copy RTX_UNCHANGING_P
6110         when calling MEM_COPY_ATTRIBUTES.
6111         (make_extraction, simplify_shift_const, gen_lowpart_for_combine):
6112         Likewise.
6113         * cse.c (gen_lowpart_if_possible): Likewise.
6114         * function.c (fixup_var_refs_1, purge_addressof_1): Likewise.
6115         * optabs.c (gen_move_insn): Likewise.
6116         * recog.c (validate_replace_rtx_1): Likewise.
6117         * simplify-rtx.c (add_mem_for_addr): Likewise.
6118         * stmt.c (expand_anon_union_decl): Likewise.
6119         * config/arm/arm.md: Likewise.
6120         * config/h8300/h7300.c (fix_bit_operand): Likewise.
6121         * config/m88k/m88k.c (legitimize_address, block_move_loop): Likewise.
6122         (block_move_no_loop, block_move_sequence): Likewise.
6123         * config/rs6000/rs6000.c (expand_block_move_mem): Likewise.
6124         * config/alpha/alpha.c (get_aligned_mem): Likewise.
6125         Clear MEM_ALIAS_SET.
6126         * final.c (alter_subreg): Don't copy MEM_ALIAS_SET when calling
6127         MEM_COPY_ATTRIBUTES.
6128
6129 2000-05-03  Robert Lipe <robertlipe@usa.net>
6130
6131         * configure.in (i[34567]86-*-isc*) [tmake_file]: Add t-i386bare
6132         to suppress libgcc1.
6133         (i[34567]86-*-sco3.2v5*) Likewise.
6134         (i[34567]86-*-sco3.2v4*) Likewise.
6135         (i[34567]86-*-sco) Likewise.
6136         (i[34567]86-*-solaris2) Likewise.
6137         (i[34567]86-*-sysv5*) Likewise.
6138         (i[34567]86-*-sysv4*) Likewise.
6139         (i[34567]86-*-udk*) Likewise.
6140         (i[34567]86-*-sysv*) Likewise.
6141
6142 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
6143
6144         * cpphash.h (U): New define, to correct type of string constants.
6145         (ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr): New wrapper
6146         routines, to do casts when passing unsigned strings to libc.
6147         * cppexp.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c: Use them.
6148
6149         * cppfiles.c (_cpp_execute_include): Make filename an U_CHAR *.
6150         * cpphash.c (_cpp_quote_string): Make string an U_CHAR *.
6151         * cppinit.c (dump_special_to_buffer): Make macro name an U_CHAR *.
6152         * cpplex.c (parse_ifdef, parse_include, validate_else): Make
6153         second argument an U_CHAR *.
6154
6155         * cppinit.c (builtin_array): Make name and value U_CHAR *, add
6156         length field, clean up initializer.
6157         (ISTABLE): Add __extension__ to designated-
6158         initializers version.
6159         * cpplex.c (CHARTAB): Likewise.
6160
6161         * mbchar.c: Add dummy external declaration to the !MULTIBYTE_CHARS
6162         case so the file won't be empty.
6163
6164 Wed May  3 21:01:46 2000  Jason Eckhardt  <jle@cygnus.com>
6165
6166         * bb-reorder.c (struct reorder_block_def): Member succ removed.
6167         (REORDER_BLOCK_SUCC): Removed.
6168         (enum reorder_skip_type): Removed.
6169         (skip_insns_between_block): Renamed to skip_insns_after_block.
6170         Removed second argument. Removed dead code and cleaned up.
6171         (make_reorder_chain): Removed use of REORDER_BLOCK_SUCC.
6172         (reorder_basic_blocks): Remove use of REORDER_SKIP_AFTER. Removed
6173         second parameter to skip_insns_after_block.
6174
6175 Wed May  3 13:29:54 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6176
6177         * tree.c (staticp, case LABEL_DECL): New case.
6178
6179 2000-05-03  Richard Henderson  <rth@cygnus.com>
6180
6181         * Makefile.in (start.encap): Do not depend on LIBGCC1.
6182
6183         * mklibgcc1.in: Fix typo last change.
6184
6185 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
6186
6187         * Makefile.in (WARN_CFLAGS): Add -pedantic -Wno-long-long.
6188         (LOOSE_CFLAGS): New: CFLAGS without -pedantic and -Wtraditional.
6189         (GCC_CFLAGS): Use it.
6190         (LANG_FLAGS_TO_PASS): New: SUBDIR_FLAGS_TO_PASS with LOOSE_CFLAGS.
6191         * cp/Make-lang.in, java/Make-lang.in, f/Make-lang.in, ch/Make-lang.in,
6192         objc/Make-lang.in: Use it.
6193
6194 2000-05-03  Jason R Thorpe  <thorpej@zembu.com>
6195
6196         * config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint.
6197
6198 2000-05-03  Richard Henderson  <rth@cygnus.com>
6199
6200         * mklibgcc.in: Restrict OLDCC=GCC test to native.  Equate
6201         LIBGCC1 empty with libgcc1.null.
6202
6203 Wed May  3 12:55:46 2000  Jim Wilson  <wilson@cygnus.com>
6204
6205         * fold-const.c (extract_muldiv, case MAX_EXPR): Don't allow signedness
6206         change.
6207
6208 2000-05-03  Greg McGary  <gkm@gnu.org>
6209
6210         * tree.h (tree_common): Add bounded_flag member.  Remove
6211         inaccurate comment about number of remaining bits.
6212         (BOUNDED_INDIRECT_TYPE_P, BOUNDED_POINTER_TYPE_P,
6213         BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
6214         MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
6215         TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
6216         TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED): New macros.
6217         (TYPE_QUAL_BOUNDED): New constant.
6218         (TYPE_QUALS): Handle bounded qualifier.
6219         (TREE_EXPR_QUALS, TREE_FUNC_QUALS): New macros.
6220         (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
6221         TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
6222         TYPE_AMBIENT_BOUNDEDNESS): New macros.
6223         (MAX_POINTER_DEPTH, VA_LIST_POINTER_DEPTH): New constants.
6224         (tree_type): Add pointer_depth member.  Remove
6225         inaccurate comment about number of remaining bits.
6226         (DECL_POINTER_DEPTH): Add macro.
6227         (tree_decl): Add pointer_depth member.
6228
6229 Wed May  3 22:52:53 2000  Denis Chertykov  <denisc@overta.ru>
6230
6231         * config/avr/avr-protos.h (test_hard_reg_class): Declared.
6232         * config/avr/avr.c (ashrhi3_out): optimized shift by 15.
6233         (lshrhi3_out): Likewise.
6234         (ashrsi3_out): bugfix in shift by 8.
6235         (test_hard_reg_class): New function.
6236         * config/avr/avr.md: Bugfix inside conditions in peepholes.
6237         (ashlhi3): removed define_expand of this pattern.
6238         (*ashlhi3_insn): renamed to ashlhi3.
6239         (ashlsi3): removed define_expand of this pattern.
6240         (*ashlsi3_insn): renamed to ashlsi3.
6241         (ashrqi3): removed define_expand of this pattern.
6242         (*ashrqi3_insn): renamed to ashrqi3.
6243         (ashrhi3): removed define_expand of this pattern.
6244         (*ashrhi3_insn): renamed to ashrhi3.
6245         (ashrsi3): removed define_expand of this pattern.
6246         (*ashrsi3_insn): renamed to ashrsi3.
6247         (lshrhi3): removed define_expand of this pattern.
6248         (*lshrhi3_insn): renamed to lshrhi3.
6249         (lshrsi3): removed define_expand of this pattern.
6250         (*lshrsi3_insn): renamed to lshrsi3.
6251
6252 2000-05-03  Rodney Brown  <RodneyBrown@pmsc.com>
6253
6254         * config/mcore/mcore.c: Replacing inclusion of "stdio,h" with
6255         inclusion of "system.h".
6256
6257 Wed May  3 11:43:53 2000  Jim Wilson  <wilson@cygnus.com>
6258
6259         * config/ia64/ia64.c (ia64_encode_section_info): Add check for
6260         TREE_ASM_WRITTEN.
6261
6262 2000-05-03  David Mosberger  <davidm@hpl.hp.com>
6263
6264         * config/ia64/ia64.c (ia64_override_options): Force -mconstant-gp
6265         if -mauto-pic is on.
6266         (ia64_epilogue_uses): Mark "gp" (r1) as used by the epilogue if
6267         -mconstant-gp is in effect and function-descriptors are being used
6268         to make indirect calls.
6269         * config/ia64/ia64.h (MASK_CONST_GP): New macro.
6270         (MASK_AUTO_PIC): Ditto.
6271         (TARGET_CONST_GP): Ditto.
6272         (TARGET_AUTO_PIC): Ditto.
6273         (TARGET_SWITCHES): Add -mconstant-gp and -mauto-pic options.
6274         (ASM_OUTPUT_DOUBLE_INT): Don't generate @fptr() if -mauto-pic or
6275         -mno-pic is in effect.
6276         (ASM_OUTPUT_XDATA_DOUBLE_INT): Ditto.
6277         * config/ia64/ia64.md (movdi): Use gen_load_gprel64() if
6278         -mauto-pic is in effect.
6279         (gprel64_offset): New pattern.
6280         (load_gprel64): Ditto.
6281         (call): Handle -mauto-pic like -mno-pic (don't use fptr).  If
6282         -mconstant-gp is in effect, no need to preserve gp around direct
6283         calls.
6284         (call_value): Ditto.
6285         * config/ia64/linux.h (PROFILE_BEFORE_PROLOGUE): Define.
6286         (FUNCTION_PROFILER): Define.
6287         * config/ia64/sysv4.h (ASM_OUTPUT_CONSTRUCTOR): Don't generate
6288         @fptr() directive when -mno-pic or -mauto-pic is in effect.
6289         (ASM_OUTPUT_DESTRUCTOR): Ditto.
6290
6291 2000-05-03  Richard Henderson  <rth@cygnus.com>
6292
6293         * Makefile.in (STAGESTUFF): Add libgcc libgcc.mk.
6294         (libgcc1.null, libgcc1.cross, libgcc1.a): Remove targets.
6295         (libgcc1-asm.a, libgcc1.S, libgcc2.a): Remove targets.
6296         (mklibgcc, libgcc.mk): New targets.
6297         (libgcc.a): Use libgcc.mk.
6298         (stmp-multilib): Likewise.
6299         (stmp-multilib-sub): Remove.
6300         (mostlyclean): Don't delete libgcc2 temp files.
6301         * configure.in (AC_PROG_CC_C_O): Add.
6302         (NO_MINUS_C_MINUS_O): Substitute it.
6303         (all_outputs): Add mklibgcc.
6304         * mklibgcc.in: New file.
6305
6306 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
6307
6308         * cppexp.c (op_t): Make an int.
6309
6310         * rtlanal.c (dead_or_set_regno_p): Remove unused variable.
6311
6312         * varasm.c (initializer_constant_valid_p): Fix parenthesis.
6313
6314         * gensupport.c (process_rtx): Fix macros used.
6315
6316 2000-05-03  Richard Henderson  <rth@cygnus.com>
6317
6318         * flow.c (propagate_one_insn): Also don't PROP_REG_INFO for
6319         call-clobbered registers of a call.
6320
6321 Wed May  3 12:40:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
6322
6323         * gensupport.c: New file.
6324         * gensupport.h: New file.
6325         * Makefile.in (HOST_RTL): Depend on gensupport.
6326         (gensupport.o) New rule.
6327         * genattr.c: Use gensupport for reading .md files.
6328         * genattrtab.c: Ditto.
6329         * gencodes.c: Ditto.
6330         * genconfig.c: Ditto.
6331         * genemit.c: Ditto.
6332         * genextract.c: Ditto.
6333         * genflags.c: Ditto.
6334         * genopinit.c: Ditto.
6335         * genoutput.c: Ditto.
6336         * genpeep.c: Ditto.
6337         * genrecog.c: Ditto.
6338         * rtl.def (define_insn_and_split): New DEF_RTL_EXPR.
6339         * md.texi (Insn Splitting): Document define_insn_and_split.
6340
6341 Tue May  2 00:20:30 2000  Jason Eckhardt  <jle@cygnus.com>
6342
6343         * flow.c (verify_flow_info): Added two more sanity checks. The
6344         first checks that the blocks are numbered consecutively. The second
6345         checks that n_basic_blocks is actually equal to the number of
6346         basic blocks in the insn chain.
6347
6348 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
6349
6350         * cpplib.h: Add accessor macros for token lists.
6351         * cpplib.c, cpphash.c, cpplex.c: Use them.
6352
6353 Wed May  3 09:29:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6354
6355         * expr.c (expand_expr, case COMPONENT_REF): Don't check for checking
6356         memory usage if not in a function.
6357         * varasm.c (initializer_constant_valid_p, case ADDR_EXPR): Only
6358         return address if static.
6359
6360 Wed May  3 13:14:49 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6361
6362         * ifcvt.c (noce_try_cmove_arith):  Use may_trap_p to thest
6363         whether address may trap.
6364
6365 Tue May  2 23:38:37 2000  Jason Eckhardt  <jle@cygnus.com>
6366
6367         * bb-reorder (chain_reorder_blocks): Changed code to test for
6368         EDGE_FALLTHRU rather than making erroneous assumption that the
6369         first outgoing edge is the fall-through edge.
6370
6371 Tue May  2 18:20:31 2000  Donald Lindsay  <dlindsay@hound.cygnus.com>
6372
6373         * config/mips/mips.c (mips_build_va_list,mips_va_start,mips_va_arg): new
6374         ABI for varargs, across all MIPS. This is incompatible because the
6375         va_list (__builtin_va_list) structure is different, so a compilation
6376         unit passing a va_list and a compilation unit being passed one, should
6377         both be compiled with the same ABI. (The old structure had two
6378         pointers, now it has three.)
6379
6380 Tue May  2 19:18:43 2000  Jason Eckhardt  <jle@cygnus.com>
6381
6382         * bb-reorder.c (struct reorder_block_def): Remove members end,
6383         block_begin, and block_end.
6384         (REORDER_BLOCK_OLD_END): Delete.
6385         (REORDER_BLOCK_BEGIN): Delete.
6386         (REORDER_BLOCK_END): Delete.
6387         (chain_reorder_blocks): Remove dead code.
6388
6389 Tue May  2 17:06:53 2000  Jason Eckhardt  <jle@cygnus.com>
6390
6391         * bb-reorder.c (remove_scope_notes): Check for both types of scope
6392         notes as the end of a basic block before deleting.
6393
6394 2000-05-02  Mumit Khan  <khan@xraylith.wisc.edu>
6395
6396         * final.c (final_start_function): Fix spelling of "necessary".
6397
6398 2000-05-02  Jason Merrill  <jason@casey.cygnus.com>
6399
6400         * toplev.c (debug_ignore_block): Return int.
6401         * dwarf2out.c (dwarf2out_ignore_block): Likewise.
6402         * toplev.h, dwarf2out.h: Adjust.
6403         * emit-rtl.c (remove_unnecessary_notes): Test return value.
6404
6405         * emit-rtl.c (remove_unnecessary_notes): Fix spelling of "necessary".
6406         * toplev.c, final.c, rtl.h: Adjust.
6407
6408 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6409
6410         * aclocal.m4 (gcc_AC_CHECK_PROG_VER): New macro.
6411         * configure.in: Look for makeinfo in the unified tree, then
6412         for a system makeinfo which is sufficiently new.
6413         * Makefile.in: If configure says makeinfo is too old, don't
6414         build or install Info documentation.
6415
6416 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6417
6418         * cpphash.c (collect_params): Fix off-by-one error.
6419         (dump_hash_helper): Dump all four macro nodetypes.
6420
6421 2000-05-02  Jakub Jelinek  <jakub@redhat.com>
6422
6423         * cpphash.c (trad_stringify): Adjust p after stringification as
6424         well.
6425
6426 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
6427
6428         * cpplib.h (CPP_POP, parse_cleanup_t): Delete.
6429         (cpp_buffer): Remove cleanup, seen_eof, manual_pop members.
6430
6431         * cppfiles.c (file_cleanup): Delete.
6432         * cpphash.c (macro_cleanup): Delete.
6433         (collect_objlike_expansion, collect_funlike_expansion,
6434         macarg, scan_arguments): Remove CPP_POP case.
6435
6436         * cpplex.c (null_cleanup): Delete.
6437         (cpp_pop_buffer): Do the work that was done in the cleanups
6438         here.  Call _cpp_unwind_if_stack from here.
6439         (_cpp_expand_to_buffer, cpp_scan_buffer_nooutput,
6440         cpp_scan_buffer): Run until we see CPP_EOF and the top of
6441         stack is the buffer _below_ the one we stacked.
6442         (cpp_get_token): Always pop an exhausted buffer.  Return
6443         CPP_EOF unless it's a macro buffer.  Don't call _cpp_handle_eof.
6444         * cpplib.c (skip_if_group): Don't call cpp_get_token to
6445         increment the line number.
6446         (_cpp_handle_eof): Rename to _cpp_unwind_if_stack.
6447
6448         * fix-header.c (read_scan_file) [parsing getchar()]: Run until
6449         we see CPP_EOF and the top of stack is the buffer _below_ the
6450         one we stacked.
6451         * scan-decls.c: Likewise.
6452
6453 2000-05-02  Andrew Haley  <aph@cygnus.com>
6454
6455         * config/ia64/ia64.c (ia64_encode_section_info): Handle the case
6456         where this function is called for the second time on a decl that
6457         has had its section info changed in such a way as to move it out
6458         of small data/bss.
6459         * config/ia64/ia64.h (REDO_SECTION_INFO_P): New definition.
6460
6461 2000-05-01  Richard Henderson  <rth@cygnus.com>
6462
6463         * ifcvt.c (dead_or_predicable): Set merge_bb->end to the insn before
6464         the sequence we're moving, not to merge_bb->head.
6465
6466 2000-05-01  Richard Henderson  <rth@cygnus.com>
6467
6468         * configure.in (alpha*-*-linux-gnulibc1*) [tmake_file]: Remove
6469         reference to alpha/t-linux.
6470         (alpha*-*-linux-gnu*): Likewise.
6471         * configure: Rebuild.
6472
6473         * calls.c (expand_call): Don't emit reg notes for a sibcall.
6474
6475         * flow.c (calculate_global_regs_live): Skip for_each_successor_phi
6476         if not in SSA form.
6477
6478         * ifcvt.c (if_convert): Only verify_flow_info if ENABLE_CHECKING.
6479
6480 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
6481
6482         * integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and
6483         TREE_THIS_VOLATILE.
6484
6485 2000-05-01  Richard Henderson  <rth@cygnus.com>
6486
6487         * ifcvt.c (noce_emit_cmove): Conditionally compile call to
6488         emit_conditional_move.
6489
6490 2000-05-01  Jakub Jelinek  <jakub@redhat.com>
6491
6492         * config/ia64/linux.h (LINK_SPEC): Use /lib/ld-linux-ia64.so.1
6493         as the dynamic linker.
6494
6495 2000-05-01  Zack Weinberg  <zack@wolery.cumb.org>
6496
6497         * cppfiles.c (open_include_file): Open file in blocking mode.
6498         (read_include_file): Don't fcntl(fd, F_SETFL, 0) anymore.
6499         Only exclude block devices and directories.
6500
6501         * cpphash.c (_cpp_make_hashnode): Rename make_HASHNODE, now
6502         static.  Allocate the hashnode and its string in the same
6503         block of memory.
6504         (del_HASHNODE): Don't free h->name.
6505         (_cpp_lookup): If there is no entry for this string, create
6506         one, of type T_VOID.
6507         (_cpp_lookup_slot): Delete.
6508         * cpphash.h: Update prototypes.
6509
6510         * cpplex.c (maybe_macroexpand): Check for hp->type == T_VOID,
6511         not hp == NULL.
6512         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert,
6513         do_unassert, cpp_defined): Use _cpp_lookup.  Don't create a
6514         node here, just fill in the value field properly.  "Delete"
6515         entries by setting the value field to T_VOID.  Check for
6516         hp->type == T_VOID, not hp == NULL.
6517
6518         * Makefile.in (cpplib.o): Don't depend on $(HASHTAB_H).
6519         * cpperror.c, cppexp.c, cpplex.c, cpplib.c:  Don't include
6520         hashtab.h.
6521
6522 2000-05-01  Alexandre Oliva  <aoliva@cygnus.com>
6523
6524         * config/mn10300/mn10300.c (print_operand_address): Do not add
6525         zero to SP.
6526
6527         * config/mn10300/mn10300.c (expand_epilogue): If SP is to be
6528         adjusted by less than 256 bytes, use ret regardless of having any
6529         callee-saved register to restore.
6530
6531 2000-05-01 Laurynas Biveinis <lauras@softhome.net>
6532
6533         * tm.texi (TARGET_HAS_F_SETFLKW): Fix typo.
6534
6535 2000-05-01 Mark Elbrecht <snowball3@bigfoot.com>
6536
6537         * config/i386/djgpp.h (INT_ASM_OP): Define.
6538         (CPP_PREDEFINES): Rename MSDOS to __MSDOS__.
6539         (ASM_WEAKEN_LABEL): Define.
6540         (MASK_BNU210): Define.
6541         (SUBTARGET_SWITCHES): Define.
6542         (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Define.
6543         (MAKE_DECL_ONE_ONLY): Define.
6544         (UNIQUE_SECTION_P, UNIQUE_SECTION): Define.
6545
6546 2000-05-01  Mumit Khan  <khan@xraylith.wisc.edu>
6547
6548         * i386/cygwin.h (INT_ASM_OP): Define.
6549
6550 Mon May  1 18:20:06 2000  Denis Chertykov  <denisc@overta.ru>
6551
6552         * config/avr/avr.c (address_cost): renamed to avr_address_cost.
6553         * config/avr/avr.h (ADDRESS_COST): use avr_address_cost.
6554
6555 Mon May  1 17:50:44 2000  Denis Chertykov  <denisc@overta.ru>
6556
6557         * config/avr/avr.c (asm_file_start): output 0 as r0 and 1 as r1 in
6558         __tmp_reg__ and __zero_reg__ initialization.
6559
6560 2000-04-30  Richard Henderson  <rth@cygnus.com>
6561
6562         * flow.c (propagate_one_insn): Mark sets even when the insn is dead.
6563
6564         * ifcvt.c (noce_process_if_block): Fail the conversion if X is
6565         referenced bewteen the condition and the jump.  Don't delete
6566         anything but the jump.
6567
6568 Sun Apr 30 22:48:24 2000  Jason Eckhardt  <jle@cygnus.com>
6569
6570         * bb-reorder.c (scope_def): New struct.
6571         (scope_forest_info): New struct.
6572         (struct reorder_block_def): New member "scope".
6573         (REORDER_BLOCK_SCOPE): New macro.
6574         (relate_bbs_with_scopes): New function and prototype.
6575         (make_new_scope): Likewise.
6576         (build_scope_forest): Likewise.
6577         (remove_scope_notes): Likewise.
6578         (insert_intra_1): Likewise.
6579         (insert_intra_bb_scope_notes): Likewise.
6580         (insert_inter_bb_scope_notes): Likewise.
6581         (rebuild_scope_notes): Likewise.
6582         (free_scope_forest_1): Likewise.
6583         (free_scope_forest): Likewise.
6584         (dump_scope_forest): Likewise.
6585         (dump_scope_forest_1): Likewise.
6586         (chain_reorder_blocks): Set REORDER_BLOCK_SCOPE for new block.
6587         Update REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for new
6588         block.
6589         (reorder_basic_blocks): Added calls to build_scope_scope_forest
6590         and remove_scope_notes before reordering is done. Added calls to
6591         rebuild_scope_notes, free_scope_forest, and reorder_blocks after
6592         after reordering is done.
6593
6594 2000-40-30  Bruce Korb  <bkorb@gnu.org>
6595
6596         * fixinc/inclhack.def:  Added definitions needed by OSR5,
6597         removed two stale entries (defined away with OLD_CPP).
6598         * fixinc/inclhack.sh: regen
6599         * fixinc/fixincl.x: regen
6600
6601 2000-04-30  Richard Henderson  <rth@cygnus.com>
6602
6603         * ifcvt.c (dead_or_predicable): Manually squeeze non-movable notes
6604         from the last insn in the sequence.
6605
6606 2000-04-30  Zack Weinberg  <zack@wolery.cumb.org>
6607
6608         * cpplex.c (cpp_idcmp): New function.
6609         * cpplib.h: Prototype it.
6610         * scan_decls.c (scan_decls): Use it to inspect token names.
6611         * fix-header.c (read_scan_file): Likewise.  Set system_header_p on
6612         the file being run through the preprocessor.
6613         (check_macro_names): Provide length of token to cpp_defined.
6614
6615         * Makefile.in: Remove stale warning message.
6616
6617         * cppfiles.c (redundant_include_p): Provide length of token to
6618         cpp_defined.
6619         * cpphash.c (_cpp_make_hashnode, _cpp_lookup_slot): Hash
6620         values are unsigned int.
6621         (_cpp_lookup, _cpp_lookup_slot): Do not calculate the length.
6622         (_cpp_lookup_slot): Do not calculate the hash, either.
6623         * cpphash.h: Update prototypes.
6624         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert):
6625         Hashes are unsigned int.  Calculate hash here, pass by value
6626         to _cpp_lookup_slot.
6627
6628 2000-04-30  Bernd Schmidt  <bernds@cygnus.co.uk>
6629
6630         * simplify-rtx.c (check_value_useless): Delete function.
6631         (discard_useless_locs): Don't call it; manage N_USELES_VALUES counter
6632         by hand.
6633         (cselib_invalidate_regno): Likewise.
6634         (cselib_invalidate_mem_1): Likewise.
6635         (references_value_p): Recognize useless values by the fact that they
6636         have no locations.
6637         (discard_useless_values): Likewise.
6638         (cselib_record_set): This may turn a useless value
6639         into a useful one.
6640
6641 2000-04-30  Richard Henderson  <rth@cygnus.com>
6642
6643         * config/d30v: New port.
6644
6645         * configure.in (d30v-*): Set fp format.
6646         * configure: Rebuild.
6647
6648 2000-04-30  Richard Henderson  <rth@cygnus.com>
6649
6650         * ifcvt.c: New file.
6651         * Makefile.in (OBJS): Add it.
6652         (ifcvt.o): New target.
6653         * jump.c (jump_optimize_1): Remove all code related to if-conversion,
6654         and conditional arithmetic.
6655         (find_insert_position): Remove.
6656         * timevar.def (TV_IFCVT, TV_IFCVT2): New.
6657         * toplev.c (DFI_ce, DFI_ce2): New.
6658         (dump_file): Add ce and ce2 dumps.
6659         (rest_of_compilation): Run if_convert a couple o times.  Set
6660         cse_not_expected after cse2.  Don't set no_new_pseudos until
6661         after sched1 or recompute_reg_usage.
6662
6663 2000-04-30  Richard Henderson  <rth@cygnus.com>
6664
6665         * config/alpha/t-crtbe (crtbegin.o): Add "-I.".
6666         (crtend.o, crtbeginS.o, crtendS.o): Likewise.
6667
6668 2000-04-30  Richard Henderson  <rth@cygnus.com>
6669
6670         * flow.c (struct reg_cond_life_info): New.
6671         (struct propagate_block_info): Add reg_cond_dead and reg_cond_reg.
6672         (init_propagate_block_info): Initialize them.
6673         (free_propagate_block_info): Destruct them.
6674         (mark_set_1): Consider conditional life before killing a register.
6675         (mark_regno_cond_dead): New.
6676         (free_reg_cond_life_info): New.
6677         (flush_reg_cond_reg_1, flush_reg_cond_reg): New.
6678         (ior_reg_cond, not_reg_cond, nand_reg_cond): New.
6679         (mark_used_reg): Record conditional life.
6680
6681         * haifa-sched.c (schedule_insns): Disable death counting
6682         sanity check for HAVE_conditional_execution.
6683
6684 2000-04-30  Richard Henderson  <rth@cygnus.com>
6685
6686         * Makefile.in (TIMEVAR_H): New.
6687         (ggc-simple.o, ggc-page.o, toplev.o, timevar.o): Use it.
6688         (timevar.h): Remove rule.
6689
6690 2000-04-29  Richard Henderson  <rth@cygnus.com>
6691
6692         * config/alpha/crtend.asm: Use C comments instead of #.
6693         * config/alpha/crtbegin.asm: Likewise.  Mark __dso_handle hidden.
6694
6695         * config/alpha/elf.h (SELECT_SECTION): Treat CONSTRUCTOR like VAR_DECL.
6696
6697 2000-04-29  Zack Weinberg  <zack@wolery.cumb.org>
6698
6699         * cpphash.h (enum node_type: Take out T_MCONST.
6700         (union hashval): Move into struct hashnode.
6701         (struct hashnode): Pack tighter.  Remove file, line, col
6702         members.
6703         * cpphash.c: Constify most of the macro-definition structures.
6704         (struct definition): Replace by struct object_defn
6705         and struct funct_defn.  Put file, line, column information
6706         here.  All users updated to match.
6707         (_cpp_create_definition, _cpp_macroexpand): Remove special
6708         case for #define WORD OTHERWORD.
6709         * cpplib.c (do_undef): Remove T_MCONST case.
6710
6711         * cpphash.h: Move struct reflist, struct definition, and the
6712         DEFINITION typedef to cpphash.c.  Use 'struct definition *' in
6713         union hashval.  _cpp_free_definition takes a HASHNODE pointer.
6714         * cpphash.c (_cpp_free_definition): Free data pointed to by
6715         MCONST, XCONST, MACRO, and FMACRO nodes properly.
6716         (_cpp_create_definition, del_HASHNODE): Just call
6717         _cpp_free_definition to clear out a hashnode.
6718         * cpplib.c (do_pragma_poison): Likewise.
6719
6720 Sat Apr 29 12:25:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
6721
6722         * config/mn10300/mn10300.h (FIRST_DATA_REGNUM,
6723         LAST_DATA_REGNUM, FIRST_ADDRESS_REGNUM, LAST_ADDRESS_REGNUM,
6724         FIRST_EXTENDED_REGNUM, LAST_EXTENDED_REGNUM): New macros.
6725         (REGNO_SP_P): Redefine in terms of STACK_POINTER_REGNUM.
6726         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_EXTENDED_P,
6727         REGNO_AM33_P): Redefine in terms of the new macros.
6728         (CONDITIONAL_REGISTER_USAGE, REGNO_REG_CLASS): Likewise.
6729         (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
6730         STRUCT_VALUE): Likewise.
6731         (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM,
6732         ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Likewise.  Moved.
6733
6734 Sat Apr 29 01:18:45 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6735
6736         * regmove.c (struct record_stack_memrefs_data): New.
6737         (record_stack_memrefs): New function.
6738         (combine_stack_adjustments_for_block): Use it.
6739
6740 Sat Apr 29 01:15:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6741
6742         * calls.c (calls_function_1):  Propertly handle TREE_LIST expressions;
6743         use special_function_p to detect alloca.
6744
6745 Fri Apr 28 16:30:33 2000  Marc Espie <espie@cvs.openbsd.org>
6746
6747         * gcc.texi: Fixes for makeinfo 4.0 --html.
6748
6749 2000-04-28  Zack Weinberg  <zack@wolery.cumb.org>
6750
6751         * pcp.h: Delete file.
6752
6753 2000-04-28  Kazu Hirata  <kazu@hxi.com>
6754
6755         * h8300.c (function_epilogue): Clean up flags when the last insn
6756         in a function is a barrier.
6757
6758 2000-04-28  Chris Demetriou  <cgd@sibyte.com>
6759
6760         * configure.in (sparc-hal-solaris2*): protect [] glob from
6761         my expansion.
6762         (mips*-*-ecoff*, mips*-*-elf*, mips*-*-*): use MASK_ defines
6763         rather than hard-coded constants in target_cpu_default2.
6764         * configure: Regenerate.
6765
6766 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
6767
6768         * tree.c (get_callee_fndecl): Extract the initial value from
6769         a readonly decl.
6770
6771 2000-04-28  Richard Henderson  <rth@cygnus.com>
6772
6773         * varasm.c (record_constant_1): Record the CODE_LABEL when
6774         taking the address of a LABEL_REF.
6775
6776 2000-04-28  Richard Henderson  <rth@cygnus.com>
6777             Jan Hubicka  <jh@suse.cz>
6778
6779         * calls.c (combine_pending_stack_adjustment_and_call): Return the
6780         adjustment; don't do the stack adjust.
6781         (expand_call): Call compute_argument_block_size right before
6782         allocating the block; update comment; don't do alignment sanity
6783         checking for sibling call; use args_size instead of
6784         unadjusted_args_size before args_size is adjusted.  Use
6785         combine_pending_stack_adjustment_and_call to compute stack adjust
6786         for must_preallocate case.
6787
6788         * expr.c (push_block): Remove shadow `temp' in inner scope.
6789
6790 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
6791
6792         * toplev.c (rest_of_compilation): Call
6793         note_deferral_of_defined_inline_function even if the function
6794         can't be inlined.
6795
6796 2000-04-28  Scott Bambrough  <scottb@netwinder.org>
6797
6798         * cpplex.c (_cpp_scan_line): Fix buffer overwrite.
6799
6800 2000-04-28  Richard Henderson  <rth@cygnus.com>
6801
6802         * toplev.c (rest_of_type_compilation): Fix sdb TIMEVAR typo.
6803
6804 2000-04-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6805
6806         * timevar.c (init_timevar): DeANSIfy function definition.
6807
6808 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
6809
6810         * Makefile.in (timevar.o): Depend on flags.h.
6811         * timevar.c (unused_stack_instances): New variable.
6812         (timevar_push): Take a timevar_stack_def from
6813         unused_stack_instances if available.
6814         (timevar_pop): Push the popped timevar_stack_def onto
6815         unused_stack_instances.
6816         (TIMEVAR_ENABLE): New macro.
6817         (timevar_def): Make standalone a 1-bit field.  Add field used.
6818         (get_time): Rename parameter to now.  Return after clearing it if
6819         not TIMEVAR_ENABLE.
6820         (init_timevar): Do nothing if not TIMEVAR_ENABLE.
6821         (timevar_pop): Likewise.
6822         (timevar_stop): Likewise.
6823         (timevar_push): Likewise.  Mark the timing variable as used.
6824         (timevar_start): Likewise.
6825         (timevar_print): Do nothing if not TIMEVAR_ENABLE.  Don't print
6826         timevars that were never used.
6827
6828 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
6829
6830         * c-common.c (c_apply_type_quals_to_decl): REFERENCE_TYPES are
6831         always TREE_READONLY.
6832
6833 2000-04-27  Ulrich Drepper  <drepper@cygnus.com>
6834
6835         * i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference
6836         for call instruction with mode QImode.
6837
6838 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
6839
6840         * Makefile.in (OBJS): Add timevar.o.
6841         (toplev.o): Depend on timevar.h.
6842         (ggc-simple.o): Likewise.
6843         (ggc-page.o): Likewise.
6844         (timevar.o): New rule.
6845         (timevar.h): New rule.
6846
6847         * timevar.h: New file.
6848         * timevar.c: Likewise.
6849         * timevar.def: Likewise.
6850
6851         * toplev.h (gc_time, parse_time, varconst_time): Remove.
6852         * toplev.c: Use timevar_push and timevar_pop instead of TIMEVAR
6853         throughout.
6854         (TIMEVAR): Remove macro.
6855         (gc_time, parse_time, varconst_time, integration_time, jump_time,
6856         cse_time, gcse_time, loop_time, cse2_time, branch_prob_time,
6857         flow_time, combine_time, regmove_time, sched_time,
6858         local_alloc_time, global_alloc_time, flow2_time, peephole2_time,
6859         sched2_time, dbr_sched_time, reorder_blocks_time,
6860         rename_registers_time, shorten_branch_time, stack_reg_time,
6861         to_ssa_time, from_ssa_time, final_time, symout_time, dump_time,
6862         all_time): Remove.
6863         (compile_file): Don't initialize time variables.  Call
6864         init_timevar and start TV_TOTAL timer.  Call timevar_print instead
6865         of many calls to print_time.
6866         (rest_of_compilation): Add timing for reload_cse_regs.
6867         (get_run_time): Removed to timevar.c.
6868         (print_time): Likewise.
6869         (get_run_time): Implement using TV_TOTAL time variable.
6870         (print_time): Get total run time from get_run_time.
6871         * ggc-page.c (ggc_collect): Push and pop TV_GC instead of
6872         computing elapsed time explicitly.
6873         * ggc-simple.c (ggc_collect): Likewise.
6874         (gc_time): Remove declaration.
6875
6876 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
6877
6878         * calls.c (combine_pending_stack_adjustment_and_call): New function.
6879         (expand_call): Use it.
6880
6881 2000-04-27  Jan Hubicka  <jh@suse.cz>
6882
6883         * flow.c (mark_set_1):  Handle MEMs in ZERO_EXTRACT/SIGN_EXTRACT
6884         fields.
6885
6886 Thu Apr 27 12:47:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
6887
6888         * config/mn10300/mn10300.md (movhi): Simplify.  Prefer data
6889         registers.
6890
6891 Thu Apr 27 17:33:05 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6892
6893         * function.c (epilogue_done): Pass whole insn to record_insns.
6894
6895 Thu Apr 27 16:55:28 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6896
6897         * cse.c (CSE_ADDRESS_COST): Remove.
6898         (find_best_addr): Add new parameter "MODE", use address_cost instead
6899         of CSE_ADDRESS_COST
6900         (address_cost): New.
6901         (fold_rtx): Update call of find_best_addr.
6902         * rtl.h (address_cost): Declare.
6903         * loop.c (general_induction_var): Add new parameter "MODE", use
6904         address_cost instead of ADDRESS_COST
6905         (init_loop): Use address_cost instead of ADDRESS_COST.
6906         (check_insn_for_givs): Update call of general_induction_var.
6907         (find_mem_givs): Likewise.
6908         (consec_sets_giv): Likewise.
6909         * config/i386/i386.h (ADDRESS_COST): Call ix86_address_cost.
6910         * i386.c (ix86_address_cost): New.
6911         * i386-protos.h (ix86_address_cost): Declare.
6912
6913 Thu Apr 27 11:45:16 2000  Alexandre Oliva  <aoliva@cygnus.com>
6914
6915         * config/mn10300/mn10300.md (movqi): Simplify.  Prefer data
6916         registers.
6917
6918 Thu Apr 27 16:11:00 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6919
6920         * expr.c (store_expr): Use clear_storage instead of direct memset
6921         libcall.
6922
6923 Thu Apr 27 10:36:51 2000  Alexandre Oliva  <aoliva@cygnus.com>
6924
6925         * config/mn10300/mn10300.c (mn10300_address_cost): Test
6926         ASHIFT, AND and LABEL_REF.
6927
6928 Thu Apr 27 15:08:46 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6929
6930         * invoke.texi (-foptimize-sibling-calls): Fix.
6931
6932 Thu Apr 27 14:54:22 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6933
6934         * loop.c (load_mems)  Don't use hard registers for the hoisting.
6935
6936         * unroll.c (unroll_loop): Avoid overflow in the n_iterations
6937         calculation; rename const_equiv array in the preconditioning code
6938         from loop_unroll to loop_unroll_precondition
6939
6940 2000-04-27  Richard Henderson  <rth@cygnus.com>
6941
6942         * flow.c (struct propagate_block_info): Remove new_dead, new_live;
6943         add new_set.
6944         (propagate_one_insn): Clear it.  Don't update reg_live here.
6945         (init_propagate_block_info): Update for pbi member changes.
6946         (free_propagate_block_info): Likewise.
6947         (mark_set_1): Know that zero_extract, sign_extract, and
6948         strict_low_part don't kill their argument.  Alter hard subregs.
6949         Update new_set for non-CLOBBER sets.  Update reg_live.
6950         (find_auto_inc): Update reg_live, not new_dead.
6951         (mark_used_reg): Update reg_live, not new_live.  Examine new_set
6952         to determine if the reg in question was set this insn.  Only update
6953         reg info with PROP_REG_INFO.
6954
6955 2000-04-26  Richard Henderson  <rth@cygnus.com>
6956
6957         * flow.c (allocate_reg_life_data): Set max_regno here ...
6958         (life_analysis): ... not here.
6959
6960         * flow.c (calculate_global_regs_live): Force stack pointer
6961         live at end.
6962
6963 2000-04-26  Richard Henderson  <rth@cygnus.com>
6964
6965         * jump.c (redirect_exp_1): Rework from old redirect_exp.  Never
6966         commit change group changes.
6967         (invert_exp_1): Similarly.
6968         (redirect_exp, invert_exp): Use them.
6969         (redirect_jump_1): New.
6970         (invert_jump_1): New.
6971         (jump_optimize_1): Remove code subsumed by condexec.c.
6972         * rtl.h (invert_jump_1, redirect_jump_1): Declare.
6973
6974 2000-04-26  Richard Henderson  <rth@cygnus.com>
6975
6976         * rtlanal.c (dead_or_set_regno_p): Use find_regno_note.
6977
6978         * genconfig.c (main): Set all HAVE_foo to 1.
6979
6980         * graph.c (node_data): Use GET_NOTE_INSN_NAME instead of local array.
6981
6982 2000-04-26  Alex Samuel  <samuel@codesourcery.com>
6983
6984         * invoke.texi: Document -fssa flag.
6985
6986 2000-04-26  Richard Henderson  <rth@cygnus.com>
6987
6988         * flow.c (count_reg_sets_1): Remove.
6989         (count_reg_sets, count_reg_references): Remove.
6990         (recompute_reg_usage): Implement with update_life_info.
6991         Reallocate life data.
6992
6993 2000-04-26  Richard Henderson  <rth@cygnus.com>
6994
6995         * flow.c (update_life_info): Consider blocks null to mean the
6996         universal set.
6997         (calculate_global_regs_live): Likewise.
6998         (life_analysis): Do that instead of collecting all_blocks.
6999
7000 2000-04-26  Richard Henderson  <rth@cygnus.com>
7001
7002         * flow.c (tidy_fallthru_edge): Don't delete the jump when it's
7003         a still-valid conditional jump.
7004
7005 2000-04-26  Richard Henderson  <rth@cygnus.com>
7006
7007         * jump.c (invert_jump): Always invert REG_BR_PROB.  Do it correctly.
7008
7009         * bb-reorder.c (reorder_basic_blocks): Don't run estimate_probability.
7010         * flow.c (calculate_loop_depth): Remove.
7011         * output.h (calculate_loop_depth): Don't declare.
7012         * toplev.c (rest_of_compilation): Expand calculate_loop_depth
7013         inline; run estimate_probability at the same time.
7014
7015 2000-04-26  Neil Booth  <NeilB@earthling.net>
7016
7017         * cpplib.h: "~=" is not a single pp-token.
7018         * cpplex.c: Correct commentary.
7019
7020 2000-04-26  Richard Henderson  <rth@cygnus.com>
7021
7022         * flow.c (mark_set_1): New arguments code and flags; update all
7023         callers.  Track regno_first and regno_last; do HARD_REGNO_NREGS
7024         test in one place.  Tidy flags tests.  Don't bias REG_N_REFS by
7025         loop_depth when optimizing for size.  Do new_dead update after
7026         emitting REG_UNUSED notes.  Merge mark_set_reg code.
7027         (mark_set_reg): Remove.
7028         (propagate_one_insn): Use mark_set_1 for call-clobbered registers;
7029         arrange to not emit REG_UNUSED notes.
7030
7031 2000-04-26  Richard Henderson  <rth@cygnus.com>
7032
7033         * flow.c (find_auto_inc): Use pbi->bb instead of BLOCK_FOR_INSN.
7034         * ssa.c (convert_from_ssa): Don't run compute_bb_for_insn.
7035
7036 2000-04-26  Richard Henderson  <rth@cygnus.com>
7037
7038         * flow.c (propagate_one_insn): Break out from propagate_block.
7039         (init_propagate_block_info): Likewise.
7040         (free_propagate_block_info): Likewise.
7041         (propagate_block): Use them.  Export.
7042         * basic-block.h: Declare them all.
7043
7044 2000-04-26  Richard Henderson  <rth@cygnus.com>
7045
7046         * basic-block.h (life_analysis): Declare here ...
7047         * output.h: ... not here.
7048         * flow.c (life_analysis): Remove nregs parameter; replace
7049         remove_dead_code with flags.  Remove ssa dead code check.
7050         Only init alias analysis if we'll use it.
7051         * reg-stack.c (reg_to_stack): Update life_analysis arguments.
7052         * ssa.c (convert_to_ssa): Likewise.
7053         (convert_from_ssa): Likewise.
7054         * toplev.c (rest_of_compilation): Likewise.
7055
7056 2000-04-26  Richard Henderson  <rth@cygnus.com>
7057
7058         * flow.c (flow_delete_block): Rename from delete_block.  Export.
7059         * basic-block.h (flow_delete_block): Declare.
7060
7061 2000-04-26  David S. Miller  <davem@redhat.com>
7062
7063         * optabs.c (emit_libcall_block): Verify insns with INSN_P before
7064         taking a PATTERN of it.
7065
7066 2000-04-26  <NeilB@earthling.net>
7067
7068         * cpplex.c (spell_other, spell_char): Remove.
7069         (SPELL_CHAR): New.
7070         (token_spelling, trigraph_map): Use unsigned chars.
7071         (_cpp_lex_line): Tidy up the switch statement.
7072         * cpplib.h: Implement spell_char with spell_string.
7073         (C): New.
7074
7075 2000-04-26  <RodneyBrown@pmsc.com>
7076
7077         * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Warning removal.
7078         * pa/pa64-regs.h (HARD_REGNO_MODE_OK): Warning removal.
7079
7080 2000-04-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7081
7082         * dwarf2out.c (dw_cfi_oprnd_struct, dw_fde_struct, add_fde_cfi,
7083         reg_save, dwarf2out_frame_debug_expr, dwarf2out_def_cfa,
7084         dwarf2out_window_save, dwarf2out_args_size, dwarf2out_reg_save,
7085         dwarf2out_return_save, dwarf2out_return_reg,
7086         dwarf2out_stack_adjust, dwarf2out_frame_debug, primary_filename,
7087         add_AT_lbl_id, add_AT_lbl_offset, type_tag, decl_start_label,
7088         gen_compile_unit_die, dwarf2out_init): Constify a char*.
7089
7090         * dwarf2out.h (dwarf2out_init): Likewise.
7091
7092         * dwarfout.c (filename_entry, primary_filename, last_filename,
7093         type_tag, output_compile_unit_die, dwarfout_init): Likewise.
7094
7095         * tree.h (dwarf2out_def_cfa, dwarf2out_window_save,
7096         dwarf2out_args_size, dwarf2out_reg_save, dwarf2out_return_save,
7097         dwarf2out_return_reg): Likewise.
7098
7099 2000-04-26  Andreas Jaeger  <aj@suse.de>
7100
7101         * extend.texi (Function Attributes): Fix description of pure
7102         attribute.
7103
7104 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
7105
7106         * integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
7107         before calling rest_of_compilation.
7108
7109 2000-04-26  Andreas Jaeger  <aj@suse.de>
7110
7111         * config/mips/linux.h: Remove erroneous commit of #if 0/#endif in
7112         last patch.
7113
7114 2000-04-25  Richard Henderson  <rth@cygnus.com>
7115
7116         * cse.c (cse_insn): Emit barrier after unconditional jump.
7117
7118         * calls.c (expand_call): Disable tail call generation once
7119         rtx_equal_function_value_matters is false.
7120
7121         * reg-stack.c (convert_regs_1): Treat EDGE_ABNORMAL_CALL edges
7122         like EDGE_EH edges.
7123
7124 2000-04-25  Jason Merrill  <jason@casey.cygnus.com>
7125
7126         * dwarf2out.c (add_bound_info): Don't crash on an unexpanded SAVE_EXPR.
7127
7128         * dwarfout.c (output_decl): Ignore NAMESPACE_DECLs.
7129
7130         * dwarf2out.c (gen_subprogram_die): The class-scope declaration DIE
7131         is the primary DIE for a member function.
7132         (gen_decl_die): Call set_decl_origin_self here.
7133         * dwarfout.c (output_decl): And here.
7134         * integrate.c (output_inline_function): Not here.
7135         Don't clear DECL_INLINE until after calling rest_of_compilation.
7136         (set_decl_origin_self): No longer static.
7137         * tree.h: Add prototype.
7138         * toplev.c (note_deferral_of_defined_inline_function): Only write
7139         out abstract instance for actual inlines.
7140
7141 2000-04-25  Alexandre Oliva  <aoliva@cygnus.com>
7142
7143         * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Return
7144         EXTENDED_REGS only if TARGET_AM33.
7145         * config/mn10300/mn10300.md (movsi, addsi): Avoid exposing
7146         SP_REGS to register allocation and reloading unless absolutely
7147         necessary.
7148         (movsi3): Remove special-case of adding non-constants to SP.
7149
7150 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7151
7152         * aclocal.m4 (gcc_AC_NEED_DECLARATION): This macro now requires
7153         INCLUDES to search and does not provide any of its own.  Also it
7154         now accepts optional ACTION-IF-NEEDED and ACTION-IF-NOT-NEEDED
7155         parameters.  Also it does not call AC_DEFINE.
7156         (gcc_AC_NEED_DECLARATIONS): Likewise.  Also this macro now calls
7157         AC_DEFINE and provides for automatic entries for autoheader.
7158         (gcc_AC_FUNC_PRINTF_PTR): Cleanup C code in test.
7159
7160         * configure.in (gcc_AC_NEED_DECLARATIONS): Save and restore CFLAGS
7161         so we can pass -I flags and include gansidecl.h/system.h in this
7162         test.
7163
7164         * acconfig.h: Delete all NEED_DECLARATION_* entries.
7165
7166 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7167
7168         * acconfig.h (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
7169         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
7170         ENABLE_GC_ALWAYS_COLLECT): Delete entries.
7171
7172         * configure.in (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
7173         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
7174         ENABLE_GC_ALWAYS_COLLECT): Use three argument form of AC_DEFINE
7175         for these macros.  Clean up spacing and linewraps.
7176
7177 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
7178
7179         * calls.c (expand_call): Use get_callee_fndecl.
7180
7181         * print-tree.c (print_node): Print the chain of an _EXPR.
7182
7183 Tue Apr 25 16:16:04 2000  Andrew MacLeod  <amacleod@cygnus.com>
7184                           Jim Wilson  <wilson@cygnus.com>
7185                           Andrew Haley  <aph@cygnus.com>
7186
7187         * config/ia64/crtbegin.asm: Add IA-64 unwind support.  Correct alloc
7188         and gp save/restore problems.
7189         * config/ia64/crtend.asm: Add IA-64 unwind support.
7190         * config/ia64/ia64.c (ia64_compute_frame_size): Don't include pr_size
7191         in fr_pad_size calculation.
7192         (save_restore_insns): Move PR save area.  Correct uses of
7193         RTX_FRAME_RELATED_P.
7194         (ia64_expand_prologue): Mark alloc with RTX_FRAME_RELATED_P.
7195         (ia64_expand_epilogue): Add eh_epilogue support.
7196         (ia64_function_prologue): Emit .prologue directive.
7197         (ia64_init_machine_status, ia64_mark_machine_status): New functions.
7198         (ia64_override_options): Set init_machine_status and
7199         mark_machine_status.
7200         (rtx_needs_barrier): Handle bsp reads and writes.
7201         (spill_offset, sp_offset, spill_offset_emitted, tmp_reg, tmp_saved):
7202         New static variables.
7203         (process_set, process_for_unwind_directive): New functions.
7204         * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR, ASM_OUTPUT_XDATA_SHORT,
7205         ASM_OUTPUT_XDATA_INT, ASM_OUTPUT_XDATA_DOUBLE_INT, ASM_OUTPUT_EH_CHAR,
7206         ASM_OUTPUT_EH_SHORT, ASM_OUTPUT_EH_INT, ASM_OUTPUT_EH_DOUBLE_INT): New
7207         macros.
7208         (EH_FRAME_SECTION_ASM_OP): Define to IA_64.unwind section.
7209         (IA64_UNWIND_INFO, HANDLER_SECTION, IA64_UNWIND_EMIT): Define.
7210         (struct machine_function): Define.
7211         * config/ia64/ia64.md (bsp_value, set_bsp, eh_epilogue): New patterns.
7212
7213 2000-04-25  Bruce Korb  <bkorb@gnu.org>
7214
7215         * fixinc/Makefile.in: make the removal of old programs more
7216         robust
7217         * fixinc/mkfixinc.sh: use the two new targets in the Makefile:
7218         install-bin and install-sh
7219
7220 2000-04-25  Nick Clifton  <nickc@cygnus.com>
7221
7222         * integrate.c (FUNCTION_ATTRIBUTE_INLINABLE_P): If not
7223         defined, define to return zero.
7224         (function_cannot_inline_p): If a function has any target
7225         specific attributes, then use the macro
7226         FUNCTION_ATTRIBUTE_INLINABLE_P to allow the target to decide
7227         whether it can be inlined.  If it cannot, issue a suitable
7228         explanation.
7229
7230         * tm.texi: Add a new node 'Inlining' to document the new macro
7231         FUNCTION_ATTRIBUTE_INLINABLE_P.
7232
7233 2000-04-25  Zack Weinberg  <zack@wolery.cumb.org>
7234
7235         * cpplib.h (struct cpp_buffer): Add 'mapped' flag; fix
7236         commentary.
7237
7238 2000-04-25  Neil Booth  <NeilB@earthling.net>
7239
7240         Restore previous patch, plus the following fixes:
7241
7242         * cpphash.c (_cpp_create_definition): Test PREV_WHITESPACE in
7243         flags, not CPP_OPEN_PAREN.
7244         * cpplex.c (expand_token_space, init_token_list,
7245         cpp_free_token_list): Put the dummy token at list->tokens[-1].
7246         (_cpp_lex_line, _cpp_lex_file): token list is 0-based.
7247
7248 Tue Apr 25 14:06:40 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
7249
7250         * config/i386/freebsd.h (INT_ASM_OP): Define.
7251
7252 Tue Apr 25 14:51:07 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7253
7254         * loop.c (strength_reduce): Fix typo in the last checkin.
7255
7256 Tue Apr 25 07:33:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7257
7258         * stor-layout.c (finalize_record_size): Simplify to use existing
7259         functions.
7260         (compute_record_mode): No longer static.
7261         * tree.h (compute_record_mode): New declaration.
7262
7263 2000-04-25  Neil Booth  <NeilB@earthling.net>
7264
7265         * Revert my patch below until cause of build failures
7266         determined.
7267
7268 2000-04-25  Richard Henderson  <rth@cygnus.com>
7269
7270         * combine.c (combine_instructions): Add missing argument
7271         to try_combine.
7272
7273         * toplev.c (rest_of_compilation): Delay sibcall optimization
7274         until after emit_eh_context.
7275
7276 2000-04-24  Nick Clifton  <nickc@redhat.com>
7277
7278         * combine.c (combine_instructions): Do not try to combine a
7279         sequence of insns when the second insn has been replaced by a
7280         note.
7281
7282 Mon Apr 24 17:34:18 2000  Mumit Khan  <khan@xraylith.wisc.edu>
7283
7284         * gcc.c (load_specs): New static function.
7285         (read_specs): Use it.
7286
7287         * gcc.c (lookup_compiler): Make multiple passes for case
7288         insensitive filesystems.
7289
7290 2000-04-24  Neil Booth  <NeilB@earthling.net>
7291
7292         * cpphash.c: replace HSPACE_BEFORE with PREV_WHITESPACE.
7293         * cpphash.h (_cpp_check_directive): new.
7294         * cpplex.c (handle_newline, cpp_free_token_list,
7295         init_trigraph_map, trigraph_ok, trigraph_replace,
7296         backslash_start, skip_block_comment, skip_line_comment,
7297         skip_whitespace, parse_name, parse_number, parse_string,
7298         copy_comment, _cpp_lex_line, spell_char, spell_string,
7299         spell_comment, spell_name, spell_other, _cpp_lex_file,
7300         _cpp_output_list): new.
7301         (expand_name_space): take length argument.
7302         (init_token_list): add comment list initialisation.
7303         (cpp_scan_line): use auto_expand_name_space.  PREV_WHITESPACE
7304         instead of HSPACE_BEFORE.
7305
7306         * cpplib.c (_cpp_check_directive): new
7307         * cpplib.h (cpp_name, PREV_WHITESPACE, PREV_COMMENT,
7308         DIGRAPH, UNSIGNED_INT, TOK_NAME): new.
7309         (HSPACE_BEFORE): delete.
7310         (TTYPE_TABLE): rearrange.
7311         (struct cpp_toklist): update.
7312
7313 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7314
7315         * aclocal.m4 (gcc_AC_HEADER_STRING, gcc_AC_FUNC_PRINTF_PTR,
7316         gcc_AC_C_VOLATILE, gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG): Use the three
7317         argument form of AC_DEFINE.
7318
7319         * configure.in (DEFAULT_LINKER, DEFAULT_ASSEMBLER,
7320         HAVE_INTTYPES_H, PACKAGE, VERSION, ENABLE_WIN32_REGISTRY,
7321         WIN32_REGISTRY_KEY, HAVE_GAS_SUBSECTION_ORDERING, HAVE_GAS_WEAK,
7322         HAVE_GAS_HIDDEN, HAVE_AS_REGISTER_PSEUDO_OP, AS_SPARC64_FLAG,
7323         HAVE_AS_OFFSETABLE_LO10, ENABLE_NEW_GXX_ABI): Likewise.
7324
7325         * acconfig.h: Delete stubs made redundant by 3-arg AC_DEFINE.
7326
7327 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7328
7329         * Makefile.in (GCC_FOR_TARGET, GCC_CFLAGS, LIBGCC2_INCLUDES,
7330         deduced.h): Use -isystem, not -I, for including system headers.
7331
7332 2000-04-24  Nick Clifton  <nickc@cygnus.com>
7333
7334         * config/fr30/fr30.md (addsi3): Do not use small add instruction if
7335         the source register is the frame pointer or arg pointer.
7336         (addsi3_small_int): Disallow if source register is the frame
7337         pointer or arg pointer.
7338
7339 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7340
7341         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Delete redundant
7342         call to AC_MSG_RESULT.
7343
7344 2000-04-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7345
7346         * invoke.texi: Correct grammatical errors, document
7347         -fno-gnu-keywords as identical to -fno-asm for C++.
7348
7349 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7350
7351         * aclocal.m4: (GCC_HEADER_STRING, GCC_NEED_DECLARATION,
7352         GCC_NEED_DECLARATIONS, GCC_FUNC_VFPRINTF_DOPRNT,
7353         GCC_FUNC_PRINTF_PTR, GCC_PROG_LN_S, GCC_PROG_LN, GCC_C_VOLATILE,
7354         AC_GCC_C_LONG_DOUBLE, GCC_FUNC_MKDIR_TAKES_ONE_ARG,
7355         EGCS_PROG_INSTALL): Rename autoconf macros with prefix gcc_AC_.
7356
7357         * configure.in (AC_GCC_C_LONG_DOUBLE, GCC_PROG_LN, GCC_PROG_LN_S,
7358         GCC_C_VOLATILE, EGCS_PROG_INSTALL, GCC_HEADER_STRING,
7359         GCC_FUNC_VFPRINTF_DOPRNT, GCC_FUNC_PRINTF_PTR,
7360         GCC_NEED_DECLARATIONS, GCC_FUNC_MKDIR_TAKES_ONE_ARG): Invoke with
7361         new macros names.
7362
7363 2000-04-24  Mumit Khan  <khan@xraylith.wisc.edu>
7364
7365         * c-pragma.c (push_alignment): Use BITS_PER_UNIT macro.
7366         (pop_alignment): Likewise.
7367         (handle_pragma_token): Likewise.
7368
7369 2000-04-24  Robert Lipe <robertlipe@usa.net>
7370
7371         * tree.h (tree_decl): Member `mode' now ENUM_BITFIELD.
7372
7373 2000-04-24  Hiroyuki Machida <machida@sm.sony.co.jp>
7374
7375         * combine.c (try_combine): Update reg_nonzero_bits of
7376         newi2pat before newpat.
7377
7378 Mon Apr 24 10:19:48 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7379
7380         * loop.c (strength_reduce): Simplify test to INSN_P.
7381         (record_giv): Attempt to simplify the add value, use CONSTANT_P
7382         expressions instead of CONST_INT.
7383         (express_from_1): Likewise.
7384
7385 2000-04-24  Mark Mitchell  <mark@codesourcery.com>
7386
7387         * regs.h (reg_n_max): Don't declare.
7388         * flow.c (reg_n_max): Don't define.
7389         * regclass.c (renumber): Don't initialize to zero.
7390         (regno_allocated): Likewise.
7391         (reg_n_max): Define.
7392         (allocate_reg_info): Don't initialize unnecessarily.
7393
7394 Mon Apr 24 00:21:36 2000  Jeffrey A Law  (law@cygnus.com)
7395
7396         * genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
7397         and blockage_p in the newly allocated attribute.
7398
7399 Sun Apr 23 20:16:49 2000  Alexandre Oliva  <aoliva@cygnus.com>
7400
7401         * config/mn10300/mn10300.md (addsi): `inc4' on address
7402         registers does not modify cc, but `inc' on an extended
7403         register does.
7404
7405 Sun Apr 23 16:24:35 2000  Denis Chertykov  <denisc@overta.ru>
7406
7407         * reload.c (find_equiv_reg): Checks all valueno regs
7408         as a reload_reg_p regs.
7409
7410 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
7411
7412         * cpphash.c (collect_objlike_expansion): Add sanity check.
7413         (special_symbol): Remove case T_CONST, T_XCONST, T_MCONST.  If
7414         the buffer is the empty string, return.  Mark __DATE__ and
7415         __TIME__ as XCONST nodes, not MCONST.
7416         (_cpp_macroexpand): Avoid pushing an empty buffer.
7417         (funlike_macroexpand): Don't pop token_buffer here.
7418
7419 Sun Apr 23 18:37:53 2000  Alexandre Oliva  <aoliva@cygnus.com>
7420
7421         * config/mn10300/mn10300.h (REGNO_IN_RANGE_P): New macro.
7422         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_SP_P): New macros.
7423         (REGNO_EXTENDED_P, REGNO_AM33_P): New macros.
7424         (REGNO_OK_FOR_BASE_P): Define in terms of them.
7425         (REGNO_OK_FOR_BIT_BASE_P, REGNO_OK_FOR_INDEX_P): Likewise.
7426         (REG_OK_FOR_BASE_P): Define in terms of the REGNO macro.
7427         (REG_OK_FOR_BIT_BASE_P, REG_OK_FOR_INDEX_P): Likewise.
7428
7429 Sun Apr 23 22:23:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7430
7431         * loop.c (simplify_giv_expr):  Be more agressive on simplifying
7432         constant MULT givs.
7433
7434 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
7435
7436         * cpphash.h (struct definition): Move file, line, col members...
7437         (struct hashnode): ... here.  Also add 'disabled' flag.
7438         (enum node_type): Add T_VOID, T_XCONST, T_FMACRO, and
7439         T_IDENTITY.  Remove T_DISABLED.
7440         Update prototypes.
7441
7442         * cpphash.c (_cpp_dump_definition): Split out dump_DEFINITION.
7443         (collect_expansion): Split into collect_objlike_expansion and
7444         collect_funlike_expansion.
7445         (_cpp_macroexpand): Split out scan_arguments, stringify, and
7446         funlike_macroexpand.
7447         (_cpp_compare_defs): Rename compare_defs, make static.
7448         (_cpp_make_hashnode): Initialize hp->disabled.
7449         (macro_cleanup): Adjust for new token types.  Clear
7450         m->disabled.
7451         (_cpp_create_definition): Move code here to determine what
7452         sort of macro it is, and code to check for redefinitions, from
7453         do_define.  Implement a few simple cases without creating a
7454         full DEFINITION.
7455         (_cpp_macroexpand, special_symbol, _cpp_dump_definition):
7456         Handle the simple cases.
7457         (push_macro_expansion): Set buf->has_escapes and hp->disabled
7458         here.
7459
7460         * cppinit.c (builtin_array): Change MCONST to XCONST
7461         everywhere.
7462         * cpplex.c (maybe_macroexpand): Handle IDENTITY macros here;
7463         fix check for disabled and function-like macros.
7464         * cpplib.c (do_define): Move most logic to
7465         _cpp_create_definition.
7466         (do_undef): Handle new special token types.
7467
7468 Sun Apr 23 14:27:44 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7469
7470         * loop.c (maybe_eliminate_biv_1): Use GET_CODE (x) == CONST_INT instead
7471         of CONSTANT_P for mult_val; always use validate_change to update insn.
7472
7473 2000-04-22  Zack Weinberg  <zack@wolery.cumb.org>
7474
7475         * cpphash.c (trad_stringify, add_pat): New functions.
7476         (collect_expansion): Restore support for -traditional syntax.
7477         Use trad_stringify and add_pat.
7478         (_cpp_macroexpand): Restore support for -traditional semantics.
7479         * cpplex.c (_cpp_scan_line): Don't change space_before if we
7480         get a COMMENT token.
7481         (_cpp_lex_token): Provide COMMENT tokens to caller if
7482         traditional and parsing_define_directive.
7483         (skip_comment): Warn about // comments if -Wtraditional.
7484         * cpplib.c (do_define): Fix typo.  Create EMPTY nodes with
7485         proper node type.
7486         (do_undef): Don't warn about undefining EMPTY nodes.
7487
7488 Sat Apr 22 22:35:38 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7489
7490         * loop.c (strength_reduce): Fix biv removal code.
7491
7492 2000-04-22  Richard Henderson  <rth@cygnus.com>
7493
7494         * predict.c (estimate_probability): Examine both sides of
7495         a branch for no exits.  Use 90% not 50% for predict taken.
7496         Reorg for one copy of note generation code.
7497
7498 2000-04-22  Richard Henderson  <rth@cygnus.com>
7499
7500         * flow.c (mark_used_reg): Hack around rs6000 eliminable pic reg.
7501
7502 2000-04-22  Richard Henderson  <rth@cygnus.com>
7503
7504         * diagnostic.c (init_output_buffer): Don't initialize format_args.
7505         (output_clear): Likewise.
7506         (output_printf): Use va_copy.
7507         (vline_wrapper_message_with_location): Likewise.
7508         (v_message_with_decl): Likewise.
7509         (line_wrapper_printf): VA_START infor buffer.format_args directly.
7510         * system.h (va_copy): Provide default implementation.
7511
7512 2000-04-22  Richard Henderson  <rth@cygnus.com>
7513
7514         * predict.c (expected_value_to_br_prob): Don't bomb if op1 of
7515         the collected condition is not a constant.
7516
7517 2000-04-22  Gabriel Dos Reis  <gdr@codesourcery.com>
7518
7519         * diagnostic.h: New file.
7520
7521         * Makefile.in (diagnostic.o): Depends on diagnostic.h
7522
7523         * diagnostic.c: Tweak.  Rationalize the output logic.  Adjust
7524         various function prototypes.
7525         (diagnostic.h): #include.
7526         (struct output_buffer): Move into diagnostic.h.
7527         (get_output_prefix): Rename to output_get_prefix.  Export.
7528         (init_output_buffer): Export. Break out.  Ajust intialization.
7529         (output_space_left, output_append): Export.
7530         (output_newline): Rename to output_add_newline.  Export.
7531         (output_clear): Nullify additional output_buffer fields.
7532         (output_puts): Rename to output_add_string.  Export.
7533         (dump_output): Rename to output_flush_on.  Export.
7534         (build_location_prefix): Constify return-type.
7535         (emit_output_prefix): Rename to output_emit_prefix. Export.
7536         (set_real_maximum_length): New function.
7537         (output_set_maximum_length): Ditto
7538         (output_clear): Ditto.
7539         (output_add_character): Ditto.
7540         (output_add_integer): Ditto.
7541         (output_add_space): Ditto.
7542         (output_format): Ditto.
7543         (output_printf): Adjust buffer initialization.
7544         (vline_wrapper_message_with_location): Ditto.
7545         (v_message_with_decl): Ditto.  Adjust call to output_puts
7546         and get_output_prefix.
7547         (default_print_error_function): Adjust buffer intialization.
7548
7549 Sat Apr 22 06:45:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7550
7551         * expr.c (preexpand_calls, case CALL_EXPR): Don't look at TYPE_SIZE
7552         of VOID_TYPE.
7553
7554 Fri Apr 21 18:33:09 2000  Alexandre Oliva  <aoliva@cygnus.com>
7555
7556         * config/mn10300/mn10300.h (REGNO_REG_CLASS): Use NO_REGS instead
7557         of explicit 0.
7558
7559 Fri Apr 21 18:30:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
7560
7561         * config/mn10300/mn10300.h (REGISTER_MOVE_COST): Provide more
7562         accurate data about SP moves.
7563
7564 Fri Apr 21 18:28:28 2000  Alexandre Oliva  <aoliva@cygnus.com>
7565
7566         * config/mn10300/mn10300.h (ADDITIONAL_REGISTER_NAMES): Added
7567         aliases to AM33 registers.
7568
7569 Fri Apr 21 18:26:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
7570
7571         * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Added register 16
7572         to all EXTENDED bitmaps.
7573
7574 Fri Apr 21 18:17:12 2000  Alexandre Oliva  <aoliva@cygnus.com>
7575
7576         * config/mn10300/mn10300-protos.h (mn10300_address_cost): Declare.
7577         * config/mn10300/mn10300.h (ADDRESS_COST): New macro.
7578         * config/mn10300/mn10300.c (mn10300_address_cost): New function.
7579
7580 Fri Apr 21 18:11:56 2000  Alexandre Oliva  <aoliva@cygnus.com>
7581
7582         * config/mn10300/mn10300.md (movdi, movdf): Do not use `movu' when
7583         the operand is not constant.
7584
7585 Fri Apr 21 14:58:29 2000  Denis Chertykov  <denisc@overta.ru>
7586
7587         * reload.c (find_equiv_reg): Checks all valueno and regno regs
7588         as a call-clobbered regs.
7589
7590 Fri Apr 21 13:30:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7591
7592         * rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
7593         * rtl.h: Likewise.
7594         * rtl.def: Update comment.
7595         * function.c (expand_function): Use NOTE_INSN_REPEATED_LINE_NUMBER.
7596         * integrate.c (expand_inline_function): Likewise.
7597         * profile.c (branch_prob): Likewise.
7598         * ggc-common.c (ggc_mark_rtx_children): Use NOTE_INSN_RANGE_BEG.
7599         * print-rtl.c (print_rtx): Likewise.
7600         * haifa-sched.c (sched_analyze, unlink_other_notes): Likewise.
7601         (reemit_notes): Likewise; also use enum insn_note.
7602
7603         * stor-layout.c (layout_decl): Only set DECL_MODE if not already set.
7604         (place_field): Properly compute know and actual alignment.
7605
7606         * gengenrtl.c (gencode): Write obstack_alloc_rtx function start
7607         in proper format.
7608
7609         * cse.c (cse_insn): In (set REG0 REG1) case, remove a REG_EQUAL
7610         note for REG1.
7611
7612 2000-04-21  Zack Weinberg  <zack@wolery.cumb.org>
7613
7614         * cpphash.c (struct arg, struct arglist): Const-ify strings.
7615         (warn_trad_stringify, duplicate_arg_p): New helper functions.
7616         (collect_expansion): Rewrite to scan over a token list.
7617         Remove -traditional support.
7618         (collect_formal_parameters): Rename to collect_params; rewrite
7619         to scan over a token list.
7620         (_cpp_create_definition): Adjust to scan a token list.
7621         (_cpp_macroexpand): Remove -traditional support.
7622         (_cpp_compare_defs): Whitespace is now canonicalized.
7623         (comp_def_part): Delete function.
7624
7625         * cpphash.h: Update prototypes.
7626         * cpplex.c (init_token_list): Don't set lineno if there is no
7627         buffer.
7628         (pedantic_whitespace): New function.
7629         (_cpp_scan_line): Mark tokens that had hspace before.  Don't
7630         consume a newline.  Use pedantic_whitespace.
7631         (_cpp_lex_token): Remove support for -traditional macros.
7632         (_cpp_get_define_token): Delete.
7633         (_cpp_get_directive_token): Do the real work here.  Use
7634         pedantic_whitespace.
7635         (_cpp_init_input_buffer): Initialize pfile->directbuf.
7636
7637         * cpplib.c (get_macro_name): Delete.
7638         (do_define): Read the entire line into pfile->directbuf, then
7639         feed the token list to _cpp_create_definition.
7640         * cpplib.h (HSPACE_BEFORE): new define.
7641         (struct cpp_reader): Add a toklist member, "directbuf".
7642
7643         * predict.c (estimate_probability): New heuristic: if a jump
7644         branches around a block with no successors, predict it taken.
7645         Disentangle control flow.
7646
7647 2000-04-20  Richard Henderson  <rth@cygnus.com>
7648
7649         * loop.c (emit_iv_add_mult): Revert last change.
7650
7651 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
7652
7653         * cpplib.h (enum cpp_ttype): Add token types for all
7654         punctuators.  Distinguish pp-numbers from valid C numbers.
7655         Give some tokens better names.  Initialize from macro.
7656         (struct cpp_name, cpp_token, cpp_toklist): New data
7657         structures.
7658         Update prototypes.
7659         * cpplex.c (bump_column, expand_name_space,
7660         expand_token_space, init_token_list, cpp_output_list,
7661         _cpp_scan_line):  New functions.
7662         (output_line_command): Add third argument, new line number.
7663         * cpphash.h: Update prototypes.
7664         * cppexp.c, cpphash.c, cpplib.c, scan-decls.c: Update for new
7665         token names.
7666
7667 2000-04-20  Richard Henderson  <rth@cygnus.com>
7668
7669         * config/alpha/alpha.c (alpha_emit_floatuns): Emit missing barrier.
7670
7671 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
7672
7673         * c-common.c (decl_attributes) [A_ALIAS]: Set TREE_USED on the
7674         object pointed to.
7675
7676 Thu Apr 20 14:19:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7677
7678         * loop.c (emit_iv_add_mult):  Simplify it's input and emit
7679         REG_EQUAL note explaining the calculated value.
7680
7681         * calls.c (expand_call): Avoid unnecesary precalculation
7682         and outgoing parameters space guarding for sibling calls.
7683         (store_one_arg): Likewise.
7684
7685 Thu Apr 20 08:01:07 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7686
7687         * toplev.c (enum dump_file_index, dump_file): Add DFI_sibling.
7688         (rest_of_compilation): Write sibling dump file and account
7689         for time as jump time.
7690         * invoke.texi: Update documentation on dump flags.
7691
7692 2000-04-19  Marek Michalkiewicz  <marekm@linux.org.pl>
7693
7694         * avr.c: #include "system.h" instead of <stdio.h> and <stdlib.h>.
7695
7696 2000-04-19  Zack Weinberg  <zack@wolery.cumb.org>
7697
7698         * cpphash.c (special_symbol): Represent an empty macro with
7699         "\r \r " not just "\r ".
7700         (_cpp_macroexpand): Correct condition for the foo ( ) special
7701         case.
7702         (unsafe_chars): Handle EOF as second argument.
7703         (push_macro_expansion): Simplify test for removing escape at
7704         end.  Do not trim both escapes if there is no text in between.
7705
7706 2000-04-19  Jim Blandy  <jimb@redhat.com>
7707
7708         * dwarf2out.c (DWARF2_ADDR_SIZE): New macro.  Use it instead
7709         of PTR_SIZE, when appropriate.
7710
7711 2000-04-19  Mark Mitchell  <mark@codesourcery.com>
7712
7713         * system.h (ONLY_INT_FIELDS): Make sure it is defined.
7714         (USE_ENUM_BITFIELDS): Fix typo.
7715
7716 Wed Apr 19 12:14:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7717
7718         * stor-layout.c (place_field): Set rli->offset_align properly.
7719
7720 2000-04-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7721
7722         * mips.h (BITS_PER_WORD, UNITS_PER_WORD, UNITS_PER_FPREG,
7723         INT_TYPE_SIZE, LONG_TYPE_SIZE, POINTER_SIZE, POINTER_BOUNDARY,
7724         PARM_BOUNDARY): Remove unnecessary casts.
7725
7726 Wed Apr 19 12:02:37 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7727
7728         * calls.c (precompute_arguments): Remove must_preallocate and
7729         args_size calls.
7730         (expand_call): Update call of precompute_arguments.
7731
7732         * loop.c (check_insn_for_bivs, for_every_insn_in_loop,
7733         check_insn_for_givs): Break out from ...
7734         (strength_reduce) ... here; use for_every_insn_in_loop to call
7735         check_insn_for_givs.
7736         * loop.h (for_every_insn_in_loop): Declare.
7737         (loop_insn_callback): New type.
7738
7739 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
7740
7741         * cpplib.c (do_pragma_poison):  Strings in the token buffer are
7742         not nul-terminated.
7743
7744 Tue Apr 18 16:04:12 2000  Jim Wilson  <wilson@cygnus.com>
7745
7746         * config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
7747         flag_pic and RELOC.
7748
7749 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
7750
7751         * cccp.c, cexp.y, cexp.c, cccp.1: Removed.
7752
7753         * configure.in: Delete --disable-cpplib option and all
7754         references to cpp_main.
7755         * configure: Regenerate.
7756         * Makefile.in: Remove all references to CCCP, CCCP_OBJS,
7757         @cpp_main@, cccp.c, cexp.c, cexp.y, cexp.output, cexp.o,
7758         cccp.o, cccp, or cppmain.  Link cppmain.o straight to
7759         cpp$(exeext).  Add --no-headers to makeinfo command line when
7760         generating INSTALL.  Install and uninstall cpp.1 manpage, not
7761         cccp.1.
7762         * install.texi: Delete all references to cexp.y/cexp.c.
7763         Delete ancient instructions for compiling GCC on 3b1.
7764         * INSTALL: Regenerate.
7765
7766         * cppfiles.c, cpplib.h, jump.c, protoize.c, c-lex.c, mips/t-ecoff,
7767         mips/t-elf, mips/t-r3900: Remove references to cccp.c.
7768         * convex.h, fx80.h, m68k.h, pdp11.h: Remove references to
7769         cexp.c/cexp.y.
7770         * xm-linux.h, xm-os2.h, romp.h: Remove definition of BSTRING,
7771         which is no longer tested anywhere.
7772
7773         * cppinit.c (handle_option): Don't run error message through
7774         gettext twice.
7775
7776 Tue Apr 18 14:16:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7777
7778         * conflict.c (conflict_graph_add): Pass enum type to htab_find_slot.
7779         * cpperror.c (hashtab.h): Now include.
7780         * cppexp.c (hashtab.h): Likewise.
7781         * cpplex.c (hashtab.h): Likewise.
7782         * cppfiles.c (hashtab.h): Likewise.
7783         (find_include_file, _cpp_calc_hash, cpp_read_file): Pass enum type
7784         to htab_find_slot_with_hash.
7785         * cpphash.c (hashtab.h): Now include.
7786         (_cpp_lookup_slot): INSERT is now enum insert_option.
7787         * cpphash.h (_cpp_lookup_slot): Likewise.
7788         * cppinit.c (hashtab.h): Include earlier.
7789         (initialize_builtins): Pass enum to htab_find_slot.
7790         * cpplib.c (hashtab.h): Now include.
7791         (do_define, do_undef): Pass enum type to _cpp_lookup_slot.
7792         (do_pragma_poison, do_assert): Likewise.
7793         * emit-rtl.c (gen_rtx_CONST_INT): Pass enum to
7794         htab_find_slot_with_hash.
7795         * simplify-rtx.c (cselib_lookup_mem, cselib_lookup): Likewise.
7796         * tree.c (type_hash_add): Likewise.
7797         (build1): Minor cleanup.
7798
7799         * ggc-common.c: Add missing blanks.
7800         * print-tree.c (print_node): Print DECL_OFFSET_ALIGN.
7801         * tree.h (DECL_OFFSET_ALIGN): Fix typo in comment.
7802
7803         * stmt.c (mark_case_node): New function.
7804         (mark_case_nesting): Call it.
7805
7806         * expmed.c (emit_store_flag): If comparing two-word integer
7807         with zero, can optimize NE, EQ, GE, and LT.
7808
7809         * c-decl.c (mark_binding_level): Use 'for' instead of `while'.
7810         * conflict.c: Minor cleanups.
7811         * optabs.c: Add blank line
7812         * simplify-rtx.c: Minor cleanups.
7813
7814 2000-04-18  Stan Cox  <scox@cygnus.com>
7815
7816         * gengenrtl.c (genlegend): Fix misspelling.
7817
7818 2000-04-18  Robert Lipe  <robertlipe@usa.net>
7819
7820         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Added.  Check that
7821         bitfields of the host compiler are not signed quantities.
7822         * config.in: Regenerate.
7823         * configure: Regenerate.
7824         * system.h (USE_ENUM_BITFIELDS): Added.
7825         (ENUM_BITFIELDS): Added.
7826         * rtl.h (rtx_def): Members `code', `mode', now ENUM_BITFIELD.
7827         (SHORT_ENUM_BUG): Deleted.
7828         * tree.h (tree_common): Members `code', `mode', `built_in_class',
7829         now ENUM_BITFIELD.
7830         * config/i386/xm-sco.h (ONLY_INT_FIELDS): Deleted.
7831         (CODE_FIELD_BUG): Likewise.
7832         * config/m68k/x-apollo68 (CC): Deleted SHORT_ENUM_BUG.
7833         (OLD_CC): Likewise.
7834         * config/m68k/x-ccur (X_CFLAGS): Likewise.
7835
7836 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
7837
7838         * cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
7839         mark is active.
7840
7841 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
7842
7843         * cppexp.c (lex): Don't assume tokens are NUL terminated.
7844         * cpplib.c (do_include, do_import, do_include_next,
7845         read_line_number, detect_if_not_defined): Likewise.
7846         * cpphash.c (collect_expansion): Likewise.
7847         (special_symbol, _cpp_macroexpand): Check return from
7848         cpp_file_buffer.
7849         * cpphash.h (CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q): Delete
7850         macros.  Delete all uses.
7851
7852         * gcc.dg/cpp-mi.c: Add two more test cases.
7853         * gcc.dg/cpp-mind.h, gcc.dg/cpp-mindp.h: New files.
7854
7855 2000-04-17  Richard Henderson  <rth@cygnus.com>
7856
7857         * bb-reorder.c (fixup_reorder_chain): Don't look up new block again.
7858         (reorder_basic_blocks): If no epilogue in rtl, force last block last.
7859
7860 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
7861
7862         * function.c (expand_function_start): Use hard_function_value to
7863         compute the RTL to use for DECL_RESULT.
7864
7865 Mon Apr 17 23:35:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7866
7867         * i386.c (athlon_cost): Fix lea, divide and XFmode move costs.
7868         (x86_integer_DFmode_moves, x86_partial_reg_dependency,
7869          x86_memory_mismatch_stall): New global variables.
7870         (ix86_adjust_cost): Handle MEMORY_BOTH on places MEMORY_STORE was only
7871         alloved; fix load penalties for Athlon.
7872         * i386.h (x86_integer_DFmode_moves, x86_partial_reg_dependency,
7873         x86_memory_mismatch_stall): Declare.
7874         (TARGET_INTEGER_DFMODE_MOVES, TARGET_PARTIAL_REG_DEPENDENCY,
7875          TARGET_MEMORY_MISMATCH_STALL): New.
7876         * i386.md (athlon scheduling parameters): Fix latencies according to
7877         Athlon Optimization Manual.
7878         (sahf, xchg, fldcw, leave instruction patterns): Set athlon_decode to
7879         vector.
7880         (fsqrt instruction patterns): Set athlon_decode to direct.
7881         (movhi_1): Promote for TARGET_PARTIAL_REG_DEPENDENCY and for
7882         PARTIAL_REGISTER_STALL with !TARGET_HIMODE_MATH machines.
7883         (movqi_1): Handle promoting correctly for TARGET_PARTIAL_REG_DEPENDENCY
7884         and TARGET_PARTIAL_REGISTER_STALL machines.
7885         (pushdf_nointeger): New pattern.
7886         (pushdf_integer): Rename from pushdf.
7887         (movdf_nointger): Enable for !TARGET_INTEGER_DFMODE_MOVES machines.
7888         (movdf_intger): Disable for !TARGET_INTEGER_DFMODE_MOVES machines.
7889
7890 2000-04-17  Richard Henderson  <rth@cygnus.com>
7891
7892         * loop.c (canonicalize_condition): Add WANT_REG argument.
7893         Stop the search if we match it.
7894         * expr.h (canonicalize_condition): Update decl.
7895         * predict.c (expected_value_to_br_prob): Use it.  Track last
7896         expected value note.
7897         (find_expected_value): Remove.
7898
7899         * reorg.c (mostly_true_jump): Always use BR_PROB if present.
7900
7901 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
7902
7903         * aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE([AC_FUNC_MMAP]).
7904         (AC_FUNC_MMAP_FILE): New macro, tests read-only private map of
7905         a plain file.
7906         * configure.in: Call AC_FUNC_MMAP_FILE.
7907         * configure: Regenerate.
7908         * config.in: Regenerate.
7909
7910         * intl/loadmsgcat.c: Test HAVE_MMAP_FILE not HAVE_MMAP.
7911         * fixinc/fixincl.c: Likewise.
7912
7913 2000-04-17  Richard Henderson  <rth@cygnus.com>
7914
7915         * builtins.c (expand_builtin_expect): New.
7916         (expand_builtin): Call it.
7917         * builtins.def (BUILT_IN_EXPECT): New.
7918         * c-common.c (c_common_nodes_and_builtins): Declare __builtin_expect.
7919         * extend.texi: Document it.
7920
7921         * predict.c (expected_value_to_br_prob): New.
7922         (find_expected_value): New.
7923         * basic-block.h (expected_value_to_br_prob): Declare.
7924         * toplev.c (rest_of_compilation): Invoke it.
7925
7926         * rtl.h (NOTE_EXPECTED_VALUE): New.
7927         (NOTE_INSN_EXPECTED_VALUE): New.
7928         * rtl.c (note_insn_name): Update.
7929         * print-rtl.c (print_rtx): Reorg NOTE_LINE_NUMBER special
7930         cases; handle NOTE_INSN_EXPECTED_VALUE.
7931
7932 2000-04-17  Jakub Jelinek  <jakub@redhat.com>
7933
7934         * config/sparc/sparc.c (eligible_for_sibcall_delay): Cannot use
7935         leaf sibcall delay slot if flag_pic.
7936         (output_sibcall): Always emit call for leaf sibcall if flag_pic.
7937
7938 2000-04-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7939
7940         * Makefile.in (stmp-fixproto): Acknowledge errors in fixproto.
7941
7942         * fixproto: If fix-header fails, exit with an error.
7943
7944 Mon Apr 17 14:59:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7945
7946         * cse.c (struct check_depdendence_data): New.
7947         (check_dependence): New function.
7948         (invalidate): Use check_depdenence.
7949
7950 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
7951
7952         * dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that
7953         UNITS_PER_WORD is unsigned.
7954
7955         * tree.h (struct tree_common): Remove misleading comment.
7956
7957 2000-04-16  Dave Pitts  <dpitts@cozx.com>
7958
7959         * Makefile.in ($(srcdir)/c-parse.y: c-parse.in): Enclose the whole
7960         message in quotes. Otherwise, IBM's make program treats the '#' as the
7961         start of a comment and ignores the remainder of the line.
7962
7963         * c-lex.c (yylex): Change for EBCDIC, lower case characters preceed
7964         upper case.
7965         * cccp.c (initialize_char_syntax): Allow for holes in EBCDIC.
7966         * cexp.y (initialize_random_junk): Likewise.
7967         * cppfiles.c (find_include_file): Cast alloca return value.
7968         * cppinit.c (initialize_standard_includes): Likewise.
7969         * cpplib.c (cpp_define, cpp_undef): Likewise.
7970         * defaults.h (ASM_OUTPUT_ASCII): Use ISPRINT.
7971         * final.c (output_asm_insn): Allow for holes in EBCDIC.
7972         * fold-const.c (CHARMASK): New.
7973         (real_hex_to_f): Use it.
7974         * real.c (CHARMASK): New.
7975         (etoasc, asctoeg): Use it.
7976         (asctoeg): EBCDIC lower case characters preceed upper case.
7977
7978         * i370.c (mvs_add_label): Change spacing for coding conventions.
7979         * i370.h (ASM_OUTPUT_CASE_LABEL): Change to the data CSECT for the
7980         outputing case vectors.
7981         (ASM_OUTPUT_CASE_END): New, put assembler back into code CSECT.
7982         (ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Remove page check,
7983         since vector in in the data CSECT.
7984         (ASM_OUTPUT_REG_POP, ASM_OUTPUT_REG_PUSH): Restore to correct operation.
7985         * i370.md (Many patterns): Put the length in the XL directives.
7986         (movdi): Put back STM and MVC in definition.
7987         (floatsidf2): Correct TARGET_ELF_ABI pattern and add back the LE370
7988         pattern using the TCA.
7989         * oe.h (CPP_SPEC): Added to allow trigraphs.
7990         * xm-oe.h (HOST_BITS_PER_LONGLONG): Change to 32. IBM's compiler does
7991         not support the "long long" type.
7992
7993 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
7994
7995         * config/mips/mips-protos.h (mips_legitimate_address_p): New
7996         function.
7997         (mips_reg_mode_ok_for_base_p): Likewise.
7998         * config/mips/mips.h (REG_OK_STRICT_P): Don't define.
7999         (REG_OK_FOR_INDEX_P): Define unconditionally.
8000         (REG_MODE_OK_FOR_BASE_P): Use mips_reg_mode_ok_for_base_p.
8001         (GO_IF_LEGITIMATE_ADDRESS): Use mips_legitimate_address_p.
8002         * config/mips/mips.c (mips16_simple_memory_operand): Adjust now
8003         that GET_MODE_SIZE is unsigned.
8004         (mips_reg_mode_ok_for_base_p): Define.
8005         (mips_legitimate_address_p): Likewise.  Adjust now
8006         that GET_MODE_SIZE is unsigned.
8007         (block_move_loop): Make the number of bytes unsigned.
8008         (expand_block_move): Likewise.
8009         (function_arg): Make the loop counter unsigned to match the
8010         boundary condition.
8011
8012 2000-04-16  Richard Henderson  <rth@cygnus.com>
8013
8014         * rtl.h (enum insn_note): New enumeration.  Subsume
8015         NOTE_INSN_DELETED and friends.
8016         (GET_NOTE_INSN_NAME): Adjust index by NOTE_INSN_BIAS.
8017         * rtl.c (note_insn_name): Tweak string order.
8018
8019 2000-04-15  Zack Weinberg  <zack@wolery.cumb.org>
8020
8021         * cpplex.c (_cpp_read_and_prescan): Enlarge len by setting it
8022         to offset * 2.
8023
8024         * cpplex.c (output_line_command): Remove debugging prints.
8025         (cpp_output_tokens): Don't write out a zero-length buffer or
8026         try to see if it has a newline in it.
8027         (_cpp_expand_to_buffer): Copy the source buffer before pushing.
8028         (_cpp_read_and_prescan): Move shift-down of pushback bytes to
8029         the end of the loop.  Use memmove.  Don't read past the end of
8030         the buffer.  Remove trailing newlines from error messages.
8031
8032 2004-04-16  Neil Booth  <NeilB@earthling.net>
8033
8034         * cpphash.h (SYNTAX_INCLUDE, SYNTAX_ASSERT, directive_handler): new.
8035         * cpplib.c: Add new syntax flags to directive table, and
8036         supporting macros.
8037
8038 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
8039
8040         * i386.c (ix86_expand_epilogue): Yes, the x86 can pop 64k at once
8041         using ret $N.
8042
8043 2000-04-15  David Edelsohn  <edelsohn@gnu.org>
8044
8045         * toplev.c (display_help): Prefix "f" to "sched-verbose=".
8046         * haifa-sched.c: Update -fsched-verbose comments to use "=".
8047
8048 Sat Apr 15 10:59:19 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8049
8050         * Makefile.in (ggc-page.o): Now includes toplev.h.
8051         * ggc-page.c (toplev.h): Now included.
8052         (gc_time): Remove declaration.
8053         (ggc_collect): TIME now long.
8054         * toplev.c (parse_time, varasm_time, gc_time): Still global; all
8055         others static.
8056         * toplev.h (gc_time, parse_time, gc_time): New declarations.
8057
8058         * toplev.c: Make *_time variable long to reduce chance of overflow.
8059         (TIMEVAR): Likewise for `otime'.
8060         (print_time): Arg is now long; compute percentage in FP and round.
8061         * toplev.h (print_time): Arg is long.
8062
8063         * tree.c: Minor whitespace changes.
8064
8065         * configure.in (alpha*-*-*): Add config/alpha/t-alpha.
8066         * configure: Rebuilt.
8067         * libgcc2.c (__fixunstfDI): Renamed from __fixunstfdi.
8068         (__fixunsxfDI): Renamed from __fixunsxfdi.
8069         (__fixunsdfDI): Renamed from __fixunsdfdi.
8070         (__fixunssfDI): Renamed from __fixunssfdi.
8071         (__floatdisf): Use proper type in REP_BIT macro.
8072         (__fixunsxfSI): Renamed from __fixunsxfsi.
8073         (__fixunsdfSI): Renamed from __fixunsdfsi.
8074         (__fixunssfSI): Renamed from __fixunssfsi.
8075         * libgcc2.h: Add cases for MIN_UNITS_PER_WORD > 4.
8076         Change location of macros and upper-case some names as above.
8077         * longlong.h ([alpha]): Use PARAMS, not __P in decl of __udiv__qrnnd.
8078         * config/alpha/t-alpha, config/alpha/qrnnd.asm: New files.
8079
8080         * varasm.c (assemble_variable): Add cast to remove warning.
8081         (immed_real_const_1): Only use CONST[01]_RTX if not in nested function.
8082
8083         * flow.c (count_basic_blocks, find_basic_blocks_1): Remove last change.
8084         * optabs.c (emit_libcall_block): If have REG_EH_REGION, update
8085         region number to -1.
8086
8087 2000-04-15  Richard Earnshaw (rearnsah@arm.com)
8088
8089         * emit-rtl.c (unshare_all_rtl_again): Unmark everything, then
8090         call unshare_all_rtl.
8091
8092         * arm.md (movhi): REGNO_POINTER_ALIGN is now bits.
8093
8094 Fri Apr 14 16:58:45 2000  Jim Wilson  <wilson@cygnus.com>
8095
8096         * config/ia64/lib1funcs.asm (__divdi3, __moddi3, __udivdi3, __umoddi3):
8097         Use .s1 not .s0 for all FP instructions.
8098
8099 2000-04-14  Zack Weinberg  <zack@wolery.cumb.org>
8100
8101         * cpplex.c (cpp_output_tokens, cpp_scan_buffer_nooutput): New public
8102         interfaces.
8103         (safe_fwrite, output_line_command): New static functions.
8104         (cpp_expand_to_buffer): Now private to cpplib.
8105         (cpp_scan_buffer): Take a printer.
8106
8107         * cpphash.h: Update prototypes.
8108         * cpplib.h: Update prototypes.
8109         (cpp_printer): New.
8110         (cpp_buffer): Remove last_nominal_fname.
8111         (cpp_reader): Remove lineno.
8112
8113         * cppmain.c: Use a cpp_printer.
8114         * fix-header.c: No need to inhibit line commands.  Call
8115         cpp_start_read with no printer.
8116
8117         * cpperror.c (cpp_notice_from_errno): Provide default name.
8118         * cppfiles.c (make_IHASH, _cpp_fake_ihash): New functions.
8119         (find_include_file, cpp_read_file): Use make_IHASH.
8120         (file_cleanup): Set control_macro and clear
8121         input_stack_listing_current here.
8122         (_cpp_execute_include): Don't output entering-file marker.
8123         * cpphash.c (special_symbol): Look for the line number in the
8124         buffer, not the reader.
8125         (_cpp_macroexpand): No need to disable line commands.
8126         (_cpp_dump_definition): No need to generate line commands.
8127         (dump_hash_helper): Remove excess newline from output.
8128         * cppinit.c (dump_special_to_buffer): No need to generate line
8129         commands.
8130         (cpp_printer_init): New.
8131         (cpp_start_read): Take a printer, and start it up if it's not
8132         NULL.  No need to generate line commands.
8133         (cpp_finish): Expect no buffers stacked at all.  Take a
8134         printer argument, and flush the output buffer if it's not
8135         NULL.
8136         * cpplex.c (_cpp_lex_token): Return EOF if there's no buffer.
8137         Don't put two hashes at the beginning of an assertion.
8138         (cpp_get_token): Don't increment pfile->lineno or emit line
8139         commands here.  Return EOF if there's no buffer when we get
8140         EOF.
8141         * cpplib.c (do_define, skip_if_group):
8142         No need to disable line commands.
8143         (_cpp_output_line_command): Delete function.
8144         (do_line): Don't emit line commands here, but set things up so
8145         they will be emitted if necessary.  Use _cpp_fake_ihash to
8146         make unique nominal_fnames if necessary.
8147         (do_elif, do_else, _cpp_handle_eof): Call cpp_error_with_line
8148         with 0 for column, not -1.
8149         (_cpp_handle_eof): Don't set the control macro here.  Don't
8150         clear input_stack_listing_current here.  Don't emit line
8151         commands.
8152
8153 2000-04-14  Geoff Keating  <geoffk@cygnus.com>
8154
8155         * config/rs6000/sysv4.h (LINK_START_SOLARIS_SPEC): Define to empty
8156         always, use the default SVR4 start address.
8157
8158         * config/rs6000/linux.h (LINK_SPEC): Don't define.
8159         (LINK_SHLIB_SPEC): Define.
8160         (LINK_START_DEFAULT_SPEC): Define.
8161         (LINK_OS_DEFAULT_SPEC): Define.
8162
8163         * config/rs6000/sysv4.h (ENDFILE_SPEC): Use the %(endfile_*) macros.
8164
8165         * config/rs6000/eabi.asm (__eabi): Call __init rather than
8166         __do_global_ctors to handle constructors.
8167         * config/rs6000/sysv4.h (STARTFILE_ADS_SPEC): Use crtbegin.
8168         (STARTFILE_YELLOWKNIFE_SPEC): Likewise.
8169         (STARTFILE_MVME_SPEC): Likewise.
8170         (STARTFILE_SIM_SPEC): Likewise.
8171         (ENDFILE_ADS_SPEC): Use crtend.
8172         (ENDFILE_YELLOWKNIFE_SPEC): Likewise.
8173         (ENDFILE_MVME_SPEC): Likewise.
8174         (ENDFILE_SIM_SPEC): Likewise.
8175         (STARTFILE_SOLARIS_SPEC): Use crtbegin/crtbeginS.
8176         (ENDFILE_SOLARIS_SPEC): Use crtend/crtendS.
8177         (STARTFILE_LINUX_SPEC): Use crtbeginS for shared objects.
8178         (ENDFILE_LINUX_SPEC): Use crtendS for shared objects.
8179         * config/rs6000/t-ppccomm (LIB2FUNCS_EXTRA): Don't build eabi-ctors.o.
8180         (EXTRA_MULTILIB_PARTS): Build crtbeginS/crtendS.
8181         (CRTSTUFF_T_CFLAGS_S): Define.
8182         * config/rs6000/eabi-ctors.c: Delete.
8183
8184         * config/rs6000/eabi-ci.asm (__init): Align stack to 16-byte
8185         boundary.
8186         (__fini): Likewise.
8187         * config/rs6000/eabi-cn.asm (__init): Allow for 16-byte stack frame.
8188         boundary.
8189         (__fini): Likewise.
8190
8191 Fri Apr 14 16:09:02 2000  Jim Wilson  <wilson@cygnus.com>
8192
8193         * combine.c (force_to_mode, case LSHIFTRT): Check that shift shift
8194         plus mask size is smaller or equal to the mode size.
8195
8196 Fri Apr 14 18:07:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8197
8198         * print-rtl.c (print_rtx, case NOTE): Don't blow up if NOTE_BASIC_BLOCK
8199         not yet set.
8200
8201         * expr.c (reload.h): Now included.
8202         (emit_block_move): Set volatile_ok when checking for movstr.
8203         (emit_move_1): Check for replacements in addresses in multi-word case.
8204         * Makefile.in (expr.o): Now includes reload.h.
8205
8206         * flow.c (count_basic_blocks): Remove unused var PREV_CALL.
8207         Never have a LIBCALL end a basic block.
8208         (find_basic_blocks_1): Likewise.
8209         Reorganize CALL_INSN cases.
8210
8211         * sbitmap.h (EXECUTE_IF_SET_IN_SBITMAP): Revert last change.
8212
8213 Fri Apr 14 10:54:22 2000  Jim Wilson  <wilson@cygnus.com>
8214
8215         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Drop obsolete
8216         completers from mov.ret instruction.
8217
8218 2000-04-14  Richard Henderson  <rth@cygnus.com>
8219
8220         * fold-const.c (extract_muldiv): Don't distribute and widen
8221         multiply across plus for non-sizetype unsigned types.
8222
8223 2000-04-14  Richard Henderson  <rth@cygnus.com>
8224
8225         * flow.c (find_auto_inc): Don't autoinc eliminable registers.
8226         If the original source is dead in the incr insn, it's dead now.
8227
8228 Fri Apr 14 07:40:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8229
8230         * stor-layout.c (layout_decl): Properly compare KNOWN_ALIGN to
8231         see if DECL_BIT_FIELD needs to still be set.
8232
8233         * tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.
8234
8235         * dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call
8236         print_int_cst_octal with something that's not an INTEGER_CST.
8237
8238         * config/alpha/alpha.c (alpha_emit_floatuns): Ensure we pass a REG
8239         and not a SUBREG to a FLOAT rtl.
8240
8241 Thu Apr 13 19:39:56 2000  Clinton Popetz  <cpopetz@cygnus.com>
8242
8243         * emit-rtl.c (try_split): Avoid infinite loop if the split
8244         results in a sequence that contains the original insn.
8245
8246 2000-04-13  Andreas Jaeger  <aj@suse.de>
8247
8248         * config/mips/mips.c (expand_block_move): Pass alignment
8249         argument to move_by_pieces in bits, not bytes.
8250
8251         * config/mips/linux.h (CPP_PREDEFINES): Also define __PIC__ and
8252         __pic__ for little endian.
8253
8254 2000-04-13  Andreas Jaeger  <aj@suse.de>
8255
8256         * config/i386/i386-protos.h: Add prototype for
8257         uno_comparison_operator.
8258
8259 Thu Apr 13 15:55:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8260
8261         * alias.c (nonlocal_reference_p): Take care of CALL_INSNS's fusage.
8262         * calls.c (ECF_PURE): New flag.
8263         (emit_call_1): Handle ECF_PURE calls.
8264         (initialize_argument_information): Unset ECF_PURE flag too.
8265         (precompute_arguments): Precompute for ECF_PURE too.
8266         (expand_call): Handle ECF_PURE calls too.
8267         (emit_library_call_value_1): Rename no_queue argument to fn_type,
8268         accept value of 2 as pure function.
8269         (emit_library_call_value, emit_library_call): Rename no_queue argument
8270         to fn_type.
8271         * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
8272
8273         * tree.h (DECL_IS_PURE): New macro.
8274         (struct tree_decl): Add pure_flag.
8275         * c-common.c (enum attrs): Add attribute "pure".
8276         (init_attributes): Initialize attribute "pure"
8277         (decl_attributes): Handle attribute "pure".
8278         * extend.texi (Attribute "pure"): Document.
8279         * calls.c (expand_call): Add (mem:BLK (scratch)) to "equal from"
8280         in pure function.
8281         (flags_from_decl_or_type): Support attribute "pure".
8282
8283 2000-04-13  Jason Merrill  <jason@casey.cygnus.com>
8284
8285         * cpplex.c (_cpp_lex_token): Handle digraphs.  Don't null-terminate
8286         the token except for numbers and identifiers.
8287
8288 Thu Apr 13 00:09:16 EDT 2000  John Wehle  (john@feith.com)
8289
8290         * i386.c (ix86_expand_binary_operator,
8291         ix86_expand_unary_operator): Check no_new_pseudos
8292         instead of reload_in_progress and reload_completed.
8293         (ix86_split_ashldi, ix86_split_ashrdi,
8294         ix86_split_lshrdi): Check no_new_pseudos instead
8295         of reload_completed.
8296
8297 2000-04-12  Jeffrey A Law  (law@cygnus.com)
8298
8299         * function.c (purge_addressof): Unshare any shared rtl created by
8300         purge_addressof and its children.
8301
8302 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
8303
8304         * function.c (aggregate_value_p): VOID_TYPE nodes are never
8305         aggregates.
8306
8307 2000-04-05  Andreas Jaeger  <aj@suse.de>
8308
8309         * config/mips/linux.h (SUBTARGET_ASM_SPEC): Use proper flags if
8310         not compiling PIC code, add flags for mabi=64.
8311         (SUBTARGET_CPP_SIZE_SPEC): New.
8312         (SUBTARGET_CPP_SPEC): New.
8313         (CPP_PREDEFINES): Define __PIC__ and __pic__.  PIC code is default
8314         for MIPS/Linux and lots of code needs these defines.
8315
8316 Wed Apr 12 22:44:11 2000  Hans-Peter Nilsson  <hp@axis.com>
8317
8318         * reorg.c (fill_slots_from_thread): Check side_effects_p when
8319         trying the "opposite arithmetic" approach.
8320
8321 Wed Apr 12 20:51:20 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
8322
8323         * sh.h (STRUCT_VALUE): Just 0 for TARGET_HITACHI.
8324         (struct sh_args): Add new field force_mem.
8325         (INIT_CUMULATIVE_ARGS): Initialize it.
8326         (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Act on it.
8327
8328 Wed Apr 12 17:20:41 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8329
8330         * calls.c (expand_call): Do not reverse args in "equal from" field.
8331         (emit_library_call_value_1): Emit_libcall_block for const and pure
8332         function.
8333
8334 Wed Apr 12 16:00:25 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
8335
8336         * reload1.c (reload_combine): Don't enable optimization for fixed
8337         registers when encountering a BARRIER.
8338
8339 Wed Apr 12 15:54:11 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8340
8341         * builtins.c (expand_builtin_memcmp): Do expansion even with
8342         !HAVE_cmpstrsi, do libcall when gen_strcmpsi fails.
8343
8344         * calls.c (expand_call): Do NO_DEFER_POP unconditionally once
8345         stack is propertly aligned; add sanity checking for aligned
8346         stack pointer.
8347         (expand_library_call_value_1): Add sanity checking for aligned
8348         stack pointer.
8349
8350 Wed Apr 12 07:51:54 2000  Catherine Moore  <clm@cygnus.com>
8351
8352         * calls.c (emit_library_call_value_1): Change 3rd arg to
8353         locate_and_pad_parm to disregard the setting of partial.
8354
8355 Wed Apr 12 08:47:38 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8356
8357         * tree.c (unsave_expr_now_r, unsafe_for_reeval): Properly do TREE_LIST.
8358
8359         * print-rtl.c (print_rtx): For CALL_PLACEHOLDER, output the
8360         CALL_INSN from the normal case.
8361
8362 Fri Apr  7 12:23:04 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8363
8364         * i386.c (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
8365         New global variables.
8366         (ix86_emit_epilogue_adjustment): Do not attempt to use pop for the
8367         adjustment.
8368         * i386.h (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
8369         Declare,
8370         (TARGET_SUB_ESP_4, TARGET_SUB_ESP_8, TARGET_ADD_ESP_4,
8371          TARGET_ADD_ESP_8): New macros.
8372         * i386.md: Add peep2s to convert esp adjustments to push and pop
8373         instructions.
8374         (pushsi_prologue, popsi_epilogue): New patterns.
8375
8376 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
8377
8378         * real.c (toe64): Remove stale #endif from the last change.
8379
8380 2000-04-12  Stephen L Moshier  <moshier@mediaone.net>
8381
8382         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Comment.
8383         * real.c (toe64): Revert previous change.
8384
8385 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
8386
8387         * objc/objc-act.c: Include ggc.h.
8388         (objc_tree_index, objc_global_trees): Convert most of the
8389         static tree variables into a static array with previous names
8390         as defines.
8391         (objc_ellipsis_node): New variable.
8392         (lang_init): Call objc_act_parse_init and c_parse_init.
8393         Create objc_ellipsis_node.
8394         (build_selector_translation_table): Use objc_ellipsis_node instead
8395         of (tree)1.
8396         (hack_method_prototype): Likewise.
8397         (get_arg_type_list): Likewise.
8398         (start_method_def): Likewise.
8399         (continue_method_def): Likewise.
8400         (gen_method_decl): Likewise.
8401         (ggc_mark_imp_list): New function.
8402         (ggc_mark_hash_table): New function.
8403         (objc_act_parse_init): New function.
8404         * objc/objc-act.h (objc_ellipsis_node): Add extern variable.
8405         * c-parse.in (c_parse_init): For objc add roots of objc specific
8406         local tree variables.
8407         * objc/objc-parse.y: Rebuilt.
8408         * objc/objc-parse.c: Rebuilt.
8409         (opt_parm_list): Use objc_ellipsis_node instead of (tree)1.
8410
8411 Wed Apr 12 01:00:44 EDT 2000  John Wehle  (john@feith.com)
8412
8413         * cse.c (delete_trivially_dead_insns): Also delete insns
8414         that copy a register to itself where the destination is
8415         a strict_low_part.
8416
8417 2000-04-11  Richard Henderson  <rth@cygnus.com>
8418
8419         * flow.c (struct propagate_block_info): Add new_dead, new_live.
8420         (propagate_block): Initialize them.  Use them in parallel instead
8421         of one tmp variable, ie revert much of the 0408 and 0407 functional
8422         changes, but keep the structural changes.
8423         (mark_set_regs): Take new_dead from propagate_block_info instead.
8424         (mark_set_1, mark_set_reg): Likewise.
8425         (mark_used_regs): Likewise with new_live.
8426         (mark_used_reg): Likewise.  Revert 0408 change.
8427
8428 2000-04-11  Nick Clifton  <nickc@cygnus.com>
8429
8430         * config/arm/arm.h: (INCOMING_RETURN_ADDR_RTX): Remove Dwarf2
8431         restriction.
8432         (DWARF_FRAME_RETURN_COLUMN): Remove Dwarf2 restriction.
8433
8434 2000-04-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
8435
8436         * config/elfos.h (SELECT_SECTION): Decide whether to use a data or
8437         const section to output a CONSTRUCTOR based on the same conditions
8438         used for VAR_DECLs.
8439
8440 Tue Apr 11 09:55:59 2000  Jeffrey A Law  (law@cygnus.com)
8441
8442         * pa/long-double.h (FIX_TRUNCTFSI2_LIBCALL): Tweak for PA64.
8443         * pa/pa-protos.h (output_call): Add additional argument indicating
8444         if the call is a sibling/tail call.
8445         (compute_zdepdi_operands, output_64bit_and): Prototype new functions.
8446         (compute_64bit_ior, cmpib_comparison_operator): Likewise.
8447         (function_arg, function_arg_partial_nregs): Likewise
8448         * pa/pa.c (override_options): Always set flag_pic for TARGET_64BIT.
8449         (emit_move_sequence): Zero extend certain constants as needed
8450         for TARGET_64BIT.
8451         (compute_zdepdi_operands, output_64bit_and): New functions.
8452         (output_64bit_ior, function_arg): Likewise.
8453         (cmpib_comparison_operator, function_arg_partial_nregs): Likewise.
8454         (compute_frame_size, hppa_expand_prologue): Handle TARGET_64BIT.
8455         (hppa_expand_epilogue, return_addr_rtx, hppa_va_arg): Likewise.
8456         (hppa_builtin_saveregs, output_cbranch, output_bb): Likewise.
8457         (output_bvb): Likewise.
8458         (output_millicode_call): Return pointer is in %r2 for TARGET_64BIT.
8459         (output_call): New argument 'sibcall'.  Generate sibcall sequences
8460         as needed.
8461         (print_operand); Handle cases 'Q', 'p', and 'z' for TARGET_64BIT.  For
8462         (ouput_arg_descriptor): Do not emit argument descriptors for
8463         TARGET_64BIT.
8464         * pa/pa.h (TARGET_PA_11, TARGET_PA_20): Only define if not already
8465         defined.
8466         (TARGET_64BIT, PROMOTE_FUNCTION_RETURN): Define.
8467         (FUNCTION_OK_FOR_SIBALL): Define.
8468         (CPP_PA10_SPEC, CPP_PA11_SPEC, CPP_PA20_SPEC): Define.
8469         (CPP_CPU_DEFAULT_SPEC, SUBTARGET_EXTRA_SPECS, EXTRA_SPECS): Likewise.
8470         (CPP_SPEC): Use new spec infrastructure.
8471         (BITS_PER_WORD, UNITS_PER_WORD): Handle TARGET_64BIT.
8472         (STACK_BOUNDARY, FUNCTION_BOUNDARY, PIC_OFFSET_TABLE_REGNUM): Likewise.
8473         (RETURN_IN_MEMORY, EXTRA_CONSTRAINT, FIRST_PARM_OFFSET): Likewise.
8474         (REG_PARM_STACK_SPACE, STACK_POINTER_OFFSET): Likewise.
8475         (STACK_DYNAMIC_OFFSET, FUNCTION_VALUE): Likewise.
8476         (FUNCTION_ARG_PASS_BY_REFERENCE, FUNCTION_ARG_CALLEE_COPIES): Likewise.
8477         (TRAMPOLINE_TEMPLATE, TRAMPOLINE_SIZE): Likewise.
8478         (INITIALIZE_TRAMPOLINE, LEGITIMATE_CONSTANT_P): Likewise.
8479         (CONST_OK_FOR_LETTER_P, MOVE_RATIO): Likewise.
8480         (FUNCTION_ARG); Call out to C code.
8481         (FUNCTION_ARG_PARTIAL_NREGS): Likewise.
8482         (MAX_BITS_PER_WORD, MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Define.
8483         (MIN_UNITS_PER_WORD): Likewise.
8484         * pa/pa.md (cmpdi): New expander.
8485         (scc patterns, movstrsi): Not available for TARGET_64BIT.
8486         (64bit conditional arithmetic): New patterns.
8487         (absdi2, smindi3, umindi3, smaxdi3, umaxdi3): New patterns.
8488         (movsicc): Not available if modes on all the operands to not match.
8489         (movdicc): New expander and associated patterns.
8490         (64bit branches): New patterns.
8491         (pre_load, post_store): Generate appropriate code for TARGET_64BIT.
8492         (pre_ldd, post_std): New patterns.
8493         (64bit addil, load low part): New patterns.
8494         (special movsf constant): Not available for TARGET_64BIT.
8495         (movsf, movdf expanders): Force constants into memory.
8496         (32bit movdf/movdi patterns): Disable for TARGET_64BIT.
8497         (64bit movdf/movdi patterns): New patterns.
8498         (zero_extendqidi2, zero_extendhidi2, zero_extendsidi2): New patterns
8499         for TARGET_64BIT.
8500         (extendqidi2, extendhidi2, extendsidi2): Similarly.
8501         (adddi3 expander): Allow "arith_operand" for second input.
8502         (32bit adddi3, subdi3, uaddcm): Disable for TARGET_64BIT.
8503         (64bit adddi3, subsi3, uaddcm): New patterns for TARGET_64BIT.
8504         (mulsi3 expander): Revamp slightly so it supports TARGET_64BIT too.
8505         (muldi3): New expander for TARGET_64BIT.
8506         (divsi3, udivsi3, modsi3, umodsi3): Fourth operand must be (reg:SI 2)
8507         for TARGET_64BIT.
8508         (32bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm): Disable
8509         patterns for TARGET_64BIT.
8510         (64bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm, shadd): New
8511         patterns for TARGET_64BIT.
8512         (64bit bit insertion/extractions): New patterns for TARGET_64BIT.
8513         (64bit shifts/rotates): New patterns/expanders for TARGET_64BIT.
8514         (sibcall_epilogue): New expander.
8515         (casesi): Tweak for TARGET_64BIT.
8516         (call expanders): Set & use the outgoing argument pointer.  Use the
8517         64bit call patterns as needed. Add additional arg to output_call.
8518         (call_internal_reg_64bit, call_value_internal_reg_64bit): New pattern.
8519         (sibcall, sibcall_internal_symref): New expanders.
8520         (sibcall_value, sibcall_value_internal_symref
8521         (interspace_jump): Turn into an expander + matching patterns.
8522         (canonicalize_funcptr_for_compare): Not needed for TARGET_64BIT.
8523         * pa/pa64-regs.h: Eliminate trigraph sequences.
8524         * pa/pa64-start.h (TARGET_PA_20): Fix typo.
8525
8526 2000-04-11  Zack Weinberg  <zack@wolery.cumb.org>
8527
8528         * cppexp.c, cpphash.c, cpphash.h, cpplex.c, cpplib.c,
8529         cpplib.h, cppmain.c, fix-header.c, scan-decls.c: Replace
8530         cpp_token with cpp_ttype everywhere.
8531         * cpperror.c, cpphash.c, cpplex.c, cpplib.c, scan-decls.c:
8532         Replace cpp_buf_line_and_col with CPP_BUF_LINE and/or
8533         CPP_BUF_COL.  Line and column numbers are unsigned int, not
8534         long.
8535         * cpplex.c (cpp_buf_line_and_col): Delete.
8536         * cpplib.h (struct cpp_buffer, struct cpp_reader): Change
8537         'long lineno' to 'unsigned int lineno'.
8538         (CPP_BUF_LINE, CPP_BUF_COL): New macros.
8539
8540 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8541
8542         * extend.texi: ISO C99 is not a draft anymore.
8543         * invoke.texi: ISO C++ is not a draft anymore.
8544         * cpp.texi: __cplusplus is required by the ISO standard.
8545
8546         * extend.texi (-fthis-is-variable): Undocument.
8547         * flags.h (warn_template_debugging): Remove declaration.
8548         * gcc.1 (-fall-virtual, -fenum-int-equiv, -fthis-is-variable,
8549         -Wenum-clash, -Wtemplate-debugging): Undocument.
8550
8551 2000-04-10  Nick Clifton  <nickc@cygnus.com>
8552
8553         * config/arm/arm.h (HOST_INT): New macro: Declare a HOST_WIDE_INT
8554         integer.
8555         (HOST_UINT): New macro: Declare an unsigned HOST_WIDE_INT
8556         integer.
8557         (ARM_SIGN_EXTEND): Use HOST_UINT.
8558         (STRIP_NAME_ENCODING): Prevent warnings about redefinitions.
8559         (ASM_OUTPUT_LABELREF): Prevent warnings about redefinitions.
8560         (INCOMING_RETURN_ADDR_RTX): Only define if Dwarf2 is supported.
8561         (DWARF_FRAME_RETURN_COLUMN): Only define if Dwarf2 is supported.
8562
8563         * config/arm/arm.c: (const_ok_for_arm): Use HOST_UINT.
8564         (arm_gen_constant): Use HOST_UINT.
8565         (arm_canonicalize_constant): Use HOST_UINT.
8566         (arm_reload_in_hi): Use HOST_UINT.
8567         (arm_reload_out_hi): Use HOST_UINT.
8568         (output_multi_immediate): Use HOST_UINT.
8569         (int_log2): Use HOST_UINT.
8570         (arm_poke_function_name): Use HOST_UINT.
8571         (arm_output_epilogue): Use arm_volatile_func().
8572         (output_thumb_prologue): Use arm_strip_name_encoding().
8573
8574 Mon Apr 10 15:40:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8575
8576         * sbitmap.c (sbitmap_a_subset_b_p): Rework loop to avoid potential
8577         of sequence point problems.
8578
8579 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
8580
8581         * rtl.def (ASHIFT, ROTATE, ASHIFTRT, LSHIFTRT, ROTATERT):
8582         Recomment.
8583         * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Recomment.
8584
8585 Mon Apr 10 07:21:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8586
8587         * sbitmap.h: Whitespace changes and use upper-case macro args.
8588         (struct simple_bitmap_def): All sizes now unsigned.
8589         (EXECUTE_IF_SET_IN_SBITMAP): Internal vars now _X instead of X_.
8590         * sbitmap.c (sbitmap_alloc): N_ELMS now unsigned; also local vars.
8591         (sbitmap_vector_alloc): Parms and local vars now unsigned.
8592         (sbitmap_zero): Cast bzero arg to PTR.
8593         (sbitmap_vector_zero, sbitmap_vector_one): Parm and Local var unsigned.
8594         (sbitmap_union_of_diffs): Change loop index to unsigned and rework
8595         loop to make structure clearer.
8596         (sbitmap_not, sbitmap_difference, sbitmap_a_and_b): Likewise.
8597         (sbitmap_a_or_b, sbitmap_a_subset_b_p, sbitmap_a_or_b_and_c): Likewise.
8598         (sbitmap_a_and_b_or_c): Likewise.
8599         (sbitmap_intersection_of_succs): Minor cleanups.
8600         (sbitmap_intersection_of_preds, sbitmap_union_of_succs): Likewise.
8601         (sbitmap_union_of_preds): Likewise.
8602         (sbitmap_first_set_bit, dump_sbitmap): Local variables now unsigned.
8603         (debug_sbitmap): New function.
8604
8605         * c-convert.c (convert): Handle REFERENCE_TYPE like POINTER_TYPE.
8606         * c-typeck.c (convert_for_assignment): Likewise.
8607
8608         * expmed.c (init_expmed): Don't free objects we make.
8609         * emit-rtl.c (gen_rtx_CONST_INT, init_emit_once): Minor cleanups.
8610
8611         * expr.c (get_inner_reference): Correct some WITH_RECORD_EXPR cases.
8612         (expand_expr, case CONVERT_EXPR): Pass proper alignment to store_field.
8613
8614         * gcse.c (expr_hash_table_size): Now unsigned.
8615         (compute_ae_gen): Local variable `i' now unsigned.
8616         (compute_ae_kill, pre_insert_copies, pre_delete, pre_gcse): Likewise.
8617         (compute_transout, hoist_code): Likewise.
8618         (compute_local_properties): Likewise, also hash_table_size.
8619         (alloc_expr_hash_table): N_INSNS now unsigned.
8620         (delete_null_pointer_checks): Mark arg F as unused.
8621
8622         * regrename.c: Minor cleanups, including chang some variables
8623         to unsigned int.
8624
8625 2000-04-10  Neil Booth  <NeilB@earthling.net>
8626
8627         * cpplex.c (skip_block_comment): Use pointer arithmetic rather
8628         than GETC ().
8629         * cpphash.h: (CPP_BUMP_BUFFER_LINE_CUR, CPP_BUMP_LINE_CUR): New.
8630
8631 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8632
8633         * invoke.texi (-fno-gnu-keywords): Remove classof, headof,
8634         __classof__, and __headof__ from the list of gnu keywords.
8635         (-ansi): Remove -foperator-names from list of implied options.
8636         Do not call it ANSI C++.
8637         (-foperator-names): Document as -fno-operator-names.
8638
8639 2000-04-09  Zack Weinberg  <zack@wolery.cumb.org>
8640
8641         * cpphash.c (timestamp): Delete.
8642         (del_HASHNODE): If type is T_MCONST, free value.cpval.
8643         (special_symbol): Remove unnecessary braces.  Remove
8644         T_VERSION.  Treat T_STDC like T_CONST unless
8645         STDC_0_IN_SYSTEM_HEADERS.  Render both __DATE__ and __TIME__
8646         when one is encountered, then convert them into T_MCONST
8647         nodes.
8648         * cppinit.c (builtin_array): version_string is T_MCONST.
8649         __STDC__ has a "1" in its cpval.  Don't have a terminator
8650         entry.  Clean up which entries are dumped.
8651         (initialize_builtins): Only __STDC__ gets the special
8652         -traditional treatment.  Count the length of builtin_array.
8653         Render version_string here.
8654         * cpphash.h: Remove T_VERSION.  Add T_MCONST.
8655         * cpplib.h (struct cpp_reader): Remove timebuf.
8656
8657 2000-04-09  Richard Henderson  <rth@cygnus.com>
8658
8659         * genrecog.c (pred): Update comparison_operator for the unordered
8660         operators.
8661
8662         * config/i386/i386.c (no_comparison_operator): Disallow unordered
8663         operators.
8664         (fcmov_comparison_operator): Allow UNORDERED/ORDERED.
8665         (uno_comparison_operator): New.
8666         (put_condition_code): Handle UNORDERED/ORDERED.
8667         (unsigned_comparison): Likewise.
8668         (ix86_fp_compare_mode): Broken out of ix86_expand_fp_compare.
8669         (ix86_use_fcomi_compare, ix86_prepare_fp_compare_args): Likewise.
8670         (ix86_expand_fp_compare): Use them.  Take scratch as argument,
8671         update all callers.  Handle all 8 unordered operators.
8672         (ix86_expand_setcc): Lose the unordered argument, update all callers.
8673         (ix86_expand_branch): Likewise.  Don't fully expand fp branches.
8674         * config/i386/i386.h (PREDICATE_CODES): Update.
8675         * config/i386/i386-protos.h (ix86_expand_fp_compare): Declare.
8676         (ix86_expand_branch, ix86_expand_setcc): Update.
8677         * config/i386/i386.md (sunordered, sordered): New.
8678         (suneq, sunge, sungt, sunle, sunlt, sltgt): New.
8679         (bunordered, bordered): New.
8680         (buneq, bunge, bungt, bunle, bunlt, bltgt): New.
8681         (*fp_jcc_1, *fp_jcc_2, *fp_jcc_3, *fp_jcc_4): New.
8682         (*fp_jcc_5, *fp_jcc_6, and splitters): New.
8683
8684 2000-04-09  Philip Blundell  <philb@gnu.org>
8685
8686         * config/arm/arm.h (ARM_NAME_ENCODING_LENGTHS): Strip `*' too.
8687
8688 Sun Apr  9 15:16:14 EDT 2000  John Wehle  (john@feith.com)
8689
8690         * i386.md (fix_truncsfhi2, fix_truncdfhi2,
8691         fix_truncxfhi2): New patterns.
8692         * i386.c (output_fix_trunc): Handle converting to HImode.
8693
8694 2000-04-08  Alex Samuel  <samuel@codesourcery.com>
8695
8696         * ssa.c (convert_to_ssa): Eliminate dead code when calling
8697         life_analysis.
8698         (convert_from_ssa): Call compute_bb_for_insn before life_analysis.
8699         (for_each_successor_phi): Change parameter to basic_block.
8700         (coalesce_regs_in_successor_phi_nodes): Likewise.
8701         (coalesce_regs_in_copies): Likewise.
8702         (compute_coalesced_reg_partition): Use basic_block instead of index.
8703         * rtl.h (convert_to_ssa): Delete.
8704         (convert_from_ssa): Likewise.
8705         (successor_phi_fn): Likewise.
8706         (for_each_successor_phi): Likewise.
8707         (in_ssa_form): Likewise.
8708         * basic-block.h (convert_to_ssa): Moved from rtl.h.
8709         (convert_from_ssa): Likewise.
8710         (successor_phi_fn): Likewise.
8711         (in_ssa_form): Likewise.
8712         (for_each_successor_phi): Likewise.  Change parameter to basic_block.
8713         * flow.c (calculate_global_regs_live): Pass a basic_block to
8714         for_each_successor_phi.
8715
8716 2000-04-08  Richard Henderson  <rth@cygnus.com>
8717
8718         * flow.c (mark_used_reg): Use reg_set_p to determine if a register
8719         was modified in the current insn.
8720
8721 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8722
8723         * arm/thumb.md: Delete.
8724         * arm/thumb-protos.h: Delete.
8725
8726 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8727
8728         Merge changes from merged-arm-thumb-backend-branch onto trunk.
8729
8730         2000-04-08  Richard Earnshaw (rearnsha@arm.com)
8731
8732         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000408
8733         into branch.
8734
8735         * arm.md (nop): Use the standard RTL expression.  Don't code as a
8736         define_expand.
8737         (*arm_nop, *thumb_nop): Delete.
8738
8739         * arm.c (const_ok_for_arm): Don't use ANSI extensions for defining
8740         constants.  Use casts instead.
8741         (arm_gen_constant, arm_rtx_costs, arm_reload_in_hi, arm_reload_out_hi,
8742         output_multi_immediate, arm_poke_function_name): Likewise.
8743         * arm.h (ARM_LEGITIIMIZE_RELOAD_ADDRESS, ARM_SIGN_EXTEND,
8744         MASK_RETURN_ADDDR): Likewise.
8745
8746         2000-03-31  Richard Earnshaw (rearnsha@arm.com)
8747
8748         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000325
8749         into branch.
8750
8751         * arm.md (eh_epilogue): New function.
8752         * arm.h (struct machine_function): Move to here ...
8753         * arm.c: ... from here.
8754         (arm_output_epilogue): Support epilogues for __builtin_eh_return.
8755         (thumb_exit): Extra parameter eh_ofs.  All callers changed.
8756         Handle epilogues for __builtin_eh_return.  Make bit-fields unsigned.
8757
8758         2000-03-30  Nick Clifton  <nickc@cygnus.com>
8759
8760         * config/arm/semi.h (ASM_SPEC): Restore definition.
8761         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
8762
8763         * config/arm/elf.h (ASM_SPEC): Restore definition.
8764         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
8765
8766         * config/arm/arm.h (ASM_SPEC): Remove definition.
8767         (SUBTARGET_EXTRA_ASM_SPEC): Remove definition.
8768
8769         2000-03-26  Bernd Schmidt <bernds@cygnus.co.uk>
8770
8771         * config/arm/arm.c: Disable -fschedule-insns for Thumb.
8772
8773         2000-03-24  Nick Clifton  <nickc@cygnus.com>
8774
8775         Various formating tidyups, elimination of compile time
8776         warnings and synchronisation with internal sources:
8777
8778         * config/arm/arm-protos.h (assemble_align): Add prototype.
8779         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
8780         (gen_comapre_reg): Rename to arm_gen_compare_reg.
8781         (arm_return_addr_rtx): Rename to arm_return_addr.
8782
8783         * config/arm/arm.c: Include except.h.
8784         Define shorter typenames for strict minipool_node and struct
8785         minipool_fix.
8786         (arm_return_in_memory): For WinCE return all structures <= 32 bits
8787         in memory.
8788         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
8789         (gen_comapre_reg): Rename to arm_gen_compare_reg.
8790
8791         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
8792         already defined.
8793         (ASM_SPEC): Define if not already defined.
8794         (ASM_OUTPUT_DEF_FROM_DECLS): Define.
8795
8796         * config/arm/arm.md: Rename references to gen_rotated_half_load to
8797         arm_gen_rotated_half_load, and references to gen_comapre_reg to
8798         arm_gen_compare_reg.
8799         (indirect_jump):  Only accept register operands.
8800         (load_indirect_jump): Keep this pattern since combine can generate
8801         it.
8802
8803         * config/arm/coff.h: Include aout.h.
8804         (MULTILIB_DEFAULTS): Only define if not already defined.
8805
8806         * config/arm/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Move definition
8807         into arm.h (so that COFF ports can support thumb based aliases).
8808         (ASM_SPEC): Move definition into arm.h
8809
8810         * config/arm/linux-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Remove
8811         redundant apcs spec.
8812         (ASM_SPEC): Move definition to arm.h
8813
8814         * config/arm/semi.h (ASM_SPEC): Move definition to arm.h
8815
8816         * config/arm/unknown-elf.h (ASM_OUTPUT_SECTION_NAME): Add support
8817         for entries in the .bss section
8818
8819         2000-03-23  Nick Clifton  <nickc@cygnus.com>
8820
8821         * config/arm/arm.h (THUMB_INITIAL_ELIMINATION_OFFSET): Pass 0
8822         to thumb_far_jump_used_p.
8823
8824         * config/arm/arm-protos.h (thumb_far_jump_used_p): Take a
8825         single integer parameter.
8826
8827         * config/arm/arm.c (struct machine_function): Add two new
8828         fields, 'far_jump_used' and 'arg_pointer_live'.
8829         (thumb_far_jump_used_p): Once the decision has been made that
8830         far jumps might be used, always return true.
8831         If being called from the initial elimination offset macro then
8832         do not bother to perform the test if the arg pointer is not
8833         being used.
8834         (thumb_unexpand_epilogue): Pass 1 to thumb_far_jump_used_p().
8835         (output_thumb_prologue): Pass 1 to thumb_far_jump_used_p().
8836
8837         2000-03-23  Richard Earnshaw (rearnsha@arm.com)
8838
8839         * arm.c (output_return_instruction): Handle more cases where we can
8840         return from a function with an ldr instruction.
8841         (arm_output_epilogue): Likewise.
8842
8843         * arm.c (thumb_expand_prologue): Don't clobber the frame pointer
8844         if we need to push a large stack frame and there are no callee-saved
8845         registers.
8846
8847         * arm.c (arm_debugger_arg_offset): An offset of 0 is also valid
8848         in ARM code if the frame pointer has been eliminated.
8849
8850         * arm.md (epilogue, *epilogue_insns, consttable_*, align_4): Renumber
8851         unspec_volatile arguments to avoid duplicates.
8852         (consttable_1, consttable_2): Fixes for big-endian mode.
8853
8854         * arm.md (all ARM-mode load insns): Add neg_pool_range attribute
8855         as appropriate.
8856
8857         Re-write constant pool code.
8858         * arm.c (minipool_node, minipool_fix): New types.
8859         (minifix): Delete type.
8860         (arm_add_minipool_constant): Delete.
8861         (arm_compute_minipool_offsets, arm_find_barrier,
8862         arm_find_minipool_constant, fixup_compare, sort_fixups): Likewise.
8863         (get_jump_table_size): Now returns HOST_WIDE_INT.
8864         (move_minipool_fix_forward_ref, add_minipool_forward_ref): New
8865         functions.
8866         (move_minipool_fix_backward_ref, add_minipool_backward_ref): Likewise.
8867         (assign_minipool_offsets, arm_print_value): Likewise.
8868         (dump_minipool): Rewrite.
8869         (arm_barrier_cost): New function.
8870         (create_fix_barrier): New function.
8871         (push_minipool_barrier): New function.
8872         (push_minipool_fix): Record additional information about the fixup
8873         required.
8874         (note_invalid_constants): Remove push for (UNSPEC 3).  Don't
8875         check the mode of what needs fixing.
8876         (arm_reorg): Rewrite.
8877
8878         2000-03-08  Nick Clifton  <nickc@cygnus.com>
8879
8880         * config/arm/arm.md (indirect_jump): Force constant addresses into
8881         a register.
8882
8883         2000-03-01  Bernd Schmidt <bernds@cygnus.co.uk>
8884
8885         * config/arm/arm.md: Add splitter to turn SF moves into SI moves.
8886
8887         2000-02-24  Nick Clifton  <nickc@cygnus.com>
8888
8889         * config/arm/arm.c (thumb_expand_prologue): Make sure that stack
8890         adjust is word aligned.
8891         (thumb_expand_epilogue): Make sure that stack adjust is word
8892         aligned.
8893
8894         * config/arm/elf.h (ASM_FILE_START): Fix type of version string.
8895
8896         2000-02-24  Bernd Schmidt <bernds@cygnus.com>
8897
8898         * config/arm/arm.h (THUMB_GO_IF_LEGITIMATE_ADDRESS): Allow frame
8899         pointer relative addresses.
8900
8901         2000-02-10  Richard Earnshaw  <rearnsha@arm.com>
8902
8903         * arm.c (find_barrier): Find the last barrier within the allowed
8904         range.
8905
8906         2000-02-09  Nick Clifton  <nickc@cygnus.com>
8907
8908         * config/arm/arm-protos.h: Replace PROTO with PARAMS.
8909
8910         2000-02-09  Nick Clifton  <nickc@cygnus.com>
8911
8912         * config/arm/linux-elf.h (FUNCTION_PROFILER): Rename to
8913         ARM_FUNCTION_PROFILER.
8914
8915         * config/arm/netbsd.h (FUNCTION_PROFILER): Rename to
8916         ARM_FUNCTION_PROFILER.
8917
8918         * config/arm/linux-oldld.h: Imported from mainline sources.
8919
8920         2000-02-07  Nick Clifton  <nickc@cygnus.com>
8921
8922         * config/arm/lib1funcs.asm: Merge in thumb functions from
8923         lib1thumb.asm.
8924
8925         * config/arm/lib1thumb.asm: Delete.
8926
8927         2000-02-04  Nick Clifton  <nickc@cygnus.com>
8928
8929         * config/arm/arm.c: Sychronised with current Red hat local
8930         sources.
8931         * config/arm/arm.h: Ditto.
8932         * config/arm/arm-protos.h: Ditto.
8933
8934         2000-02-02  Bernd Schmidt  <bernds@cygnus.co.uk>
8935
8936         * arm.c (soft_df_operand): Reject SUBREGs containing a constant.
8937
8938         * arm.c (arm_gen_movstrqi): Generate halfword stores rather than two
8939         byte stores.
8940
8941         2000-02-02  Nick Clifton  <nickc@cygnus.com>
8942
8943         * config/arm/thumb.c (thumb_exit): Additional fix for same bug.
8944
8945         * config/arm/arm.md (epilogue): Fix rtl checking abort because
8946         (return) was emited using an emit_insn() call.
8947
8948         2000-01-31  Nick Clifton  <nickc@cygnus.com>
8949
8950         * config/arm/arm.c (output_thumb_prologue): Fix bug generating
8951         thumb stack frame.
8952         (thumb_exit): Move frame pointer back into hard frame pointer
8953         register if backtracing is being used.
8954
8955         2000-01-13  Richard Earnshaw (rearnsha@arm.com)
8956
8957         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000113
8958         into branch.
8959
8960         1999-12-15  Bernd Schmidt  <bernds@cygnus.co.uk>
8961
8962         * config/arm/arm.md (neg_pool_offset): Provide default for new
8963         attribute.
8964         (arm_movsi_insn): Add neg_pool_offset attribute.
8965         * config/arm/arm.c (arm_find_barrier): Replace arg FIX with an
8966         rtx for the insn that starts the scan and an unsigned long for its
8967         address.  Add MIN_OFFSET and PINSERTED args.  All callers changed.
8968         Change scan to ignore insns before MIN_OFFSET.  Store size of inserted
8969         instructions in *PINSERTED.
8970         (struct minipool_fixup): Add MIN_ADDRESS elt.
8971         (sort_fixups): Compute it.
8972         (arm_reorg): Changes to support inserting pools before the insn to be
8973         fixed up.
8974
8975         1999-12-08  Bernd Schmidt  <bernds@cygnus.co.uk>
8976
8977         * config/arm/elf.h (MULTILIB_DEFAULTS): Add "marm".
8978         * config/arm/linux-elf.h (MULTILIB_DEFAULTS): Add "marm".
8979         * config/arm/coff.h (MULTILIB_DEFAULTS): Add "marm".
8980
8981         Wed Nov  3 10:04:07 1999  Nick Clifton  <nickc@cygnus.com>
8982
8983         * config/arm/semi.h (TARGET_VERSION): Do not define if already
8984         defined.
8985         (TARGET_DEFAULT): Do not define if already defined.
8986
8987         Tue Nov  2 10:37:25 1999  Nick Clifton  <nickc@cygnus.com>
8988
8989         * config/arm/arm.md (anddi3): Allow disjoint source operands.
8990         (iordi3): Allow disjoint source operands.
8991         (xordi3): Allow disjoint source operands.
8992         (negdi2): Permit construction for ARM and Thumb.
8993         (arm_negdi2): Renamed version of old negdi2 pattern.
8994         (thumb_negdi2): New pattern: Only permit non-overlapping
8995         source and destination.
8996
8997         Fri Oct 29 18:52:38 1999  Nick Clifton  <nickc@cygnus.com>
8998
8999         * config/arm/arm.c (thumb_expand_prologue): Emit a USE of the
9000         scratch low register so that it will not be deleted.
9001
9002         Fri Oct 29 15:23:48 1999  Nick Clifton  <nickc@cygnus.com>
9003
9004         * config/arm/pe.h (ARM_PE): Define.
9005
9006         * config/arm/arm.c (arm_valid_machine_decl_attribute): Allow
9007         interfacearm attribute if this is a PE toolchain.
9008         (output_return_instruction): Do not emit anything if the function
9009         has the naked attribute set.
9010         (is_called_in_ARM_mode): If the function has the interfacearm
9011         attribute then return true.
9012         (thumb_expand_prologue): Do not generate a prologue for naked
9013         functions.
9014         (thumb_expand_epilogue): Do not generate an epilogie for a naked
9015         function.
9016         (output_thumb_prologue): Do not bother if the function is naked.
9017         Strip PE encoding from function name before emitting.
9018
9019         Thu Oct 28 11:05:13 1999  Richard Earnshaw <rearnsha@arm.com>
9020
9021         * arm.md (pic_load_addr): Fix constraints.
9022
9023         * arm.md (casesi_insn): Fix mis-applied patch.
9024
9025         * arm.md ("core" function unit): Add rules for single- and
9026         multi-cycle insns.
9027         (All TARGET_THUMB patterns): Add "type" attribute information
9028         where needed.
9029         * arm.c (arm_adjust_cost): Reduce the cost of a data dependency if
9030         the following insn is a CALL.
9031
9032         * arm.c (thumb_expand_epilogue): Add a use of the adjusted stack
9033         pointer.
9034         * arm.h (CONDITIONAL_REGISTER_USAGE): Nail down the
9035         ARM_HARD_FRAME_POINTER_REGNUM when TARGET_APCS_FRAME.
9036         (FRAME_POINTER_REQUIRED): Only check TARGET_APCS_FRAME if TARGET_ARM.
9037
9038         Wed Oct 27 14:40:48 1999  Nick Clifton  <nickc@cygnus.com>
9039
9040         * config/arm/linux-gas.h: oops - this file was missed out when the
9041         branch was created...
9042
9043         Tue Oct 26 17:07:38 1999  Richard Earnshaw <rearnsha@arm.com>
9044
9045         * thumb.c: Deleted.  Move contents to ...
9046         * arm.c: ... here.
9047         * t-arm-aout, t-arm-coff, t-arm-elf, t-linux, t-netbsd, t-semi: Remove
9048         rule for thumb.o
9049         * configure.in (arm*-*-*): Remove thumb.o from extra_objs list.
9050         * configure: Regen.
9051
9052         * arm-protos.h: Use RTX_CODE and tidy up long lines.  Don't
9053         declare a prototype for asm_output_align();
9054
9055         * arm.c (thumb_condition_code): Delete.
9056         (arm_print_operand): Always use arm_condition_code array.
9057
9058         * arm.c (thumb_return_addr_rtx): Delete.
9059         (arm_save_machine_status, arm_restore_machine_status): Delete.
9060         (arm_init_machine_status, arm_mark_machine_status): New functions.
9061         (arm_init_expanders): Update accordingly.
9062         (arm_return_addr): Renamed from arm_return_addr_rtx.  Rewrite.
9063         (thumb_expand_prologue): Delete code referencing thumb_return_addr_rtx.
9064         * arm.h (RETURN_ADDR_RTX): Call arm_return_addr().
9065
9066         Tue Oct 26 13:24:16 1999  Nick Clifton  <nickc@cygnus.com>
9067
9068         * configure.in : Fix arm-*-aout target to use new t-arm-aout
9069         script.
9070         * config/arm/t-arm-aout: New file: Makefile script for arm-*-aout
9071         targets.
9072
9073         Tue Oct 26 11:27:12 1999  Nick Clifton  <nickc@cygnus.com>
9074
9075         * config/arm/thumb.c (output_thumb_prologue): Fix bug creating
9076         stack backtrace structure.
9077
9078         * config/arm/arm-protos.h: Add prototypes for functions defined in
9079         arm/pe.h.
9080
9081         * config/arm/arm.c (arm_override_options): Fix selection of
9082         attributes of default processor.
9083
9084         * config/arm/coff.h: Delete needless #include.
9085
9086         * config/arm/pe.c: Delete unused code.
9087
9088         * config/arm/pe.h (CPP_DEFINES): Delete
9089         (SUBTARGET_CPP_SPEC): Define.
9090         (ASM_DECLARE_FUNCTION_NAME): Use ARM_DECLARE_FUNCTION_NAME.
9091
9092         * config/arm/t-pe: Add -DInhibit_libc to allof libgcc.a to build.
9093
9094         Mon Oct 25 15:42:09 1999  Richard Earnshaw (rearnsha@arm.com)
9095
9096         * arm.h (TARGET_APCS_FRAME): Renamed from TARGET_APCS -- all uses
9097         updated.
9098         (CAN_DEBUG_WITHOUT_FP): Define.
9099         (FIXED_REGISTERS): Make r11 call-saved.
9100         (CALL_USED_REGISTERS): Likewise.
9101         (CONDITIONAL_REGISTER_USAGE): Fix r11 if TARGET_APCS_FRAME.
9102         (FRAME_POINTER_REQUIRED): Correct logic for determining when a
9103         frame-pointer is required.
9104         (TARGET_DEFAULT): Make default setting include ARM_FLAG_APCS_FRAME.
9105         * arm.c (arm_override_options): Warn about -mno-apcs-frame and -g
9106         if the target normally needs a stack frame in non-leaf functions.
9107         (use_return_insn): Correct logic for determining when a return
9108         instruction can be used.
9109         (output_return_instruction): Handle the frame-pointer register as
9110         a normal register when not TARGET_APCS_FRAME.
9111         (arm_output_prologue): Likewise.
9112         (arm_output_epilogue): Likewise.
9113         (output_func_epilogue): Likewise.
9114         (arm_expand_prologue): Likewise.
9115         * netbsd.h semi.h (TARGET_DEFAULT): Add ARM_FLAG_APCS_FRAME.
9116
9117         * arm.c (use_return_insn): No need to check floating point regs if
9118         TARGET_SOFT_FLOAT.
9119         (arm_find_minipool_constant): Correct typo; use GET_CODE to get
9120         the code of value stored in the minipool array.
9121         (arm_add_minipool_constant): Likewise.
9122
9123 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9124
9125         * basic-block.h (conflict_graph_enum_fn): K&R fix.
9126
9127 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9128
9129         * tree.c (tree_expr_nonnegative_p): New function.
9130
9131         * tree.h (tree_expr_nonnegative_p): Declare.
9132
9133         * c-typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to
9134         elide some sign_compare warnings.
9135         (build_conditional_expr): Likewise.
9136
9137 Sat Apr  8 00:21:51 EDT 2000  John Wehle  (john@feith.com)
9138
9139         * i386.md (ashrsi3, ashrhi3, ashrqi3): Fix typo.
9140
9141         * i386.md (floathisf2, floathidf2, floathixf2): New patterns.
9142         * i386.c (print_operand): Use the proper suffix for a 387 HImode
9143         operand.  Abort if a 387 operand has an unsupported size.
9144
9145 2000-04-08  Neil Booth  <NeilB@earthling.net>
9146
9147         * cppexp.c (parse_charconst): Null does not end character
9148         constants.
9149         * cppinit.c (ISTABLE): Null character handled as whitespace.
9150         * cpplex.c (null_warning):  new function.
9151         (skip_string): Emit warning if nulls encountered.
9152         (_cpp_skip_hspace): Emit warning if nulls encountered.
9153         (_cpp_lex_token): Emit warning if nulls encountered.  Drop
9154         them.
9155         * cpp.texi: Update.
9156
9157 2000-04-07  Richard Henderson  <rth@cygnus.com>
9158
9159         * flow.c (loop_depth): Remove.
9160         (reg_next_use, cc0_live, mem_set_list): Replace with ...
9161         (struct propagate_block_info): New.
9162         (life_analysis): Don't allocate reg_next_use.
9163         (propagate_block_delete_insn): Break out of propagate_block.
9164         Use flow_delete_insn to unlink rather than use NOTE_INSN_DELETED.
9165         (propagate_block_delete_libcall): Likewise.
9166         (propagate_block): Create a propagate_block_info struct to pass
9167         to subroutines.  Allocate one not two temporary regsets.  Don't
9168         clobber memory for const calls.  Look for clobbers in
9169         CALL_INSN_FUNCTION_USAGE.
9170         (mark_set_regs): Recognize COND_EXEC.
9171         (mark_set_reg): Break out of mark_set_1.
9172         (mark_used_reg): Break out of mark_used_regs.
9173         (mark_used_regs): Recognize COND_EXEC.
9174         (insn_dead_p): Use propagate_block_info struct.
9175         (libcall_dead_p, invalidate_mems_from_autoinc): Likewise.
9176         (find_auto_inc, try_pre_increment_1): Likewise.
9177         (print_rtl_with_bb): Dump regs live at end too.
9178         (count_reg_sets_1): Pass in loop_depth.
9179         (count_reg_sets, count_reg_references): Likewise.
9180         (recompute_reg_usage): Provide it.
9181
9182 2000-04-07  Richard Henderson  <rth@cygnus.com>
9183
9184         * Makefile.in (conflict.o): Depend on $(RTL_H) and $(BASIC_BLOCK_H)
9185         not the raw files.
9186
9187 2000-04-07  Zack Weinberg  <zack@wolery.cumb.org>
9188
9189         * cpplib.c (do_elif): Skip the rest of the line if we're
9190         not going to bother evaluating it.
9191         (skip_if_group): Clear pfile->only_seen_white.  Reorder loop
9192         to avoid pointless calls to the lexer.
9193
9194 Fri Apr  7 11:50:54 2000  Jim Wilson  <wilson@cygnus.com>
9195
9196         * config/ia64/ia64.c: Delete stdio.h and ctype.h includes.
9197
9198 2000-04-07  Jason Merrill  <jason@casey.cygnus.com>
9199
9200         * calls.c (expand_call): emit_queue if we're trying a sibcall.
9201
9202 2000-04-07  Jakub Jelinek  <jakub@redhat.com>
9203
9204         * config/sparc/t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
9205
9206 2000-04-06  Geoff Keating  <geoffk@cygnus.com>
9207
9208         * Makefile.in: Build crtbeginS and crtendS like crtbegin and
9209         crtend so they can be multilibbed.
9210         (STAGESTUFF): Remove s-crt and s-crtS.
9211
9212 2000-04-07  Richard Henderson  <rth@cygnus.com>
9213
9214         * config/alpha/alpha.c (alpha_emit_conditional_move): Fail
9215         if we discover we need a pseudo and no_new_pseudos is true.
9216         * config/alpha/alpha.md (ne:DI insn): New.
9217         (trunctfsf2, sne): Emit NE instead of non-canonical LTU.
9218
9219 2000-04-07  Richard Henderson  <rth@cygnus.com>
9220
9221         * rtl.def (COND_EXEC): New.
9222         * rtl.h (COND_EXEC_TEST, COND_EXEC_CODE): New.
9223         * tm.texi (MAX_CONDITIONAL_EXECUTE): Document.
9224
9225         * genconfig.c (have_cond_arith_flag): Remove.
9226         (have_cond_exec_flag): New.
9227         (walk_insn_part): Detect COND_EXEC, not arithmetic in IF_THEN_ELSE.
9228         (main): Print HAVE_conditional_execution.
9229
9230         * haifa-sched.c (haifa_classify_insn): Recognize COND_EXEC.
9231         (sched_analyze_insn, print_pattern): Likewise.
9232         * reload.c (find_equiv_reg): Likewise.
9233         * rtlanal.c (reg_referenced_p): Likewise.
9234         (note_stores, dead_or_set_regno_p): Likewise.
9235         (reg_overlap_mentioned_p): Rewrite to use a switch.
9236
9237         * ggc.h (struct rtx_def): Forward declare.
9238
9239         * print-rtl.c (debug_rtx_range): New.
9240         * rtl.h (debug_rtx_range): Declare.
9241
9242         * varray.h (VARRAY_ACTIVE_SIZE, VARRAY_POP_ALL): New.
9243
9244         * gcse.c (gcse_main): Don't rebuild the CFG here.
9245         (delete_null_pointer_checks): Likewise.
9246         * ssa.c (convert_to_ssa): Likewise.
9247         * toplev.c (rest_of_compilation): Do it here instead.  Combine
9248         sequential calls to TIMEVAR.  Consistently use `insns' instead of
9249         `get_insns()'.  Always split insns after reload when optimizing.
9250
9251         * basic-block.h (merge_blocks_nomove): Declare.
9252         (tidy_fallthru_edge): Declare.
9253         * flow.c (merge_blocks_nomove): Document as merging into previous
9254         blocks.  Remove cruft from between blocks; remove all edges out of A.
9255         (tidy_fallthru_edge): Export.
9256
9257 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
9258
9259         * ssa.c (compute_conservative_reg_partition): Declare with
9260         void arguments.
9261         * toplev.c (clean_dump_file): Remove previously-deleted function
9262         inadvertantly merged back in.
9263         * conflict.c (conflict_graph_add): Use a single call to
9264         htab_find_slot to look up and insert.
9265
9266 2000-04-06  Richard Henderson  <rth@cygnus.com>
9267
9268         * genrecog.c (*): Rename _last_insn to last_insn.
9269         (make_insn_sequence): Set the position of the peephole2 C test
9270         to be at the last insn.
9271
9272 2000-04-06  Richard Henderson  <rth@cygnus.com>
9273
9274         * flow.c (compute_flow_dominators): Free worklist.
9275
9276 2000-04-06  Michael Matz  <matzmich@cs.tu-berlin.de>
9277
9278         * flow.c (compute_flow_dominators): Process blocks FIFO not LIFO.
9279
9280 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
9281
9282         * rtl.h (INSN_P): New macro.
9283         (successor_phi_fn): New typedef.
9284         (for_each_successor_phi): New prototype.
9285         (in_ssa_form): New variable.
9286         (PHI_NODE_P): Likewise.
9287         * flow.c (calculate_global_regs_live): Add to new_live_at_end from
9288         phi nodes in successors.
9289         (mark_used_regs): Add PHI case.
9290         (set_phi_alternative_reg): New function.
9291         (life_analysis): Assert that dead code elimination is not selected
9292         when in SSA form.
9293         * toplev.c (to_ssa_time): New variable.
9294         (from_ssa_time): Likewise.
9295         (compile_file): Zero to_ssa_time and from_ssa_time.
9296         Print time to convert to and from SSA.
9297         (rest_of_compilation): Time convert_to_ssa and convert_from_ssa.
9298         (print_time): Compute percent fraction as integer.
9299         * ssa.c (PHI_NODE_P): Moved to rtl.h.
9300         (convert_to_ssa): Check if we're already in SSA.
9301         Don't eliminate dead code in life_analysis.
9302         Rerun flow and life analysis at bottom.
9303         (eliminate_phi): Use canonical regnos when adding nodes.
9304         (mark_reg_in_phi): New function.
9305         (mark_phi_and_copy_regs): Likewise.
9306         (convert_from_ssa): Rerun life analysis at top.
9307         Use coalesced partition.
9308         Check for removing a phi node at the end of the block.
9309         (compute_coalesced_reg_partition): New function.
9310         (coalesce_regs_in_copies): Likewise.
9311         (coalesce_reg_in_phi): Likewise.
9312         (coalesce_regs_in_sucessor_phi_nodes): Likewise.
9313         (for_each_successor_phi): Likewise.
9314         (rename_context): New struct.
9315         (rename_block): Use a rename_context with rename_insn_1.  When
9316         renaming sets of a subreg, emit a copy of the entire reg first.
9317         (rename_insn_1): Treat data as a rename_context *.  Save current
9318         insn in set_data.
9319         (rename_set_data): Add field set_insn.
9320         * Makefile.in (HASHTAB_H): Move up in file.
9321         (OBSTACK_H): New macro.
9322         (collect2.o): Use OBSTACK_H in dependencies.
9323         (sdbout.o): Likewise.
9324         (emit-rtl.o): Likewise.
9325         (simplify-rtx.o): Likewise.
9326         (fix-header.o): Likewise.
9327         (OBJS): Add conflict.o.
9328         (conflict.o): New rule.
9329         * basic-block.h: Include partition.h.
9330         (conflict_graph): New typedef.
9331         (conflict_graph_enum_fn): Likewise.
9332         (conflict_graph_new): New prototype.
9333         (conflict_graph_delete): Likewise.
9334         (conflict_graph_add): Likewise.
9335         (conflict_graph_conflict_p): Likewise.
9336         (conflict_graph_enum): Likewise.
9337         (conflict_graph_merge_regs): Likewise.
9338         (conflict_graph_print): Likewise.
9339         (conflict_graph_compute): Likewise.
9340         * conflict.c: New file.
9341
9342 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
9343
9344         * tlink.c (read_repo_files): Don't look for .rpo info for
9345         linker flags.
9346
9347 Thu Apr  6 20:39:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9348
9349         * sh.h (STRUCT_VALUE, RETURN_IN_MEMORY): Define.
9350
9351 Thu Apr  6 19:34:08 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9352
9353         * config/sh/lib1funcs.asm (___udivsi3_i4):
9354         ( __SH4_SINGLE__ / __SH4_SINGLE_ONLY__ variant): value for fpscr
9355         only depends on FMOVD_WORKS.
9356
9357 Thu Apr  6 19:11:47 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9358
9359         * config/sh/lib1funcs.asm (___udivsi3_i4): When using fmovd,
9360         make double constant 8-byte aligned.
9361
9362 2000-04-06  Jakub Jelinek  <jakub@redhat.com>
9363
9364         * config/sparc/sparc.md (movtf_insn_sp32, movtf_insn_vis_sp32,
9365         movtf_no_e_insn_sp32, movtf_insn_hq_sp64, movtf_insn_hq_vis_sp64,
9366         movtf_no_e_insn_sp64): Accept loading 0.0 into GENERAL_REGS.
9367         (movtf_insn_sp64, movtf_insn_vis_sp64): Likewise.
9368         Accept storing GENERAL_REGS into offsetable memory.
9369         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Don't allow
9370         building a TFmode constant other than 0.0L into GENERAL_REGS.
9371
9372 2000-04-06  Clinton Popetz  <cpopetz@cygnus.com>
9373
9374         * regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.
9375
9376 2000-04-06  Zack Weinberg  <zack@wolery.cumb.org>
9377
9378         * cpphash.c (CPP_IS_MACRO_BUFFER, FORWARD, PEEKC): Delete.
9379         (macro_cleanup): No need to cast pbuf->macro.
9380         (collect_expansion): Use _cpp_get_define_token.  Goto done if
9381         it returns VSPACE.  Remove check for trailing space after
9382         CPP_COMMENT.
9383         (_cpp_create_definition): Don't diddle flags here.  Return
9384         directly on error.
9385         (unsafe_chars): Handle c1 being EOF.
9386         (push_macro_expansion): Use unsafe_chars for both accidental-paste
9387         checks.  Don't push the buffer till after we're done with
9388         them.
9389         * cpplex.c (PEEKBUF, GETBUF, FORWARDBUF): New.
9390         (PEEKN, FORWARD, GETC, PEEKC): Use them.
9391         (cpp_push_buffer): Don't set new->alimit.  Set new->mark
9392         appropriately.
9393         (_cpp_parse_assertion): Don't NUL terminate.
9394         (_cpp_lex_token): Fix -traditional macro handling.  Don't skip
9395         hspace before calling _cpp_parse_assertion.  Remove all sets
9396         of only_seen_white. Treat '\f' as hspace.  Don't do anything
9397         special with '\n' here.
9398         (maybe_macroexpand): Handle T_EMPTY hash entries without
9399         pushing a buffer at all.
9400         (cpp_get_token): Handle clearing only_seen_white here.  Handle
9401         incrementing the line number here.  Clear
9402         potential_control_macro as well as only_seen_white, if
9403         appropriate.
9404         (cpp_get_non_space_token): Don't eat CPP_POP tokens.
9405         (_cpp_get_define_token): New function, basically like
9406         _cpp_get_directive_token was but doesn't eat horizontal space.
9407         Don't do anything with only_seen_white here.
9408         (_cpp_get_directive_token): Just call _cpp_get_define_token
9409         repeatedly till it returns non-hspace.
9410
9411         * cpplib.c (PEEKN, FORWARD, GETC, PEEKC): Delete.
9412         (conditional_skip, skip_if_group): Return int.
9413         (DIRECTIVE_TABLE): Change origin of all conditional directives
9414         to "COND".
9415         (TRAD_DIRECT_P): New macro.
9416         (_cpp_handle_directive): Use _cpp_get_directive_token.  Issue
9417         an error for a bogus directive, unless -lang-asm.  Use
9418         TRAD_DIRECT_P. Loop calling handler functions till one returns
9419         zero.
9420         (get_macro_name): Don't diddle flags here.
9421         (do_define): Diddle flags here.  Use _cpp_get_directive_token.
9422         Create T_EMPTY nodes for #define macro /* nothing */.
9423         (do_undef): Don't copy the name.  Use _cpp_get_directive_token.
9424         Use hp->name when calling pass_thru_directive.
9425         (do_if, do_else, do_elif, do_ifdef, do_ifndef, conditional_skip):
9426         Return the result of conditional_skip and/or skip_if_group.
9427         Don't call _cpp_output_line_command.
9428         (consider_directive_while_skipping): Use _cpp_get_directive_token.
9429         Issue -Wtraditional warnings as appropriate.  Don't complain
9430         about unrecognized directives.  If we are to stop skipping,
9431         return the number of the directive that ended the skip.
9432         (skip_if_group): Use _cpp_get_directive_token.  Turn off macro
9433         expansion and line commands while skipping.  Return the result
9434         of consider_directive_while_skipping, if nonzero.
9435         (do_endif): Just set potential_control_macro here.
9436         (validate_else): Use _cpp_get_directive_token.
9437         (do_assert, do_unassert): Don't save pointers into the
9438         token_buffer across calls to the lexer.  Use
9439         _cpp_get_directive_token.
9440
9441         * cpplib.h (cpp_buffer): Remove alimit and colno.  Make mark a
9442         pointer, not an offset.  Replace 'data', which was a generic
9443         pointer, with 'macro', which points to a struct hashnode.
9444         (cpp_reader): Add 'potential_control_macro' pointer.
9445         * cpphash.h (T_UNUSED): Replace with T_EMPTY.
9446         (CPP_BUF_GET, CPP_FORWARD): Delete.
9447         (CPP_IN_COLUMN_1, ADJACENT_TO_MARK): New macros.
9448         (CPP_IS_MACRO_BUFFER, CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK,
9449         ACTIVE_MARK_P): Update.
9450         (_cpp_get_define_token): New internal function.
9451         * cppfiles.c (read_include_file): Don't set fp->alimit or fp->colno.
9452
9453 2000-04-05   Benjamin Kosnik  <bkoz@cygnus.com>
9454
9455         * configure.in: And here.
9456         * configure: Regenerate.
9457         * acconfig.h: Add ENABLE_STD_NAMESPACE to set flag_honor_std if
9458         --enable-libstdcxx-v3 is passed at configure time.
9459         * config.h.in: Regenerate.
9460
9461 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
9462
9463         * final.c (final): Use xcalloc to allocate line_note_exists.
9464         * function.c (free_after_compilation): Free the temp_slots.
9465         (assign_stack_temp_for_type): Use xmalloc to allocate temp_slots.
9466         (combine_temp_slot): Free temp_slots when they get combined.
9467         (purge_addressof): Fix typo in comment.
9468         * stmt.c (mark_goto_fixup): Mark the fixup itself.
9469         (expand_fixup): Allocate the fixup with ggc_alloc_obj.
9470
9471         * ggc.h: Include varray.h.
9472         (ggc_pending_trees): Declare.
9473         (ggc_mark_tree_children): Remove declaration.
9474         (ggc_mark_tree): Just push unmarked trees on ggc_pending_trees.
9475         * ggc-common.c (ggc_pending_trees): New variable.
9476         (ggc_mark_roots): Call ggc_mark_trees.
9477         (ggc_mark_tree_children): Rename to ggc_mark_trees.  Process all
9478         the ggc_pending_trees.
9479         * Makefile.in (GGC_H): New variable.  Use it throughout in place
9480         of ggc.h.
9481
9482 Thu Apr  6 00:30:50 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9483
9484         * sh.h (FUNCTION_ARG_PARTIAL_NREGS): Accomodate an unsigned
9485         GET_MODE_SIZE.
9486
9487 Wed Apr  5 23:17:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9488
9489         * sh.c (sh_insn_length_adjustment): New function.
9490         * sh-protos.h (sh_insn_length_adjustment): Declare.
9491         * sh.h (ADJUST_INSN_LENGTH): Use it.
9492
9493 Wed Apr  5 12:35:18 2000  Hans-Peter Nilsson  <hp@axis.com>
9494
9495         * optabs.c (emit_libcall_block): Remove spurious REG_EQUAL notes
9496         from the insn where REG_RETVAL is added.
9497         (emit_no_conflict_block): Ditto.
9498
9499         * md.texi (Standard Names): Clarify when movX is needed.
9500
9501         * combine.c (simplify_comparison) [MINUS]: Do not replace
9502         all (op (minus A B) 0) with (op A B).
9503
9504 Wed Apr  5 18:03:31 2000  Toshiyasu Morita  (toshi.morita@sega.com)
9505                           J"orn Rennecke <amylaar@cygnus.co.uk>
9506
9507         * sh.md (block_lump_real_i4): Add missing clobber of T_REG
9508         (block_lump_real): Likewise.
9509
9510 2000-04-05  Chris Demetriou  <cgd@netbsd.org>
9511
9512         * mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the
9513         remaining non-zero debugging masks.
9514
9515 Wed Apr  5 09:44:07 2000  Jeffrey A Law  (law@cygnus.com)
9516
9517         * basic-block.h (verify_flow_info): Declare.
9518         (flow_loop_outside_edge_p): Declare.
9519         * flow.c (verify_flow_info): Remove declaration.
9520         (clear_log_links, flow_loop_outside_edge_p): Likewise.
9521
9522 Wed Apr  5 09:34:26 2000  Philippe De Muyter <phdm@macqel.be>
9523
9524         * m68k/m68k-protos.h (finalize_pic): Turn prototype off using `#if 0',
9525         not C++ comments.
9526
9527 2000-04-05  Jakub Jelinek  <jakub@redhat.com>
9528
9529         * config/sparc/sparc.md (snedi_zero+1, neg_snedi_zero+1,
9530         snedi_zero_trunc+1, seqdi_zero+1, neg_seqdi_zero+1,
9531         seqdi_zero_trunc+1): Allow splits only if registers are
9532         different.
9533
9534 2000-04-04  Ulrich Drepper  <drepper@cygnus.com>
9535
9536         * acconfig.h: Add HAVE_GAS_HIDDEN.
9537         * config.in: Regenerated.
9538         * configure.in: Add test for .hidden pseudo-op in gas.
9539         * configure: Regenerated.
9540         * crtstuff.c: Include auto-host.h.
9541         Emit additional .hidden pseudo-op for __dso_handle if the
9542         assembler knows about it.
9543
9544 2000-04-04  Philippe De Muyter  <phdm@macqel.be>
9545
9546         * cpphash.c (_cpp_free_definition): Test argnames, not nargs >= 0,
9547         before freeing argnames.
9548         * cpplib.c (do_ifndef): Cast return value of xstrdup.
9549
9550 2000-04-05  Michael Meissner  <meissner@redhat.com>
9551
9552         * config/rs6000/rs6000.c (print_operand): Patch from Jonathan
9553         Walton <jonboy@gordian.com> to make memory references with update
9554         work wtih -mregnames.
9555
9556 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9557
9558         * regrename.c (regno_first_use_in): Wrap prototype in PARAMS.
9559         (regrename_optimize): Rename variables `def_uses' and
9560         `ext_basic_blocks' to avoid conflicts with similarly named
9561         typedefs in traditional C.
9562
9563         * calls.c (initialize_argument_information): Fix typo in previous
9564         change.
9565
9566 2000-04-04  Richard Henderson  <rth@cygnus.com>
9567
9568         * regrename.c (consider_available): Test fixed_regs not
9569         PIC_OFFSET_TABLE_REGNUM.
9570
9571 2000-04-04  Geoff Keating  <geoffk@cygnus.com>
9572
9573         * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbegin,
9574         crtend.
9575         (CRTSTUFF_T_CFLAGS_S): Delete definition.
9576         * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Always use crtbegin.
9577         (ENDFILE_LINUX_SPEC): Always use crtend.
9578         * configure.in (powerpc-*-linux-gnulibc1): Don't define extra_parts.
9579         (powerpc-*-linux-gnu): Likewise.
9580         * configure: Regenerate.
9581
9582         * config/rs6000/eabi.h: Don't include sysv4.h.
9583         (MULTILIB_DEFAULTS): Don't define.
9584         * config/rs6000/eabiaix.h: Don't include eabi.h.
9585         * config/rs6000/eabile.h: Delete.
9586         * config/rs6000/eabilesim.h: Delete.
9587         * config/rs6000/eabisim.h: Don't include eabi.h.
9588         * config/rs6000/linux.h: Don't include sysv4.h.
9589         (JUMP_TABLES_IN_TEXT_SECTION): Don't redefine.
9590         (MULTILIB_DEFAULTS): Don't redefine.
9591         * config/rs6000/rtems.h: Don't include eabi.h.
9592         * config/rs6000/sol2.h: Don't include sysv4le.h.
9593         * config/rs6000/sysv4le.h: Don't include sysv4.h.
9594         * config/rs6000/t-ppc: Delete.
9595         * config/rs6000/t-ppcgas: Correct comment.
9596         * config/rs6000/t-ppcos: Correct comment.  Don't build
9597         multilibs for -fPIC, rather use -fPIC -mstrict-align
9598         as default.
9599         * config/rs6000/t-ppc: Delete.
9600         * config/rs6000/vxppc.h: Don't include sysv4.h.
9601         * config/rs6000/vxppcle.h: Delete.
9602         * configure.in: Use multiple header files for p2pc ELF targets
9603         powerpc-eabiaix, powerpc-eabisim, powerpc-rtems, powerpcle-eabi,
9604         powerpcle-eabisim, powerpc-elf, powerpcle-elf, powerpc-linux-gnu,
9605         powerpc-linux-gnulibc1, powerpc-sysv, powerpcle-sysv,
9606         powerpc-vxworks, powerpcle-vxworks.  Assume GAS functionality is
9607         always available for these platforms.
9608
9609 2000-04-04  Richard Henderson  <rth@cygnus.com>
9610
9611         * calls.c (try_to_integrate): Initialize reg_parm_stack_space.
9612
9613 2000-04-04  Stan Cox  <scox@cygnus.com>
9614
9615         * Makefile.in: Add rules for regrename.o
9616         * regrename.c: New file.
9617         * rtl.h (regrename_optimize): Add prototype.
9618         * toplev.c (rename_registers_dump, flag_rename_registers): New variables
9619         (compile_file, decode_d_option): Add support for -frename-registers.
9620         (rest_of_compilation): Call regrename_optimize.
9621         * config/ia64/ia64.h (HARD_REGNO_RENAME_OK, RENAME_EXTENDED_BLOCKS):
9622         New macros.
9623
9624 2000-04-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9625
9626         * Makefile (gccbug): New target.
9627         (doc): Depend on it.
9628         * gcc.texi (Bugs): Link subnodes.
9629         (gccbug): New node.
9630         * gccbug.in (CATEGORIES): Remove gc, host, profiling, libgcc.
9631         Document severities, priorities, and classes in bug form.
9632
9633 2000-04-04  Zack Weinberg  <zack@wolery.cumb.org>
9634
9635         * cpplex.c (trigraph_map, speccase): Combine into single
9636         table, chartab.
9637         (NORMAL, NONTRI): New macros.
9638         (_cpp_read_and_prescan): Change to use unified table.  Use
9639         is_hspace to test for whitespace.
9640
9641         * dbxout.c (CONTIN): If it doesn't have to do anything, give it a
9642         definition that doesn't provoke the "empty body in an
9643         if-statement" warning.
9644
9645 2000-04-04  Clinton Popetz  <cpopetz@cygnus.com>
9646
9647         * builtins.c (expand_builtin_strlen): Force the source to
9648         be a memory address.
9649
9650 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9651
9652         * cpplib.c (D): Adjust to call CONCAT2 macro without whitespace.
9653
9654 Tue Apr  4 19:17:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
9655
9656         * calls.c (ECF_MALLOC, ECF_MAY_BE_ALLOCA, ECF_RETURNS_TWICE,
9657          ECF_LONGJMP, ECF_FORK_OR_EXEC):  New constants.
9658         (ECF_IS_CONST): Rename to ECF_CONST.
9659         (special_function_p): Make static, change interface.
9660         (flags_from_decl_or_type, try_to_integrate): Break out from ...
9661         (expand_call) ... here; convert number of variables to flags.
9662         (emit_library_call_vlue_1): Likewise.
9663         (setjmp_call_p): New function.
9664         (initialize_argument_information): Accepts flags as argument;
9665         return flags.
9666         (precompute_arguments): Likewise.
9667         * tree.h (special_function_p): Remove.
9668         (setjmp_call_p): Add prototype.
9669
9670 2000-04-04  Jakub Jelinek  <jakub@redhat.com>
9671
9672         * config/sparc/sparc.h (RTX_OK_FOR_OFFSET_P): Leave minor margin
9673         so that addresses are offsetable by up to 16 bytes.
9674         (GO_IF_LEGITIMATE_ADDRESS): Don't allow REG+REG addresses for
9675         non-optimizing TARGET_ARCH32 in DF or DI modes because it is not
9676         offsetable.
9677
9678         * config/sparc/sparc.md (movdi_insn_sp64_novis): New pattern.
9679         (movdi_insn_sp64_vis): Renamed from movdi_insn_sp64.
9680         (movsf): Don't force any constant to memory if target is integer
9681         hard register.
9682         Move fp_zero_operand check below the const0_rtx check.
9683         (movtf): Likewise. Also allow fp_zero_operand for stores into
9684         memory.
9685         (movdf): Likewise. Also allow fp_zero_operand for stores into
9686         memory and into integer hard registers.
9687         (clear_df, clear_dfp, movdf_const_intreg_sp32,
9688         movdf_const_intreg_sp64): Remove.
9689         (movdf_insn_sp32, movdf_no_e_insn_sp32): Redo constraints and
9690         conditions.
9691         (movdf_no_e_insn_v9_sp32): New pattern.
9692         (movdf_insn_v9only): Remove.
9693         (movdf_insn_v9only_novis, movdf_insn_v9only_vis): New patterns.
9694         (movdf_insn_sp64): Remove.
9695         (movdf_insn_sp64_novis, movdf_insn_sp64_vis): New patterns.
9696         (movdf_no_e_insn_sp64): Allow storing 0.0 into memory.
9697         (following splits): Rewrite conditions. Add two new splits
9698         for storing 0.0 into memory and registers.
9699         (clear_tf, clear_tf+1, clear_tfp, clear_tfp+1): Remove.
9700         (movtf_insn_sp32): Redo constraints and conditions.
9701         (movtf_insn_vis_sp32): New pattern.
9702         (movtf_no_e_insn_sp32): Redo constraints and conditions.
9703         (movtf_insn_hq_sp64): Likewise.
9704         (movtf_insn_hq_vis_sp64): New pattern.
9705         (movtf_insn_sp64): Redo constraints and conditions.
9706         (movtf_insn_vis_sp64): New pattern.
9707         (movtf_no_e_insn_sp64): Redo constraints and conditions.
9708         (movtf_no_e_insn_sp64+1): New split for storing 0.0L into registers
9709         or memory.
9710         * config/sparc/sparc.c (sparc_override_options): Assume v9 if either
9711         -mvis or -m64 to take down the number of various reload patterns.
9712
9713 Tue Apr  4 00:41:53 2000  Jeffrey A Law  (law@cygnus.com)
9714
9715         * pa/pa-64.h: New file.
9716         * pa/pa64-regs.h: New file.
9717         * pa/pa64-start.h: New file.
9718         * pa/t-pa64: New file.
9719         * pa/xm-pa64hpux.h: New file.
9720
9721 2000-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9722
9723         * sparc.c (output_restore_regs): Prototype.
9724         (sparc_emit_float_lib_cmp): Constification.
9725
9726         * emit-rtl.c (const_int_htab_hash, const_int_htab_eq): Likewise.
9727
9728         * reload1.c (reload_cse_delete_noop_set, reload_cse_simplify):
9729         Prototype.
9730
9731         * simplify-rtx.c (entry_and_rtx_equal_p): Constification.
9732         (get_value_hash, hash_rtx): Likewise.
9733
9734         * ssa.c (compute_conservative_reg_partition): Prototype.
9735
9736         * tree.c (mark_hash_entry): Prototype.
9737
9738 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
9739
9740         * bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING.
9741         * i386.h (FUNCTION_ARG_REGNO_P): Remove unnecessary test for N >= 0.
9742         * i386.md (call_value, call_value_pop): Remove unused variable 'addr'.
9743
9744         * gcc.c (C specs): Pass -fno-show-column to the preprocessor.
9745         * objc/lang-specs.h: Likewise.
9746
9747 2000-04-03  Neil Booth  <NeilB@earthling.net>
9748
9749         * cppexp.c: wrap long lines.  New macros CPP_ICE, SYNTAX_ERROR
9750         and SYNTAX_ERROR2. Replace `' in messages with ''.
9751         (op_to_str): Make re-entrant.
9752         (_cpp_parse_expr): Implement new error macros. Use | rather
9753         than || to logically or 2 boolean integers.  Simply expression
9754         checking we have a left operand iff needed.
9755
9756 2000-04-03  Nick Clifton  <nickc@cygnus.com>
9757
9758         * Makefile.in (diagnostic.o): Depend upon diagnostic.c
9759
9760 2000-04-03  Philip Blundell  <philb@gnu.org>
9761
9762         * config/arm/linux-elf.h (SUBTARGET_EXTRA_LINK_SPEC): Fix typos.
9763
9764 2000-04-03  Felix Lee  <flee@cygnus.com>
9765
9766         * fixinc/server.c (find_shell): New function.  Avoid $SHELL.
9767         (run_shell): Use it.
9768
9769 2000-04-03  Jonathan Larmour  <jlarmour@redhat.co.uk>
9770
9771         * Makefile.in (stmp-int-hdrs): Make include subdir here...
9772         (stmp-fixproto): ...rather than here.
9773
9774 Mon Apr  3 00:50:06 2000  Jason Eckhardt <jle@cygnus.com>
9775
9776         * pa.c (print_operand): Compute 'base' only inside the code paths
9777         that use it.
9778
9779 2000-04-03  Geoffrey Keating  <geoffk@cygnus.com>
9780
9781         * stor-layout.c (byte_from_pos): Use TRUNC_DIV_EXPR rather than
9782         CEIL_DIV_EXPR.
9783
9784 2000-04-03  Philipp Thomas  <pthomas@suse.de>
9785
9786         * i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
9787
9788 Mon Apr  3 00:02:59 2000  Brad Lucier <lucier@math.purdue.edu>
9789
9790         * Makefile.in (alias.o): Depend on $(TREE_H).
9791
9792 2000-04-02  Zack Weinberg  <zack@wolery.cumb.org>
9793
9794         * cppinit.c (cpp_start_read): Turn off -Wtraditional if
9795         processing C++.
9796         * cpplib.c (_cpp_handle_directive): Improve warnings for
9797         traditional C and indented directives.
9798
9799         * enquire.c, gsyslimits.h, limity.h, config/convex/fixinc.convex,
9800         fixinc/fixinc.irix, fixinc/fixinc.sco, fixinc/fixinc.wrap,
9801         fixinc/inclhack.def: Indent the # of #include_next one space.
9802         * cp/rtti.c: Un-indent #if and #endif.
9803
9804         * cppexp.c (_cpp_parse_expr): If lex returns '#', it's a
9805         syntax error, but an error has already been printed.
9806         * cpplex.c (_cpp_parse_assertion): Give a more specific error
9807         message when called with nothing remaining on the line.
9808         (_cpp_lex_token): If _cpp_parse_assertion fails, return an
9809         OTHER token, not an ASSERTION.
9810         * cpplib.c (do_assert): When we create a 'base' node, clear
9811         its aschain pointer.
9812
9813 2000-04-02  Neil Booth <NeilB@earthling.net>
9814
9815         * cppexp.c:  New typedef op_t.  struct operation and struct
9816         token updated to use it.
9817         (op_to_str): New function.
9818         (_cpp_parse_expr): Error messages modified to use op_to_str.
9819
9820 2000-04-02  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9821
9822         * config/c4x/c4x.c (c4x_function_arg): Check for void_type_node
9823         before checking MUST_PASS_IN_STACK.
9824
9825 2000-04-02  Neil Booth <NeilB@earthling.net>
9826
9827         * cppexp.c:  New FINISHED dummy token.  Combine operator initial
9828         flags and initial priority into a single constant.  New
9829         EQUALITY macro.  New operator flag SHORT_CIRCUIT.
9830         (_parse_cpp_expr): Implement new constants.  Take left operand
9831         checks out of reduction loop.  Handle SHORT_CIRCUIT.  End of
9832         parse indicated by reducing FINISHED token.  Remove new lines
9833         from cpp_error messages.
9834
9835 2000-04-01  Mark Mitchell  <mark@codesourcery.com>
9836
9837         * emit-rtl.c (gen_rtx_CONST_INT): Create cached CONST_INTs on the
9838         permanent obstack.
9839
9840 2000-04-01  Zack Weinberg  <zack@wolery.cumb.org>
9841
9842         * cpplib.c: Include symcat.h.  Add 'origin' field to struct
9843         directive.  Add origin values to DIRECTIVE_TABLE.  Generate
9844         the strings and function names on the fly.  Take the #sccs
9845         entry out of the table if SCCS_DIRECTIVE is not defined.
9846         (_cpp_handle_directive): Decide if the # was at the beginning
9847         of the line here.  Issue -pedantic warnings for extended
9848         directives here.  Warn about K+R directives with the #
9849         indented, and C89/extended directives with the # not indented,
9850         here.
9851         (do_import, do_include_next, do_warning, do_ident, do_sccs,
9852         do_assert, do_unassert): Don't issue pedantic warning here.
9853
9854         * cpphash.h: Add CPP_WTRADITIONAL macro.
9855         * cpplib.h (struct cpp_options): Rename warn_stringify to
9856         warn_traditional; update comments.
9857         * cppinit.c (handle_option): Set warn_traditional not
9858         warn_stringify.
9859         * cpphash.c: Replace CPP_OPTION (pfile, warn_stringify) with
9860         CPP_WTRADITIONAL (pfile).
9861         * cpplex.c (_cpp_lex_token): Don't decide if directives should
9862         be ignored in -traditional mode here.
9863
9864         * cpplex.c: Copy ISTABLE macros from cppinit.c, and adapt them
9865         to initialize speccase[] and trigraph_map[].  Delete all
9866         references to pfile->input_speccase.  Always treat '?' as a
9867         special character.  Remove table-initialization code from
9868         _cpp_init_input_buffer.
9869
9870         * cpplib.h (struct cpp_reader): Remove input_speccase field.
9871         * cppinit.c (cpp_cleanup): Don't free input_speccase.
9872
9873 2000-04-01  Richard Henderson  <rth@cygnus.com>
9874
9875         * Makefile.in (STAGESTUFF): Wildcard all debugging dumps at once.
9876         (mostlyclean): Likewise.
9877
9878         * toplev.c (rtl_dump, jump_opt_dump, etc): Remove.
9879         (struct dump_file_info, enum dump_file_index, dump_file): New.
9880         (open_dump_file): Take a dump_file_index not a suffix, and a decl
9881         not a string.  Clean out file if we havn't yet done so.  Do nothing
9882         if the dump isn't enabled.
9883         (close_dump_file): Do nothing if the dump isn't open.  Dump
9884         graph data if requested.
9885         (dump_rtl, clean_dump_file): Remove.
9886         (compile_file): Don't clean the dump files.  Only finalize .bp dump
9887         if flag_test_coverage or flag_branch_probabilities.  Only finalize
9888         .combine dump if optimizing.  Iterate over dump_file to finalize the
9889         graph dumps.
9890         (rest_of_compilation): Update for open_dump_file/close_dump_file.
9891         Convert all uses of dump_rtl.
9892         (decode_d_option): Iterate over dump_file to implement 'a' and to
9893         locate pass-specific dumps.
9894
9895 2000-04-01  Neil Booth <NeilB@earthling.net>
9896
9897         * cppexp.c: Redefine priority constants.
9898         (_cpp_parse_expr): Replace left and right priority scheme with
9899         single priority logic.  Move LOGICAL to same place as COMPARE.
9900         Remove bogus check for multiple unary +/- operators.
9901
9902 2000-04-01  Neil Booth <NeilB@earthling.net>
9903
9904         * cppexp.c: (_cpp_parse_expr): Numerical constants are pushed
9905         within the switch statement.  Binary operations break out of
9906         the switch naturally.  '(' tokens handled by forcing
9907         immediate shift.  ')' handled by forcing immediate reduce to
9908         the previous '('.  New error messages.
9909
9910 2000-03-31  Geoff Keating  <geoffk@cygnus.com>
9911
9912         * config/rs6000/rs6000.c (print_operand): Don't use %l for 'low
9913         part', it's already in use.  Use %K instead.  Add a return at the
9914         end of what is now %K.
9915         * config/rs6000/rs6000.md (elf_low): Use %K instead of %l.
9916
9917 Sat Apr  1 02:05:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
9918
9919         * builtins.c  (expand_builtin_apply):  Pass proper parameters to
9920         allocate_dynamic_stack_space.
9921         * calls.c (emit_call_1):  Do not adjust stack pointer for SIB,
9922         update stack_pointer_delta; do not update arg_size_so_far.
9923         (compute_argument_block_size): Use stack_delta instead of
9924         stack_pointer_pending and arg_size_so_far.
9925         (expand_call): Add sanity checking for stack_pointer_delta;
9926         save and restore stack_pointer_delta for SIB, use
9927         stack_pointer_delta for alignment; do not update arg_space_so_far.
9928         (emit_library_call_value): Use stack_pointer_delta for alignment.
9929         (store_one_arg): Do not update arg_space_so_far.
9930         * explow.c (adjust_stack, anti_adjust_stack): Update
9931         stack_pointer_delta.
9932         (allocate_dynamic_stack_space): Add sanity checking for
9933         stack_pointer_delta.
9934         * expr.c (init_expr, clear_pending_stack_adjust): Clear
9935         stack_pointer_delta.
9936         (emit_push_insn): Update stack_pointer_delta.
9937         * function.h (struct expr_status): Add x_stack_pointer_delta;
9938         remove x_arg_space_so_far.
9939         (arg_space_so_far): Remove.
9940         (stack_pointer_delta): New macro.
9941
9942 2000-03-31  Zack Weinberg  <zack@wolery.cumb.org>
9943
9944         * cpplib.h: Merge struct cpp_options into struct cpp_reader.
9945         Reorder struct cpp_options and struct cpp_reader for better
9946         packing.  Replace CPP_OPTIONS macro with CPP_OPTION which
9947         takes two args.  Change all 'char' flags to 'unsigned char'.
9948         Move show_column flag into struct cpp_options.  Don't
9949         prototype cpp_options_init.
9950         * cpphash.h, cpperror.c, cppexp.c, cppfiles.c, cpphash.c,
9951         cppinit.c, cpplex.c, cpplib.c:
9952         Replace CPP_OPTIONS (pfile)->whatever with
9953         CPP_OPTION (pfile, whatever), and likewise for
9954         opts = CPP_OPTIONS (pfile); ... opts->whatever;
9955
9956         * cppinit.c (merge_include_chains): Take a cpp_reader *.
9957         Extract CPP_OPTION (pfile, pending) and work with that
9958         directly.
9959         (cpp_options_init): Delete.
9960         (cpp_reader_init): Turn on on-by-default options here.
9961         Allocate the pending structure here.
9962         (cl_options, enum opt_code): Define these from the same table,
9963         kept in a large macro.  Add -fshow-column and -fno-show-column
9964         options.
9965
9966         * cpperror.c (v_message): If show_column is off, don't print
9967         the column number.
9968
9969         * cppmain.c: Update for new interface.
9970         * fix-header.c: Likewise.
9971
9972 2000-03-30  Geoff Keating  <geoffk@cygnus.com>
9973
9974         * config/rs6000/t-aix43 (AR_FLAGS_FOR_TARGET): Adjust for new
9975         definition.
9976         * Makefile.in (AR_FLAGS_FOR_TARGET): Is now the flags that
9977         are passed to any invocation of AR_FOR_TARGET.
9978         (AR_CREATE_FOR_TARGET): New macro.
9979         (AR_EXTRACT_FOR_TARGET): New macro.
9980         (ORDINARY_FLAGS_TO_PASS): Add AR_CREATE_FOR_TARGET,
9981         AR_EXTRACT_FOR_TARGET.
9982         (many places): Use AR_CREATE_FOR_TARGET, AR_EXTRACT_FOR_TARGET
9983         in place of `$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET)' and
9984         `$(AR_FOR_TARGET) x'.  Pass AR_CREATE_FOR_TARGET and
9985         AR_EXTRACT_FOR_TARGET to sub-makes.
9986
9987 2000-03-31  Neil Booth <NeilB@earthling.net>
9988
9989         * cppexp.c: Delete SKIP_OPERAND.  Correct priority
9990         PAREN_INNER_PRIO.
9991         (_cpp_parse_expr): Check for multiple unary +/- operators.
9992         Correct priorities of ':' and '?'.  Treat ')' as having a
9993         value.  Ensure conditional expression is not void.
9994
9995 2000-03-31  Mark Mitchell  <mark@codesourcery.com>
9996
9997         * alias.c (canon_rtx): Make it global.
9998         (rtx_equal_for_memref_p): CONST_INT equality is now pointer
9999         equality.
10000         * cse.c (struct table_elt): Add canon_exp.
10001         (insert): Clear it.
10002         (invalidate): Canonicalize expressions only once.
10003         * rtl.h (canon_rtx): Declare.
10004
10005 2000-03-30  Mark Mitchell  <mark@codesourcery.com>
10006
10007         * Makefile.in (emit-rtl.o): Depend on HASHTAB_H.
10008         * alias.c (reg_known_value): Add comments.
10009         (init_alias_analysis): Likewise.
10010         * cse.c (exp_equiv_p): CONST_INTs are equal iff they have the same
10011         address.
10012         (cse_basic_block): Fix typo in comment.
10013         * emit-rtl.c: Include hashtab.h.
10014         (const_int_htab): New variable.
10015         (const_int_htab_hash): New function.
10016         (const_int_htab_eq): Likewise.
10017         (rtx_htab_mark_1): Likewise.
10018         (rtx_htab_mark): Likewise.
10019         (gen_rtx_CONST_INT): Cache all CONST_INTs.
10020         (unshare_all_rtx): Fix formatting.
10021         (init_emit_once): Initialize const_int_htab.
10022         * rtl.c (rtx_equal_p): CONST_INTs are equal iff they have the same
10023         address.
10024         * rtl.texi: Document the fact that all CONST_INTs with the same
10025         value are shared.
10026
10027 2000-03-30  Richard Henderson  <rth@cygnus.com>
10028
10029         * alpha.h (FUNCTION_BOUNDARY): Reduce to 128 bits.
10030
10031 2000-03-30  Zack Weinberg  <zack@wolery.cumb.org>
10032
10033         * configure.in: Comment out --enable-c-cpplib stanza.
10034         * configure: Regenerate.
10035
10036 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10037
10038         * expr.c (store_constructor): Properly compute displacement and
10039         alignment when offset is variable.
10040
10041         * expmed.c (store_bit_field, store_fixed_bit_field): Fix more
10042         cases of alignment in bytes.
10043
10044 Thu Mar 30 13:30:40 2000  Jeffrey A Law  (law@cygnus.com)
10045
10046         * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
10047         since it is used to generate c-parse.y.
10048         * objc-parse.c, objc-parse.y: Regenerated.
10049
10050         * function.c (expand_function_end): Pass alignment argument to
10051         emit_block_move in bits, not bytes.
10052
10053 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10054
10055         * expr.c (move_by_pieces_ninsns): Fix one more missing align
10056         correction.
10057
10058         * expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
10059
10060         * calls.c (expand_call): Pass bit alignment to mark_reg_pointer.
10061         * explow.c (memory_address, allocate_dynamic_stack_space): Likewise.
10062         * function.c (assign_parms): Likewise.
10063         * integrate.c (expand_inline_function): Likewise.
10064         * stmt.c (expand_decl): Likewise.
10065         (copy_rtx_and_substitute): Likewise.
10066         * expr.c (expand_expr, expand_expr_unaligned): Likewise.
10067         (clear_by_pieces): Fix error in last change.
10068         * emit-rtl.c (init_emit): Set known registers alignment in bits.
10069         * function.h (regno_pointer_align): Now unsigned.
10070         * config/arm/arm.c (alignable_memory_operand): REGNO_POINTER_ALIGN
10071         is in bits.
10072         * config/i386/i386.c (aligned_operand): Likewise.
10073         * config/sparc/sparc.c (mem_min_alignment): Likewise.
10074         * config/alpha/alpha.c (aligned_memory_operand): Likewise.
10075         (unaligned_memory_operand): Likewise.
10076         (alpha_expand_block_move, alpha_expand_block_clear): Likewise.
10077         Also make alignments and sizes unsigned and some whitespace cleanup.
10078         (alpha_va_start): Do nothing if VALIST's type is error_mark_node.
10079
10080         * builtins.c (get_pointer_alignment): Use host_integerp & tree_low_cst.
10081         (expand_builtin_apply): Pass alignment to emit_block_move in bits.
10082         (expand_builtin_memcpy, expand_builtin_va_copy): Likewise.
10083         (expand_builtin_memset): Likewise, but to clear_storage.
10084         * calls.c (save_fixed_argument_area): Likewise, to move_by_pieces.
10085         (restore_fixed_argument_area): Likewise.
10086         (store_unaligned_arguments_into_pseudos): Likewise, to store_bit_field.
10087         (load_register_parameters): Likewise, to emit_group_load.
10088         (expand_call): Likewise, to emit_group_store and emit_block_move.
10089         (emit_library_call_value_1): Likewise, to emit_block_move.
10090         (store_one_arg): Likewise, and to emit_push_insn.
10091         * expmed.c (extract_bit_field): Alignment is in bits, not bytes.
10092         (extract_fixed_bit_field, extract_split_bit_field): Likewise.
10093         * expr.c (move_by_pieces, move_by_pieces_ninsns): Likewise.
10094         (emit_block_move, emit_group_load, emit_group_store): Likewise.
10095         (clear_by_pieces, clear_storage, emit_push_insn): Likewise.
10096         (expand_assigment, store_expr, store_constructor_field): Likewise.
10097         (expand_expr_unaligned, do_jump, do_compare_and_jump): Likewise.
10098         (store_constructor, store_field, get_inner_reference): Likewise.
10099         Use host_integerp and tree_low_cst; sizes and positions HOST_WIDE_INT.
10100         (expand_expr, case COMPONENT_REF): Likewise.
10101         (copy_blkmode_from_regs): Use UNSIGNED_HOST_WIDE_INT for sizes
10102         and positions; reindent code.
10103         * expr.h (emit_cmp_insn, emit_cmp_and_jump_insns): Alignment unsigned.
10104         * function.c (purge_addressof_1): Pass bit align to store_bit_field.
10105         (assign_parms): Likewise to emit_group_store.
10106         * optabs.c (prepare_cmp_insn): Alignment is in bits.
10107         (emit_cmp_and_jump_insns, emit_cmp_insn): Likewise, and also unsigned.
10108         * stmt.c (expand_value_return): Pass align in bits to emit_group_load.
10109         (expand_return): Likewise to {extract,store}_bit_field.
10110         * stor-layout.c (get_mode_alignment): Minor cleanup.
10111         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Align is in bits.
10112         * config/sh/sh.h (MOVE_BY_PIECES_P): Likewise.
10113
10114 2000-03-29  Nick Clifton  <nickc@cygnus.com>
10115
10116         * config/arm/arm.h: Undo effects of previous delta:
10117         (ASM_SPEC): Do not define.
10118         (SUBTARGET_EXTRA_ASM_SPEC): Do not define.
10119
10120         * config/arm/linux-elf.h: (SUBTARGET_EXTRA_ASM_SPEC) Fix
10121         typo.
10122
10123 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
10124
10125         * cppinit.c (cpp_start_read): Call initialize_dependency_output
10126         only after reading in the primary source file.
10127
10128 2000-03-29  Geoff Keating  <geoffk@cygnus.com>
10129
10130         * c-common.c (c_common_nodes_and_builtins): The first parameter to
10131         __builtin_va_start and __builtin_va_copy is now either a 'va_list'
10132         or a reference to a va_list.
10133         * builtins.c (stabilize_va_list): Simplify now we don't have to
10134         work around C array address decay.
10135         * c-typeck.c (convert_for_assignment): Handle assignment to
10136         a reference parameter by taking the address of the RHS.
10137         * ginclude/stdarg.h (va_start): Don't take address of first parameter.
10138         (va_copy): Likewise.
10139         (__va_copy): Likewise.
10140         * ginclude/varargs.h (va_start): Likewise.
10141         (__va_copy): Likewise.
10142
10143 Wed Mar 29 15:44:53 2000  Jeffrey A Law  (law@cygnus.com)
10144
10145         * i386/djgpp.h: Remove extraneous "+".
10146
10147         * stmt.c (stmt_loop_nest_empty): Fix thinko in last change.
10148
10149         * calls.c (expand_call): Fix typo in last change.
10150
10151 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10152
10153         * tree.c (unsave_expr_1): Don't mess with a TARGET_EXPR that hasn't
10154         been expanded.
10155
10156 Wed Mar 29 15:39:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10157
10158         * stor-layout.c (bit_from_pos, byte_from_pos): New functions.
10159         (pos_from_byte, pos_from_bit, normalize_offset): Likewise.
10160         (normalize_rli, rli_size_so_far, rli_size_unit_so_far): Use them.
10161         * tree.c (bit_position, byte_position): Likewise.
10162         * tree.h: Declare new functions.
10163
10164 2000-03-29  Nick Clifton  <nickc@cygnus.com>
10165
10166         * config/arm/arm.c: Minor formatting changes/
10167         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
10168         already defined.
10169         (ASM_SPEC): Define if not already defined.
10170
10171 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
10172
10173         * cppfiles.c (cpp_read_file): Don't pass zero-length string to
10174         _cpp_calc_hash.
10175
10176 2000-03-29  Jakub Jelinek  <jakub@redhat.com>
10177
10178         * dwarf2out.c (gen_enumeration_type_die): If enum has a negative
10179         value, don't output it as unsigned.
10180
10181 Wed Mar 29 10:53:49 2000  Jeffrey A Law  (law@cygnus.com)
10182
10183         * stmt.c (stmt_loop_nest_empty): Allow cfun->stmt to be NULL.
10184
10185 2000-03-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10186
10187         * c-common.c (c_common_nodes_and_builtins): Don't special case
10188         cplus_mode when declaring builtin bzero/bcmp, always avoid
10189         prototype arguments.
10190
10191 2000-03-29  Bruce Korb  <bkorb@gnu.org>
10192
10193         * fixinc/mkfixinc.sh: Initially set the variable "fixincludes"
10194         to a non-file
10195
10196 Wed Mar 29 15:08:01 MET DST 2000  Jan Hubicka  <jh@suse.cz>
10197
10198         Convert ACCUMULATE_OUTGOING_ARGS to an expression.
10199         * calls.c (PUSH_ARGS_REVERSED) Change to expression.
10200         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default value.
10201         (struct arg_data): Remove #ifdef ACCUMULATE_OUTGOING_ARGS.
10202         (save_fixed_argument_area, restore_fixed_argument_area):
10203         conditionize by #ifdef REG_PARM_STACK_SPACE only.
10204         (emit_call): Change #ifdefs on ACCUMULATE_OUTGOING_ARGS
10205         to conditions, handle RETURN_POPS_ARGS on ACCUMULATE_OUTGOING_ARGS.
10206         (precompute_register_parameters): Avoid #ifdefs on
10207         ACCUMULATE_OUTGOING_ARGS and PUSH_ARGS_REVERSED.
10208         (stire_one_args): Likewise.
10209         (expand_call): Likewise; conditionize PUSH_ROUNDING code by PUSH_ARGS.
10210         (emit_library_call_value_1): Likewise.
10211         (compute_argument_block_size): Align to STACK_BOUNDARY only for
10212         ACCUMULATE_OUTGOING_ARGS.
10213         * combine.c (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default
10214         value.
10215         (nonzero_bits): Conditionize PUSH_ROUNDING code by USE_PUSH.
10216         (use_crosses_set_p): Likewise.
10217         * all targets (ACCUMULATE_OUTGOING_ARGS define): Change to
10218         #define ACCUMULATE_OUTGOING_ARGS 1.
10219         * i386.c (ix86_compute_frame_size): Handle ACCUMULATE_OUTGOING_ARGS
10220         frames.
10221         * i386.h (MASK_NO_PUSH_ARGS, MASK_ACCUMULATE_OUTGOING_ARGS): New
10222         constants.
10223         (TARGET_PUSH_ARGS, TARGET_ACCUMULATE_OUTGOING_ARGS): New macros.
10224         (TARGET_SWITCHES): Add push-args, no-push-args,
10225         accumulate-outgoing-args and no-accumulate-outgoing-args.
10226         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): New macro.
10227         * expr.c (ACCUMULATE_OUTGONG_ARGS, PUSH_ARGS): Provide default.
10228         (push_block): Avoid ifdefs on ACCUMULATE_OUTGONG_ARGS
10229         and PUSH_ROUNDING.
10230         (emit_push_insn): Likewise.
10231         * final.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
10232         (final_scan_insn): Avoid ifdefs on ACCUMULATE_OUTGOING_ARGS.
10233         * function.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
10234         (STACK_DYNAMIC_OFFSET): Define correctly for both
10235         ACCUMULATE_OUTGOING_ARGS and normal mode.
10236         * invoke.texi (-mpush_args, -maccumulate-outgoing-args): Document.
10237         * tm.texi (PUSH_ARGS): Document.
10238         (ACCUMULATE_OUTGOING_ARGS, PUSH_ROUNDING): Update documentation.
10239
10240 Wed Mar 29 11:51:13 MET DST 2000  Jan Hubicka  <jh@suse.cz>
10241
10242         * flags.h (flag_optimize_sibling_calls): Declare.
10243         * calls.c (expand_call): Fail sibcall when
10244         !flag_optimize_sibling_calls
10245         * invoke.texi (flag_optimize_sibling_calls): Document.
10246         * toplev.c (flag_optimize_sibling_calls): New global variable.
10247         (f_options): Add flag_optimize_sibling_calls.
10248         (rest_of_compilation): Conditionize
10249         optimize_sibling_and_tail_recursive_calls by
10250         flag_optimize_sibling_calls.
10251         (main): Set flag_optimize_sibling_calls for -O2.
10252         * stmt.c (expand_return): Conditionize tail recursion by
10253         flag_optimize_sibling_calls.
10254
10255 2000-03-29  Richard Henderson  <rth@cygnus.com>
10256
10257         * config/i386/att.h (LOCAL_LABEL_PREFIX): Define.
10258         (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Use it.
10259
10260 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
10261
10262         * except.c (add_eh_table_entry): Mark type_info's as referenced.
10263
10264 2000-03-29  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10265
10266         * config/rs6000/aix41.h (CPP_SPEC): Define _ANSI_C_SOURCE if -ansi
10267         is given.
10268         * config/rs6000/aix43.h (CPP_SPEC): Likewise.
10269         * config/rs6000/rs6000.h (CPP_SPEC): Moved to...
10270         * config/rs6000/aix.h: then modified likewise.
10271
10272 2000-03-28  Richard Henderson  <rth@cygnus.com>
10273
10274         * rtl.h: Redistribute enum reg_note documentation.
10275         Kill trailing whitespace.
10276         * rtl.c (reg_note_name): Adjust to match enum reg_note tweeks.
10277         Kill trailing whitespace.
10278
10279 2000-03-28  Zack Weinberg  <zack@wolery.cumb.org>
10280
10281         * cppfiles.c (hash_IHASH): Just return i->hash.
10282         (cpp_included): Set dummy.hash using _cpp_calc_hash.  Use
10283         htab_find_with_hash.
10284         (cpp_read_file): Likewise.
10285         (find_include_file): Likewise.  Properly initialize
10286         ih->nshort.  Share ih->name and ih->nshort if possible.
10287         * cpphash.c (_cpp_calc_hash): New function.
10288         (hash_HASHNODE): Just return h->hash.
10289         (_cpp_lookup): Set dummy.hash using _cpp_calc_hash.  Use
10290         htab_find_with_hash.
10291         * cpphash.h: Prototype _cpp_calc_hash.
10292         * cppinit.c (initialize_builtins): Provide a valid hash
10293         to _cpp_make_hashnode, using _cpp_calc_hash.
10294
10295         * cpphash.c (collect_expansion): # is not a special character
10296         in object-like macros.  In -traditional mode, /**/ is not
10297         token paste at the beginning or end of the line.
10298         * cpplib.c (do_include, do_import, do_include_next): If
10299         parse_include fails, return immediately.
10300
10301 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
10302
10303         * config/arm/arm.md (return peepholes): Update to reflect the new
10304         call insn patterns.
10305         * config/arm/arm.c (arm_volatile_func): Also check
10306         current_function_nothrow.
10307         (output_return_instruction, output_func_prologue): Use it.
10308         (arm_output_epilogue, arm_expand_prologue): Likewise.
10309
10310 2000-03-27  Tom Tromey  <tromey@cygnus.com>
10311
10312         * gcc.c (handle_braces): In {x*...} case, break out of loop if
10313         switch is found.
10314
10315 Tue Mar 28 11:55:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10316
10317         * expr.c (store_constructor): SIZE now signed.
10318         For EXPR_SIZE, don't evaluate size; just needed if constant.
10319         * fold-const.c (fold): Fix a number of cases when folded tree is
10320         wrong type.
10321         * function.c (flush_addressof): Reenable.
10322         * tree.h (flush_addressof): Likewise.
10323         * toplev.c (independent_decode_option): Look at strings_processed.
10324         * config/alpha/alpha.h (MINIMUM_ATOMIC_ALIGNMENT): Cast to unsigned.
10325
10326 Tue Mar 28 08:29:46 2000  Jan Hubicka  <jh@suse.cz>
10327
10328         * sibcall.c (indentify_call_return_value): Find last call in the chain;
10329         Allow stack adjustment after function call.
10330
10331         * regmove.c (struct csa_memlist): Make mem field rtx *.
10332         (record_one_stack_ref): Accept rtx * instead of rtx as parameter.
10333         (try_apply_stack_adjustment): Replace whole MEM rtx.
10334         (combine_stack_adjustments_for_block): Update calls
10335         to record_one_stack_ref.
10336
10337 2000-03-28  Neil Booth  <NeilB@earthling.net>
10338
10339         * cpplex.c (_cpp_read_and_prescan): Mark end of input buffer with
10340         '\\' rather than a null character, so nulls are not special.  Fix
10341         "\\\n" handling in end-of-buffer conditions.  Use trigraph map to
10342         speed trigraph conversion.
10343         (_cpp_init_input_buffer): Initialize trigraph map.
10344
10345 2000-03-27  Alan Modra  <alan@linuxcare.com.au>
10346
10347         * config/i386/i386.c (output_387_binary_op): Correct intel
10348         mode assembly output, and add spaces after commas in AT&T
10349         output.  Correct Unixware assembler comment.  Document input
10350         constraints.  Comment fp operations.  Reduce profligate buffer
10351         size.  Remove extraneous abort.  Localize temp var.
10352         (SYSV386_COMPAT): Define.  Add !SYSV386_COMPAT code.
10353         (output_fix_trunc): Add spaces after commas in assembly output.
10354
10355 2000-03-27  Richard Henderson  <rth@cygnus.com>
10356
10357         * i386-protos.h (ix86_match_ccmode): Declare.
10358         * i386.c (ix86_match_ccmode): New.
10359         (ix86_expand_fp_compare): Update for pattern renames.
10360         (ix86_expand_strlensi_unroll_1): Likewise.
10361         * i386.h (EXTRA_CC_MODES): Add CCZ.
10362         (SELECT_CC_MODE): Use it for EQ/NE zero.
10363         * i386.md (cmpsi_ccz_1): New.
10364         (cmpqi_ccz_1): New.
10365         (*testsi_ccz_1): New.
10366         (testqi_ccz_1): New.
10367         (cmpsi_ccno_1): Rename from cmpsi_0.
10368         (testsi_ccno_1): Rename from testsi_1.
10369         (testqi_ccno_1): Rename from testqi_1.
10370         (*testqi_ext_ccz_0): Rename from testqi_ext_0.
10371         (testqi_ext_ccno_0): Rename from *testqi_ext_1.
10372         (*cmphi_0): Use ix86_match_ccmode.
10373         (*cmpqi_ext_2, *addsi_2, *addhi_2, *addqi_2): Likewise.
10374         (*subsi_2, *subhi_2, *subqi_2, *testhi_1): Likewise.
10375         (*testqi_ext_1, *testqi_ext_2, *testqi_ext_3): Likewise.
10376         (*andsi_2, *andhi_2, *andqi_2, *andqi_ext_0_cc): Likewise.
10377         (*iorsi_2, *iorhi_2, *iorqi_2): Likewise.
10378         (*xorsi_2, *xorhi_2, *xorqi_cc_1): Likewise.
10379         (*one_cmplsi2_2, *one_cmplhi2_2, *one_cmplqi2_2): Likewise.
10380         (*ashlsi3_cmpno, *ashlhi3_cmpno, *ashlqi3_cmpno): Likewise.
10381         (*ashrsi3_cmpno, *ashrhi3_cmpno, *ashrqi3_cmpno): Likewise.
10382         (*lshrsi3_cmpno, *lshrhi3_cmpno, *lshrqi3_cmpno): Likewise.
10383         (appropriate peepholes): Likewise.
10384         (*cmphi_1, *cmpqi_ccno_1, *cmpqi_1): Star out name.
10385         (*subsi_3, *subhi_3, *subqi_3): Remove.
10386         (*negdi2_1+1 splitter): Use CCZ for neg patterns.
10387         (*negsi2_cmp, *neghi2_cmp, *negqi2_cmp): Remove.
10388         (*negsi2_cmpz): Rename from *negsi2_cmpno, use CCZ.
10389         (*neghi2_cmpz, *negqi2_cmpz): Similarly.
10390         (x86_shift_adj_1): Use CCZ.
10391         (*dbra_ge+1, *dbra_ge+2, ffssi2, ffssi_1): Likewise.
10392
10393 2000-03-27  Stan Cox  <scox@cygnus.com>
10394
10395         * resource.h (mark_resource_type): New.
10396         * resource.c (find_dead_or_set_registers, mark_target_live_regs,
10397         find_free_register): Use mark_resource_type.
10398         (mark_set_resources): Change include_delayed_effects
10399         to mark_resource_type.
10400         * reorg.c (steal_delay_list_from_target, try_merge_delay_insns,
10401         redundant_insn, fill_simple_delay_slots, fill_slots_from_thread):
10402         Use mark_resource_type.
10403
10404 2000-03-27  Richard Henderson  <rth@cygnus.com>
10405
10406         * i386.md (call_pop_0, call_value_pop_0): New.
10407         (call_pop_1): Remove constraint from unused arg.  Support sibcalls.
10408         (call_value_pop_1): Likewise.
10409         (call_0, call_value_0): New.
10410         (call_1, call_value_1): Remove constraint from unused arg.
10411
10412 2000-03-27  Nick Clifton  <nickc@cygnus.com>
10413
10414         * invoke.texi (Spec Files): Document new spec % command created by
10415         Tom Tromey's recent patch.
10416
10417 2000-03-27  Jakub Jelinek  <jakub@redhat.com>
10418
10419         * libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD
10420         if not defined.
10421
10422 Mon Mar 27 06:04:22 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10423
10424         * expr.c (expand_assignment): Fix typo in last change.
10425
10426         * libgcc2.h: Use MIN_UNITS_PER_WORD, not UNITS_PER_WORD.
10427
10428 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10429
10430         * c-convert.c (convert): Return if output or input type is ERROR_MARK.
10431         * c-decl.c (duplicate_decls): Only look at DECL_BUILT_IN_NONANSI
10432         and DECL_INLINE if FUNCTION_DECL.
10433         (pushdecl, redeclaration_error_message): Likewise, for DECL_INLINE.
10434         (store_parm_decls): Check for type of PARM_DECL being ERROR_MARK.
10435         Use DECL_WEAK, not DECL_RESULT, to flag for already seen.
10436         (combine_parm_decls): Likewise.
10437         * ggc-common.c (gcc_mark_tree_children, case 'd'): Use DECL_RESULT_FLD.
10438         * print-tree.c (print_node): Likewise.
10439         Only test DECL_PACKED, DECL_INLINE, DECL_BIT_FIELD, and
10440         DECL_TRANSPARENT_UNION on proper decl types.
10441         Properly handly DECL_INCOMING_RTL and DECL_SAVED_INSNS.
10442         * stor-layout.c (layout_decl): Only check DECL_PACKED and
10443         DECL_BIT_FIELD of FIELD_DECL.
10444         * tree.h (DECL_RESULT_FLD): New macro.
10445
10446         * expr.c (expand_assignment): Add code to handle variable-sized
10447         BLKmode case.
10448
10449 2000-03-26  Richard Henderson  <rth@cygnus.com>
10450
10451         * calls.c (expand_call): Pass parms not original exp to
10452         optimize_tail_recursion.  Mind return value instead of looking
10453         for a barrier.
10454         * stmt.c (optimize_tail_recursion): Take parameter list, not entire
10455         call_expr.  Move checks for call_expr and current_function_decl ...
10456         (expand_return): ... here.
10457
10458 2000-03-26  Tom Tromey  <tromey@cygnus.com>
10459
10460         * gcc.c (handle_braces): Recognize `%{<S}' construct.
10461         (SWITCH_OK, SWITCH_FALSE, SWITCH_IGNORE, SWITCH_LIVE): New
10462         defines.
10463         (process_command): Use them.
10464         (check_live_switch): Likewise.
10465         (give_switch): Skip ignored switches.
10466
10467 2000-03-26  Jan Hubicka  <jh@suse.cz>
10468
10469         * jump.c (jump_optimize_1): Fix typo in elide optimizations
10470         for minimal jump pass test.
10471
10472 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
10473
10474         * integrate.c (function_cannot_inline_p): Do inline functions that
10475         return `void'.
10476
10477 Sun Mar 26 11:37:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10478
10479         * stor-layout.c (layout_type, set_sizetype): early_type_list is
10480         now a list of TREE_LIST entries, not types.
10481         * tree.c (build_common_tree_nodes_2): Eliminate dupliate type sets.
10482
10483         * expmed.c (extract_bit_field): Ensure BITS_PER_WORD is signed in MAX.
10484         * config/arm/pe.c (arm_pe_return_in_memory): Use host_integerp and
10485         int_bit_position.
10486         * config/mips/mips.c (function_arg): Likewise; also remove cast
10487         and make variables unsigned or HOST_WIDE_INT and use tree_low_cst.
10488         (mips_function_value): Use int_byte_position and make HOST_WIDE_INT.
10489         * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Offsets are unsigned.
10490         * config/mips/mips.h (BITS_PER_WORD, UNITS_PER_WORD): Cast to unsigned.
10491         (UNITS_PER_FPREG, INT_TYPE_SIZE, LONG_TYPE_SIZE): Likewise.
10492         (POINTER_SIZE, POINTER_BOUNDARY,PARM_BOUNDARY): Likewise.
10493         (GP_REG_P, FP_REG_P, MD_REG_P, ST_REG_P): Ensure subtraction signed.
10494         (struct mips_arg): arg_number, arg_words, fp_arg_words, and
10495         num_adjusts now unsigned.
10496         (FUNCTION_ARG_BOUNDARY): Remove unneeded cast.
10497         * config/sparc/sparc.c (struct function_arg_record_value_parms):
10498         NREGS now unsigned.
10499         (function_arg_record_value_1): STARTBITPOS arg now HOST_WIDE_INT
10500         as is BITPOS variable; use host_integerp and int_bit_position.
10501         (function_arg_record_value_2): Likewise.
10502         (function_arg_record_value_3): Arg BITPOS now HOST_WIDE_INT.
10503         Variable REGNO now unsigned.
10504         (function_arg_record_value): NREGS now unsigned.
10505
10506 2000-03-26  Bernd Schmidt  <bernds@cygnus.co.uk>
10507
10508         * jump.c (mark_all_labels): Handle CALL_PLACEHOLDERs.
10509
10510 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10511
10512         * Rework fields used to describe positions of bitfields and
10513         modify sizes to be unsigned and use HOST_WIDE_INT.
10514         * alias.c (reg_known_value_size): Now unsigned.
10515         * c-typeck.c (build_unary_op, case ADDR_EXPR): Use byte_position.
10516         (really_start_incremental_init): Use bitsize_zero_node.
10517         (push_init_level, pop_init_level, output_init_element): Likewise.
10518         Use bitsize_unit_node and bitsize_one_node.
10519         (output_pending_init_elements, process_init_element): Likewise.
10520         * combine.c (combine_max_regno, reg_sign_bit_copies): Now unsigned.
10521         (make_extraction): Position and length HOST_WIDE_INT and unsigned
10522         HOST_WIDE_INT, respectively.
10523         (get_pos_from_mask): Passed in value is unsigned HOST_WIDE_INT.
10524         (num_sign_bit_copies): Returns unsigned.
10525         BITWIDTH now unsigned; rework arithmetic.
10526         Remove recursive call from arg to MAX.
10527         (combine_instructions, init_reg_last_arrays): NREGS now unsigned.
10528         (setup_incoming_promotions, can_combine_p, try_combine, simplify_set):
10529         REGNO now unsigned.
10530         (set_nonzero_bit_and_sign_copies): NUM now unsigned.
10531         (find_split_point, expand_compound_operation, make_extraction): LEN
10532         now unsigned HOST_WIDE_INT, POS now HOST_WIDE_INT.
10533         (make_field_assignment): Likewise.
10534         (combine_simplify_rtx): Add cast.
10535         (expand_compound_operation): MODEWIDTH now unsigned; rework arithmetic.
10536         (force_to_mode): WIDTH now unsigned; add cast.
10537         (if_then_else_cond): SIZE now unsigned.
10538         (nonzero_bits): MODE_WIDTH, RESULT_WIDTH, and WIDTH now unsigned.
10539         (extended_count): Now returns unsigned.
10540         (simplify_shift_const): COUNT unsigned; arg is now INPUT_COUNT.
10541         Add SIGNED_COUNT variable; MODE_WORDS and FIRST_COUNT now unsigned.
10542         (simplify_comparison): MODE_WIDTH now unsigned.
10543         (update_table_tick): REGNO and ENDREGNO now unsigned; new var R.
10544         (mark_used_regs_combine): Likewise; rework arithmetic.
10545         (record_value_for_reg): REGNO, ENDREGNO, and I now unsigned.
10546         (record_dead_and_set_regs, reg_dead_at_p, distribute_notes): Likewise.
10547         (record_promoted_value): REGNO now unsigned.
10548         (get_last_value_validate): REGNO, ENDREGNO, and J now unsigned.
10549         (get_last_value): REGNO now unsigned.
10550         (use_crosses_set_p): REGNO and ENDREGNO now unsigned.
10551         (reg_dead_regno, reg_dead_endregno): Now unsigned.
10552         (remove_death): Arg REGNO now unsigned.
10553         (move_deaths):  REGNO, DEADREGNO, DEADEND, OUREND, and I now unsigned.
10554         (reg_bitfield_target_p): REGNO, REGNO, ENDREGNO, and ENDTREGNO
10555         now unsigned.
10556         * convert.c (convert_to_integer): INPREC and OUTPREC now unsigned.
10557         * cse.c (struct qty_table_elem): FIRST_REG and LAST_REG now unsigned.
10558         (struct cse_reg_info): REGNO now unsigned.
10559         (cached_regno): Now unsigned.
10560         (REGNO_QTY_VALID_P): Add cast.
10561         (make_new_qty, make_regs_eqv, delete_reg_eqiv): Regno args unsigned.
10562         (remove_invalid_regs): Likewise.
10563         (remove_invalid_subreg_refs): Likewise; arg WORD also unsigned
10564         as are variables END and I.
10565         (get_cse_reg_info, insert): Likewise.
10566         (mention_regs, invalidate_for_call): REGNO, ENDREGNO, and I unsigned.
10567         (canon_hash): Likewise.
10568         (insert_regs, lookup_for_remove): REGNO now unsigned.
10569         (invalidate): REGNO, ENDREGNO, TREGNO, and TENDREGNO now unsigned.
10570         New variable RN.
10571         * dbxout.c (dbxout_parms, dbxout_reg_parms): Don't check for REGNO < 0.
10572         * dwarf2out.c (dwarf2ou_frame_debug_expr): Remove cast.
10573         * emit-rtl.c (subreg_realpart_p): Add cast.
10574         (operand_subword): Arg I is now unsigned as is var PARTWORDS.
10575         (operand_subword_force): Arg I is now unsigned.
10576         * except.c (eh_regs): Variable I is now unsigned.
10577         * explow.c (hard_function_value): BYTES is unsigned HOST_WIDE_INT.
10578         * expmed.c (store_fixed_bit_field): Position is HOST_WIDE_INT;
10579         length is unsigned HOST_WIDE_INT; likewise for internal variables.
10580         (store_split_bit_field, extract_fixed_bit_field): Likewise.
10581         (extract_split_bit_field, store_bit_field, extract_bit_field):
10582         Likewise.
10583         * expr.c (store_constructor_fields, store_constructor, store_field):
10584         Positions are HOST_WIDE_INT and lengths are unsigned HOST_WIDE_INT.
10585         (expand_assignment, expand_expr, expand_expr_unaligned): Likewise.
10586         (do_jump): Likewise.
10587         (move_by_pieces, move_by_pieces_ninsns, clear_by_pieces):
10588         MAX_SIZE is now unsigned.
10589         (emit_group_load): BYTEPOS is HOST_WIDE_INT; BYTELEN is unsigned.
10590         (emit_group_store): Likewise.
10591         (emit_move_insn): I now unsigned.
10592         (store_constructor): Use host_integerp, tree_low_cst, and
10593         bitsize_unit_node.
10594         (get_inner_reference): Return bitpos and bitsize as HOST_WIDE_INT.
10595         Rework all calculations to use trees and new fields.
10596         * expr.h (promoted_input_arg): Regno now unsigned.
10597         (store_bit_field, extract_bit_field): Adjust types of pos and size.
10598         (mark_seen_cases): Arg is HOST_WIDE_INT.
10599         * flow.c (verify_wide_reg_1): REGNO now unsigned.
10600         * fold-const.c (decode_field_reference): Size and pos HOST_WIDE_INT;
10601         precisions and alignments are unsigned.
10602         (optimize_bit_field_compare, fold_truthop): Likewise.
10603         (int_const_binop): Adjust threshold for size_int_type_wide call.
10604         (fold_convert): Likewise.
10605         (size_int_type_wide): Make table larger and fix thinko that only
10606         had half of table used.
10607         (all_ones_mask_p, fold): Precisions are unsigned.
10608         * function.c (put_reg_info_stack): REGNO is unsigned.
10609         (instantiate_decl): Size is HOST_WIDE_INT.
10610         (instantiate_virtual_regs): I is unsigned.
10611         (assign_parms): REGNO, REGNOI, and REGNOR are unsigned.
10612         (promoted_input_arg): REGNO is unsigned.
10613         * function.h (struct function): x_max_parm_reg is now unsigned.
10614         * gcse.c (max_gcse_regno): Now unsigned.
10615         (struct null_pointer_info): min_reg and max_reg now unsigned.
10616         (lookup_set, next_set): REGNO arg now unsigned.
10617         (compute_hash_table): REGNO and I now unsigned.
10618         (handle_avail_expr): regnum_for_replacing now unsigned.
10619         (cprop_insn): REGNO now unsigned.
10620         (delete_null_pointer_checks_1): BLOCK_REG now pointer to unsigned.
10621         * ggc-common.c (ggc_mark_tree_children, case FIELD_DECL): New case.
10622         * global.c (set_preference): SRC_REGNO, DEST_REGNO, and I now unsigned.
10623         * hard-reg-set.h (reg_class_size): Now unsigned.
10624         * integrate.c (mark_stores): LAST_REG and I now unsigned; new UREGNO.
10625         * jump.c (mark_modified_reg): I now unsigned; add cast.
10626         (rtx_equal_for_thread_p): Add cast.
10627         * loop.c (max_reg_before_loop): Now unsigned.
10628         (struct_movable): REGNO now unsigned.
10629         (try_copy_prop): REGNO arg unsigned.
10630         (regs_match_p): XN and YN now unsigned.
10631         (consec_sets_invariant_p, maybe_eliminate_biv): REGNO now unsigned.
10632         (strength_reduce): Likewise; NREGS also unsigned.
10633         (first_increment_giv, last_increment_giv unsigned): Now unsigned.
10634         * loop.h (struct iv_class): REGNO now unsigned.
10635         (max_reg_before_loop, first_increment_giv, last_increment_giv):
10636         Now unsigned.
10637         * machmode.h (mode_size, mode_unit_size): Now unsigned.
10638         (mode_for_size, smallest_mode_for_size): Pass size as unsigned.
10639         * optabs.c (expand_binop): I and NWORDS now unsigned.
10640         (expand_unop): I now unsigned.
10641         * print-tree.c (print_node): Don't print DECL_FIELD_BITPOS, but do
10642         print DECL_FIELD_OFFSET and DECL_FIELD_BIT_OFFSET.
10643         * real.c (significand_size): Now returns unsigned.
10644         * real.h (significand_size): Likewise.
10645         * regclass.c (reg_class_size): Now unsigned.
10646         (choose_hard_reg_mode): Both operands now unsigned.
10647         (record_reg_classes): REGNO and NR now unsigned.
10648         (reg_scan): NREGS now unsigned.
10649         (reg_scan_update): old_max_regno now unsigned.
10650         (reg_scan_mark_refs): Arg MIN_REGNO and var REGNO now unsigned.
10651         * reload.c (find_valid_class): BEST_SIZE now unsigned.
10652         (find_dummy_reload): REGNO, NWORDS, and I now unsigned.
10653         (hard_reg_set_here_p): Args BEG_REGNO and END_REGNO now unsigned.
10654         Likewise for variable R.
10655         (refers_to_regno_for_reload_p): Args REGNO and END_REGNO now unsigned,
10656         as are variables INNER_REGNO and INNER_ENDREGNO; add new variable R.
10657         (find_equiv_reg): Add casts.
10658         (regno_clobbered_p): Arg REGNO now unsigned.
10659         * reload.h (struct reload): NREGS now unsigned.
10660         (refers_to_regno_for_reload_p): Regno args are unsigned.
10661         (regno_clobbered_p): Likewise.
10662         * reload1.c (reg_max_ref_width, spill_stack_slot_width): Now unsigned.
10663         (compute_use_by_pseudos): REGNO now unsigned.
10664         (find_reg): I and J now unsigned, new variable K, and change loop
10665         variables accordingly; THIS_NREGS now unsigned.
10666         (alter_reg): INHERENT_SIZE and TOTAL_SIZE now unsigned.
10667         (spill_hard_reg): REGNO arg now unsigned; add casts.
10668         (forget_old_reloads_1): REGNO, NR, and I now unsigned.
10669         (mark_reload_reg_in_use): Arg REGNO and vars NREGS and I now unsigned.
10670         (clear_reload_reg_in_use): Arg REGNO and vars NREGS, START_REGNO,
10671         END_REGNO, CONFLICT_START, and CONFLICT_END now unsigned.
10672         (reload_reg_free_p, reload_reg_reaches_end_p): Arg REGNO now unsigned.
10673         (choose_reload_regs): MAX_GROUP_SIZE now unsigned.
10674         (emit_reload_insns): REGNO now unsigned.
10675         (reload_cse_move2add): Add cast.
10676         (move2add_note_store): REGNO and I now unsigned; new variable ENDREGNO
10677         and rework loop.
10678         * resource.c (mark_referenced_resources, mark_set_resources): New
10679         variable R; REGNO and LAST_REGNO now unsigned.
10680         (mark_target_live_regs): J and REGNO now unsigned.
10681         * rtl.c (mode_size, mode_unit_size): Now unsigned.
10682         * rtl.h (union rtunion_def): New field rtuint.
10683         (XCUINT): New macro.
10684         (ADDRESSOF_REGNO, REGNO, SUBREG_WORD): New XCUINT.
10685         (operand_subword, operand_subword_force): Word number is unsigned.
10686         (choose_hard_reg_mode): Operands are unsigned.
10687         (refers_to-regno_p, dead_or_set_regno_p): Regno arg is unsigned.
10688         (find_regno_note, find_regno_fusage, replace_regs): Likewise.
10689         (regno_use_in, combine_instructions, remove_death): Likewise.
10690         (reg_scan, reg_scan_update): Likewise.
10691         (extended_count): Return is unsigned.
10692         * rtlanal.c (refers_to_regno_p): Args REGNO and ENDREGNO and vars I,
10693         INNER_REGNO, and INNER_ENDREGNO now unsigned; new variable X_REGNO.
10694         (reg_overlap_mentioned_p): REGNO and ENDREGNO now unsigned.
10695         (reg_set_last_first_regno, reg_set_last_last_regno): Now unsigned.
10696         (reg_reg_last_1): FIRS and LAST now unsigned.
10697         (dead_or_set_p): REGNO, LAST_REGNO, and I now unsigned.
10698         (dead_or_set_regno_p): Arg TEST_REGNO and vars REGNO and ENDREGNO
10699         now unsigned.
10700         (find_regno_note, regno_use_in): Arg REGNO now unsigned.
10701         (find_regno_fusage): Likewise; also var REGNOTE now unsigned.
10702         (find_reg_fusage): Variables REGNO, END_REGNO, and I now unsigned.
10703         (replace_regs): Arg NREGS now unsigned.
10704         * sdbout.c (sdbout_parms, sdbout_reg_parms): Don't check REGNO < 0.
10705         * simplify-rtx.c (simplify_unary_operation): WIDTH now unsigned.
10706         (simplify_binary_operation): Likewise.
10707         (cselib_invalidate_regno): Arg REGNO and variables ENDREGNO, I, and
10708         THIS_LAST now unsigned.
10709         (cselib_record_set): Add cast.
10710         * ssa.c (ssa_max_reg_num): Now unsigned.
10711         (rename_block): REGNO now unsigned.
10712         * stmt.c (expand_return): Bit positions unsigned HOST_WIDE_INT;
10713         sizes now unsigned.
10714         (all_cases_count): Just return -1 not -2.
10715         COUNT, MINVAL, and LASTVAL now HOST_WIDE_INT.
10716         Rework tests to use trees whenever possible.
10717         Use host_integerp and tree_low_cst.
10718         (mark_seen_cases): COUNT arg now HOST_WIDE_INT;
10719         Likewise variable NEXT_NODE_OFFSET; XLO now unsigned.
10720         (check_for_full_enumeration_handing): BYTES_NEEDED, I to HOST_WIDE_INT.
10721         * stor-layout.c (mode_for_size): SIZE arg now unsigned.
10722         (smallest_mode_for_size): Likewise.
10723         (layout_decl): Simplify handing of a specified DECL_SIZE_UNIT.
10724         KNOWN_ALIGN is now an alignment, so simplify code.
10725         Don't turn off DECL_BIT_FIELD if field is BLKmode, but not type.
10726         (start_record_layout): Renamed from new_record_layout_info.
10727         Update to new fields.
10728         (debug_rli, normalize_rli, rli_size_unit_so_far, rli_size_so_far):
10729         New functions.
10730         (place_union_field): Renamed from layout_union_field.
10731         Update to use new fields in rli.
10732         (place_field): Renamed from layout_field.
10733         Major rewrite to use new fields in rli; pass alignment to layout_decl.
10734         (finalize_record_size): Rework to use new fields in rli and handle
10735         union.
10736         (compute_record_mode): Rework to simplify and to use new DECL fields.
10737         (finalize_type_size): Make rounding more consistent.
10738         (finish_union_layout): Deleted.
10739         (layout_type, case VOID_TYPE): Don't set TYPE_SIZE_UNIT either.
10740         (layout_type, case RECORD_TYPE): Call new function names.
10741         (initialize_sizetypes): Set TYPE_IS_SIZETYPE.
10742         (set_sizetype): Set TYPE_IS_SIZETYPE earlier.
10743         (get_best_mode): UNIT is now unsigned; remove casts.
10744         * tree.c (bit_position): Compute from new fields.
10745         (byte_position, int_byte_position): New functions.
10746         (print_type_hash_statistics): Cast to remove warning.
10747         (build_range_type): Use host_integerp and tree_low_cst to try to hash.
10748         (build_index_type): Likewise; make subtype of sizetype.
10749         (build_index_2_type): Pass sizetype to build_range_type.
10750         (build_common_tree_nodes): Use size_int and bitsize_int to
10751         initialize nodes; add bitsize_{zero,one,unit}_node.
10752         * tree.h (DECL_FIELD_CONTEXT): Use FIELD_DECL_CHECK.
10753         (DECL_BIT_FIELD_TYPE, DECL_QUALIFIER, DECL_FCONTEXT): Likewise.
10754         (DECL_PACKED, DECL_BIT_FIELD): Likewise.
10755         (DECL_FIELD_BITPOS): Deleted.
10756         (DECL_FIELD_OFFSET, DECL_FIELD_BIT_OFFSET): New fields.
10757         (DECL_RESULT, DECL_SAVED_INSNS): Use FUNCTION_DECL_CHECK.
10758         (DECL_FRAME_SIZE, DECL_FUNCTION_CODE, DECL_NO_STATIC_CHAIN): Likewise.
10759         (DECL_INLINE, DECL_BUILT_IN_NONANSI, DECL_IS_MALLOC): Likewise.
10760         (DECL_BUILT_IN_CLASS, DECL_STATIC_CONSTRUCTOR): Likewise.
10761         (DECL_STATIC_DESTRUCTOR, DECL_NO_CHECK_MEMORY_USAGE): Likewise.
10762         (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT, DECL_NO_LIMIT_STACK) Likewise.
10763         (DECL_ORIGINAL_TYPE, TYPE_DECL_SUPPRESS_DEBUG): Use TYPE_DECL_CHECK.
10764         (DECL_ARG_TYPE_AS_WRITEN, DECL_ARG_TYPE): Use PARM_DECL_CHECK.
10765         (DECL_INCOMING_RTL, DECL_TRANSPARENT_UNION): Likewise.
10766         (DECL_ALIGN): Adjust to new field in union.
10767         (DECL_OFFSET_ALIGN): New field.
10768         (DECL_ERROR_ISSUED, DECL_TOO_LATE): Use LABEL_DECL_CHECK.
10769         (DECL_IN_TEXT_SECTION): Use VAR_DECL_CHECK.
10770         (union tree_decl): Add struct for both aligns.
10771         (enum tree_index): Add TI_BITSIZE_{ZERO,ONE,UNIT}.
10772         (bitsize_zero_node, bitsize_one_node, bitsize_unit_node): Added.
10773         (struct record_layout_info): Rework fields to have offset
10774         alignment and byte and bit position.
10775         (start_record_layout, place_field): Renamed from old names.
10776         (rli_size_so_far, rli_size_unit_so_far, normalize_rli): New decls.
10777         (byte_position, int_byte_position): Likewise.
10778         (get_inner_reference): Change types of position and length.
10779         * unroll.c (unroll_loop): New variable R; use for some loops.
10780         MAX_LOCAL_REGNUM and MAXREGNUM now unsigned.
10781         (calculate_giv_inc): Arg REGNO now unsigned.
10782         (copy_loop_body): REGNO and SRC_REGNO now unsigned.
10783         * varasm.c (assemble_variable): Clean up handling of size using
10784         host_integerp and tree_low_cst.
10785         (decode_addr_const): Use byte, not bit, position.
10786         (output_constructor): bitpos and offsets are HOST_WIDE_INT;
10787         use tree_low_cst and int_bit_position.
10788         * objc/objc-act.c (build_ivar_list_initializer): Use byte_position.
10789
10790 Fri Mar 24 20:13:49 2000  Jason Eckhardt  <jle@cygnus.com>
10791
10792         * bb-reorder.c (REORDER_MOVED_BLOCK_END): Removed.
10793         (reorder_block_def): New members eff_head and eff_end.
10794         (REORDER_BLOCK_EFF_HEAD, REORDER_BLOCK_EFF_END): New macros.
10795         (verify_insn_chain): New function.
10796         (skip_insns_between_block): Add code to skip deleted insns.
10797         Check for note before using.
10798         (chain_reorder_blocks): Replace calls to skip_insns_between_block
10799         with references to REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END.
10800         Check for note before using.
10801         (make_reorder_chain): Use INTVAL rather than XINT to get REG_BR_PROB.
10802         (fixup_reorder_chain): Restructure, clean up, defect removal.
10803         (reorder_basic_blocks): Remove last_insn and references to it.
10804         Moved insn chain verification code into a new function (see above).
10805         Delete defective code that sets last insn.
10806         Initialize REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for
10807         all blocks.
10808
10809 2000-03-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10810
10811         * config/c4x/c4x.h (CPP_SPEC): Remove erroneous space.
10812
10813 2000-03-24  Richard Henderson  <rth@cygnus.com>
10814
10815         * tree.c (lang_safe_for_unsave): Remove.
10816         (unsafe_for_reeval): Transmute and rename from safe_for_unsave,
10817         allowing for two levels of unsafeness.  Remove lang hook.
10818         * tree.h: Update declarations.
10819         * calls.c (expand_call): Rename safe_for_reeval to try_tail_call.
10820         Create temporary VAR_DECLs to protect very unsafe_for_reeval trees.
10821         Always fail sibcalls when there are pending cleanups.
10822
10823 2000-03-24  Geoff Keating  <geoffk@cygnus.com>
10824
10825         * flow.c (propagate_block): When we delete an ADDR_VEC,
10826         also delete the BARRIER following it if there is one.
10827
10828 2000-03-24  Richard Henderson  <rth@cygnus.com>
10829
10830         * builtins.c (expand_builtin_bzero): Convert `length' argument
10831         to sizetype.
10832
10833 2000-03-24  Jakub Jelinek  <jakub@redhat.com>
10834
10835         * sibcall.c (skip_copy_to_return_value): Use OUTGOING_REGNO for
10836         comparison if regno's are equal.
10837         * calls.c (initialize_argument_informat): Add ecf_flags argument.
10838         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
10839         (expand_call): Update caller.
10840         Avoid making a sibling call if argument size of the callee is larger
10841         than argument size of the caller.
10842         Call hard_function_value with outgoing set if in sibcall pass.
10843         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
10844
10845         * final.c (permitted_reg_in_leaf_functions, only_leaf_regs_used):
10846         Change LEAF_REGISTERS from an array initializer to actual array
10847         identifier. Move static global variable into the function.
10848         (leaf_function_p): Allow SIBLING_CALL_P calls even outside of
10849         sequences for leaf functions.
10850         * global.c (global_alloc): Likewise.
10851         * tm.texi (LEAF_REGISTERS): Update documentation.
10852
10853         * config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Remove the ugly
10854         TARGET_FLAT leaf disabling hack.
10855         (LEAF_REGISTERS): Changed from an array initializer to actual array
10856         identifier to avoid duplication and remove the above hack.
10857         (FUNCTION_OK_FOR_SIBCALL): Define.
10858         * config/sparc/sparc.md (sibcall): New attr type. Use it almost
10859         always like call attribute.
10860         (eligible_for_sibcall_delay): New attribute.
10861         (sibcall): New delay type.
10862         (sibcall, sibcall_value, sibcall_epilogue): New expands.
10863         (sibcall_symbolic_sp32, sibcall_symbolic_sp64,
10864         sibcall_value_symbolic_sp32, sibcall_value_symbolic_sp64): New insns.
10865         * config/sparc/sparc.c (sparc_leaf_regs): New array.
10866         (eligible_for_sibcall_delay, output_restore_regs, output_sibcall):
10867         New functions.
10868         (output_function_epilogue): Move part of the code into
10869         output_restore_regs.
10870         (ultra_code_from_mask, ultrasparc_sched_reorder): Handle
10871         TYPE_SIBCALL.
10872         * sparc-protos.h (output_sibcall, eligible_for_sibcall_delay): New
10873         prototypes.
10874
10875         * config/sparc/sparc.h (REVERSIBLE_CC_MODE): Revert Jan, 25 change
10876         until infrastructure is finished.
10877
10878 Fri Mar 24 13:49:45 2000  Jeffrey A Law  (law@cygnus.com)
10879
10880         * integrate.c (save_for_inline_nocopy): Clear in_nonparm_insns here.
10881         (save_parm_insns): Not here.
10882
10883 2000-03-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10884
10885         * builtins.c (expand_builtin_bzero): New function.
10886         (expand_builtin): Handle bzero.
10887
10888         * builtins.def: Add BUILT_IN_BZERO.
10889
10890         * c-common.c (c_common_nodes_and_builtins): Provide builtin
10891         prototype & function for bzero.
10892
10893 2000-03-23  Michael Meissner  <meissner@redhat.com>
10894
10895         * config/alpha/alpha.md (TF floating point insns): Undo 2000-03-21
10896         change adding TARGET_FP to the TF floating point insns, except for
10897         trunctfsf2, which generates direct calls to truncdfsf2.
10898
10899 2000-03-23  Geoff Keating  <geoffk@cygnus.com>
10900
10901         * config/rs6000/rs6000.h (ARG_POINTER_CFA_OFFSET): New definition,
10902         try to protect against middle-end changes that break binary
10903         compatibility.
10904         (DWARF_FRAME_REGISTERS): New definition, likewise for backend.
10905
10906 2000-03-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10907
10908         * config/c4x/c4x.md (load_immed_address):  Add DP reg clobber.
10909
10910 Thu Mar 23 17:10:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10911
10912         * calls.c (expand_call): If TARGET is passed by reference and
10913         is readonly, write a CLOBBER.
10914
10915 2000-03-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10916
10917         * builtins.c (expand_builtin): Handle bcmp.
10918
10919         * builtins.def: Add BUILT_IN_BCMP.
10920
10921         * c-common.c (c_common_nodes_and_builtins): Provide builtin
10922         prototype & function for bcmp.
10923
10924 Thu Mar 23 11:34:39 2000  Jim Wilson  <wilson@cygnus.com>
10925
10926         * config/ia64/ia64.c (rtx_needs_barrier, case UNSPEC): Move case 6...
10927         (rtx_needs_barrier, case UNSPEC_VOLATILE): to here.
10928         * config/ia64/ia64.md (pr_restore): Change UNSPEC to UNSPEC_VOLATILE.
10929
10930 Thu Mar 23 16:04:40 2000  Andrew Haley  <aph@cygnus.com>
10931
10932         * config/mips/mips.md (movdf_internal1a): Delete (set 'f', 'F')
10933         alternative when using -fp64 -gp32.
10934
10935 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
10936
10937         * config/rs6000/rs6000.h (DWARF_FRAME_RETURN_COLUMN): Define.
10938         * config/alpha/alpha.h (DWARF_FRAME_RETURN_COLUMN): Define.
10939         * config/sparc/sparc.h (DWARF_FRAME_RETURN_COLUMN): Define.
10940
10941         * frame.h (frame_state): Revert last change.
10942         * frame.c (execute_cfa_insn): Just don't record the save of a CFA reg.
10943         * libgcc2.c (throw_helper): Revert last change.
10944
10945 2000-03-22  Richard Henderson  <rth@cygnus.com>
10946
10947         * stmt.c (expand_asm_operands): Don't promote the temporary.
10948
10949 2000-03-22  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
10950
10951         * builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros.
10952         * c-common.c (decl_attributes,check_format_info,truthvalue_conversion,
10953           c_get_alias_set): Likewise.
10954         * c-decl.c (duplicate_decls): Likewise.
10955         * c-typeck.c (default_conversion,build_unary_op): Likewise.
10956         * calls.c (initialize_argument_information): Likewise.
10957         * dwarf2out.c (decl_class_context,add_abstract_origin_attribute):
10958         Likewise.
10959         * dwarfout.c (decl_class_context,output_type): Likewise.
10960         * expr.c (get_inner_reference): Likewise.
10961         * fold-const.c (simple_operand_p,fold): Likewise.
10962         * function.c (aggregate_value_p): Likewise.
10963         * stmt.c (expand_asm_operands): Likewise.
10964         * varasm.c (named_section): Likewise.
10965
10966 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
10967
10968         Implement dwarf2 exception handling for the ARM.
10969         * config/arm/arm.h (INCOMING_RETURN_ADDR_RTX): Define.
10970         (DWARF_FRAME_RETURN_COLUMN): Define.
10971         * config/arm/arm.c (emit_multi_reg_push): Return rtx.  Attach
10972         REG_FRAME_RELATED_EXPR note.
10973         (emit_sfm): Likewise.
10974         (arm_expand_prologue): Set RTX_FRAME_RELATED_P on everything.
10975         * dwarf2out.c (reg_save): Handle saving a register to itself.
10976         (dwarf2out_frame_debug_expr): Handle an intermediate cfa reg.
10977         * except.c (eh_regs): Don't use the static chain reg if it's
10978         callee-saved.
10979         * frame.h (frame_state): Add cfa_saved field.
10980         * frame.c (execute_cfa_insn): Set it.
10981         * libgcc2.c (throw_helper): Don't adjust sp if it's restored in
10982         the epilogue.
10983         * function.c (ARG_POINTER_CFA_OFFSET): Default to FIRST_PARM_OFFSET.
10984         Now takes a parm.
10985         (instantiate_virtual_regs): Adjust.
10986         * tm.texi: Adjust.
10987         * config/m68k/m68k.h (ARG_POINTER_CFA_OFFSET): Don't define.
10988         * config/ns32k/ns32k.h (ARG_POINTER_CFA_OFFSET): Don't define.
10989         * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): Take a parm.
10990
10991         * dwarf2out.c (reg_number): Refer to FIRST_PSEUDO_REGISTER.
10992         (initial_return_save): Use DWARF_FRAME_REGNUM, not reg_number.
10993
10994 2000-03-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10995
10996         * builtins.def: New file.
10997
10998         * Makefile.in (TREE_H): Depend on builtins.def.
10999
11000         * builtins.c (built_in_names): Use builtins.def.
11001
11002         * tree.h (built_in_function): Likewise.
11003
11004 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
11005
11006         * tree.c (size_in_bytes): Return size_zero_node, not
11007         integer_zero_node.
11008
11009 2000-03-22  Geoff Keating  <geoffk@cygnus.com>
11010
11011         * config/fp-bit.c (pack_d): Correct the case when a denormal
11012         is rounded up and stops being denormal.
11013
11014 2000-03-21  Richard Henderson  <rth@cygnus.com>
11015
11016         * config/alpha/alpha.c (function_arg): Check for void_type_node
11017         before using MUST_PASS_IN_STACK.
11018
11019 2000-03-21  Stephane Carrez  <stcarrez@worldnet.fr>
11020
11021         * regmove.c (combine_stack_adjustments_for_block): Check that
11022         the stack pointer is a valid memory address.
11023
11024 Wed Mar 22 11:44:50 MET 2000  Jan Hubicka  <jh@suse.cz>
11025
11026         * calls.c: re-install Mar 16 emit_library_call merge.
11027
11028 2000-03-21  Jakub Jelinek  <jakub@redhat.com>
11029
11030         * config/sparc/sparc.c (mem_min_alignment): If not optimizing,
11031         we cannot be sure that if reload_completed base register will
11032         be properly aligned.
11033
11034 2000-03-21  Richard Henderson  <rth@cygnus.com>
11035
11036         * flow.c (delete_block): Fix typo last change.
11037
11038 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
11039
11040         * c-common.c (c_expand_expr_stmt): Use COMPLETE_TYPE_OR_VOID_P,
11041         not COMPLETE_TYPE_P, to check the type of the expression.
11042
11043 2000-03-21  Michael Meissner  <meissner@redhat.com>
11044
11045         * config/alpha/alpha.md (floating point insns): Add TARGET_FP to
11046         all floating point insns that just tested the macro
11047         TARGET_HAS_XFLOATING_LIBS.
11048         (movsf/movdf recognizers): Add separate insns if -mno-fp-regs is
11049         used to only use the gprs.
11050
11051 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11052
11053         * tree.h (COMPLETE_TYPE_P): New macro.
11054         (COMPLETE_OR_VOID_TYPE_P): New macro.
11055         (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): New macro.
11056         * stor-layout.c (layout_type, case VOID_TYPE): Don't set TYPE_SIZE.
11057         * c-aux-info.c (gen_type): Use them.
11058         * c-common.c (c_expand_expr_stmt): Likewise.
11059         * c-decl.c (poplevel, pushdecl, start_decl, finish_decl,
11060         grokdeclarator, grokparms, finish_struct, start_function,
11061         store_parm_decls, combine_parm_decls): Likewise.
11062         * c-parse.y (cast_expr): Likewise.
11063         * c-typeck.c (require_complete_type, c_sizeof, c_sizeof_nowarn,
11064         c_size_in_bytes, c_alignof, build_component_ref,
11065         build_indirect_ref, build_array_ref, convert_arguments,
11066         build_binary_op, pointer_diff, build_unary_op, digest_init: Likewise.
11067         * calls.c (initialize_argument_information): Likewise.
11068         * convert.c (convert_to_integer): Likewise.
11069         * dbxout.c (dbxout_typedefs, dbxout_type, dbxout_symbol): Likewise.
11070         * dwarfout.c (location_or_const_value_attribute,
11071         output_enumeration_type_die, output_structure_type_die,
11072         output_union_type_die, output_type): Likewise.
11073         * expr.c (safe_from_p, expand_expr): Likewise.
11074         * function.c (assign_parms): Likewise.
11075         * sdbout.c (sdbout_symbol, sdbout_one_type): Likewise.
11076         * tree.c (build_array_type, build_function_type,
11077         build_method_type, build_offset_type, build_complex_type): Likewise.
11078         * c-parse.c, c-parse.h: Regenerated.
11079
11080 2000-03-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11081
11082         * config/c4x/rtems.h: Include config/rtems.h.
11083
11084 Tue Mar 21 09:24:00 2000  Denis Chertykov  <denisc@overta.ru>
11085
11086         * config/avr/avr.c (encode_section_info): sets SYMBOL_REF_FLAG if
11087         decl is a FUNCTION_DECL
11088
11089 Mon Mar 20 19:53:53 2000  Jim Wilson  <wilson@cygnus.com>
11090
11091         * config/ia64/ia64.c (ia64_expand_prologue): Don't abort if leaf
11092         function uses output registers.  Don't save RP for leaf functions.
11093         Do save RP even if no epilogue.
11094         * config/ia64/ia64.h (FIXED_REGISTERS): Unmark in/out registers.
11095         (CALL_USED_REGISTERS): Unmark in registers.
11096         (REG_ALLOC_ORDER): Move out regs up, to near the top.  Move in regs up,
11097         to near the middle.
11098
11099 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
11100
11101         * config/rs6000/rs6000.md (bunordered): New expander.
11102         (bordered): New expander.
11103         (buneq): New expander.
11104         (bunge): New expander.
11105         (bungt): New expander.
11106         (bunle): New expander.
11107         (bunlt): New expander.
11108         (bltgt): New expander.
11109
11110         * config/rs6000/rs6000.c (ccr_bit): Handle unordered comparisons.
11111         (ccr_bit_negated_p): New function.
11112         (print_operand): For %C, generate appropriate cror for UNEQ,
11113         UNLT, UNGT, and LTGT.  For %T and %t, use ccr_bit_negated_p.
11114
11115 2000-03-20  Andreas Jaeger  <aj@suse.de>
11116
11117         * sdbout.c (sdbout_one_type): Add braces to avoid "ambigous else"
11118         warning.
11119
11120         * tree.h (safe_for_unsave): Prototype.
11121
11122 2000-03-20  Richard Henderson  <rth@cygnus.com>
11123
11124         * regmove.c (stack_memref_p): Fix typo, reorg for readability.
11125         (combine_stack_adjustments_for_block): Don't allow sp references
11126         in the side of a set we're not fixing up.
11127         * toplev.c (rest_of_compilation): Run combine_stack_adjustments
11128         after life_analysis.
11129
11130 2000-03-20  Richard Henderson  <rth@cygnus.com>
11131
11132         * calls.c (expand_call): Don't bother generating tail call
11133         sequences if there are pending cleanups.  Use
11134         expand_start_target_temps/expand_end_target_temps to elide
11135         cleanups created during sibcall expansion.
11136
11137 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
11138
11139         * configure.in: Set $IFS to a value if it doesn't already have one
11140         in the --enable-checking handling.
11141         * configure: Regenerate.
11142
11143 2000-03-20  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11144
11145         * c-parse.in (SAVE_WARN_FLAGS): Use size_int.
11146         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
11147         Regenerated.
11148
11149 Mon Mar 20 11:43:15 MET 2000  Jan Hubicka  <jh@suse.cz>
11150
11151         * jump.c (delete_noop_moves): Remove code attempting to
11152         combine stack adjustments.
11153
11154 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11155
11156         * emit-rtl.c (push_to_full_sequence, end_full_sequence): New functions.
11157         * except.c (emit_cleanup_handler): Use them.
11158         (expand_end_all_catch): Likewise.
11159         * function.c (fixup_var_refs): Likewise.
11160         (expand_function_end): Clear catch_clauses_last.
11161         * rtl.h (push_to_full_sequence, end_full_sequence): Declare.
11162         * except.h (struct eh_status): New field x_catch_clauses_last.
11163         (catch_clauses_last): New define.
11164
11165         * Makefile.in (tree.o): Depend on HASHTAB_H.
11166         * tree.c: Include hashtab.h.
11167         (struct type_hash): Remove next field.
11168         (TYPE_HASH_SIZE): Remove.
11169         (TYPE_HASH_INITIAL_SIZE): New define.
11170         (type_hash_table): Change type to htab_t.
11171         (type_hash_eq, type_hash_hash, print_type_hash_statistics,
11172         mark_hash_entry): New functions.
11173         (init_obstacks): Allocate type hash.
11174         (type_hash_lookup): Use htab functions.
11175         (type_hash_add, mark_type_hash): Likewise.
11176         (dump_tree_statistics): Call print_type_hash_statistics.
11177
11178 2000-03-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11179
11180         * rs6000/t-aix41: New file.
11181
11182         * configure.in ({rs6000,powerpc}-ibm-aix4.[12]*): Use it.
11183
11184 Sun Mar 19 13:27:30 2000  Hans-Peter Nilsson  <hp@axis.com>
11185
11186         * tm.texi (Driver): Fix typos and tweak entry for
11187         INCLUDE_DEFAULTS.
11188         Move misplaced STRUCT_FORCE_BLK entry ...
11189         (Storage Layout): ... to here.
11190         (Run-time Target): Recommend having TARGET_MASK_... helper macros.
11191
11192 2000-03-19  Richard Henderson  <rth@cygnus.com>
11193
11194         * flow.c (delete_block): Delete the addr_vec along with the block.
11195         (flow_delete_insn): Decrement LABEL_NUSES when deleting insns that
11196         reference labels.
11197
11198         * fold-const.c (extract_muldiv): Apply type check for defined
11199         overflow to multiply as well as divide.
11200
11201         * stor-layout.c (layout_decl): Don't abort on any zero sized decl.
11202
11203 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11204
11205         * emit-rtl.c (remove_unncessary_notes): Check that all
11206         NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes have an
11207         associated NOTE_BLOCK.
11208         * function.h (identify_blocks): Update comments.
11209         (reorder_blocks): Declare.
11210         * function.c (identify_blocks): Don't take paramters.
11211         (reorder_blocks): Don't take parameters.
11212         * loop.h (find_loop_tree_blocks): Remove.
11213         (unroll_block_trees): Likewise.
11214         * loop.c (loop_optimize): Don't call find_loop_tree_blocks.  Use
11215         reorder_blocks instead of unroll_block_trees.h
11216         * sibcall.c (optimize_sibling_and_tail_recursive_calls): Likewise.
11217         * stmt.c (find_loop_tree_blocks): Remove.
11218         (unroll_block_trees): Likewise.
11219         * toplev.c (rest_of_compilation): Don't call find_loop_tree_blocks
11220         in whole-function mode.
11221         * tree.h (reorder_blocks): Remove declaration.
11222
11223         * expr.c: Include intl.h.
11224         * Makefile.in (expr.o): Depend on intl.h.
11225
11226 2000-03-18  Richard Henderson  <rth@cygnus.com>
11227
11228         * expr.c (emit_move_insn_1): Clarify cannot_inline message.
11229
11230 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11231
11232         * tree.h (tree_index): Remove enumerals for integer types.
11233         (integer_type_kind): New type.
11234         (integer_types): New variable.
11235         (char_type_node): Adjust.
11236         (signed_char_type_node): Likewise.
11237         (unsigned_char_type_node): Likewise.
11238         (short_integer_type_node): Likewise.
11239         (short_unsigned_type_node): Likewise.
11240         (integer_type_node): Likewise.
11241         (unsigned_type_node): Likewise.
11242         (long_integer_type_node): Likewise.
11243         (long_unsigned_type_node): Likewise.
11244         (long_long_integer_type_node): Likewise.
11245         (long_long_unsigned_type_node): Likewise.
11246         * tree.c (integer_types): New variable.
11247         (init_obstacks): Register it as a root.
11248
11249 Sat Mar 18 14:38:00 2000  Jason Eckhardt  <jle@cygnus.com>
11250
11251         * bb-reorder.c (reorder_basic_blocks): Update PREV_INSN as well as
11252         NEXT_INSN. Update last insn in chain.
11253
11254 2000-03-17  Jason Merrill  <jason@casey.cygnus.com>
11255
11256         * dwarf2out.c (dwarf2out_decl): Don't emit anything for types
11257         with TYPE_DECL_SUPPRESS_DEBUG set.
11258
11259 2000-03-18  Richard Henderson  <rth@cygnus.com>
11260
11261         * flow.c (make_edges): Use INTVAL to access REG_EH_REGION value.
11262
11263 2000-03-18  Richard Henderson  <rth@cygnus.com>
11264
11265         * i386.c (call_insn_operand): Always allow SYMBOL_REF,
11266         care for HALF_PIC_P.
11267         (expander_call_insn_operand): Remove.
11268         (ix86_expand_epilogue): New arg `emit_return' to control return insn.
11269         * i386.h (PREDICATE_CODES): Update.
11270         * i386.md (all call expanders): Remove predicates, remove special
11271         handling for half-pic.
11272         (*call_1, *call_value_1): Handle SIBLING_CALL_P insns.
11273         (*call_pop_pic2, *call_pic2, *call_value_pop_2, *call_value_2): Remove.
11274         (sibcall_epilogue): New.
11275
11276 2000-03-17  Richard Henderson  <rth@cygnus.com>
11277
11278         * rtlanal.c (single_set): Reject if the parallel has anything
11279         except SET or USE or CLOBBER.
11280
11281 2000-03-17  Jeff Law  <law@cygnus.com>
11282             Richard Henderson  <rth@cygnus.com>
11283
11284         * Makefile.in (OBJS): Add sibcall.o.
11285         (sibcall.o): New.
11286         * sibcall.c: New file.
11287         * calls.c (FUNCTION_OK_FOR_SIBCALL): Provide default.
11288         (ECF_IS_CONST, ECF_NOTHROW, ECF_SIBCALL): New.
11289         (emit_call_1): Replace `is_const' and `nothrow' with `ecf_flags'.
11290         Emit sibcall patterns when requested.  Update all callers.
11291         (expand_call): Generate CALL_PLACEHOLDER insns when tail call
11292         elimination seems feasable.
11293         * final.c (leaf_function_p): Sibling calls don't discount being
11294         a leaf function.
11295         * flow.c (HAVE_sibcall_epilogue): Provide default.
11296         (find_basic_blocks_1): Sibling calls don't throw.
11297         (make_edges): Make edge from sibling call to EXIT.
11298         (propagate_block): Don't remove sibcall_epilogue insns.
11299         * function.c (prologue, epilogue): Turn into varrays.  Update all uses.
11300         (sibcall_epilogue): New.
11301         (fixup_var_refs): Scan CALL_PLACEHOLDER sub-sequences.
11302         (identify_blocks_1): Likewise.  Break out from ...
11303         (identify_blocks): ... here.
11304         (reorder_blocks_1): Scan CALL_PLACEHOLDER.  Break out from ...
11305         (reorder_blocks): ... here.
11306         (init_function_for_compilation): Zap prologue/epilogue as varrays.
11307         (record_insns): Extend a varray instead of mallocing new memory.
11308         (contains): Read a varray not array of ints.
11309         (sibcall_epilogue_contains): New.
11310         (thread_prologue_and_epilogue_insns): Emit and record
11311         sibcall_epilogue patterns.
11312         (init_function_once): Allocate prologue/epilogue varrays.
11313         * genflags.c (gen_insn): Treat sibcall patterns as calls.
11314         * integrate.c (save_parm_insns): Recurse on CALL_PLACEHOLDER patterns.
11315         Broken out from ...
11316         (save_for_inline_nocopy): ... here.
11317         (copy_insn_list): Recurse on CALL_PLACEHOLDER patterns.
11318         Broken out from ...
11319         (expand_inline_function): ... here.
11320         (copy_rtx_and_substitute): Handle NOTE_INSN_DELETED_LABEL.
11321         (subst_constants): Handle 'n' formats.
11322         * jump.c (jump_optimize_minimal): New.
11323         (jump_optimize_1): New arg `minimal'; update callers.  Elide most
11324         optimizations if it's set.
11325         * rtl.c (copy_rtx): Do copy jump & call for insns.
11326         * rtl.h (struct rtx_def): Document use of jump and call for insns.
11327         (SIBLING_CALL_P): New.
11328         (sibcall_use_t): New.
11329         * toplev.c (rest_of_compilation): Do init_EXPR_INSN_LIST_cache earlier.
11330         Invoke optimize_sibling_and_tail_recursive_calls.
11331         * tree.c (lang_safe_for_unsave): New.
11332         (safe_for_unsave): New.
11333         * tree.h (lang_safe_for_unsave, safe_for_unsave): Declare.
11334
11335         * alpha.h (FUNCTION_OK_FOR_SIBCALL): New.
11336         * alpha.md (sibcall, sibcall_value, sibcall_epilogue): New.
11337         (*sibcall_osf_1, *sibcall_value_osf_1): New.
11338
11339 2000-03-17  Mark Mitchell  <mark@codesourcery.com>
11340
11341         * objc/objc-act.c (encode_method_prototype): Pass types, not
11342         PARM_DECLs, to int_size_in_bytes.
11343
11344 Fri Mar 17 11:51:34 2000  Jim Wilson  <wilson@cygnus.com>
11345
11346         * config/ia64/ia64.md (mix4right_3op): Swap %1 and %2 in template.
11347
11348         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
11349         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyrights again.
11350
11351 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11352
11353         * Clean up usages of TREE_INT_CST_LOW.
11354         * c-parse.in (RESTORE_WARN_FLAGS): Use tree_low_cst.
11355         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
11356         Regenerated.
11357         * c-tree.h (min_precision): Move declaration to here.
11358         * c-typeck.c (build_binary_op): Use host_integerp and tree_low_cst.
11359         (build_unary_op, add_pending_init): Use bit_position.
11360         (pending_init_member, process_init_element): Likewise.
11361         (really_start_incremental_init, push_init_level, pop_init_level):
11362         Don't make copies of nodes or modify them in place, use consistent
11363         types when tracking positions, and use tree routines computations.
11364         (set_init_index, output_init_element): Likewise.
11365         (output_pending_init_elements, process_init_element): Likewise.
11366         * dbxout.c (dbxout_type_fields): Use bit_position, host_integerp,
11367         tree_low_cst and int_bit_position; also minor cleanup.
11368         (dbxout_type_method_1, dbxout_range_type, dbxout_type): Likewise.
11369         (print_cst_octal): Precision is unsigned.
11370         (dbxout_symbol): Ensure DECL_INITIAL is in-range and use tree_low_cst.
11371         * dwarf2out.c (ceiling): Input and output are unsigned HOST_WIDE_INT.
11372         (simple_type_align_in_bits): Result is unsigned int.
11373         Use tree_int_low_cst and host_integerp.
11374         (simple_type_size_in_bits): Result is unsigned HOST_WIDE_INT.
11375         (field_byte_offset): Result is HOST_WIDE_INT.
11376         Change types of internal variables so alignments are unsigned int,
11377         offsets are HOST_WIDE_INT and sizes are unsigned HOST_WIDE_INT.
11378         Use host_integerp, tree_low_cst, and int_bit_position.
11379         (add_bit_offset_attribute): Likewise.
11380         (add_data_member_location_attribute): Use tree_cst_low.
11381         (add_bound_info): Use host_integerp, integer_zerop, and integer_onep.
11382         (add_bit_size_attribute): Use tree_low_cst.
11383         (add_pure_or_virtual_attribute, gen_enumeration_type_die): Likewise.
11384         * dwarfout.c: Similar changes to dwarf2out.c.
11385         * expr.c (expand_expr, case ARRAY_REF): Remove redundant code.
11386         * genoutput.c (n_occurences): Return -1 for null string.
11387         (strip_whitespace): Accept null string and make into function.
11388         (scan_operands): Reflect above changes.
11389         * sdbout.c (plain_type_1): Use host_integerp and tree_low_cst.
11390         (sdbout_field_types, sdbout_one_type): Likewise; also use bit_position.
11391         * ssa.c (rename_registers): Add missing cast of arg to bzero.
11392         * tree.c (int_size_in_bytes): Check for too big to represent.
11393         (bit_position, int_bit_position, host_integerp, tree_low_cst): New fns.
11394         * tree.h (host_integerp, tree_low_cst, bit_position, int_bit_position):
11395         New declarations.
11396         (min_precision): Delete from here.
11397         * varasm.c (decode_addr_const): Use host_integerp, bit_position,
11398         and int_bit_position.
11399         * objc/objc-act.c (encode_method_prototype): Sizes are HOST_WIDE_INT.
11400         (encode_method_def): Likewise.
11401         (build_ivar_list_initializer): Use int_bit_position.
11402         (generate_shared_structures): Convert size.
11403         (encode_type, encode_complete_bitfield): Use integer_zerop.
11404         (encode_bitfield): Use tree_low_cst and int_bit_position.
11405
11406 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11407
11408         * config/c4x/c4x.h (CPP_SPEC): Fix typo.
11409
11410 2000-03-17  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11411
11412         * call.c (special_function_p): It is only malloc if it returns
11413         Pmode.
11414
11415 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11416
11417         * config/c4x/c4x.h (ASM_SPEC, CPP_SPEC, LINK_SPEC): Support C33.
11418         (C33_FLAG, TARGET_C3X): Add macros.
11419         (TARGET_SWITCHES): Add -m33 option.
11420         * config/c4x/c4x.c (c4x_override_options): Test for TARGET_C33.
11421
11422 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11423
11424         * config/c4x/c4x.h (PARALLEL_INSN_FLAG): Add.
11425         (PARALLEL_PACK_FLAG): Delete.
11426         (TARGET_SWITCHES): Update.
11427         (TARGET_PARALLEL): Use PARALLEL_INSN_FLAG.
11428
11429 Thu Mar 16 18:52:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11430
11431         * fold-const.c (fold): Fix a few cases when the returned result
11432         is not of the same type as the input.
11433
11434 2000-03-16  Nick Clifton  <nickc@cygnus.com>
11435
11436         * config/arm/arm.h (ASM_OUTPUT_MI_THUNK): Fix compile time
11437         warning.
11438
11439 2000-03-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11440
11441         * libgcc2.h: Move prototypes above macros with the same name.
11442         Wrap some function prototypes in the conditional which indicates
11443         whether they are supported, i.e. "BITS_PER_UNIT == 8".
11444
11445 2000-03-16  Richard Henderson  <rth@cygnus.com>
11446
11447         * calls.c: Revert last two changes.
11448
11449 2000-03-16  Bernd Schmidt  <bernds@cygnus.co.uk>
11450
11451         * fp-bit.c (_unpack_d): If NO_DENORMALS is defined, anything that
11452         has exponent 0 is a zero.
11453
11454         * simplify-rtx.c (hash_rtx, case MEM/REG): Take into account that
11455         HASH may already be nonzero.  Add code/mode into hash value
11456         immediately after repeat label.
11457         (cselib_lookup): Don't leave the hash table in an inconsistent
11458         state before a hash lookup operation.
11459
11460 Thu Mar 16 17:03:10 MET 2000  Jan Hubicka  <jh@suse.cz>
11461
11462         * i386.md (all HI and QI mode non-move patterns):  Conditionize
11463         by TARGET_[HQ]IMODE_MATH.
11464         * i386.h (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
11465         x86_promote_qi_regs): Declare.
11466         (TARGET_HIMODE_MATH, TARGET_QIMODE_MATH, TARGET_PROMOTE_HI_REGS,
11467         TARGET_PROMOTE_QI_REGS): New macros.
11468         (PROMOTE_MODE): New macro.
11469         * i386.c (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
11470         x86_promote_qi_regs): New global variables.
11471
11472 Thu Mar 16 16:50:44 MET 2000  Jan Hubicka  <jh@suse.cz>
11473
11474         * calls.c (emit_library_call_value_1): Break out from ...; handle
11475         VOIDmode function calls too.
11476         (emit_library_call_value): ... here.
11477         (emit_library_call): Implement by calling emit_library_call_value_1.
11478
11479 Thu Mar 16 16:01:30 MET 2000  Jan Hubicka  <jh@suse.cz>
11480
11481         * calls.c (expand_call): Do sanity checking on arg_space_so_far.
11482         Update arg_space_so_far on stack adjustments.
11483         (emit_library_call, emit_library_call_value): Likewise; take into
11484         account arg_space_so_far and pending_stack_adjust when calculcating
11485         the boundary.
11486
11487 Thu Mar 16 09:02:19 2000  Jason Eckhardt  <jle@cygnus.com>
11488
11489         * flow.c: Move all basic block reordering code into its own file.
11490         (create_basic_block): Externalize.
11491         * bb-reorder.c: New file. Copy all basic block reordering code from
11492         flow.c to this file.
11493         (reorder_basic_blocks): Fix fencepost error in for-loop.
11494         (reorder_basic_blocks): Remove braces from single statement for-loops.
11495         * basic-block.h: Add declaration for create_basic_block.
11496         * Makefile.in: Add rules for bb-reorder.o.
11497
11498 2000-03-16  Neil Booth  <NeilB@earthling.net>
11499
11500         * cppinit.c (handle_option):  Implement #unassert directive
11501         as -A- command line option.
11502         (print_help):  Update.
11503         * cpptexi.c:  Update.
11504
11505 Thu Mar 16 02:14:16 2000  Hans-Peter Nilsson  <hp@bitrange.com>
11506
11507         * md.texi (Standard Names): Document `jump'.
11508
11509 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
11510
11511         * calls.c (emit_call_1): Nothrow functions can still have nonlocal
11512         gotos.
11513
11514 2000-03-15  Geoff Keating  <geoffk@cygnus.com>
11515
11516         Merge changes from newppc-branch onto trunk.
11517
11518         2000-03-15  Geoff Keating  <geoffk@cygnus.com>
11519
11520         * rs6000.c (toc_hash_table): Update for new hash table functions.
11521         (toc_hash_function): Likewise.
11522         (toc_hash_eq): Likewise.
11523         (toc_hash_mark_entry): Likewise.
11524         (toc_hash_mark_table): Likewise.
11525         (output_toc): Likewise.
11526         (rs6000_add_gc_roots): Likewise.
11527
11528         2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
11529
11530         * t-aix43 (AR_FOR_TARGET): Deleted.  Moved `-X32_64'...
11531         (AR_FLAGS_FOR_TARGET): here.  New macro.
11532
11533         2000-03-05  Clinton Popetz  <cpopetz@cygnus.com>
11534
11535         * config/rs6000/rs6000.c (rs6000_fpmem_offset, rs6000_fpmem_size,
11536         fpmem_operand) Delete.
11537         (xer_operand) New.
11538         (rs6000_reg_names, alt_reg_names): Change fpmem to xer.
11539         (machine_function): Remove fpmem_size, fpmem_offset, save_toc_p.
11540         (rs6000_save_machine_status, rs6000_restore_machine_status,
11541         rs6000_init_expanders, rs6000_stack_info, debug_stack_info): Remove
11542         references to above variables.
11543         (gpc_reg_operand): Use XER_REGNO_P instead of FPMEM_REGNO_P.
11544         * config/rs6000/rs6000.h (REG_ALLOC_ORDER, REGISTER_NAMES,
11545         DEBUG_REGISTER_NAMES): Chagne fpmem to xer.
11546         (FPMEM_REGNO_P, FPMEM_REGNUM): Delete.
11547         (XER_REGNO_P, XER_REGNO): New.
11548         (rs6000_stack): Remove fpmem_p, fpmem_offset, fpmem_size.
11549         (PREDICATE_CODES): Change fpmem_operand to xer_operand.
11550         (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Change FPMEM_REGNO_P to
11551         XER_REGNO_P.
11552         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS,
11553         REG_CLASS_FROM_LETTER, CLASS_MAX_NREGS): Change FPMEM_REGS to XER_REGS,         and remove FLOAT_OR_FPMEM_REGS.
11554         (CLASS_CANNOT_CHANGE_SIZE): Change to FLOAT_REGS.
11555
11556         2000-02-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
11557
11558         * aix.h (FP_SAVE_INLINE, ASM_OUTPUT_INTERNAL_LABEL_PREFIX,
11559         TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP): Move here...
11560         * rs6000.h: from here.
11561
11562         * rs6000-protos.h (rs6000_select_section): Provide prototype.
11563         (rs6000_select_rtx_section): Likewise.
11564         (rs6000_encode_section_info): Likewise.
11565         (sdata_section): Likewise.
11566         (sdata2_section): Likewise.
11567         (sbss_section): Likewise.
11568         * sysv4.h (rs6000_select_section): Delete prototype.
11569         (rs6000_select_rtx_section): Likewise.
11570         (rs6000_encode_section_info): Likewise.
11571         (sdata_section): Likewise.
11572         (sdata2_section): Likewise.
11573         (sbss_section): Likewise.
11574         (REG_SAVE_AREA): Delete definition duplicated in rs6000.h.
11575
11576         * sysv4.h: Delete various unnecessary #undef's and put a comment
11577         on the remaining ones.
11578         Change various comments according to coding standard.
11579
11580         2000-02-29  Clinton Popetz  <cpopetz@cygnus.com>
11581
11582         * config/rs6000/rs6000.h (MQ_REGNO, CR0_REGNO, CR1_REGNO, CR2_REGNO,
11583         CR3_REGNO, CR4_REGNO, MAX_CR_REGNO): Define.
11584         (CR0_REGNO_P) Remove.
11585         * config/rs6000/rs6000.c (gpc_reg_operand, and64_operand, and_operand,
11586         setup_incoming_varargs, mtcrf_operation, print_operand,
11587         rs6000_stack_info, rs6000_emit_prologue, rs6000_emit_epilogue):
11588         Use the above macros.
11589
11590         2000-02-24  Clinton Popetz  <cpopetz@cygnus.com>
11591
11592         * config/rs6000/rs6000.md: Added a new alternative for each
11593         pattern that had a 'x' alternative but no 'y' alternative.
11594         Added a new split for each of the above patterns.
11595
11596         2000-02-18  Geoff Keating  <geoffk@cygnus.com>
11597
11598         * aix41.h (ASM_CPU_SPEC): Delete.
11599         (CPP_CPU_SPEC): Delete.
11600
11601         * aix.h (RS6000_OUTPUT_BASENAME): Define.
11602         (ASM_OUTPUT_LABEL): Define.
11603         (ASM_GLOBALIZE_LABEL): Define.
11604         (STRIP_NAME_ENCODING): Define.
11605         * rs6000.h (RS6000_OUTPUT_BASENAME): Don't define.
11606         (STRIP_NAME_ENCODING): Don't define.
11607         (ASM_OUTPUT_LABEL): Don't define.
11608         (ASM_GLOBALIZE_LABEL): Don't define.
11609         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use assemble_name to output
11610         names, and ASM_OUTPUT_LABEL to output labels, rather than
11611         asm_fprintf.
11612         (ASM_OUTPUT_LABEL): Define.
11613         (ASM_OUTPUT_INT): Use assemble_name.
11614         (ASM_OUTPUT_DWARF_ADDR): Use assemble_name.
11615         (STRIP_NAME_ENCODING): Don't undefine first.
11616         (RS6000_OUTPUT_BASENAME): Make equivalent to assemble_name for
11617         ELF.
11618         (ASM_OUTPUT_LABELREF): Don't prepend underscores to labels
11619         specified with 'asm' even with -fleading-underscore.
11620         * rs6000.c (print_operand): Use assemble_name when !TARGET_AIX.
11621         (output_epilog): Likewise.
11622         (output_toc): Likewise.
11623         * tramp.asm: Handle -fleading-underscore correctly.
11624
11625         * rs6000.md (builtin_setjmp_receiver): Also run for -fPIC and
11626         -mminimal-toc.
11627         (nonlocal_goto_receiver): Delete.
11628         * rs6000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Delete.
11629
11630         * rs6000.h (ASM_OUTPUT_DEF): Don't define.
11631         (SET_ASM_OP): Define.
11632         * sysv4.h (ASM_OUTPUT_DEF): Don't undefine.
11633
11634         * rs6000.h (ASM_OUTPUT_ADDR_VEC_ELT): Don't define.
11635         (ASM_LONG): Define.
11636
11637         * rs6000.c (rs6000_dll_import_ref): Delete, not used.
11638         * rs6000-protos.h (rs6000_dll_import_ref): Delete.
11639
11640         * rs6000.h: Add 'u' to more constants.
11641
11642         2000-02-18  David Edelsohn  <edelsohn@gnu.org>
11643
11644         * rs6000.md (mfcr+shift): Delete PowerPC64 version.
11645
11646         2000-02-15  David Edelsohn  <edelsohn@gnu.org>
11647
11648         * rs6000.c (reg_or_u_cint_operand): New function.
11649         (logical_operand): Handle 64-bit hosts.
11650         (logical_u_operand): New function.
11651         (non_logical_cint_operand): Handle 64-bit hosts.
11652         (non_logical_u_cint_operand): New function.
11653         * rs6000.h (DATA_SECTION_ASM_OP): Add tab.
11654         (PREDICATE_CODES): Define new functions.
11655         * rs6000-protos.h: Declare new functions.
11656         * rs6000.md (iordi3, xordi3): Constant int must be unsigned 32-bits.
11657         (movdi_64): Bracket code intended for 64-bit hosts.  Create
11658         CONST_DOUBLE for 32-bit values.
11659         (scc insns): Generate DImode compares.
11660         (mfcr insns): Create DImode versions.
11661         (sge matchers): New patterns.
11662
11663         2000-02-15  Gabriel Paubert  <paubert@iram.es>
11664
11665         * rs6000.md: Correct instructions length attributes and
11666         constraints on unsigned compare instructions.
11667         (*ne0): Disable for PowerPC64.
11668
11669         2000-02-11  Geoff Keating  <geoffk@cygnus.com>
11670
11671         * rs6000.c (output_function_profiler): Use .long for a 32-bit
11672         quantity, fix profile1.C test failure under -fPIC.
11673
11674         * rs6000.c: Add 'u' to many constants to suppress warnings.
11675         (constant_pool_expr_1): Make static.
11676         (rs6000_emit_eh_toc_restore): Remove unused 'r2'.
11677         * rs6000.h: Add 'u' to many constants to suppress warnings.
11678
11679         * rs6000.c (rs6000_emit_load_toc_table): Use LCTOC..1 under AIX
11680         for the start of the TOC, instead of LCTOC..0.
11681         * aix.h (toc_section): Use LCTOC..1 under AIX for the start
11682         of the TOC.
11683         * rs6000.md (load_toc_aix_si): Use LCTOC..1.
11684         (load_toc_aix_di): Use LCTOC..1.
11685
11686         * rs6000.h (LEGITIMIZE_ADDRESS): Turn into a function.
11687         * rs6000.c (rs6000_legitimize_address): New function from
11688         LEGITIMIZE_ADDRESS.  Only use create_TOC_reference on
11689         symbols in the constant pool that really are TOC references.
11690         (print_operand_address): For ELF, write TOC offsets under
11691         -fPIC as subtractions in the insn.
11692         (output_toc): For ELF, define symbols in TOC as normal labels,
11693         to match RTL.
11694         (create_TOC_reference): Use gen_rtx_PLUS rather than gen_rtx.
11695         * rs6000-protos.h (rs6000_legitimize_address): Prototype.
11696         (create_TOC_reference): Prototype only when RTX_CODE is defined.
11697         * rs6000.md (movsi): Only use create_TOC_reference on
11698         symbols in the constant pool that really are TOC references.
11699
11700         * rs6000.h (MACHINE_DEPENDENT_REORG): Don't define.
11701         * rs6000.c (rs6000_reorg): Delete.
11702         * rs6000-protos.h (rs6000_reorg): Delete.
11703
11704         2000-02-09  Geoff Keating  <geoffk@cygnus.com>
11705
11706         * rs6000.h (INCOMING_RETURN_ADDR_RTX): New macro.
11707
11708         * aix.h (SETUP_FRAME_ADDRESSES): Define.
11709         * rs6000.c [TARGET_AIX] (insn_after_throw): New static variable.
11710         [TARGET_AIX] (rs6000_aix_emit_builtin_unwind_init): New function.
11711         [TARGET_AIX] (rs6000_emit_eh_toc_restore): New function.
11712         * rs6000-protos.h: Prototype rs6000_emit_eh_toc_restore,
11713         rs6000_aix_emit_builtin_unwind_init.
11714         * rs6000.md (eh_epilogue) [TARGET_AIX]: Call
11715         rs6000_emit_eh_toc_restore on AIX.
11716         (return_eh_si): Use r2.
11717         (return_eh_di): Use r2.
11718
11719         * aix43.h: Turn on HAS_INIT_SECTION and LD_INIT_SWITCH,
11720         since we're breaking binary compatibility anyway.
11721
11722         2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
11723
11724         * config/rs6000/rs6000-protos.h: (get_TOC_alias_set, uses_TOC,
11725         constant_pool_expr_p): Declare them.
11726         (constant_pool_expr_p): Declare it.
11727         * config/rs6000/rs6000.c (toc_label_name): Define.
11728         (rs6000_override_options): Set toc_label_name.
11729         (input_operand): Allow any TOC_RELATIVE_EXPR_P.
11730         (get_TOC_alias_set, constant_pool_expr_p, constant_pool_expr_1,
11731         uses_TOC): New functions.
11732         (print_operand): Delete old '*' case.
11733         (print_operand_address): Use LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
11734         and strip off rtl for TOC before calling output_addr_const.
11735         (rs6000_emit_load_toc_table): Use toc_label_name.
11736         * config/rs6000/rs6000.h (TARGET_SWITCHES): Make msched-prolog
11737         the default.
11738         (LEGITIMATE_CONSTANT_POOL_BASE_P): Delete.
11739         (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): New macros.
11740         (LEGITIMATE_CONSTANT_POOL_ADDRESS_P): Use CONSTANT_POOL_EXPR_P.
11741         (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Turn symbol_refs
11742         into explicit TOC_REGISTER offsets.
11743         (TOC_REGISTER): New macro.
11744         * config/rs6000/rs6000.md (movsi, movdi): Emit rtl under
11745         TARGET_TOC to reference TOC_REGISTER.
11746         (load_toc_v4_PIC_1b): Add 4 to offset for toc reload.
11747         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Call
11748         uses_TOC before emitting label references.
11749
11750         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
11751
11752         * rs6000.md (stack_tie): Fix warning.
11753
11754         * eabi-ctors.c: Use 'asm' names for the start/end variables,
11755         to handle -fleading-underscore.
11756         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use asm_fprintf and %U.
11757         (USER_LABEL_PREFIX): New macro.
11758         (ASM_OUTPUT_INTERNAL_LABEL_PREFIX): Use asm_fprintf and %L.
11759         (ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.
11760         * t-ppccomm (MULTILIB_MATCHES_SYSV): Note that call-sysv and
11761         call-linux can use the same multilibs.
11762         * t-ppcgas (MULTILIB_OPTIONS): Don't need to have separate call-sysv
11763         and call-linux multilibs.  Do multilib with -fleading-underscore.
11764         (MULTILIB_DIRNAMES): Follow MULTILIB_OPTIONS change.
11765         (MULTILIB_EXCEPTIONS): Remove call-linux exceptions.  Add restrictions
11766         to call-aix.
11767
11768         * sysv4.h (CPP_SYSV_SPEC): Define _SOFT_FLOAT for all those CPUs that
11769         have MASK_SOFT_FLOAT set.
11770         (CPP_FLOAT_DEFAULT_SPEC): New macro.
11771         (SUBTARGET_EXTRA_SPECS): Set `cpp_float_default' to the value of
11772         CPP_FLOAT_DEFAULT_SPEC.
11773
11774         * rs6000.c (ccr_bit): Add some consistency checks and a variable 'reg'.
11775         * rs6000.md: Whitespace change.
11776         * sysv4.h (LINK_TARGET_SPEC): Whitespace change.
11777         * sysv4le.h (LINK_TARGET_SPEC): Whitespace change.
11778
11779         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
11780
11781         * rs6000.md (eh_epilogue): New expander.
11782         (eh_reg_restore): New expand/split/insn combination.
11783         (return_eh_si): New insn.
11784         (return_eh_di): New insn.
11785
11786         * eabi-ci.asm: Put a label at the start of the .eh_frame section.
11787         * eabi-cn.asm: Put a zero at the end of the .eh_frame section.
11788         * eabi-ctors.c (__do_global_ctors): Register this object's
11789         frame.  Clean up.  Call atexit() after the constructors.
11790         (__do_global_dtors): Deregister this object's frame.  Clean up.
11791         Allow for recursive calls to exit().
11792         * rs6000.c (fixuplabelno): New variable.
11793         * sysv4.h (ASM_OUTPUT_INT): Don't do .fixup if not
11794         TARGET_RELOCATABLE, it slows down exec() under linux.
11795         (ASM_OUTPUT_DWARF_ADDR): Do .fixup if TARGET_RELOCATABLE.
11796
11797         * aix.h (ASM_OUTPUT_DWARF_ADDR_VAR): New macro.
11798         (ASM_OUTPUT_DWARF_DELTA_VAR): New macro.
11799         (ASM_OUTPUT_DWARF_DELTA2): New macro.
11800         (ASM_OUTPUT_DWARF_DELTA4): New macro.
11801         (ASM_OUTPUT_DWARF_ADDR_DELTA): New macro.
11802         (ASM_OUTPUT_DWARF_ADDR): New macro.
11803         (ASM_OUTPUT_DWARF_DATA4): New macro.
11804         (ASM_OUTPUT_DWARF_DATA2): New macro.
11805         (ASM_OUTPUT_DWARF_OFFSET4): New macro.
11806         (ASM_OUTPUT_DWARF_OFFSET): New macro.
11807         (UNALIGNED_INT_ASM_OP): New macro, fake definition.
11808
11809         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
11810
11811         * rs6000.c (rs6000_sr_alias_set): New variable.
11812         (rs6000_override_options): Initialise rs6000_sr_alias_set.
11813         (rs6000_emit_stack_tie): New function.
11814         (rs6000_emit_allocate_stack): Specify RTX_FRAME_RELATED_P
11815         in a way that dwarf2out can understand.
11816         (rs6000_frame_related): New function.
11817         (rs6000_emit_prologue): Use rs6000_sr_alias_set.  Specify
11818         RTX_FRAME_RELATED_P in a way that dwarf2out can understand.
11819         Use rs6000_emit_stack_tie when needed.
11820         (rs6000_emit_epilogue): Use rs6000_sr_alias_set.  Don't set
11821         RTX_FRAME_RELATED_P.  Use rs6000_emit_stack_tie when needed.
11822         * rs6000.md (stack_tie): New insn.
11823         (return_internal_si): Allow return value to be in the count
11824         register.
11825         (return_internal_di): Likewise.
11826
11827         * rs6000.c (output_mi_thunk): Remove unused variable `sp'.
11828
11829         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
11830
11831         * sysv4.h (LOCAL_LABEL_PREFIX): Define, for the use of dbxelf.h.
11832
11833         2000-01-31  Geoff Keating  <geoffk@cygnus.com>
11834
11835         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): New macro.
11836
11837         * rs6000.md (stmw): Use the right POWER opcode.
11838         (lmw): Likewise.
11839
11840         2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11841
11842         * rs6000-protos.h: New file.
11843
11844         * rs6000.c: Include tm_p.h.  Fix compile time warnings.
11845
11846         * rs6000.h: Move prototypes to rs6000-protos.h.  Fix compile time
11847         warnings.
11848
11849         * sysv4.h: Likewise.
11850
11851         2000-01-28  Geoff Keating  <geoffk@cygnus.com>
11852
11853         * ../../configure.in: Delete powerpcle-*-winnt*
11854         and powerpcle-*-pe|powerpcle-*-cygwin*.
11855         * ../../configure: Regenerated.
11856         * cygwin.h: Delete.
11857         * rs6000.h (OBJECT_WINDOWS_NT): Delete.
11858         (TARGET_WINDOWS_NT): Delete.
11859         (ABI_NT): Delete.
11860         (CALL_NT_DLLIMPORT): Delete.
11861         Delete NT-specific code.
11862         * rs6000.md, rs6000.c, sysv4.h: Delete NT-specific code.
11863         * win-nt.h: Delete.
11864         * t-winnt: Delete.
11865         * nt-ci.asm: Delete.
11866         * nt-cn.asm: Delete.
11867         * ntstack.asm: Delete.
11868
11869         2000-01-27  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
11870
11871         * rs6000.h (SELECT_RTX_SECTION): Move to aix.h.
11872         (ASM_FILE_START): Likewise.
11873         (ASM_DECLARE_FUNCTION_NAME): Likewise.
11874         (ASM_OUTPUT_LABELREF): Likewise.
11875         (ASM_OUTPUT_SKIP): Likewise.
11876         (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
11877         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
11878         (ASM_OUTPUT_CASE_LABEL): Likewise.
11879         (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
11880         (ASM_OUTPUT_ASCII): Likewise.
11881
11882         2000-01-27  Clinton Popetz  <cpopetz@cygnus.com>
11883
11884         * rs6000.c (rs6000_emit_load_toc_table): Use "LCG" and
11885         reload_toc_labelno for non-prologue TOC reloads.  Also, don't
11886         increment rs6000_pic_labelno here.
11887         (rs6000_emit_prologue): Pass TRUE to rs6000_emit_load_toc_table,
11888         and increment rs6000_pic_labelno here.
11889
11890         2000-01-24  Geoffrey Keating  <geoffk@cygnus.com>
11891
11892         * rs6000.md (fctiwz): Use (set (reg) (unspec:DI [(fix:SI ...)]))
11893         rather than (set (subreg:SI (reg)) (fix:SI ...)) so that register
11894         allocation knows (reg) is dead before the insn.
11895
11896         2000-01-21  Geoff Keating  <geoffk@cygnus.com>
11897
11898         * rs6000.md (movsi_to_cr): Correct typo in output template.
11899
11900         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
11901
11902         * rs6000.c (rs6000_pic_labelno): Always define.
11903         (rs6000_pic_func_labelno): Delete.
11904         (lmw_operation): Check for a zero base register,
11905         which doesn't mean what we want.
11906         (stmw_operation): New function.
11907         (print_operand): Define new 'l' modifier.
11908         (rs6000_stack_info): We must save all 64 bits of the registers
11909         if TARGET_POWERPC64.
11910         (rs6000_output_load_toc_table): Delete.
11911         (rs6000_emit_load_toc_table): New function.
11912         (rs6000_allocate_stack_space): Delete.
11913         (rs6000_emit_allocate_stack): New function.
11914         (rs6000_emit_prologue): New function.
11915         (output_prolog): Use rs6000_emit_prologue.
11916         (rs6000_emit_epilogue): Change a few variable names to be
11917         more accurate.  Restore all 64 bits of the registers if
11918         TARGET_POWERPC64.  Only restore the FP registers which were used
11919         if they are being saved/restored one-at-a-time.
11920         (output_mi_thunk): Delete inefficient code generation.
11921         (output_function_profiler): Don't use rs6000_output_load_toc_table.
11922         * rs6000.h: Declare rs6000_emit_load_toc_table,
11923         rs6000_allocate_stack_space, stmw_operation.  Don't declare
11924         rs6000_output_load_toc_table.
11925         * rs6000.md (elf_high): Allow register 0, but discourage it
11926         heavily.
11927         (elf_low): Support loading into register 0.
11928         (load_toc_aix_si): New pattern.
11929         (load_toc_aix_di): New pattern.
11930         (load_toc_v4_pic_si): New pattern.
11931         (load_toc_v4_pic_di): New pattern.
11932         (load_toc_v4_PIC_1): New pattern.
11933         (load_toc_v4_PIC_1b): New pattern.
11934         (load_toc_v4_PIC_2): New pattern.
11935         (builtin_setjmp_receiver): Use rs6000_emit_load_toc_table.
11936         (nonlocal_goto_receiver): Use rs6000_emit_load_toc_table.
11937         (prologue): New expander.
11938         (movesi_from_cr): New pattern.
11939         (stmw): New pattern.
11940         (save_fpregs_si): New pattern.
11941         (save_fpregs_di): New pattern.
11942
11943         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11944
11945         * rs6000.md (movsi): Don't use force_reg when no_new_pseudos.
11946         (movdi): Likewise.
11947         (movhi): Likewise.
11948         (movqi): Likewise.
11949
11950         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11951
11952         * rs6000.md (movsi_got): 'unspec 8' returns a SImode result,
11953         at present.
11954         (movsi_got_internal): Likewise.
11955         (movsi_got_internal+1): Likewise.
11956         (set_sp): 'unspec 7' does a SImode clobber.
11957
11958         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11959
11960         * rs6000.md (floatsidf2): Don't use the fpmem "register", just
11961         allocate a stack temporary.
11962         (floatsidf2_internal): Likewise.
11963         (floatsidf2_internal+1): Likewise.  Don't do bizzare hacks
11964         with unspec.
11965         (floatunssidf2): Don't use the fpmem "register", just
11966         allocate a stack temporary.
11967         (floatunssidf2_internal): Likewise.
11968         (floatunssidf2_internal+1): Likewise.  Don't do bizzare hacks
11969         with unspec.
11970         (floatsidf2_loadaddr): Delete.
11971         (floatsidf2_store1): Delete.
11972         (floatsidf2_store2): Delete.
11973         (floatsidf2_load): Delete.
11974         (fix_truncdfsi2): Don't use the fpmem "register", just
11975         allocate a stack temporary.
11976         (fix_truncdfsi2_internal_si): Delete.
11977         (fix_truncdfsi2_internal_di): Delete.
11978         (fix_truncdfsi2_internal): New insn.
11979         (fix_truncdfsi2_internal+1): Don't use the fpmem "register".
11980         (fix_truncdfsi2_store): Delete.
11981         (fix_truncdfsi2_load): Delete.
11982         (fctiwz): Produce gen_fctiwz.
11983
11984         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
11985
11986         * eabi.h (INVOKE__main): Define.
11987         * rs6000.c (rs6000_stack_info): Don't handle call to NAME__MAIN
11988         specially.
11989         (rs6000_emit_prologue): Likewise.
11990         * rs6000.h (struct rs6000_stack): Don't keep track of whether
11991         this is the main program.
11992
11993         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11994
11995         * rs6000.c (rs6000_va_arg): Delete some unused variables.
11996
11997         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
11998
11999         * rs6000.c (rs6000_va_arg): On AIX, padding for small arguments
12000         goes after the argument.
12001
12002         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
12003
12004         * rs6000.md: Document 'unspec' values used.
12005         (epilogue): New expander.
12006         (movesi_to_cr_one): New expander.
12007         (movesi_to_cr and following): New pattern.
12008         (lmw): New pattern.
12009         (return_internal_si): New pattern.
12010         (return_internal_di): New pattern.
12011         (return_and_restore_fpregs_si): New pattern.
12012         (return_and_restore_fpregs_di): New pattern.
12013         * rs6000.h: Declare new functions.
12014         * rs6000.c (rs6000_stack_info): Use current_function_is_leaf
12015         rather than rs6000_calls_p.
12016         (rs6000_makes_calls): Delete.
12017         (lmw_operation): New function.
12018         (mtcrf_operation): New function.
12019         (rs6000_emit_epilogue): New function.
12020         (output_epilog): Call rs6000_emit_epilogue and final if
12021         !TARGET_SCHED_PROLOG, instead of writing text unconditionally.
12022
12023         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
12024
12025         * aix43.h (SUBSUBTARGET_SWITCHES): Document switches.
12026         * aix41.h (SUBSUBTARGET_SWITCHES): Document switches.
12027         * aix.h (SUBTARGET_SWITCHES): Document switches.
12028         * rs6000.h: (TARGET_SWITCHES): Don't print options twice.  Make
12029         sched-prolog and sched-epilog the same.  Document all the
12030         switches.
12031         (TARGET_OPTIONS): No longer allow -mdebug-.
12032
12033         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
12034
12035         * rs6000.h (ASM_FILE_END): Move to aix.h.
12036         (EXTRA_SECTIONS): Move to aix.h.
12037         (READONLY_DATA_SECTION): Move to aix.h.
12038         (EXTRA_SECTION_FUNCTIONS): Move to aix.h.
12039         (SELECT_SECTION): Move to aix.h.
12040         (JUMP_TABLES_IN_TEXT_SECTION): Move to aix.h.
12041         (INT_REGNO_P): Use symbolic name for ARG_POINTER_REGNUM.
12042         (LINK_REGISTER_REGNUM): New definition.
12043         (RETURN_ADDR_RTX): Use symbolic name for LINK_REGISTER_REGNUM.
12044         (SLOW_UNALIGNED_ACCESS): Define in a way suitable for both
12045         AIX and SVR4.
12046         * sysv4.h: Delete the code between the inclusion of rs6000.h
12047         and svr4.h.
12048         (DWARF_DEBUGGING_INFO): Don't define, it's defined in elfos.h.
12049         (FP_ARG_MAX_REG): Move generic definition to rs6000.h.
12050         (RS6000_REG_SAVE): Move generic definition to rs6000.h.
12051         (RS6000_SAVE_AREA): Move generic definition to rs6000.h.
12052         * rs6000.md (floatsidf2_loadaddr): The first arg here is Pmode.
12053         (fix_truncdfsi2_internal): Rename to fix_truncdfsi2_internal_si.
12054         (fix_truncdfsi2_internal_di): New pattern.
12055         (fix_truncdfsi2_store): The second arg here is Pmode too.
12056         (fix_truncdfsi2_load): The second arg here is Pmode too.
12057         (tablejumpdi): Now that switch tables hold only SImode values,
12058         gcc needs to know how to add them to the pc which is DImode.
12059         * rs6000.c (rs6000_stack_info): Use symbolic name for
12060         LINK_REGISTER_REGNUM.
12061         (output_mi_thunk) [!TARGET_ELF]: Don't define sp, it's not used.
12062         (output_toc): Delete unused variables s1 and s2.
12063         (output_ascii): Use fputs not fprintf on a variable string.
12064
12065         2000-01-07  David Edelsohn  <edelsohn@gnu.org>
12066
12067         * rs6000.c (processor_target_table): Add power3 as alias for 630.
12068         * aix43.h: Revert Aug 2 change.
12069         (HAS_INIT_SECTION): Define, not visible yet.
12070         (LD_INIT_SWITCH): Define, not visible yet.
12071         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
12072
12073         2000-01-04  Joel Sherrill (joel@OARcorp.com>
12074
12075         * config/rs6000/rtems.h: Include config/rtems.h.
12076
12077         2000-01-04  David Edelsohn  <edelsohn@gnu.org>
12078
12079         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
12080         (SLOW_UNALIGNED_ACCESS): Define.
12081         (CASE_VECTOR_MODE): Always use 32-bit offsets.
12082         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
12083         (EXTRA_SECTOIN_FUNCTIONS): Indent .csect pseudo-op.
12084         (toc_section): Likewise and .toc pseudo-op.
12085         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
12086         64-bit mode.
12087         (TEXT_SECTION_ASM_OP): Likewise.
12088         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
12089         32-bit offsets.
12090
12091         1999-12-17  Jakub Jelinek  <jakub@redhat.com>
12092
12093         * config/rs6000/rs6000.h (TARGET_POWERPC64): Make sure
12094         UNITS_PER_WORD and BITS_PER_WORD are compile time constants when
12095         compiling libgcc2.
12096
12097         2000-01-06  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
12098
12099         * rs6000.h: Move more stuff from here...
12100         * aix.h: to here.
12101         * sysv4.h: Cleanup accordingly.
12102         * netware.h: Likewise
12103
12104         2000-01-05  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
12105
12106         * rs6000.h: Continue cleanup.
12107         * aix.h: Likewise.
12108         * lynx.h: Likewise.
12109         * netware.h: Likewise.
12110         * sol2.h: Likewise.
12111         * sysv4.h: Likewise.
12112         * win-nt.h: Likewise.
12113
12114         * rs6000.h (TARGET_SWITCHES): Add descriptions.
12115         (TARGET_OPTIONS): Likewise.
12116
12117         * sysv4.h (SUBTARGET_SWITCHES): Add descriptions.
12118         (SUBTARGET_OPTIONS): Likewise.
12119
12120         * rs6000.md: Fix compile time warnings.
12121
12122         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12123
12124         vxworks patches from the Cygnus tree originally by
12125         Michael Meissner <meissner@cygnus.com> and Vladimir Makarov
12126         <vmakarov@cygnus.com>.
12127         * sysv4.h (SUBTARGET_SWITCHES): Add vxworks.
12128         (ENDFILE_SPEC): Likewise.
12129         (LIB_VXWORKS_SPEC): New macro.
12130         (STARTFILE_VXWORKS_SPEC): New macro.
12131         (ENDFILE_VXWORKS_SPEC): New macro.
12132         (LINK_START_VXWORKS_SPEC): New macro.
12133         (LINK_OS_VXWORKS_SPEC): New macro.
12134         (CPP_OS_VXWORKS_SPEC): New macro.
12135         (SUBTARGET_EXTRA_SPECS): Add all the vxworks specs.
12136         * vxppc.h: Rewrite to use proper configuration method.
12137         * vxppcle.h: New file.
12138         * ../../configure.in: Add powerpcle-wrs-vxworks*.
12139         * ../../configure: Rebuilt.
12140
12141         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12142
12143         Lots of changes to rs6000.h, sysv4.h, aix.h,
12144         aix31.h, aix3newas.h, aix41.h, aix43.h, beos.h,
12145         with the aim that rs6000.h is the first header
12146         included and the others override it.
12147         * aix.h: New file.
12148
12149         * x-aix41-gld: Remove.
12150         * x-aix43: Remove.
12151         * x-aix41: Remove target-specific switches, and don't specify
12152         -Wl,-bbigtoc as we don't need it any more.
12153         * ../../configure.in: Use x-aix41 for ppc AIX 4.1 and above.
12154         Use t-aix43 for AIX 4.3 and above.
12155         * ../../configure: Regenerated.
12156
12157         * rs6000.h (TARGET_SWITCHES): Add some initial prolog-scheduling
12158         options, that don't do anything yet.
12159         (MASK_SCHED_PROLOG): New macro.
12160         (MASK_SCHED_EPILOG): New macro.
12161         (TARGET_SCHED_PROLOG): New macro.
12162         (TARGET_SCHED_EPILOG): New macro.
12163
12164         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
12165
12166         * rs6000.c: Correct comment, the `minimal' TOCs are actually
12167         one per translation unit, not one per function.
12168         (output_toc): Also do duplicate constant elimination
12169         for per-translation-unit TOCs.
12170
12171         * rs6000.md (nonlocal_goto_receiver): Put it back as before.  Add
12172         a comment explaining _exactly_ when this pattern gets used.
12173         (builtin_setjmp_receiver): New pattern for better clarity.
12174         (init_v4_pic): Move it into a section dealing with TOC registers.
12175
12176         1999-12-30  Geoff Keating  <geoffk@cygnus.com>
12177
12178         * rs6000.c (toc_hash_table): New variable.
12179         (rs6000_hash_constant): New function.
12180         (toc_hash_function): New function.
12181         (toc_hash_eq): New function.
12182         (toc_hash_mark_entry): New function.
12183         (toc_hash_mark_table): New function.
12184         (output_toc): Don't output duplicate TOC entries in
12185         a single file.
12186         (rs6000_add_gc_roots): Add the hash table as a GC root.
12187         * t-aix43: Move AR_FOR_TARGET and CLIB here from x-aix43,
12188         where they clearly shouldn't be.  This may need to be fixed
12189         later when there is a GNU ar for AIX.
12190         * x-aix43: Don't define CLIB or AR_FOR_TARGET.
12191         Don't define BOOT_LDFLAGS as it is now not necessary.
12192
12193         1999-12-29  Geoff Keating  <geoffk@cygnus.com>
12194
12195         * rs6000.c (rs6000_build_va_list): Use 'char *' rather than 'void *'
12196         for va_list on AIX.  Use unsigned_char_type_node rather than
12197         constructing our own version on svr4.
12198
12199         1999-12-17  Geoff Keating  <geoffk@cygnus.com>
12200
12201         * tramp.asm (__trampoline_size): Delete CYGNUS LOCAL comment,
12202         since patently it's not.
12203
12204         1999-12-08  Geoff Keating  <geoffk@cygnus.com>
12205
12206         * config/rs6000/rs6000.md (nonlocal_goto_receiver): Turn into
12207         define_expand/define_insn pair, and handle restore of the
12208         SVR4 -fpic register.
12209
12210 Wed Mar 15 15:43:38 2000  Jeffrey A Law  (law@cygnus.com)
12211
12212         * acconfig.h (HAVE_GAS_WEAK): New define.
12213         * configure.in (assembler weak support): Check for .weak support.
12214         * config.in, configure: Rebuilt.
12215         * pa/som.h (MAKE_DECL_ONE_ONLY, ASM_WEAKEN_LABEL): Only define if
12216         HAVE_GAS_WEAK is defined.
12217
12218 2000-03-15  Nick Clifton  <nickc@cygnus.com>
12219
12220         * config/arm/arm.c (arm_output_epilogue): Do not pass %c to
12221         asm_fprintf().
12222
12223 2000-03-15  Zack Weinberg  <zack@wolery.cumb.org>
12224
12225         * cppfiles.c (open_include_file): New function.
12226         (find_include_file, cpp_read_file): Use it.
12227
12228 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
12229
12230         * cpphash.c (dump_hash_helper): Take the slot, not the element.
12231
12232 Wed Mar 15 14:28:54 2000  Jason Eckhardt  <jle@cygnus.com>
12233
12234         * flow.c (verify_flow_info): Check for unconditional return.
12235
12236 Wed Mar 15 11:34:27 2000  Jim Wilson  <wilson@cygnus.com>
12237
12238         * config/ia64/ia64.md (restore_stack_nonlocal): New.
12239         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Delete padding nop.
12240         (__ia64_restore_stack_nonlocal): New.
12241         * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __restore_stack_nonlocal.
12242
12243 2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
12244
12245         * cpphash.c (collect_formal_parameters): Do not complain about
12246         parameter names that just start with `__VA_ARGS__'.
12247
12248 Wed Mar 15 13:26:58 MET 2000  Jan Hubicka  <jh@suse.cz>
12249
12250         * i386.md (movhi_1): Promote movw imm, reg to movl imm, reg and
12251         movw reg, reg to movzwl reg, reg on PARTIAL_REGISTER_STALL machines.
12252         * i386.c (pentiumpro_cost): Set mul cost to 4.
12253         (x86_use_movx): Set for PPro.
12254
12255 Wed Mar 15 13:07:05 MET 2000  Jan Hubicka  <jh@suse.cz>
12256
12257         * i386.md (ix86_compute_frame_size): stack_alignment_needed is
12258         STACK_BOUNDARY for empty frames now.
12259
12260 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
12261
12262         * stor-layout.c (layout_union): Remove.
12263         (layout_union_field): New function, split out from layout_union.
12264         (finish_union_layout): Likewise.
12265         (layout_field): Handle unions by calling layout_union_field.
12266         (finish_record_layout): Handle unions.
12267         (layout_type): Combine RECORD_TYPE, UNION_TYPE, and
12268         QUAL_UNION_TYPE handling.
12269
12270 Wed Feb 23 13:00:06 CET 2000  Jan Hubicka  <jh@suse.cz>
12271
12272         * flow.c (fixup_reorder_chain): Avoid double labels in the basic block;
12273         end of basic block is jump_insn, not barrier; use create_basic_block
12274         instead of creating basic block by hand.
12275
12276 2000-03-14  Jason Eckhardt  <jle@cygnus.com>
12277
12278         * flow.c (reorder_basic_blocks): Account for barriers when writing
12279         over NEXT_INSN (last_bb->end).
12280         (verify_flow_info): Add check for missing barriers.
12281
12282 2000-03-14  Greg McGary  <gkm@gnu.org>
12283
12284         * c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
12285         * c-lex.c (init_lex): Handle RID_BOUNDED & RID_UNBOUNDED.
12286         * c-parse.gperf (__bounded, __bounded__, __ptrbase, __ptrbase__,
12287         __ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
12288         __unbounded, __unbounded__): New keywords.
12289         * c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.
12290         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
12291         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
12292
12293 2000-03-14  Bernd Schmidt  <bernds@cygnus.co.uk>
12294
12295         * cselib.h: New file.
12296         * alias.c: Include "cselib.h".
12297         (fixed_scalar_and_varying_struct_p): Accept the addresses of the
12298         MEMs as two new arguments.
12299         (get_addr): New static function.
12300         (find_base_term): Handle VALUEs.
12301         (memrefs_conflict_p): Likewise.
12302         (true_dependence): Call get_addr on the addresses.
12303         Call fixed_scalar_and_varying_struct_p with addresses that have been
12304         passed through get_addr and canon_rtx.
12305         (write_dependence_p): Move DIFFERENT_ALIAS_SETS_P test for consistency
12306         with true_dependence.
12307         Call get_addr on the addresses; don't call canon_rtx on the MEMs.
12308         * loop.c: Include "cselib.h".
12309         (load_mems): Process extended basic block that enters the loop with
12310         cselib.  Use that information to change initialization of the shadow
12311         register so that a constant equivalence is seen by later passes.
12312         * reload1.c: Include "cselib.h".
12313         (reload_cse_invalidate_regno): Delete function.
12314         (reload_cse_mem_conflict_p): Likewise.
12315         (reload_cse_invalidate_mem): Likewise.
12316         (reload_cse_invalidate_rtx): Likewise.
12317         (reload_cse_regno_equal_p): Likewise.
12318         (reload_cse_check_clobber): Likewise.
12319         (reload_cse_record_set): Likewise.
12320         (reg_values): Delete static variable.
12321         (invalidate_regno_rtx): Likewise.
12322         (reload_cse_delete_noop_set): New static function.
12323         (reload_cse_simplify): New static function, broken out of
12324         reload_cse_regs_1.
12325         (reload_cse_noop_set_p): Delete unused argument INSN.
12326         Just call rtx_equal_for_cselib_p on set source and destination.
12327         (reload_cse_regs_1): Break out some code into reload_cse_simplify and
12328         reload_cse_delete_noop_set.  Delete code to keep track of values; use
12329         cselib functions instead.  Delete code to push/pop obstacks.
12330         (reload_cse_simplify_set): Use cselib to find equivalent values.
12331         Delete code to push/pop obstacks.
12332         (reload_cse_simplify_operands): Likewise.
12333         * rtl.def (VALUE): New rtx code.
12334         * rtl.h (union rtunion_def): New elt rt_cselib.
12335         (X0CSELIB, CSELIB_VAL_PTR): New macros.
12336         * simplify_rtx.c: Include "ggc.h", "obstack.h", "cselib.h".
12337         (new_elt_list, new_elt_loc_list, unchain_one_value, clear_table,
12338         unchain_one_elt_list, unchain_one_elt_loc_list, check_useless_values,
12339         discard_useless_locs, discard_useless_values, entry_and_rtx_equal_p,
12340         hash_rtx, new_cselib_val, add_mem_for_addr, get_value_hash,
12341         cselib_lookup_mem, cselib_subst_to_values, cselib_invalidate_regno,
12342         cselib_mem_conflict_p, cselib_invalidate_mem, cselib_invalidate_rtx,
12343         cselib_record_set, cselib_record_sets): New static functions.
12344         (cselib_lookup, cselib_update_varray_sizes, cselib_init,
12345         cselib_finish, cselib_process_insn, rtx_equal_for_cselib_p,
12346         references_value_p): New functions.
12347         (MAX_USELESS_VALUES, REG_VALUES): New macros.
12348         (table, cselib_current_insn, next_unknown_value, cselib_nregs,
12349         n_useless_values, reg_values, callmem, cselib_obstack,
12350         cselib_startobj, empty_vals, empty_elt_lists, empty_elt_loc_lists):
12351         New static variables.
12352         * varray.h (union varray_data_tag): New elt te.
12353         (VARRAY_ELT_LIST_INIT, VARRAY_ELT_LIST): New macros.
12354         * Makefile.in (reload1.o, loop.o, simplify-rtx.o, alias.o): Update
12355         dependencies.
12356
12357 2000-03-14  Nick Clifton  <nickc@cygnus.com>
12358
12359         * gcc.c (do_spec_1): Catch the case where %* is used in a
12360         substitution pattern, but it has not been initialised.
12361         Issue a meaningful error message if an unrecognised operator
12362         is encountered in a spec string.
12363
12364 2000-03-14  Richard Earnshaw <rearnsha@arm.com>
12365
12366         * function.c (prepare_function_start): Correctly initialize
12367         cfun->stack_alignment_needed.
12368
12369 2000-03-14  Zack Weinberg  <zack@wolery.cumb.org>
12370
12371         * cppfiles.c (find_include_file): Don't assume nshort is a
12372         substring of name.
12373
12374 Tue Mar 14 08:42:21 2000  Jeffrey A Law  (law@cygnus.com)
12375
12376         * configure.in (hppa configurations): Add pa32-regs.h to the
12377         list of tm files as appropriate.
12378         * configure: Rebuilt.
12379         * pa.c (compute_frame_size): Remove explicit knowledge about FP
12380         register numbering.
12381         (hppa_expand_prologue, hppa_expand_epilogue): Likewise.
12382         (fmpyaddoperands, fmpysuboperands): Likewise.
12383         * pa.h: Remove various definitions which depend on knowing
12384         how registers are numbered.
12385         * pa32-regs.h: New file with PA32 register numbering specific
12386         definitions.
12387
12388 2000-03-14  Richard Henderson  <rth@cygnus.com>
12389
12390         * regmove.c (combine_stack_adjustments): New.
12391         (stack_memref_p, single_set_for_csa): New.
12392         (free_csa_memlist, record_one_stack_memref): New.
12393         (try_apply_stack_adjustment): New.
12394         (combine_stack_adjustments_for_block): New.
12395         * rtl.h (combine_stack_adjustments): Declare.
12396         * toplev.c (rest_of_compilation): Call it.
12397
12398         * i386.md: Revert 2000-01-16 change.
12399
12400 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12401
12402         * gccbug.in: Add web category, gcc specific classes.
12403
12404 2000-03-14  Nathan Sidwell  <nathan@codesourcery.com>
12405
12406         * stor-layout.c (finalize_record_size): Fix typo.
12407
12408 2000-03-14  Stan Shebs  <shebs@apple.com>
12409
12410         * c-typeck.c (c_alignof): Error on incomplete types.
12411         * extend.texi (Alignment): Document this.
12412
12413 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12414
12415         * cppfiles.c: Include mkdeps.h.
12416         (find_include_file, read_include_file): Remove _cpp_ prefix
12417         from name, make static.
12418         (_cpp_execute_include): New function, broken out of
12419         do_include.
12420
12421         * cpplib.c: Don't include mkdeps.h.
12422         (struct directive): Remove type field. Reorder entries.  The
12423         function takes only one argument.
12424         (struct if_stack): Make type field an int.
12425         (directive_table): Rename to dtable.  Generate it, the
12426         prototypes of the directive handlers, and the enum for the
12427         directive numbers, from a template macro.
12428         (do_ifndef, do_include_next, do_import): New functions.
12429         (do_define, do_include, do_endif, do_ifdef, do_if, do_else,
12430         do_undef, do_line, do_elif, do_error, do_pragma, do_warning,
12431         do_ident, do_assert, do_unassert, do_sccs): Take only one
12432         argument.
12433         (do_sccs): Define always, but alter behavior based on
12434         SCCS_DIRECTIVE.
12435         (_cpp_handle_directive, consider_directive_while_skipping):
12436         Restructure for new directive table layout.
12437
12438         (pass_thru_directive): Take a directive number, not a pointer
12439         to a struct directive.
12440         (parse_include): New function, broken out of do_include.
12441         (do_include, do_import, do_include_next): Use parse_include
12442         and _cpp_execute_include.
12443         (do_elif, do_else): Test for T_ELSE specifically when checking
12444         for #elif/#else after #else.
12445         (parse_ifdef): New function, broken out of do_ifdef.
12446         (validate_else): Expect a name arg without a leading #.
12447         (if_directive_name): Delete.
12448         (cpp_define, cpp_assert, cpp_undef, cpp_unassert): Call
12449         directive handlers with only one argument.
12450
12451         * cpphash.h: Update prototypes.
12452         (enum node_type): Remove entries for directives.
12453         * Makefile.in: Update dependencies.
12454
12455         * cpphash.c (dump_hash_helper): Only dump nodes of type
12456         T_MACRO.  Emit a newline after each definition.
12457
12458 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12459
12460         * gccbug.in: New file.
12461         * configure.in (all_outputs): Add gccbug.
12462         * Makefile.in (install-common): Install gccbug.
12463         (GCCBUG_INSTALL_NAME): New variable.
12464         * configure: Rebuilt.
12465
12466 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
12467
12468         * function.c (put_var_into_stack): Use type_for_mode to calculate
12469         part_type.  Use MEM_SET_IN_STRUCT_P.
12470         * expr.c (store_field): Handle CONCAT.
12471         (store_constructor): Use fields_length.
12472         * tree.c (fields_length): New fn.
12473         * tree.h: Declare it.
12474
12475 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12476
12477         * Makefile.in (LIBCPP_OBJS): Add cpplex.o.
12478         (cpplex.o): New target.
12479         * po/POTFILES.in: Add cpplex.c.
12480
12481         * cpplex.c (_cpp_grow_token_buffer, null_cleanup,
12482         cpp_push_buffer, cpp_pop_buffer, cpp_scan_buffer,
12483         cpp_expand_to_buffer, cpp_buf_line_and_col, cpp_file_buffer,
12484         skip_block_comment, skip_line_comment, skip_comment,
12485         copy_comment, _cpp_skip_hspace, _cpp_skip_rest_of_line,
12486         _cpp_parse_name, skip_string, parse_string,
12487         _cpp_parse_assertion, cpp_get_token, cpp_get_non_space_token,
12488         _cpp_get_directive_token, find_position,
12489         _cpp_read_and_prescan, _cpp_init_input_buffer): Move here.
12490         (maybe_macroexpand, _cpp_lex_token): New functions.
12491
12492         * cpplib.c (SKIP_WHITE_SPACE, eval_if_expr, parse_set_mark,
12493         parse_goto_mark): Delete.
12494         (_cpp_handle_eof): New function.
12495         (_cpp_handle_directive): Rename from handle_directive.
12496         (_cpp_output_line_command): Rename from output_line_command.
12497         (do_if, do_elif): Call _cpp_parse_expr directly.
12498         * cppfiles.c (_cpp_read_include_file): Don't call
12499         init_input_buffer here.
12500         * cpphash.c (quote_string): Move here, rename _cpp_quote_string.
12501         * cppexp.c (_cpp_parse_expr): Diddle parsing_if_directive
12502         here; pop the token_buffer and skip the rest of the line here.
12503         * cppinit.c (cpp_start_read): Call _cpp_init_input_buffer
12504         here.
12505
12506         * cpphash.h (CPP_RESERVE, CPP_IS_MACRO_BUFFER, ACTIVE_MARK_P):
12507         Define here.
12508         (CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK, CPP_SET_MARK,
12509         CPP_GOTO_MARK): New macros.
12510         (_cpp_quote_string, _cpp_parse_name, _cpp_skip_rest_of_line,
12511         _cpp_skip_hspace, _cpp_parse_assertion, _cpp_lex_token,
12512         _cpp_read_and_prescan, _cpp_init_input_buffer,
12513         _cpp_grow_token_buffer, _cpp_get_directive_token,
12514         _cpp_handle_directive, _cpp_handle_eof,
12515         _cpp_output_line_command): Prototype them here.
12516         * cpplib.h (enum cpp_token): Add CPP_MACRO.
12517         (CPP_RESERVE, get_directive_token, cpp_grow_buffer,
12518         quote_string, output_line_command): Remove.
12519
12520 2000-03-13  Bernd Schmidt  <bernds@cygnus.co.uk>
12521
12522         * stmt.c (expand_end_case): RANGE may be signed, and when checking
12523         whether it is too large we must also verify that it isn't negative.
12524
12525 2000-03-13  Jakub Jelinek  <jakub@redhat.com>
12526
12527         * config/sparc/sparc.md: Remove all traces of TARGET_LIVE_G0.
12528         (movsi_zero_liveg0): Remove.
12529         (movsf_insn_novis_liveg0): Remove.
12530         (negsi2): Remove.
12531         (negsi2_not_liveg0): Rename to negsi2.
12532         (one_cmplsi2): Remove.
12533         (one_cmplsi2_not_liveg0): Rename to one_cmplsi2.
12534         (one_cmplsi2_liveg0): Remove.
12535         * config/sparc/sparc.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE,
12536         MASK_LIVE_G0, MASK_BROKEN_SAVERESTORE): Remove.
12537         (CONDITIONAL_REGISTER_USAGE): Remove TARGET_LIVE_G0 if.
12538         (PREDICATE_CODES): Remove zero_operand.
12539         * config/sparc/sparc.c: Remove all traces of TARGET_LIVE_G0 and
12540         TARGET_BROKEN_SAVERESTORE.
12541         (zero_operand): Remove.
12542         * config/sparc/splet.h (SUBTARGET_SWITCHES): Remove -mlive-g0,
12543         -mno-live-g0, -mbroken-saverestore and -mno-broken-saverestore
12544         options.
12545         (SUBTARGET_OVERRIDE_OPTIONS): Remove.
12546         * config/sparc/linux-aout.h (TARGET_LIVE_G0,
12547         TARGET_BROKEN_SAVERESTORE): Remove.
12548         * config/sparc/linux.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12549         Remove.
12550         * config/sparc/linux64.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12551         Remove.
12552         * config/sparc/sol2.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
12553         Remove.
12554
12555         * config/sparc/sparc.md (return_df_no_fpu): New pattern.
12556
12557 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
12558
12559         * cpplib.c (do_pragma_implementation): Fix off-by-one error
12560         truncating a string.  Don't assume tokens are nul terminated.
12561         Problem noted by Andreas Jaeger <aj@suse.de>
12562
12563 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
12564
12565         * dwarf2out.c (add_name_and_src_coords_attributes): Only add
12566         DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.
12567         (ASM_OUTPUT_DWARF_ADDR_CONST): Don't output trailing newline.
12568
12569 2000-03-13  Richard Earnshaw <rearnsha@arm.com>
12570
12571         * stor-layout.c (new_record_layout_info): Fix typo inside ifdef
12572         STRUCTURE_SIZE_BOUNDARY.
12573
12574 2000-03-13  Mark Mitchell  <mark@codesourcery.com>
12575
12576         * tree.h (record_layout_info_s): New structure.
12577         (record_layout_info): New type.
12578         (new_record_layout_info): New function.
12579         (layout_field): Likewise.
12580         (finish_record_layout): Likewise.
12581         * stor-layout.c (layout_record): Remove.
12582         (new_record_layout_info): New function.
12583         (layout_field): New function, broken out from layout_record.
12584         (finalize_record_size): Likewise.
12585         (compute_record_mode): Likewise.
12586         (finalize_type_size): New function, broken out from layout_type.
12587         (finish_record_layout): Likewise.
12588         (layout_type): Use them.
12589
12590 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
12591
12592         * cpphash.c: Don't include version.h.
12593         (special_symbol) [case T_VERSION]: Look for the string in
12594         hp->value.cpval; don't use version_string.
12595         * cppinit.c (initialize_builtins): Set hp->value.cpval for
12596         __VERSION__ to version_string.
12597         * Makefile.in (cpphash.o): Update deps.
12598
12599 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
12600
12601         Convert cpplib to use libiberty/hashtab.c.
12602
12603         * cpplib.h (struct cpp_reader): Make hashtab and
12604         all_include_files of type 'struct htab *'.  Delete HASHSIZE
12605         and ALL_INCLUDE_HASHSIZE macros.
12606
12607         * cpphash.h: Update prototypes.
12608         (struct hashnode): Remove next, prev, and bucket_hdr members.
12609         Make length a size_t.  Add hash member.
12610         (struct ihash): Remove next member.  Add hash member.  Make
12611         name a flexible array member.
12612
12613         * cppfiles.c: Include hashtab.h.
12614         (include_hash): Delete.
12615         (IHASHSIZE): New macro.
12616         (hash_IHASH, eq_IHASH, _cpp_init_include_hash): New functions.
12617         (cpp_included): Do the hash lookup here.
12618         (_cpp_find_include_file): Rewrite.
12619         (cpp_read_file): Put the "fake" hash entry into the hash
12620         table.  Honor the control_macro, if it turns out we've seen
12621         the file before.  Don't push the buffer here.
12622         (_cpp_read_include_file): Push the buffer here.
12623         (OMODES): New macro.  Use it whenever we call open(2).
12624
12625         * cpphash.c: Include hashtab.h.
12626         (hash_HASHNODE, eq_HASHNODE, del_HASHNODE, dump_hash_helper,
12627         _cpp_init_macro_hash, _cpp_dump_macro_hash, _cpp_make_hashnode,
12628         _cpp_lookup_slot): New functions.
12629         (HASHSIZE): new macro.
12630         (hashf, _cpp_install, _cpp_delete_macro): Delete.
12631         (_cpp_lookup): Use hashtab.h routines.
12632
12633         * cppinit.c: Include hashtab.h.
12634         (cpp_reader_init): Call _cpp_init_macro_hash and
12635         _cpp_init_include_hash.  Don't allocate hashtab directly.
12636         (cpp_cleanup): Just call htab_delete on pfile->hashtab and
12637         pfile->all_include_files.
12638         (initialize_builtins): Use _cpp_make_hashnode and
12639         htab_find_slot to add hash entries.
12640         (cpp_finish): Just call _cpp_dump_macro_hash.
12641         * cpplib.c: Include hashtab.h.
12642         (do_define): Use _cpp_lookup_slot and _cpp_make_hashnode to
12643         create hash entries.
12644         (do_pragma_poison, do_assert): Likewise.
12645         (do_include): Don't push the buffer here.  Don't increment
12646         system_include_depth unless _cpp_read_include_file succeeds.
12647         (do_undef, do_unassert): Use _cpp_lookup_slot and htab_clear_slot
12648         or htab_remove_elt.
12649         (do_pragma_implementation): Use alloca to create copy.
12650
12651         * Makefile.in: Update dependencies.
12652
12653 2000-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12654
12655         * cppinit.c (cl_directive_handler): More K&R fixing.
12656
12657 Sat Mar 11 23:54:26 2000  Jim Wilson  <wilson@cygnus.com>
12658
12659         * config/ia64/ia64.c (ia64_compute_frame_size): Align size to
12660         STACK_BOUNDARY.
12661         * config/ia64/ia64.h (REGISTER_MOVE_COST): Add missing parentheses.
12662
12663 2000-03-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12664
12665         * cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
12666         Change from char[] to macros.
12667
12668 2000-03-12  Neil Booth  <NeilB@earthling.net>
12669
12670         * cppinit.c (cpp_start_read): Update indirect function
12671         call to K&R C.
12672
12673 Sat Mar 11 16:18:12 2000  Jim Wilson  <wilson@cygnus.com>
12674
12675         * config/ia64/ia64.h (ADDITIONAL_REGISTER_NAMES): Fix typo in loc79
12676         entry.
12677
12678         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
12679         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyright messages.
12680
12681 2000-03-11  Neil Booth  <NeilB@earthling.net>
12682
12683         * cppinit.c (struct pending option): Replace undef with a
12684         pointer to a directive handling routine.
12685         (struct cpp_pending): Replace separate assert_ and define_
12686         lists with one directive_ list.
12687         (new_pending_define): Rename new_pending_directive. Extra
12688         argument is the directive's handling routine.
12689         (handle_option): Update to use new_pending_directive.
12690
12691 2000-03-11  Neil Booth  <NeilB@earthling.net>
12692
12693         * cppfiles.c (file_cleanup, _cpp_find_include_file,
12694         remap_filename, _cpp_read_include_file, actual_directory,
12695         hack_vms_include_specification): Replace bcopy(), index() etc
12696         calls.  Add casts to some allocations.  Make some variables
12697         pointers to const [unsigned] char.
12698         * cpphash.c (_cpp_install, macro_cleanup, collect_expansion,
12699         collect_formal_parameters): Similarly.
12700         * cppinit.c (struct pending_option, append_include_chain,
12701         cpp_options_init, cpp_reader_init, initialize_standard_includes,
12702         cpp_start_read, new_pending_define, handle_option): Similarly.
12703         * cpplib.c (cpp_define, copy_comment, do_define, do_include,
12704         do_undef, do_error, do_warning, do_pragma, do_pragma_once,
12705         do_pragma_implementation, detect_if_not_defined,
12706         do_ifdef, skip_if_group, cpp_get_token, parse_string,
12707         do_assert, do_unassert): Similarly.
12708         * cpplib.h (cpp_buffer, cpp_options): Update types.  Update
12709         function prototypes.
12710         * mkdeps.c (deps_add_target, deps_add_dep): cast allocations.
12711
12712 2000-03-10  Richard Henderson  <rth@cygnus.com>
12713
12714         * builtins.c (expand_builtin_strlen): Revert last change.
12715         Use emit_insn_before if we're at the beginning of a sequence.
12716
12717 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
12718
12719         * builtins.c (expand_builtin_strlen): Make sure that we have something
12720         at the beginning of the sequence.
12721
12722         * toplev.c (rest_of_compilation): Also set TREE_NOTHROW for
12723         deferred inlines.
12724
12725         * invoke.texi (C++ Dialect Options): Document -fno-enforce-eh-specs.
12726
12727 2000-03-10  Richard Henderson  <rth@cygnus.com>
12728
12729         * except.c (can_throw): Use INTVAL on a CONST_INT.
12730         (reachable_handlers): Likewise.
12731         * flow.c (count_basic_blocks, find_basic_blocks_1): Likewise.
12732
12733 2000-03-10  Andreas Jaeger  <aj@suse.de>
12734
12735         * config/mips/linux.h: Undefine MD_EXEC_PREFIX and
12736         MD_STARTFILE_PREFIX since those are not needed on linux.
12737         (ASM_FILE_START): New, from mips/gnu.h.
12738
12739 2000-03-09  Richard Henderson  <rth@cygnus.com>
12740             Alex Samuel  <samuel@codesourcery.com> and others
12741
12742         * Makefile.in (ssa.o): New rule.
12743         (OBJS): Add ssa.o.
12744         (STAGESTUFF): Add *.ssa and *.ussa.
12745         (mostlyclean): Delete *.ssa, *.ussa, */*.ssa, */*.ussa.
12746         * rtl.def (PHI): New RTL expression.
12747         * rtl.h (clear_log_links): New declaration.
12748         (convert_to_ssa): Likewise.
12749         (convert_from_ssa): Likewise.
12750         * flow.c (split_edge): If the entry node falls through to the
12751         split edge's source block, split the entry edge.
12752         (clear_log_links): New function.
12753         * toplev.c (ssa_dump): New variable.
12754         (flag_ssa): Likewise.
12755         (f_options): Add "ssa".
12756         (compile_file): Create SSA dump files.
12757         (rest_of_compilation): Go to and from SSA if enabled.
12758         (decide_d_option): Handle -de for SSA dump files.
12759         * ssa.c: New file.
12760
12761 Thu Mar  9 20:01:38 2000  Jim Wilson  <wilson@cygnus.com>
12762
12763         * expr.c (expand_assignment): For a CALL_EXPR, special case PARM_DECL
12764         same as VAR_DECL.
12765
12766 2000-03-09  Benjamin Kosnik  <bkoz@cygnus.com>
12767
12768         * config/alpha/linux.h (WCHAR_TYPE): Make consistent.
12769
12770 Thu Mar  9 18:10:02 2000  Jeffrey A Law  (law@cygnus.com)
12771
12772         * config/pa/pa-hpux10.h (LIB_SPEC): Correct typo in !p case.
12773         (MD_STARTFILE_PREFIX_1): New macro.
12774
12775 2000-03-09  Robert Lipe  <robertl@sco.com>
12776
12777         * config/ia64/ia64.c: Include system.h.
12778
12779 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
12780
12781         * except.c (nothrow_function_p): If -fno-exceptions, just return.
12782         (init_eh_nesting_info): Likewise.
12783
12784         * tree.h (struct tree_common): Rename raises_flag to nothrow_flag.
12785         (TREE_NOTHROW): Rename from TREE_RAISES.
12786         * toplev.c (rest_of_compilation): Set it.
12787         * print-tree.c (print_node): Adjust.
12788         * tree.c (stabilize_reference, build, build1): Don't set TREE_RAISES.
12789         (stabilize_reference_1, get_unwidened, get_narrower): Likewise.
12790         * calls.c (emit_call_1): Add 'nothrow' parm.  Add
12791         REG_EH_REGION note as appropriate.
12792         (libfunc_nothrow): New fn.
12793         (emit_library_call, emit_library_call_value): Use it.
12794         (expand_call): Check TREE_NOTHROW.
12795
12796         * varasm.c (make_decl_rtl): Skip initial '*' when setting
12797         DECL_ASSEMBLER_NAME.
12798
12799 2000-03-09  Andreas Jaeger  <aj@suse.de>
12800
12801         * mips/linux.h (NO_IMPLICIT_EXTERN_C): Define.
12802         (TARGET_MEM_FUNCTIONS): Define.
12803
12804 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
12805
12806         * i386.c (ix86_valid_type_attribute_p): Use compare_tree_int.
12807
12808         * except.c (can_throw): See through a SEQUENCE.
12809         (nothrow_function_p): New fn.
12810         * except.h: Declare it.
12811         * function.c (current_function_nothrow): New var.
12812         (prepare_function_start): Initialize it.
12813         * output.h: Declare it.
12814         * toplev.c (rest_of_compilation): Set it.
12815         * dwarf2out.c (dwarf2out_begin_prologue): Use it.
12816
12817 2000-03-09  Zack Weinberg  <zack@wolery.cumb.org>
12818
12819         * cpphash.c (collect_formal_parameters): strncmp returns 0 for
12820         match.  (cpp_compare_defs): Count the nul separator when
12821         advancing over argument names.
12822
12823 2000-03-09  Bernd Schmidt  <bernds@cygnus.co.uk>
12824
12825         * recog.c (preprocess_constraints): Matching constraints affect
12826         same alternative/different operand, not same operand/different
12827         alternative.
12828
12829         * reload1.c (eliminate_regs_in_insn): Handle additions of eliminable
12830         register and a constant specially.
12831
12832 2000-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12833
12834         * libgcc2.h: New file.
12835         * libgcc2.c: Move macros, typedefs and prototypes to libgcc2.h.
12836
12837 Wed Mar  8 16:19:42 2000  Jim Wilson  <wilson@cygnus.com>
12838
12839         * configure.in (ia64*-*-elf*, ia64*-*-linux*): New.
12840         * configure: Regenerate.
12841         * config/ia64: New.
12842
12843 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
12844
12845         * Makefile.in (LIBCPP_DEPS): New macro.
12846         (cpplib.o, cpphash.o, cpperror.o, cppexp.o, cppfiles.o): Use
12847         it to declare deps.
12848         * cpperror.c: Include cpphash.h.
12849         * cppexp.c: Include cpphash.h.  Remove MULTIBYTE_CHARS
12850         dingleberry.
12851         (lex): Don't use CPP_WARN_UNDEF.
12852         (_cpp_parse_expr): Return an int, the truth value.
12853         * cppfiles.c: Include cpphash.h.
12854         (_cpp_merge_include_chains): Move to cppinit.c and make static.
12855         * cppinit.c (include_defaults_array): Disentangle.
12856         (cpp_cleanup): Don't free the if stack here.
12857         (cpp_finish): Pop off all buffers, not just one.
12858         * cpplib.c (eval_if_expr): Return int.
12859         (do_xifdef): Rename do_ifdef.
12860         (handle_directive): Don't use CPP_PREPROCESSED.
12861         (cpp_get_token): Don't use CPP_C89.
12862         * fix-header.c: Don't use CPP_OPTIONS.
12863
12864         * cpplib.h: Move U_CHAR, enum node_type, struct
12865         file_name_list, struct ihash, is_idchar, is_idstart,
12866         is_numchar, is_numstart, is_hspace, is_space, CPP_BUF_PEEK,
12867         CPP_BUF_GET, CPP_FORWARD, CPP_PUTS, CPP_PUTS_Q, CPP_PUTC,
12868         CPP_PUTC_Q, CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q,
12869         CPP_BUMP_BUFFER_LINE, CPP_BUMP_LINE, CPP_PREV_BUFFER,
12870         CPP_PRINT_DEPS, CPP_TRADITIONAL, CPP_PEDANTIC, and prototypes
12871         of _cpp_simplify_pathname, _cpp_find_include_file,
12872         _cpp_read_include_file, and _cpp_parse_expr to cpphash.h.
12873         Move struct if_stack to cpplib.c.  Move struct cpp_pending to
12874         cppinit.c.
12875         Change all uses of U_CHAR to be unsigned char instead.
12876         Delete CPP_WARN_UNDEF, CPP_C89, and CPP_PREPROCESSED.
12877
12878 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
12879
12880         * dwarf2out.c (dw_fde_struct): Add 'nothrow'.
12881         (dwarf2out_begin_prologue): Set it.
12882         (output_call_frame_info): Don't emit EH unwind info for leaves.
12883
12884         * flow.c (count_basic_blocks, find_basic_blocks_1): A rethrow
12885         can occur outside of an EH region.
12886         * except.c: Correct comments about rethrow behavior.
12887         (rethrow_symbol_map): Do nothing if !flag_new_exceptions.
12888
12889 2000-03-08  Andrew MacLeod  <amacleod@cygnus.com>
12890
12891         * flow.c (make_edges): Always call make_eh_edge for calls.
12892
12893 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
12894
12895         * cpplib.h (parse_underflow_t, CPP_NULL_BUFFER): Delete.
12896         (struct cpp_buffer): Remove fname and underflow fields.
12897         (struct cpp_reader): Remove get_token field.
12898         (struct include_hash): Rename to struct ihash.  Add typedef to
12899         IHASH.
12900         (struct if_stack): Remove fname field.
12901         (IF_STACK_FRAME): Rename to IF_STACK.
12902
12903         * cpperror.c (print_containing_files): Trust that there are no
12904         macro buffers below the top file buffer.
12905         * cppfiles.c: Replace all references to 'struct include_hash'
12906         with 'IHASH'.  Rename initialize_input_buffer to
12907         init_input_buffer.  Don't set or reference cpp_buffer->fname,
12908         use buffer->ihash->name instead.
12909         * cpphash.c (special_symbol): Use cpp_file_buffer.  Use NULL
12910         not CPP_NULL_BUFFER.
12911         * cppinit.c: Use NULL not CPP_NULL_BUFFER, IF_STACK not
12912         IF_STACK_FRAME, IHASH not struct include_hash.
12913         * cpplib.c: Rename eval_if_expression to eval_if_expr.  Remove
12914         null_underflow.  Use IF_STACK not IF_STACK_FRAME, IHASH not
12915         struct include_hash, NULL not CPP_NULL_BUFFER.  Remove all
12916         references to cpp_buffer->fname (delete entirely, or use
12917         ->ihash->name instead) and IF_STACK->fname.
12918         (cpp_push_buffer): Don't set new->underflow.
12919         (do_include): Use cpp_file_buffer.
12920
12921         * cpphash.c (collect_formal_parameters): Remove duplicate
12922         increment of argslen.  Pedwarn in C99 mode if __VA_ARGS__ is
12923         used as a macro argument name.  Don't append "..." to namebuf
12924         for varargs macros.  After we're done scanning, go through
12925         namebuf and make it NUL separated, not comma separated.
12926         (_cpp_compare_defs): Remove register tag from variables.
12927         Expect defn->argnames to be NUL separated.
12928         (_cpp_dump_definition): Expect defn->argnames to be NUL
12929         separated and in forward order.
12930         * cpphash.h: Update documentation of argnames field.
12931
12932 2000-03-08  Richard Henderson  <rth@cygnus.com>
12933
12934         * builtins.c (expand_builtin_strlen): Be prepared for strlensi
12935         to fail.  Don't pre-expand the source operand.
12936
12937         * i386.md (strlensi): Initialize eoschar and align before use.
12938
12939 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
12940
12941         * expr.c (expand_expr, case ARRAY_REF): Still check for missing
12942         CONSTRUCTOR element.
12943
12944 2000-03-08  Gavin Romig-Koch  <gavin@cetus.cygnus.com>
12945
12946         * mips.c (mips_expand_prologue): If the last
12947         named argument is the vararg marker "va_list", treat it as
12948         an unnamed argument.
12949
12950 2000-03-08  Clinton Popetz  <cpopetz@cygnus.com>
12951
12952         * dbxout.c (dbxout_parms): When correcting for promoted
12953         big-endian parameters, use the mode of the DECL_RTL rather
12954         than UNITS_PER_WORD.
12955
12956 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
12957
12958         * c-common.h (make_fname_decl): Declare.
12959         * c-common.c (make_fname_decl): Define.
12960         (declare_hidden_char_array): Remove.
12961         (declare_function_name): Use make_fname_decl.
12962         * c-decl.c (c_make_fname_decl): New function.
12963         (init_decl_processing): Set make_fname_decl.
12964
12965 Tue Mar  7 23:50:31 2000  Jeffrey A Law  (law@cygnus.com)
12966
12967         * cccp.c (handle_directive): Initialize backslash_newlines_p.
12968
12969 2000-03-07  Philipp Thomas  <pthomas@suse.de>
12970
12971         * po/POTFILES.in: Remove cppalloc.c from file list.
12972
12973 2000-03-07  Steve Chamberlain  <sac@pobox.com>
12974
12975         * pj.c (pj_expand_prologue): current_function->args_info is
12976         now current_function_args_info.
12977
12978         * pj.h (STORE_FLAG_VALUE, USER_LABEL_PREFIX,
12979         LOCAL_LABEL_PREFIX, ASM_GENERATE_INTERNAL_LABEL,
12980         ASM_OUTPUT_INTERNAL_LABEL, ASM_OUTPUT_SKIP): Define.
12981
12982 2000-03-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
12983
12984         * config/c4x/c4x.h (PUT_SDB_TYPE): Define so that the type info is
12985         output as hexadecimal rather than the default octal.
12986
12987 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
12988
12989         * cpphash.c (special_symbol): Fix thinko in previous commit.
12990
12991 2000-03-07  Neil Booth  <NeilB@earthling.net>
12992
12993         * cppexp.c (struct operation, left_shift, right_shift,
12994         cpp_parse_expr): Change some "char"s to "U_CHAR"s, and some
12995         "int"s to "unsigned int"s.
12996         * cpplib.c (detect_if_not_defined, do_assert, do_unassert):
12997         Similarly.
12998         * cpplib.h: Update for above.
12999         * mkdeps.c (deps_init, deps_calc_target): Cast pointers
13000         returned from allocations.
13001
13002         * cppinit.c (opt_comp, parse_options): New functions.
13003         (handle_option): Use parse_option to parse a single command
13004         line option, that possibly takes an argument.
13005         (cpp_handle_options): Sort the array of command line options on
13006         first invocation (non-ASCII hosts only).
13007         (print_help): Update.
13008
13009 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
13010
13011         * mkdeps.c (munge): Fix off-by-one bug and inconsistencies in
13012         backslash counting loops.  Problem noted by Matt Kraai <kraai@ghs.com>.
13013
13014         * cppfiles.c (_cpp_find_include_file): Make sure ih->name is
13015         initialized.
13016         * cppinit.c (cpp_cleanup): Free imp->nshort also.
13017
13018         * cpperror.c (cpp_print_containing_files,
13019         cpp_print_file_and_line, v_cpp_message): Rename to
13020         print_containing_files, print_file_and_line, and v_message.
13021         * cppexp.c (cpp_parse_expr, cpp_parse_escape, cpp_lex): Rename
13022         to _cpp_parse_expr, parse_escape, and lex.
13023         (parse_charconst): Remove broken multibyte support.
13024         * cppfiles.c (include_hash): Make static.
13025         (cpp_included): New function.
13026         (merge_include_chains, find_include_file, finclude,
13027         simplify_pathname): Rename to _cpp_merge_include_chains,
13028         _cpp_find_include_file, _cpp_read_include_file, and
13029         _cpp_simplify_pathname.
13030         * cpphash.c (cpp_lookup, free_definition, delete_macro,
13031         cpp_install, create_definition, macroexpand, compare_defs,
13032         dump_definition): Rename to _cpp_lookup, _cpp_free_definition,
13033         _cpp_delete_macro, _cpp_install, _cpp_create_definition,
13034         _cpp_macroexpand, _cpp_compare_defs, and _cpp_dump_definition.
13035         * cppinit.c (cpp_handle_option): Rename to handle_option, make
13036         static.
13037         * cpplib.c: Remove extern prototype of cpp_parse_expr.
13038
13039         * cpphash.h: Update prototypes.
13040         * cpplib.h: Likewise.  Prototype _cpp_parse_expr here.
13041
13042 2000-03-07  Andrew Haley  <aph@cygnus.com>
13043
13044         * config/mips/mips.h (PTRDIFF_TYPE): Revert broken change;
13045         PTRDIFF_TYPE should be based solely on Pmode.
13046         (SIZE_TYPE): ditto.
13047
13048 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13049
13050         * rtl.h (rtunion_def): Constify member `rtstr'.
13051         (emit_line_note_after, emit_line_note, emit_line_note_force,
13052         emit_note, decode_asm_operands): Constify.
13053
13054         * cse.c (canon_hash): Likewise.
13055
13056         * dbxout.c (dbxout_block): Likewise.
13057
13058         * diagnostic.c (file_and_line_for_asm, v_error_for_asm,
13059         v_warning_for_asm): Likewise.
13060
13061         * dwarfout.c (function_start_label): Likewise.
13062
13063         * emit-rtl.c (emit_line_note_after, emit_line_note, emit_note,
13064         emit_line_note_force): Likewise.
13065
13066         * final.c (last_filename, asm_insn_count, final_scan_insn,
13067         output_source_line): Likewise.
13068
13069         * function.h (struct emit_status): Likewise.
13070
13071         * gcse.c (hash_expr_1): Likewise.
13072
13073         * genattr.c (gen_attr, main): Likewise.
13074
13075         * genattrtab.c (struct function_unit, current_alternative_string,
13076         write_attr_valueq, n_comma_elts, next_comma_elt, attr_eq,
13077         attr_numeral, check_attr_test, check_attr_value,
13078         convert_set_attr_alternative, convert_set_attr,
13079         compute_alternative_mask, simplify_by_exploding, gen_attr,
13080         gen_unit): Likewise.
13081
13082         * genflags.c (gen_insn): Likewise.
13083
13084         * gengenrtl.c (type_from_format): Likewise.
13085
13086         * genopinit.c (gen_insn): Likewise.
13087
13088         * genoutput.c (n_occurrences, process_template, process_template):
13089         Likewise.
13090
13091         * ggc-page.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
13092         Likewise.
13093
13094         * ggc-simple.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
13095         Likewise.
13096
13097         * ggc.h (ggc_mark_string, ggc_mark, ggc_mark_if_gcable,
13098         ggc_set_mark, ggc_get_size): Likewise.
13099
13100         * objc/objc-act.c (build_module_descriptor, finish_objc): Likewise.
13101
13102         * optabs.c (init_one_libfunc): Likewise.
13103
13104         * output.h (assemble_start_function): Likewise.
13105
13106         * recog.c (decode_asm_operands): Likewise.
13107
13108         * toplev.c (rest_of_compilation): Likewise.
13109
13110         * tree.h (emit_line_note_after, emit_line_note,
13111         emit_line_note_force): Likewise.
13112
13113         * varasm.c (asm_output_bss, asm_output_aligned_bss,
13114         asm_emit_uninitialised, assemble_start_function,
13115         assemble_variable, const_hash, compare_constant_1,
13116         find_pool_constant, mark_constant_pool, assemble_alias): Likewise.
13117
13118         * xcoffout.h (DBX_FINISH_SYMBOL): Likewise.
13119
13120         * alpha/alpha.md (call_vms, call_value_vms): Likewise.
13121
13122         * arm/aof.h (ASM_OUTPUT_ASCII): Likewise.
13123
13124         * arm/aout.h (ASM_OUTPUT_ASCII): Likewise.
13125
13126         * arm/arm-protos.h (output_ascii_pseudo_op, arm_dllexport_name_p,
13127         arm_dllimport_name_p): Likewise.
13128
13129         * arm/arm.c (arm_encode_call_attribute, output_ascii_pseudo_op):
13130         Likewise.
13131
13132         * arm/arm.h (ASM_OUTPUT_MI_THUNK): Likewise.
13133
13134         * arm/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13135
13136         * arm/pe.c (arm_dllexport_name_p, arm_dllimport_name_p,
13137         arm_mark_dllexport, arm_mark_dllimport,
13138         arm_pe_encode_section_info): Likewise.
13139
13140         * arm/telf.h (ASM_OUTPUT_DEF_FROM_DECLS,
13141         ASM_FINISH_DECLARE_OBJECT): Likewise.
13142
13143         * arm/thumb.c (thumb_function_prologue): Likewise.
13144
13145         * arm/thumb.h (ASM_OUTPUT_ASCII): Likewise.
13146
13147         * avr/avr.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13148
13149         * clipper/clix.h (ASM_OUTPUT_ASCII): Likewise.
13150
13151         * fx80/fx80.h (ASM_OUTPUT_ASCII): Likewise.
13152
13153         * i386/cygwin.h (ASM_OUTPUT_SECTION_NAME): Likewise.
13154
13155         * i386/freebsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13156
13157         * i386/i386-interix.h (ASM_OUTPUT_LIMITED_STRING,
13158         ASM_OUTPUT_ASCII, ASM_OUTPUT_SECTION_NAME): Likewise.
13159
13160         * i386/i386-protos.h (asm_output_function_prefix): Likewise.
13161
13162         * i386/i386.c (asm_output_function_prefix): Likewise.
13163
13164         * i386/i386elf.h (ASM_OUTPUT_ASCII): Likewise.
13165
13166         * i386/osfrose.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13167
13168         * i386/ptx4-i.h (ASM_OUTPUT_ASCII): Likewise.
13169
13170         * i386/sco5.h (ASM_FINISH_DECLARE_OBJECT,
13171         ASM_OUTPUT_LIMITED_STRING, ASM_OUTPUT_ASCII,
13172         ASM_OUTPUT_SECTION_NAME): Likewise.
13173
13174         * i386/sysv4.h (ASM_OUTPUT_ASCII): Likewise.
13175
13176         * i860/paragon.h (ASM_OUTPUT_ASCII): Likewise.
13177
13178         * i860/sysv3.h (ASM_OUTPUT_ASCII): Likewise.
13179
13180         * m32r/m32r.c (m32r_encode_section_info): Likewise.
13181
13182         * mcore-elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13183
13184         * mcore/mcore.c (mcore_encode_section_info): Likewise.
13185
13186         * mips/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13187
13188         * mips/elf64.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13189
13190         * mips/iris6.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13191
13192         * mips/mips.h (ASM_OUTPUT_IDENT): Likewise.
13193
13194         * mips/mips.md (movdi, movsi): Likewise.
13195
13196         * mips/netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13197
13198         * netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13199
13200         * openbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
13201
13202         * ptx4.h (ASM_FINISH_DECLARE_OBJECT, ASM_OUTPUT_LIMITED_STRING,
13203         ASM_OUTPUT_ASCII): Likewise.
13204
13205         * rs6000/rs6000.c (rs6000_allocate_stack_space, output_epilog,
13206         output_mi_thunk, output_toc): Likewise.
13207
13208         * rs6000/rs6000.md (movsi): Likewise.
13209
13210         * rs6000/sysv4.h (ASM_OUTPUT_INT, ASM_OUTPUT_SECTION_NAME): Likewise.
13211
13212         * tahoe/harris.h (ASM_OUTPUT_ASCII): Likewise.
13213
13214         * v850/v850.c (print_operand, print_operand_address,
13215         v850_encode_data_area): Likewise.
13216
13217 2000-03-07  Clinton Popetz  <cpopetz@cygnus.com>
13218
13219         * config/mips/mips.md (zero_extendsidi2): Always force operand
13220         one to memory for mips16.
13221
13222 Mon Mar  6 15:22:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13223
13224         * tree.h (INT_CST_LT, INT_CST_LT_UNSIGNED): Remove unneeded casts.
13225         (struct tree_int_cst): int_cst_low is now unsigned HOST_WIDE_INT.
13226         (attribute_hash_list, type_hash_canon): hashcode is now unsigned.
13227         (type_hash_lookup, type_hash_add, type_hash_list): Likewise.
13228         (min_precision): Result is unsigned.
13229         (add_double, neg_double, mul_double): Low word is unsigned.
13230         (lshift_double, rshift_double, lrotate_double): Likewise.
13231         (rrotate_double, div_and_round_double): Likewise.
13232         (tree_floor_log2, compare_tree_int): New functions.
13233         (preserve_rtl_expr_temps): New declaration.
13234         * c-common.c (declare_hidden_char_array): Use compare_tree_int.
13235         (decl_attributes): Use tree_log2 to find alignment.
13236         Check for TREE_INT_CST_HIGH for format args.
13237         (min_precision): Now unsigned.
13238         Use tree_floor_log2.
13239         (truthvalue_conversion): Delete long-disabled code.
13240         * c-decl.c (finish_struct): Clean up tests on field width.
13241         (finish_function): Use compare_tree_int.
13242         * c-pragma.c (handle_pragma_token): Use tree_log2 for alignment.
13243         * c-typeck.c (comptypes): Use tree_int_cst_equal.
13244         (default_conversion, digest_init): Use compare_tree_int.
13245         (build_binary_op): Use integer_all_onesp and compare_tree_int.
13246         Fix type errors in forming masks.
13247         * calls.c (initialize_argument_information): Use compare_tree_int.
13248         * dbxout.c (dbxout_type): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
13249         * except.c (expand_eh_region_start_tree): Use compare_tree_int.
13250         * expr.c (is_zeros_p, case INTEGER_CST): Use integer_zerop.
13251         (store_field): Use compare_tree_int.
13252         (expand_expr, case CONSTRUCTOR): Use TYPE_SIZE_UNIT.
13253         (expand_expr, case ARRAY_REF): Use compare_tree_int.
13254         (do_jump, case BIT_AND_EXPR): Use tree_floor_log2.
13255         (do_store_flag): Use compare_tree_int.
13256         * fold-const.c (encode, decode): Low part is always unsigned.
13257         (force_fit_type, add_double, neg_double, mul_double): Likewise.
13258         (lshift_double, rshift_double, lrotate_double): Likewise.
13259         (rrotate_double, div_and_round_double, int_const_binop): Likewise.
13260         (fold_convert): Use compare_tree_int.
13261         (operand_equal_p, case INTEGER_CST): Use tree_int_cst_equal.
13262         (invert_truthvalue, case INTEGER_CST): Likewise.
13263         (fold): Use compare_tree_int; add casts for unsigned TREE_INT_CST_LOW.
13264         * mkdeps.c (deps_dummy_targets): Make I unsigned.
13265         * rtl.h (add_double, neg_double, mul_double): Low words are unsigned.
13266         (lshift_double, rshift_double, lrotate_double, rrotate_double):
13267         Likewise.
13268         * stmt.c (expand_decl): Use compare_tree_int and mode_for_size_tree.
13269         (expand_end_case): Use compare_tree_int.
13270         (estimate_case_costs): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
13271         * stor-layout.c (mode_for_size_tree): Use compare_tree_int.
13272         (layout_decl): Likewise.
13273         (layout_record, layout_union): Make sizes unsigned.
13274         (layout_type, case VOID_TYPE): TYPE_SIZE must be bitsizetype.
13275         (layout_type, case QUAL_UNION_TYPE): Use compare_tree_int.
13276         * tree.c (struct type_hash): hashcode is unsigned.
13277         (build_type_attribute_variant, type_hash_list): Likewise.
13278         (type_hash_lookup, type_hash_add, type_hash_canon): Likewise.
13279         (attribute_hash_list, build_array_type, build_method_type): Likewise.
13280         (build_complex_type): Likewise.
13281         (real_value_from_int_cst): Remove unneeded casts.
13282         (integer_all_onesp): Add casts.
13283         (tree_floor_log2, compare_tree_int): New functions.
13284         (build_index_type): Use tree_int_cst_sgn.
13285         * varasm.c (assemble_variable): Use compare_tree_int.
13286
13287 2000-03-06  Jason Merrill  <jason@casey.cygnus.com>
13288
13289         * cpphash.c (collect_expansion): Also catch ## at start of macro.
13290
13291         * varasm.c (make_decl_rtl): Don't add a number to members of
13292         local classes.
13293         (make_function_rtl): Likewise.
13294
13295 2000-03-06  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
13296
13297         * gcse.c (compute_can_copy): Adjust if/else blocks from rth's
13298         patch from 2000-01-28.
13299
13300 2000-03-06  Clinton Popetz  <cpopetz@cygnus.com>
13301
13302         * config/sh/sh.c: (barrier_align): Handle a delay slot that is
13303         filled with an insn from the jump target.
13304
13305 2000-03-07  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13306
13307         * config/c4x/c4x-protos.h (c4x_global_name): Constify char *.
13308         (c4x_external_ref): Likewise.
13309         * config/c4x/c4x.c (struct name_list): Likewise.
13310
13311 1999-12-16  Ben Collins  <bcollins@debian.org>
13312
13313         * Makefile.in: Pass a new MULTILIB_EXCLUSIONS option as the sixth
13314         argument to genmultilib.
13315         * genmultilib: accept new MULTILIB_EXCLUSIONS option and output
13316         the contents into the multilib.h header.
13317         * gcc.c: Declare multilib_exclusions for the specs file.
13318         (set_multilib_dir): Use it.
13319         (print_multilib_info): Likewise.
13320         * t-linux64: Declare arguments for new MULTILIB_EXCLUSIONS option
13321         to pass to genmultilib.
13322
13323 2000-03-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13324
13325         * builtins.c (built_in_class_names, built_in_names): Constify a
13326         char*.
13327
13328         * gmon-sol2.c (monstartup, moncontrol): Cast ptrs to long, not
13329         int.
13330         (_mcleanup): Ensure value matches format specifier in sprintf.
13331
13332         * cpphash.c (special_symbol): Don't needlessly cast away
13333         const-ness.
13334
13335         * cppinit.c (base_name): Delete unused prototype.
13336
13337         * mkdeps.c (deps_init): Make definition K&R safe.
13338
13339         * tree.h (built_in_class_names, built_in_names): Constify a
13340         char*.
13341
13342 2000-03-06  Jakub Jelinek  <jakub@redhat.com>
13343
13344         * config/sparc/sparc.c (eligible_for_epilogue_delay): Accept
13345         floating point instructions for epilogue delay.
13346
13347         * config/sparc/sparc.h (ASM_ARCH64_SPEC): Pass -no-undeclared-regs
13348         to gas if it supports .register pseudo.
13349
13350         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Define to
13351         LONG_DOUBLE_TYPE_SIZE if not defined.
13352         Use MAX_LONG_DOUBLE_TYPE_SIZE instead of
13353         LONG_DOUBLE_TYPE_SIZE in preprocessor if clauses.
13354         * real.c: Likewise.
13355         * gengenrtl.c: Likewise.
13356         * print-rtl.c: Likewise.
13357         * rtl.c: Likewise.
13358         * config/sparc/sol2-sld-64.h (TARGET_DEFAULT): Set
13359         MASK_LONG_DOUBLE_128.
13360         * config/sparc/sol2.h (TARGET_DEFAULT): Likewise.
13361         * config/sparc/sp64-elf.h (TARGET_DEFAULT): Likewise.
13362         * config/sparc/linux64 (TARGET_DEFAULT): Likewise.
13363         (SUBTARGET_SWITCHES): Define.
13364         (CPP_ARCH32_SPEC): Define __LONG_DOUBLE_128__ if compiling
13365         with -mlong-double-128.
13366         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
13367         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
13368         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
13369         (CC1_SPEC): Include -mlong-double-{64,128} as needed.
13370         * config/sparc/linux.h (SUBTARGET_SWITCHES): Define.
13371         (CPP_SUBTARGET_SPEC): Define __LONG_DOUBLE_128__ if compiling
13372         with -mlong-double-128.
13373         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
13374         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
13375         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
13376         * config/sparc/sparc.h (MASK_LONG_DOUBLE_128,
13377         TARGET_LONG_DOUBLE_128): Define.
13378         * config/sparc/linux-aout.h (LONG_DOUBLE_TYPE_SIZE): Remove.
13379         * config/sparc/sparc.c (sparc_override_options): Disallow 64bit
13380         long double on TARGET_ARCH64.
13381
13382 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
13383
13384         * function.c (free_temps_for_rtl_expr): Don't free slots
13385         that have been pushed into a higher level.
13386
13387         Revert this patch:
13388         2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13389
13390 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13391
13392         * basic-block.h (ALLOCA_REG_SET): Remove.
13393         (INITIALIZE_REG_SET): New macro.
13394         * flow.c (update_life_info): Use it.
13395         (calculate_global_regs_live): Likewise.
13396         (propagate_block): Likewise.
13397         * global.c (build_insn_chain): Likewise.
13398         * haifa-sched.c (schedule_region): Likewise.
13399
13400 2000-03-05  Stephane Carrez  <stcarrez@worldnet.fr>
13401
13402         * dwarf2out.c (UNALIGNED_WORD_ASM_OP): Support 2 bytes pointer.
13403         (ASM_OUTPUT_DWARF_ADDR_CONST): Use UNALIGNED_WORD_ASM_OP.
13404         (DWARF_ARANGES_PAD_SIZE): New define.
13405         (output_aranges): Use it to pad the address range header.
13406         (DWARF_ROUND): Fix for non power of 2 rounding.
13407
13408 2000-03-05  Jason Merrill  <jason@casey.cygnus.com>
13409
13410         * mkdeps.c (deps_calc_target): Remove incorrect 'const'.
13411
13412 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
13413
13414         * tree.def (RTL_EXPR): Update documentation.
13415         * tree.h (RTL_EXPR_HAS_NO_SCOPE): New macro.
13416         * expr.c (expand_expr): Handle RTL_EXPR_HAS_NO_SCOPE.
13417         * function.c (preserve_rtl_expr_temp): New function.
13418         (preserve_rtl_expr_temps): Likewise.
13419         (preserve_rtl_expr_result): Use it.
13420
13421         Revert this patch:
13422         2000-03-04  Mark Mitchell  <mark@codesourcery.com>
13423
13424 2000-03-04  Thomas Schuster <Thomas.Schuster@gmx.net>
13425
13426         * regmove.c (copy_src_to_dest)  Do not create src->dest move
13427         for unchanging destination.
13428
13429 2000-03-04  Mark Mitchell  <mark@codesourcery.com>
13430
13431         * function.h (struct sequence_stack): Remove rtl_expr.
13432         (struct emit_staus): Likewise.
13433         (seq_rtl_expr): Remove.
13434         * tree.h (free_temps_for_rtl_expr): Don't declare.
13435         (start_sequence_for_rtl_expr): Likewise.
13436         * rtl.h (preserve_rtl_expr_result): Likewise.
13437         * emit-rtl.c (start_sequence): Don't set sequence_rtl_expr.
13438         (start_sequence_for_rtl_expr): Remove.
13439         (push_topmost_sequence): Don't save sequence_rtl_expr.
13440         (pop_topmost_sequence): Remove comment about not restoring it.
13441         (end_sequence): Don't set seq_rtl_expr.
13442         (init_emit): Don't initialize it.
13443         (mark_sequence_stack): Don't mark it.
13444         (mark_emit_status): Likewise.
13445         * except.c (protect_with_terminate): Use
13446         start_sequence_for_rtl_expr, not start_sequence.
13447         * expr.c (expand_expr, case RTL_EXPR): Don't call
13448         preserve_rtl_expr_result or free_temps_for_rtl_expr.
13449         * function.c (assign_stack_temp_for_type): Don't set rtl_expr.
13450         (preserve_rtl_expr_result): Remove.
13451         (free_temps_for_rtl_expr): Likewise.
13452         (pop_temp_slots): Likewise.
13453         (mark_temp_slot): Don't mark the rtl_expr.
13454         * stmt.c (expand_start_stmt_expr): Use start_sequence, not
13455         start_sequence_for_rtl_expr.
13456
13457 2000-03-04  Zack Weinberg  <zack@wolery.cumb.org>
13458
13459         * mkdeps.c, mkdeps.h: New files.
13460         * po/POTFILES.in: Add them.
13461         * Makefile.in (LIBCPP_OBJS): Add mkdeps.o.
13462         (cpplib.o, cppinit.o): Depend on mkdeps.h.
13463         (mkdeps.o): New target.
13464
13465         * cppfiles.c: Delete deps_output.
13466         * cppinit.c: Include mkdeps.h.  Delete known_suffixes,
13467         OBJECT_SUFFIX, and base_name.
13468         (cpp_cleanup): Use deps_free.  Free ihash->name when clearing
13469         the include hash.
13470         (initialize_dependency_output): Use deps_init,
13471         deps_add_target, deps_calc_target, and deps_add_dep.  Remove
13472         all the unnecessary string bashing.
13473         (cpp_finish): Use deps_write.  Remove an unnecessary nesting
13474         level.
13475         * cpplib.c (do_include): Use deps_add_dep.
13476         * cpplib.h (struct cpp_reader): Replace deps_buffer,
13477         deps_allocated_size, deps_size, deps_column members with
13478         single pointer to a struct deps.  Delete prototype of
13479         deps_output.
13480
13481         * cppinit.c: Fix thinko in previous patch.
13482
13483 Sat Mar  4 11:32:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13484
13485         * machmode.h (mode_for_size, smallest_mode_for_size): SIZE now signed.
13486         * stor-layout.c (mode_for_size, smallest_mode_for_size): Likewise.
13487         (mode_for_size_tree): New function.
13488         (layout_decl, layout_type): Call it and clean up BLKmode checks.
13489         * tree.h (mode_for_size_tree): New declaration.
13490
13491         * toplev.c (debug_ignore_block): Mark arg BLOCK as possibly unused.
13492
13493 2000-03-04  Jason Merrill  <jason@casey.cygnus.com>
13494
13495         * stmt.c (is_body_block): Move...
13496         * dwarfout.c, dwarf2out.c: ...from here.
13497         * tree.h: Declare it.
13498         * emit-rtl.c (remove_unncessary_notes): Don't remove the body block.
13499         * final.c (final_start_function): Do call remove_unnecessary_notes
13500         when scheduling.
13501
13502 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
13503
13504         * config/vax/xm-vms.h: Define OBJECT_SUFFIX and EXECUTABLE_SUFFIX.
13505
13506         * cpplib.h (_dollar_ok): New macro.
13507         (is_idchar, is_idstart): Use it.
13508         (IStable): Rename to _cpp_IStable.  Declare it const if
13509         gcc >=2.7 or C99.  Delete all references to FAKE_CONST.
13510         (is_idchar, is_idstart, is_numchar, is_numstart, is_hspace,
13511         is_space): Update for renamed IStable.
13512
13513         * cppinit.c: Delete all references to FAKE_CONST and CAT
13514         macros. Define init_IStable as empty macro if gcc >=2.7 or
13515         C99. Change TABLE() to ISTABLE and hardcode name of table.
13516         (cpp_start_read): Don't change the IStable based on
13517         dollars_in_ident.
13518
13519         * cpphash.c (unsafe_chars): Add pfile argument.  All callers
13520         changed.  Handle '$' for char1 correctly.
13521         * cpplib.c (cpp_get_token): Use is_numchar when parsing numbers.
13522
13523         * cppexp.c (tokentab2): Make const.
13524         (cpp_lex): Make toktab const.
13525         * cppinit.c (include_defaults_array): Make const.
13526         (initialize_standard_includes): Make default_include const.
13527
13528 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
13529
13530         * dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
13531         (dwarf2out_decl): Functions can now have DECL_IGNORED_P.
13532         (gen_decl_die): Likewise.
13533         * dwarfout.c (dwarfout_file_scope_decl): Likewise.
13534         (output_decl): Likewise.
13535
13536         * varasm.c (make_function_rtl): If we change the name used in the
13537         rtl, update DECL_ASSEMBLER_NAME accordingly.
13538         (make_decl_rtl): Likewise.
13539
13540         * toplev.c (rest_of_compilation): Tweak formatting.
13541
13542         * toplev.c (rest_of_compilation): find_loop_tree_blocks before
13543         remove_unnecessary_notes.
13544         (debug_ignore_block): New fn.
13545         * toplev.h: Declare it.
13546         * emit-rtl.c (remove_unncessary_notes): Call it.
13547         * dwarf2out.c (dwarf2out_ignore_block): New fn.
13548         * dwarf2out.h: Declare it.
13549         * final.c (final_start_function): Don't call remove_unnecessary_notes
13550         if we did insn scheduling.
13551
13552 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
13553
13554         * cppinit.c (cpp_handle_option): Set opts->pedantic directly.
13555         * cpplib.h: Delete SET_CPP_PEDANTIC.
13556
13557 Fri Mar  3 14:56:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13558
13559         * expr.c (expand_expr, case COMPONENT_REF): Use bitfield case if
13560         result is a RECORD_TYPE.
13561
13562 2000-03-03  Jonathan Larmour  <jlarmour@cygnus.co.uk>
13563
13564         * mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
13565
13566 2000-03-03  Richard Henderson  <rth@cygnus.com>
13567
13568         * alpha.c (alpha_emit_set_const_1): Re-order cases to prefer
13569         addition over compliments over shifts.
13570
13571 Fri Mar  3 12:49:28 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13572
13573         * reload1.c (reload_combine_note_use): Handle return register USEs.
13574         REG case: Handle multi-hard-register hard regs.
13575
13576 Fri Mar  3 07:38:34 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13577
13578         * md.texi: Document use of '*' in insn pattern name.
13579
13580 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
13581
13582         * calls.c (special_function_p): operator new may not be malloc-like.
13583
13584         * gcse.c (dump_hash_table): Really fix error in last change.
13585
13586 2000-03-02  Denis Chertykov  <denisc@overta.ru>
13587
13588         * avr.c (print_operand): Use print_operand_address instead of
13589         output_addr_const.
13590         * avr/libgcc.S: Cleanup code.
13591
13592 2000-03-02  Richard Henderson  <rth@cygnus.com>
13593
13594         * alpha.c (alpha_emit_set_const_1): Also try c + small constant.
13595
13596 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
13597
13598         * tree.h (TYPE_ALIGN_UNIT): New macro.
13599
13600 2000-03-02  Clinton Popetz  <cpopetz@cygnus.com>
13601
13602         * i386.c: (constant_call_address_operand): Reject CONST_INT.
13603
13604 2000-03-02  Jason Merrill  <jason@casey.cygnus.com>
13605
13606         * cpplib.h (CPP_PEDANTIC): Only true if system_header_p is not set
13607         for the buffer.
13608         (SET_CPP_PEDANTIC): New macro.
13609         * cpplib.c (do_include): Don't bother checking system_header_p.
13610         (do_warning, do_ident, do_assert, do_unassert): Likewise.
13611         * cppinit.c (cpp_handle_option): Use SET_CPP_PEDANTIC.
13612
13613         * function.h (struct expr_status): Add x_arg_space_so_far.
13614         (arg_space_so_far): New macro.
13615         * expr.c (init_expr): Initialize it.
13616         * calls.c (emit_call_1): Reset it.
13617         (compute_argument_block_size, expand_call): Use it.
13618         (expand_call, store_one_arg): Increment it.
13619
13620 Thu Mar  2 17:27:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13621
13622         * varasm.c (output_constant): Strip off a CONVERT_EXPR to
13623         a UNION_TYPE.
13624
13625 2000-03-02  Zack Weinberg  <zack@wolery.cumb.org>
13626
13627         * cppfiles.c (cpp_read_file): New function.
13628
13629         * cpphash.c (collect_expansion): Make sure to reset last_token
13630         to NORM when we hit a string.  Handle trailing whitespace
13631         properly when the expansion is empty.
13632         (create_definition): Disable line commands while parsing the
13633         directive line.
13634         (dump_definition): If pfile->lineno == 0, output a line
13635         command ahead of the dump, and add a trailing newline.
13636
13637         * cppinit.c (append_include_chain): Add fifth argument, which
13638         indicates whether or not system headers are C++ aware.
13639         (initialize_standard_includes): New function,
13640         broken out of read_and_prescan.  Pass 'cxx_aware' value from
13641         the include_defaults_array on to append_include_chain.
13642         (dump_special_to_buffer): Const-ify char array.
13643         (builtin_array): Don't dump __BASE_FILE__.
13644         (cpp_start_read): Use cpp_read_file.  Reorder code for
13645         clarity.  Don't output line commands here for -D/-A/-U
13646         switches.  Don't call deps_output for files included with
13647         -include or -imacros.
13648
13649         * cpplib.c (do_define): Don't pay any attention to the second
13650         argument.
13651         (cpp_expand_to_buffer): Disable line commands while scanning.
13652         (output_line_command): Work in the file buffer.
13653         * cpplib.h: Remove no_record_file flag from struct cpp_reader.
13654         Fix formatting of comments.  Prototype cpp_read_file.
13655
13656 Thu Mar  2 13:29:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13657
13658         * c-common.c (c_common_nodes_and_builtins): Make sizetype_endlink
13659         reference the language-equivalent of sizetype.
13660         * c-typeck.c (comptypes): Treat sizetype like its language equivalent.
13661         * fold-const.c (size_binop, size_diffop): Put back checks.
13662         * gcse.c (dump_hash_table): Fix minor error in last change.
13663         * stor-layout.c (set_sizetype): Set TYPE_DOMAIN of sizetype.
13664         Clear TYPE_{NEXT,MAIN}_VARIANT and TYPE_{POINTER,REFERENCE}_to of
13665         all sizetypes.
13666
13667 Thu Mar  2 12:48:45 MET 2000  Jan Hubicka  <jh@suse.cz>
13668
13669         * calls.c (expand_call)  Do not attempt to combine stack adjustments
13670         with inhibit_defer_pop set.
13671
13672 2000-03-01  Mark Mitchell  <mark@codesourcery.com>
13673
13674         * stor-layout.c (layout_decl): Allow front-ends to explicitly set
13675         the DECL_SIZE for a FIELD_DECL.
13676
13677 2000-03-01  Bruce Korb  <bkorb@gnu.org>
13678
13679         * fixinc/inclhack.tpl: remove unused symlinks
13680         * fixinc/README: GCC Maintainer info
13681         * fixinc/inclhack.sh: regen
13682         * fixinc/fixincl.sh: regen
13683
13684 2000-03-01  Zack Weinberg  <zack@wolery.cumb.org>
13685
13686         * cpphash.c (collect_expansion): Trim trailing white space
13687         from macro definitions, but don't go past the last insertion
13688         point.
13689
13690 Wed Mar  1 12:14:31 MET 2000  Jan Hubicka  <jh@suse.cz>
13691
13692         * i386.md (mulqi3): New pattern.
13693
13694 2000-02-29  Zack Weinberg  <zack@wolery.cumb.org>
13695
13696         * cpplib.h (CPP_ASSERTION, CPP_STRINGIZE, CPP_TOKPASTE): New
13697         token types.
13698         (struct cpp_reader): Add parsing_if_directive and
13699         parsing_define_directive flags.
13700         (struct cpp_options): Remove output_conditionals flag.
13701         (check_macro_name): Delete prototype.
13702
13703         * cpphash.h (struct macrodef): Delete.
13704         (struct reflist): Separate from struct definition.
13705         (struct definition): Remove unused fields.  Add column number.
13706         (create_definition): Returns a DEFINITION *.  Takes a
13707         cpp_reader * and an int.
13708
13709         * cpphash.c (SKIP_WHITE_SPACE): Delete.
13710         (PEEKC): Copy defn from cpplib.c.
13711         (rest_extension, REST_EXTENSION_LENGTH): Delete.
13712         (struct arg): New.
13713         (struct arglist): Simplify.
13714         (collect_expansion): Rewrite.  Get tokens by calling
13715         cpp_get_token.  Add more error checking.
13716         (collect_formal_parameters): New function, broken out of
13717         create_definition and reworked to use get_directive_token.
13718         (create_definition): All real work is now in collect_expansion
13719         and collect_formal_parameters.  do_define handles finding the
13720         macro name.  Return a DEFINITION, not a MACRODEF.
13721         (macroexpand): Replace bcopy with memcpy throughout.  Replace
13722         character-at-a-time copy loop with memcpy and pointer increments.
13723         (compare-defs): d1->argnames / d2->argnames might be null.
13724
13725         * cpplib.c (copy_rest_of_line): Delete function.
13726         (skip_rest_of_line): Do all the work ourselves.
13727         (skip_string): New function.
13728         (parse_string): Use skip_string.
13729         (get_macro_name): New function.
13730         (check_macro_name): Delete.
13731         (copy_comment): Use CPP_RESERVE and CPP_PUTC_Q.
13732         (cpp_skip_hspace): Use CPP_BUMP_LINE.
13733         (handle_directive): ICE if we're called on a macro buffer.
13734         (do_define): Determine macro name and type (funlike/objlike)
13735         here.  Expunge all uses of MACRODEF.
13736         (cpp_push_buffer): Set line_base to NULL.
13737         (do_undef, read_line_number): Don't worry about getting a POP token.
13738         (eval_if_expression): Set/reset parsing_if_directive around
13739         cpp_parse_expr. Don't clear only_seen_white.
13740         (skip_if_group): Remove output_conditionals logic.  Use
13741         skip_rest_of_line.
13742         (cpp_get_token): Return ASSERTION, STRINGIZE, and TOKPASTE
13743         tokens under appropriate conditions.
13744         (cpp_unassert): Call do_unassert not do_assert.  Oops.
13745
13746         * cppexp.c (parse_defined): New function, break out of
13747         cpp_lex.
13748         (cpp_lex): We now get CPP_ASSERTION tokens and can check them
13749         ourselves, with cpp_defined.
13750         * cppinit.c (cpp_handle_option, print_help): Delete -ifoutput.
13751
13752         * gcc.dg/20000209-2.c: Turn off -pedantic-errors.
13753         * gcc.dg/strpaste-2.c: New.
13754
13755 2000-02-29  Mark Mitchell  <mark@codesourcery.com>
13756
13757         * fold-const.c (size_binop): Don't asert inputs are the same and
13758         have TYPE_IS_SIZETYPE set.
13759         (size_diffop): Likewise.
13760
13761 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
13762
13763         * dwarfout.c (output_block): Output abstract blocks even if they
13764         don't have TREE_ASM_WRITTEN set.
13765
13766         * calls.c (emit_library_call): Check for null REG.
13767
13768 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
13769
13770         * c-decl.c (current_function_decl): Move to toplev.c.
13771         (init_decl_processing): Don't add current_function_decl as a ggc
13772         root here.
13773         * dbxout.c (dbxout_symbol): Change return type to int.
13774         (dbxout_symbol_location, dbxout_syms): Likewise.
13775         (dbxout_block): Don't emit LBRAC/RBRAC pairs for blocks without
13776         any locals. Use current_function_func_begin_label if set.
13777         * dbxout.h (dbxout_symbol, dbxout_syms): Change return type.
13778         * dwarf2out.c (dwarf2out_begin_prologue): Set
13779         current_function_func_begin_label.
13780         * final.c (final_start_function): Reset it.
13781         * toplev.c (current_function_decl): Define it here.
13782         (current_function_func_begin_label): New variable.
13783         (main): Add both as ggc roots.
13784         * tree.h (current_function_func_begin_label): Declare.
13785
13786 Tue Feb 29 14:07:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13787
13788         * gcse.c: Cleanups throughout: mostly white-space, but also
13789         some minor rearrangement of code.
13790
13791 Tue Feb 29 10:45:59 2000  Jeffrey A Law  (law@cygnus.com)
13792
13793         * calls.c (emit_library_call): Do not abort if FUNCTION_ARG
13794         returns a PARALLEL.  Use emit_group_load and use_group_regs
13795         as needed.
13796         (emit_library_call_value): Similarly.
13797
13798         * pa/t-pa: Use quadlib.c instead of quadlib.asm.
13799         * pa/quadlib.asm: Remove.
13800         * pa/quadlib.c: New file.
13801
13802         * configure.in (hpux10, hpux11, PA32 mode): Use i128 float format.
13803         * configure: Rebuilt.
13804
13805 2000-02-29  Philip Blundell  <pb@futuretv.com>
13806
13807         * config/arm/conix-elf.h: New file.
13808         * configure.in (arm*-*-conix*): New configuration.
13809         * configure: Regenerate.
13810
13811 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
13812
13813         * dwarf2out.c (gen_block_die): Output abstract blocks even if they
13814         don't have TREE_ASM_WRITTEN set.
13815
13816 Mon Feb 28 21:07:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13817
13818         * Eliminate DECL_FIELD_SIZE.
13819         * builtins.c (built_in_class_names, built_in_names): New variables.
13820         * c-decl.c (finish_struct): Set specified size in DECL_SIZE.
13821         * expr.c (expand_expr, case COMPONENT_REF): Get field size from
13822         DECL_SIZE, not DECL_FIELD_SIZE.
13823         * print-tree.c (print_node): Remove code that prints extra blank
13824         lines in some cases.
13825         Properly handle inline and builtin function cases.
13826         * stor-layout.c (layout_decl): Get specified size from DEC_SIZE.
13827         * tree.h (built_in_class_named, built_in_names): New declarations.
13828         (union tree_decl): Rename internal unions to u1 and u2 and change
13829         some of their components.
13830         Add new field built_in_class.
13831         (DECL_ALIGN, DECL_INCOMING_RTL, DECL_SAVED_INSNS, DECL_FRAME_SIZE):
13832         Reflect above changes.
13833         (DECL_FUNCTION_CODE, DECL_BUILT_IN_CLASS): Likewise.
13834         (DECL_SET_FUNCTION_CODE, DECL_FIELD_SIZE): Deleted.
13835         * objc/objc-act.c (objc_copy_list): Use DECL_SIZE, not DECL_FIELD_SIZE.
13836         (encode_field_decl): Likewise; also remove obsolete test for bitfield.
13837
13838 2000-02-28  Dmitri Makarov  <dim@windriver.com>
13839
13840         * extend.texi: Document ARM's support for long/short calls.
13841
13842         * invoke.texi: Document ARM's -mlong-calls command line switch.
13843
13844         * config/arm/arm-protos.h (arm_is_longcall_p): Add prototype.
13845         (arm_encode_call_attribute): Add prototype.
13846         (arm_set_default_type_attribute): Add prototype.
13847         (arm_strip_name_encoding): Add prototype.
13848
13849         * config/arm/arm.c (arm_init_cumulative_args): replace
13850         initialisation og 'long_calls' field with initialisation of
13851         'call_cookie' field.
13852         (enum arm_pragma_enum): New enum.
13853         (arm_pragma_long_calls): New static variable.
13854         (arm_process_pragma): Also process "#pragma long_calls_off".
13855         (arm_valid_type_attribute_p): Accept short_call attribute.
13856         (arm_comp_type_attributes): Check long/short call attributes.
13857         (arm_encode_call_attribute):  New function:  Encode long_call
13858         or short_call attribute in function name.
13859         (arm_set_default_type_attributes): New function: Assign
13860         default attributes to newly defined type.
13861         (current_file_function_operand): New function: Return true if
13862         the symbol is a function which has already been compiled.
13863         (arm_is_longcall_p): New function: Return true if the
13864         indicated function should be called via a long call.
13865         (arm_get_strip_length): New function.  Returns number of
13866         prefix characters to be stripped from a function's name.
13867         (arm_strip_name_encoding): New function.  Strip prefix characters
13868         from a function's name.
13869
13870         * config/arm/arm.h (CUMULATIVE_ARGS): Replace 'long_call' field
13871         with 'call_cookie'.
13872         (SHORT_CALL_FAG_CHAR): Define.
13873         (LONG_CALL_FAG_CHAR): Define.
13874         (ENCODED_SHORT_CALL_ATTR_P): Define.
13875         (ENCODED_LONG_CALL_ATTR_P): Define.
13876         (ARM_NAME_ENCODING_LENGTHS): Define.
13877         (STRIP_NAME_ENCODING): Define.
13878         (ASM_OUTPUT_LABELREF): Define, and use to strip name encoding.
13879         (ARM_ENCODE_CALL_TYPE): Define.
13880         (ENCODE_SECTION): Invoke ARM_ENCODE_CALL_TYPE.
13881         (ARM_DECLARE_FUNCTION_SIZE): Define.
13882         (SET_DEFAULT_TYPE_ATTRIBUTES): Define.
13883
13884         * config/arm/arm.md (call): Call arm_is_longcall_p to decide
13885         if a long call is needed.
13886         (call_value): Ditto.
13887         (call_symbol): Ditto.
13888
13889         * config/arm/elf.h (ASM_DECLARE_FUNCTION_SIZE): Add invocation of
13890         ARM_DECLARE_FUNCTION_SIZE.
13891
13892         * config/arm/pe.h (ARM_PE_FLAG_CHAR): Define.
13893         (SUBTARGET_NAME_ENCODING_LENGTHS): Define.
13894         (ARM_STRIP_NAME_ENCODING): Undefine.
13895         (STRIP_NAME_ENCODING): Undefine.
13896         (ASM_OUTPUT_LABELREF): Use arm_strip_name_encoding.
13897         (ASM_DECLARE_FUNCTION_NAME): Ditto.
13898         (ASM_OUTPUT_COMMON): Ditto.
13899         (ASM_DECLARE_OBJECT_NAME): Ditto.
13900
13901         * config/arm/pe.c (arm_dllexport_name_p): Check for
13902         ARM_PE_FLAG_CHAR.
13903         (arm_dllimport_name_p): Ditto.
13904         (arm_mark_dllexport): Use ARM_PE_FLAG_CHAR.
13905         (arm_mark_dllimport): Ditto.
13906
13907 Mon Feb 28 22:11:12 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13908
13909         * sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Define.
13910
13911 2000-02-28  Mark Mitchell  <mark@codesourcery.com>
13912
13913         * xcoffout.c (xcoffout_begin_function): Fix typo in previous change.
13914
13915 2000-02-28  Zack Weinberg  <zack@wolery.cumb.org>
13916
13917         * tm.texi: Document new target switch, NO_BUILTIN_WCHAR_TYPE.
13918         * cppinit.c (builtin_array): Define __WCHAR_TYPE__ only if
13919         NO_BUILTIN_WCHAR_TYPE is not defined.
13920         (CPP_WCHAR_TYPE): Delete.
13921         * cccp.c (main): Don't change wchar_type if cplusplus.
13922         (special_symbol, initialize_builtins): Honor NO_BUILTIN_WCHAR_TYPE.
13923
13924 2000-02-28  Nick Clifton  <nickc@cygnus.com>
13925
13926         * config/arm/arm-wince-pe.h (SIZE_TYPE): Define to "unsigned long".
13927
13928 Mon Feb 28 14:21:15 2000  Catherine Moore  <clm@cygnus.com>
13929
13930         * config/pa/som.h (MAKE_DECL_ONE_ONLY): Define.
13931         (ASM_WEAKEN_LABEL): Define.
13932
13933 Mon Feb 28 13:07:19 MET 2000  Jan Hubicka  <jh@suse.cz>
13934
13935         * expr.c (store_constructor): Do not emit USE.
13936         * rtl.h (stupid_life_analysis): Remove.
13937
13938 Mon Feb 28 07:03:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13939
13940         * function.c (number_blocks): Reset next_block_index based on
13941         what debugging format is used, not what is defined.
13942
13943         * lcm.c: Minor reformatting throughout.
13944         (reg_dies, reg_becomes_live): Properly handle multiple hard regs.
13945
13946         * toplev.c (rest_of_compilation): Account for time in
13947         optimize_mode_switching.
13948
13949         * jump.c (jump_optimize_1): Don't call delete_barrier_successors
13950         if only marking labels.
13951
13952 Mon Feb 28 12:53:57 MET 2000  Jan Hubicka  <jh@suse.cz>
13953
13954         * calls.c (expand_call): Attempt to combine stack adjustments with
13955         pending stack adjustments.
13956
13957 Mon Feb 28 11:34:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
13958
13959         * loop.c (reg_in_basic_block_p): Don't abort when falling through
13960         to the end of the function.
13961
13962 2000-02-27  Mark Mitchell  <mark@codesourcery.com>
13963
13964         * emit-rtl.c (remove_unncessary_notes): Remove notes for empty
13965         blocks.
13966         * final.c (next_block_index): Remove.
13967         (max_block_depth): Likewise.
13968         (pending_blocks): Likewise.
13969         (init_final): Don't initialize them.
13970         (final_start_function): Don't set next_block_index.  Set up
13971         BLOCK_NUMBER.
13972         (final_scan_insn): Use BLOCK_NUMBER, not next_block_index.
13973         * function.h (number_blocks): New function.
13974         * function.c (get_block_vector): New function.
13975         (identify_blocks): Use it.
13976         (reorder_blocks): Set NOTE_BLOCK.
13977         (number_blocks): New function.
13978         * tree.def (BLOCK): Add documentation for TREE_ASM_WRITTEN flag.
13979         * tree.h (BLOCK_NUMBER): New macro.
13980         (tree_block): Add block_num field.
13981         * dbxout.c (next_block_number): Remove.
13982         (dbxout_init): Don't set it.
13983         (dbxout_block): Only output blocks that have TREE_ASM_WRITTEN
13984         set.  Use BLOCK_NUMBER, rather than next_block_num, to determine
13985         block numbers.
13986         * toplev.c (rest_of_compilation): Always call
13987         find_loop_tree_blocks.  Fix indentation.
13988         * dwarf2out.c (next_block_number): Remove.
13989         (gen_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
13990         to determine block numbers.
13991         (gen_inlined_subroutine_die): Likewise.
13992         (gen_block_die): Only output blocks that have TREE_ASM_WRITTEN set.
13993         (decls_for_scope): Don't increment next_block_number.
13994         * dwarfout.c (next_block_number): Remove.
13995         (output_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
13996         to determine block numbers.
13997         (output_inlined_subroutine_die): Likewise.
13998         (output_block): Only output blocks that have TREE_ASM_WRITTEN set.
13999         (output_decls_for_scope): Don't increment next_block_number.
14000         * sdbout.c (next_block_number): Remove.
14001         (sdbout_block): Use BLOCK_NUMBER.
14002         (sdbout_begin_block): Simplify.
14003         * xcoffout.c (next_block_number): Remove.
14004         (xcoffout_block): Use BLOCK_NUMBER, not next_block_number.
14005         (xcoffout_begin_block): Don't set next_block_number.
14006         (xcoffout_begin_function): Likewise. Use BLOCK_NUMBER, not
14007         next_block_number.
14008
14009 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14010
14011         * builtins.c (c_strlen): Use size_diffop and return ssizetype value.
14012         (expand_builtin_strcpy): Pass correct type to size_binop.
14013         (expand_builtin_strcmp): Likewise.
14014         Clean up conditional structure.
14015         * c-decl.c (init_decl_processing): Don't call set_sizetype twice.
14016         (complete_array_type): Don't use size_binop for MAXINDEX.
14017         * c-typeck.c (c_sizeof): Use size_one_node and TYPE_SIZE_UNIT.
14018         (c_sizeof_nowarn, c_size_in_bytes): Likewise.
14019         (c_alignof): Use size_one_node.
14020         (build_unary_op): Pass arg of proper type to size_binop.
14021         (really_start_incremental_init, push_init_level): Use sizetype for
14022         constructor{,_bit,_unfilled}_index.
14023         (pop_init_label, output_init_element): Likewise.
14024         (output_pending_init_elements, process_init_element): Likewise.
14025         * calls.c (compute_argument_block_size): Field VAR is ssizetype.
14026         * expr.c (store_expr): Use size_int.
14027         (store_constructor): Use proper types for size_binop args.
14028         (get_inner_reference, expand_expr, case ARRAY_REF): Likewise.
14029         (expand_expr_unaligned): Likewise.
14030         (string_contant): Return object of sizetype.
14031         * expr.h (SUB_PARM_SIZE): Call size_diffop and pass proper types.
14032         (ARGS_SIZE_RTX): Call ARGS_SIZE_TREE.
14033         (ARGS_SIZE_TREE): Pass proper types to size_binop.
14034         * fold-const.c (int_const_binop): Refine when size_int is called.
14035         (fold_convert): Likewise.
14036         (size_int_wide): Rework to take KIND as arg, only take low order
14037         bits, handle new sizetype_tab datatype, and chain entries in
14038         size_table.
14039         (size_int_type_wide): New function.
14040         (size_binop): Validate types of arguments.
14041         (ssize_binop): Deleted.
14042         (size_diffop): New function.
14043         (extract_muldiv): Only fold division into multiplication for sizetypes.
14044         * function.c (assign_parms): Use size_diffop and make sure
14045         VAR field is of ssizetype; also pass proper type to size_binop.
14046         (locate_and_pad_parm, pad_to_arg_alignment): Likewise.
14047         (round_down): Deleted from here.
14048         * store-layout.c (sizetype_tab): Now an array.
14049         (sizetype_set, early_root_list): New variables.
14050         (variable_size): Use size_one_node.
14051         (round_up): Pass proper type to size_binop.
14052         (round_down): Moved to here and corrected as above.
14053         (layout_record): Pass proper arg types to size_binop.
14054         (layout_type): Likewise.
14055         If sizetype_set is zero, record the type just laid out.
14056         (make_unsigned_type): Don't call set_sizetype;
14057         (make_signed_type): Likewise; also, call fixup_signed_type.
14058         (initialize_sizetypes): New function.
14059         (set_sizetype): Make copy of types, set TYPE_IS_SIZETYPE, and
14060         set name of bitsizetype to "bit_size_type".
14061         Fix up type of sizes of all types made before call.
14062         * tm.texi (ROUND_TYPE_SIZE_UNIT): New macro.
14063         * tree.c (fix_sizetype): Deleted.
14064         (build_common_tree_nodes): Call initialize_sizetypes.
14065         (build_common_tree_nodes_2): Don't call fix_sizetype.
14066         * tree.h (TYPE_IS_SIZETYPE): New macro.
14067         (initialize_sizetype): New declaration.
14068         (enum size_type_kind): New type.
14069         (struct sizetype_tab): Deleted.
14070         (sizetype_tab): Now array; adjust sizetype macros.
14071         (size_diffop, size_int_type_wide): New functions.
14072         (size_int_wide): Change number of args and type; access macros changed.
14073         (ssize_int, sbitsize_int): New macros.
14074         * config/i960/i960.h (ROUND_TYPE_SIZE): Use size_int.
14075         (ROUND_TYPE_SIZE_UNIT): New macro.
14076
14077 2000-02-27  Zack Weinberg  <zack@wolery.cumb.org>
14078
14079         * c-lex.c (putback_buffer): Make 'buffer' an unsigned char *.
14080
14081 Sun Feb 27 07:44:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14082
14083         * gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
14084         Mark as possibly unused.
14085
14086         * cse.c (cse_insn): Delete dead code involving tablejump.
14087         Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
14088
14089         * Makefile.in (libcpp.a): Start by deleting it.
14090
14091 2000-02-27  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14092
14093         * cpplib.h (enum file_change_code): Added rename_file.
14094         * cpplib.c (do_line): If a filename is given, set file_change to
14095         rename_file.
14096         (output_line_command): If file_change is rename_file, always
14097         output a # directive with the file name.
14098
14099         * cpplib.c (do_pragma): Accept #pragma without consecutive token.
14100
14101 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
14102
14103         * integrate.c (copy_decl_for_inlining): Preserve TREE_ADDRESSABLE
14104         when copying a PARM_DECL or RESULT_DECL.
14105
14106 2000-02-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14107
14108         * fix-header.c (recognized_function): Also fix prototypes for
14109         functions taking "void".
14110
14111 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
14112
14113         * reload1.c (do_output_reload): Check reg_reloaded_valid before
14114         looking at reg_reloaded_contents.
14115
14116 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
14117
14118         * Makefile.in (STMP_FIXINC): New toggle.
14119         (LIBGCC2_DEPS): Delete all references.
14120         (stmp-headers): Delete target.  All references either deleted
14121         or changed to stmp-int-headers.
14122         (all.cross): Don't depend on stmp-headers or STMP_FIXPROTO.
14123         (LIBCPP_OBJS): Take out cppalloc.o.
14124         (cppalloc.o): Delete target.
14125         (stmp-int-hdrs): Depend on $(STMP_FIXINC).
14126         (gen-protos, fix-header): Link with libiberty.a.
14127         * build-make: Don't change FIXINCLUDES.  Override STMP_FIXINC
14128         to empty.
14129
14130         * configure.in: Remove refs to strerror.
14131         * acconfig.h: Take out NEED_DECLARATION_STRERROR.
14132         * system.h: Take out strerror stanza.
14133
14134         * cpperror.c (my_strerror): Delete function.
14135         (cpp_error_from_errno, cpp_notice_from_errno): Use xstrerror.
14136         * cppmain.c (main): Call xmalloc_set_program_name first thing.
14137         * cppalloc.c: Delete file.
14138         * gen-protos.c: Don't provide xrealloc.
14139
14140         * fixinc/fixincl.c, fixinc/fixlib.c, fixinc/procopen.c: Use
14141         xstrerror throughout.
14142
14143 2000-02-26  Bruce Korb  <bkorb@gnu.org>
14144
14145         * fixinc/inclhack.def (undefine_null): the bypass pattern needs to
14146         match for DOS headers, too.
14147         * fixinc/inclhack.sh,fixincl.x: Regenerate.
14148
14149 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
14150
14151         * config/elfos.h (ASM_OUTPUT_LABELREF): Don't define.  The default
14152         is right for most ELF targets.
14153         * config/ns32k/ns32k.h (ASM_OUTPUT_LABELREF): Don't define.
14154         Let the default file use %U properly.
14155         * config/sh/elf.h (ASM_OUTPUT_LABELREF): Don't define.  Use the
14156         default.
14157
14158         * config/fp-bit.c (pack_d): Properly handle rounding of denormal
14159         numbers.
14160
14161 Sat Feb 26 09:39:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14162
14163         * toplev.c (documented_lang_options): Correct spelling error.
14164         (decode_d_option, decode_f_option, main): Likewise.
14165
14166         * toplev.c (print_time): Avoid SIGFPE when all_time is zero.
14167
14168         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Use .set at
14169         to tell assembler it is permitted to expand large constants.
14170
14171 2000-02-25  Mumit Khan  <khan@xraylith.wisc.edu>
14172
14173         * protoize.c: (AUX_INFO_SUFFIX): New macro.
14174         (aux_info_suffix): Use.
14175         (SAVE_SUFFIX): New macro.
14176         (save_suffix): Use.
14177         (munge_compile_parms): Fix typo in NUL. DJGPP supports /dev/null.
14178         (gen_aux_info_file): Use aux_info_suffix instead of ".X".
14179         (edit_file): Handle 8.3 restriction for DOS/DJGPP filenames.
14180
14181         * invoke.texi (Running Protoize): Update documentation.
14182
14183 2000-02-25 Mark Elbrecht <snowball3@bigfoot.com>
14184
14185         * i386/djgpp.h (CPP_PREDEFINES): Remove Unix defines.
14186
14187 2000-02-25  John Wehle  (john@feith.com)
14188
14189         * rtlanal.c (find_last_value): Allow NULL_RTX for valid_to.
14190
14191 2000-02-25  Anthony Green  <green@cygnus.com>
14192
14193         * toplev.c (rest_of_compilation): Rebuild jump labels if
14194         combine_instructions has created a new direct jump.
14195         * combine.c (try_combine): Add new_direct_jump_p argument.  Set it
14196         when appropriate.
14197         (combine_instructions): Call try_combine with new argument.
14198         Return non-null value when new direct jump instruction is created.
14199         * rtl.h: combine_instructions returns an int.
14200
14201 Fri Feb 25 19:49:08 2000  Jeffrey A Law  (law@cygnus.com)
14202
14203         * cse.c (cse_insn): Replace the PATTERN of the insn with an new
14204         jump when changing a computed jump into a jump to a known
14205         target.
14206
14207 Fri Feb 25 19:22:44 2000  Graham Stott <grahams@rcp.co.uk>
14208
14209         * resource.c (mark_referenced_resources): Changed use SET_DEST (...)
14210         to XEXP (..., 0) on RTL nodes which are not SET or CLOBBER.
14211
14212         * i386.md (define_expand "clrstrsi"): Fix typo.
14213
14214 Fri Feb 25 18:49:39 2000  "K. Richard Pixley" <rich@microunity.com>
14215
14216         * rtl.texi: Fix typo.
14217
14218 Fri Feb 25 20:02:35 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14219
14220         * sh.c (calc_live_regs): Multiply value assigned to *COUNT_PTR by
14221         UNITS_PER_WORD.  Change caller initial_elimination_offset.
14222         (rounded_frame_size): Take into account that argument pushed has
14223         changed.  Fix TARGET_ALIGN_DOUBLE problem.
14224
14225 2000-02-25  Geoff Keating  <geoffk@cygnus.com>
14226
14227         * haifa-sched.c (schedule_block): Explain the real reason
14228         we delete REG_SAVE_NOTEs on the first insn of a block.
14229         Don't delete REG_SAVE_NOTES for NOTE_INSN_SETJMP.
14230
14231 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
14232
14233         * input.h (push_srcloc): New function.
14234         (pop_srcloc): Likewise.
14235         * toplev.c (push_srcloc): Define it.
14236         (pop_srcloc): Likewise.
14237
14238 2000-02-24  Richard Henderson  <rth@cygnus.com>
14239
14240         * flow.c (life_analysis): When collecting reg info, clear
14241         regs_ever_live.
14242
14243 Thu Feb 24 22:06:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14244
14245         Fix bug exposed by reload.c no longer rounding the frame
14246         size to BIGGEST_ALIGNMENT:
14247         * sh.c (rounded_frame_size): New function.
14248         (sh_expand_prologue, sh_expand_epilogue): Use it.
14249         (initial_elimination_offset): Likewise.
14250
14251 Thu Feb 24 20:04:11 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14252
14253         Fix breakage from 6th Feb thread_prologue_and_epilogue_insns change:
14254         * sh-protos.h (sh_need_epilogue): Declare.
14255         * sh.c (sh_need_epilogue_known): New static variable.
14256         (sh_need_epilogue): New function.
14257         (function_epilogue): Clear need_epilogue_known.
14258         * sh.md (return): Split into expander / insn pattern.
14259         Make the expander conditional on ! sh_need_epilogue ().
14260
14261 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
14262
14263         * machmode.h (get_mode_alignment): Declare.
14264         (GET_MODE_ALIGNMENT): Call it.
14265         * stor-layout.c (get_mode_alignment): New function. Make
14266         sure alignment is always power of 2.
14267
14268 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14269
14270         * i386.h: Remove useless definition of "I386" and misleading
14271         comment above it.
14272
14273 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14274
14275         * tree.h (TREE_SET_PERMANENT): New macro.  Document conditions
14276         under which TREE_PERMANENT will be set.
14277         * tree.c (make_node, copy_node, make_tree_vec, tree_cons,
14278         build1): Use TREE_SET_PERMANENT.
14279         * print-tree.c (print_node): Don't report value of
14280         TREE_PERMANENT if ggc_p is true.
14281
14282         * c-common.c (c_get_alias_set): Don't use TREE_PERMANENT to
14283         decide whether to give a type a new alias set.
14284         * objc/objc-act.c (build_objc_string_object): Never copy the string.
14285         * tree.c (make_node): Set DECL_IN_SYSTEM_HEADER irrespective
14286         of value of 'obstack'.
14287
14288
14289 2000-02-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14290
14291         * config/c4x/c4x.c (c4x_process_after_reload): Split all insns.
14292
14293 2000-02-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14294
14295         * cpplib.h (enum cpp_token): Added CPP_WCHAR and CPP_WSTRING.
14296         * cpplib.c (cpp_get_token): Produce them.
14297         * cppexp.c (cpp_lex): Handle them.
14298
14299 2000-02-23  Nick Clifton  <nickc@cygnus.com>
14300
14301         * config/arm/arm.c (arm_comp_type_attributes): Simply and
14302         comment tests on type attributes.
14303
14304 Wed Feb 23 16:42:21 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14305
14306         * final.c (shorten_branches): Make value passed to LOOP_ALIGN
14307         conform to documentation.
14308         * sh.h (LOOP_ALIGN): If aligning loops, call sh_loop_align
14309         to check for special cases.
14310         * sh-protos.h (sh_loop_align): Declare.
14311         * sh.c (sh_loop_align): Define.
14312
14313 2000-02-22  Andrew Haley  <aph@cygnus.com>
14314
14315         * config/mips/mips.h (GAS_ASM_SPEC): Pass -mgp32/-mgp64 to gas.
14316         (SIZE_TYPE): Is 32 bits when using -mgp32.
14317         (PTRDIFF_TYPE): Ditto.
14318
14319 Wed Feb 23 07:26:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14320
14321         * diagnostic.c (init_output_buffer): Handle case of null PREFIX.
14322
14323 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
14324
14325         * config/i386/i386.h: If IN_TARGET_LIBS is defined, make
14326         BIGGEST_FIELD_ALIGNMENT a constant.
14327
14328 2000-02-21  Jason Merrill  <jason@casey.cygnus.com>
14329
14330         * dwarf2out.c (output_line_info): Put the marker for the end of
14331         the line number info at the actual end.
14332         (gen_struct_or_union_type_die): Use decl_function_context
14333         to check for local classes.
14334         * dwarfout.c (output_type): Likewise.
14335
14336 Tue Feb 22 01:38:57 2000  Jeffrey A Law  (law@cygnus.com)
14337
14338         * pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Handle pass-by-reference
14339         for arguments with a mode, but no type.
14340         (FUNCTION_ARG_CALLEE_COPIES): Similarly.
14341         * t-pa (LIB2FUNCS_EXTRA): Add quadlib.asm.
14342         * pa/long_double.h: New file.
14343         * configure.in (hpux10, hpux11 configurations): hpux10 and hpux11
14344         both have 128bit wide long doubles.
14345         * configure: Rebuilt.
14346
14347 2000-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14348
14349         * defaults.h (ASM_OUTPUT_ASCII): Constify a char*.
14350
14351         * flow.c (get_common_dest, chain_reorder_blocks, make_reorder_chain,
14352         fixup_reorder_chain, skip_insns_between_block): Add static prototypes.
14353         (life_analysis): Wrap variable `i' with macro ELIMINABLE_REGS.
14354
14355         * haifa-sched.c (rank_for_schedule): Don't cast away const-ness.
14356
14357         * integrate.c (compare_blocks, find_block): Likewise.
14358
14359         * rtl.c (fatal_with_file_and_line): Add ATTRIBUTE_PRINTF_2.
14360
14361         * rtl.h (set_file_and_line_for_stmt): Constify a char*.
14362
14363         * stmt.c (stmt_status, set_file_and_line_for_stmt,
14364         expand_asm_operands): Likewise.
14365
14366 Mon Feb 21 17:06:27 2000  Jason Eckhardt  <jle@cygnus.com>
14367
14368         * predict.c (estimate_probability): Added the pointer heuristic to
14369         the collection of static branch predictors.
14370
14371 2000-02-21  Catherine Moore  <clm@cygnus.com>
14372
14373         * config/mips/mips.h (ASM_SPEC): Add -mfix700.
14374         * invoke.texi (-mfix7000): Document.
14375
14376 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
14377
14378         * diagnostic.c (init_output_buffer): Make it possible to output at
14379         least 32 characters if we're given a too long prefix.
14380
14381 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
14382
14383         * varasm.c (initializer_constant_valid_p): Call
14384         lang_expand_constant to simplify the constant.
14385
14386 2000-02-20  Bruce Korb  <bkorb@gnu.org>
14387
14388         * fixinc/inclhack.def(stdio_va_list):
14389         typedef needs to be disabled.
14390         * fixinc/inclhack.sh: regen
14391         * fixinc/fixincl.x: regen
14392
14393 2000-02-20  Geoff Keating  <geoffk@cygnus.com>
14394
14395         * print-rtl.c (print_rtx): Don't print addresses when
14396         flag_dump_unnumbered.
14397
14398 2000-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14399
14400         * sparc.c (sparc_output_scratch_registers): Mark parameter with
14401         ATTRIBUTE_UNUSED.
14402         (sparc_va_arg, sparc_flat_output_function_prologue,
14403         sparc_flat_output_function_epilogue): Cast value to unsigned in
14404         comparison.
14405         (sparc_emit_float_lib_cmp): Remove unused variable `cmp'.
14406
14407         * sparc.md: Add default case in switch.
14408
14409 2000-02-19  Richard Henderson  <rth@cygnus.com>
14410
14411         * c-typeck.c (add_pending_init): Don't abort for multiple
14412         fields at the same offset.
14413         (pending_init_member): Test the correct member.
14414
14415 2000-02-19  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14416
14417         * except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
14418         instead of SImode.
14419         (start_catch_handler) : Same.
14420
14421 2000-02-19  Brad Lucier  (lucier@math.purdue.edu)
14422
14423         * Makefile.in: Have flow.o depend on $(EXPR_H)
14424
14425 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14426
14427         * c-common.c (decl_attributes): Set DECL_SIZE_UNIT.
14428         * c-decl.c (duplicate_decls, finish_enum): Likewise.
14429         (finish_decl): Remove -Wlarger-than code from here.
14430         * flags.h (id_clash_len): Now int.
14431         (larger_than_size): Now HOST_WIDE_INT.
14432         * fold-const.c (size_int_wide): No more HIGH parm; NUMBER is signed.
14433         Clean up checking to see if in table.
14434         (make_bit_field_ref): Remove extra parm to bitsize_int.
14435         * ggc-common.c (ggc_mark_tree_children): Mark DECL_SIZE_UNIT.
14436         * print-tree.c (print_node): Print DECL_SIZE_UNIT and TYPE_SIZE_UNIT.
14437         * stmt.c (expand_decl): Use DECL_SIZE_UNIT for stack checking size
14438         and for computing size of decl.
14439         * stor-layout.c (layout_decl): Set DECL_SIZE_UNIT.
14440         Move -Wlarger-than code to here.
14441         (layout_record): Remove extra arg to bitsize_int.
14442         Set TYPE_BINFO_SIZE_UNIT.
14443         (layout_union): Remove extra arg to bitsize_int.
14444         Use proper type for size of QUAL_UNION.
14445         (layout_type): Remove extra arg to bitsize_int.
14446         * toplev.c (id_clash_len): Now int.
14447         (larger_than_size): Now HOST_WIDE_INT.
14448         (decode_W_option): Clean up id-clash and larger-than- cases.
14449         * tree.c (get_identifier, maybe_get_identifier): Remove unneeded casts.
14450         (expr_align, case FUNCTION_DECL): DECL_ALIGN is not defined.
14451         * tree.h (BINFO_SIZE_UNIT, TYPE_BINFO_SIZE_UNIT, DECL_SIZE_UNIT): New.
14452         (struct tree_decl): New field size_unit.
14453         (size_int_wide): No HIGH operand; NUMBER is now signed.
14454         (size_int_2): Deleted.
14455         (size_int, bitsize_int): Don't use it and rework args.
14456         * varasm.c (assemble_variable, output_constructor): Use DECL_SIZE_UNIT.
14457
14458 Fri Feb 18 20:01:58 2000  Jeffrey A Law  (law@cygnus.com)
14459
14460         * pa/quadlib.asm (_U_QFgt, _U_Qfge): Fix flags for _U_Qfcmp call.
14461
14462 2000-02-18  Geoff Keating  <geoffk@cygnus.com>
14463
14464         * invoke.texi (Warning Options): Add an explanation of why
14465         you might want the -Wfloat-equal flag.
14466
14467 Fri Feb 18 20:08:57 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14468
14469         * bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
14470         * cppinit.c (new_pending_define): Add cast to avoid warning.
14471         * expmed.c (extract_bit_field): Likewise.
14472         * flow.c (enum reorder_skip_type): New type.
14473         (skip_insns_between_blcok): New it.
14474         Rework to avoid warning about possibly undefined variable.
14475         * function.c (assign_parms): Make thisparm_boundary unsigned.
14476         * genrecog.c (write_switch): Cast XWINT result to int.
14477         * lcm.c: Many static fcns and vars now #ifdef OPTIMIZE_MODE_SWITCHING.
14478         * mips-tfile.c (init_file): Make two versions of FDR intializer:
14479         one for MIPS and one for Alpha.
14480         (get_tag, copy_object): Add casts to avoid warnings.
14481         * optabs.c (init_one_libfunc): Cast NAME to (char *).
14482         * reload.c (find_reloads): Make TYPE enum reload_type.
14483         * sbitmap.c (dump_sbitmap): J is unsigned; don't use "1L".
14484         * unroll.c (unroll_loop): Initialize UNROLL_NUMBER.
14485         * varasm.c (compare_constant_1): Add cast to avoid warning.
14486         * config/alpha/alpha.c (alpha_emit_xfloating_libcall): Cast FUNC
14487         to (char *).
14488         (alpha_expand_unaligned_load, alpha_expand_unaligned_store):
14489         Cast switch operand of size to int.
14490         (alpha_expand_epilogue): Always initialize fp_offset and sa_reg.
14491         * config/alpha/alpha.h (INITIAL_ELIMINATION_OFFSET): Add abort
14492         in unhandled case.
14493
14494 2000-02-18  Nick Clifton  <nickc@cygnus.com>
14495
14496         * config/arm/elf.h (ASM_OUTPUT_ALIGN): Do not generate
14497         anything for an alignment of zero.
14498
14499         * config/arm/thumb.h (ASM_OUTPUT_ALIGN): Do not generate
14500         anything for an alignment of zero.
14501
14502 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
14503
14504         * gcc.texi (Bug Reporting): Refer to bugs.html.
14505         (Bug Lists): Likewise.
14506         * system.h (GCCBUGURL): New preprocessor define.
14507         * rtl.c (fancy_abort): Use it.
14508         * gcc.c (main): Likewise.
14509
14510 2000-02-18  Richard Henderson  <rth@cygnus.com>
14511
14512         * flow.c (INSN_VOLATILE, SET_INSN_VOLATILE, uid_volatile): Remove.
14513         (life_analysis_1): Subsume into ...
14514         (life_analysis): ... here.  Force PROP_REG_INFO off after reload.
14515         Use update_life_info for the relaxation.
14516         (update_life_info): Update REG_BASIC_BLOCK for registers live on
14517         entry and regs_live_at_setjmp.
14518         (set_noop_p): Simplify.
14519         (notice_stack_pointer_modification_1): Renamed from s/_1//.
14520         (record_volatile_insns): Split into ...
14521         (delete_noop_moves): ... here,
14522         (notice_stack_pointer_modification): ... here,
14523         (insn_dead_p): ... and here.
14524         (propagate_block): Don't query INSN_VOLATILE.
14525         (mark_used_regs): Mind !PROP_REG_INFO.
14526         * toplev.c (rest_of_compilation): Call mark_constant_function here,
14527         not in life_analysis.
14528
14529 Fri Feb 18 01:29:22 EST 2000  John Wehle  (john@feith.com)
14530
14531         * loop.c (canonicalize_condition): New function,
14532         broken out of get_condition.
14533         (get_condition): Use it.
14534         * expr.h (canonicalize_condition): Prototype it.
14535
14536         * tree.h (tree_int_cst_msb): Declare.
14537         * tree.c (tree_int_cst_msb): New function.
14538
14539 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
14540
14541         * stmt.c (set_file_and_line_for_stmt): Don't crash if cfun->stmt
14542         isn't set.
14543
14544         * invoke.texi (-fmessage-length=n): Document.
14545
14546 2000-02-17  Jason Merrill  <jason@casey.cygnus.com>
14547
14548         * bitmap.c (bitmap_operation): Don't leak bitmap elements.
14549
14550 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
14551
14552         * function.c (thread_prologue_and_epilogue_insns): Put a line note
14553         after the prologue.
14554
14555 2000-02-17  Nick Clifton  <nickc@cygnus.com>
14556
14557         * config/arm/thumb.c: Replace includes of system headers with
14558         #include "system.h".
14559
14560 2000-02-16  Richard Henderson  <rth@cygnus.com>
14561
14562         * configure.in (alpha-linux*, alpha-netbsd) [extra_parts]:
14563         Add crtbeginS.o and crtendS.o.
14564         * alpha/elf.h (STARTFILE_SPEC): Use crtbeginS.o.
14565         (ENDFILE_SPEC): Use crtendS.o.
14566         * alpha/t-crtbe (crtbeginS.o, crtendS.o): New targets.
14567
14568         * alpha/crtbegin.asm (__do_frame_takedown): Merge into ...
14569         (__do_global_dtors_aux): ... here.  Call __cxa_finalize if
14570         shared and present.
14571         (__dso_handle): New variable.
14572         * alpha/crtend.asm (__do_global_ctors_aux): Remove runtime
14573         bias to __CTOR_END__.
14574
14575 2000-02-16  Richard Henderson  <rth@cygnus.com>
14576
14577         * Makefile.in (s-crtS, crtbeginS, crtendS): Prefix usage with $(T).
14578
14579 Wed Feb 16 21:40:04 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14580
14581         * longlong.h (__clz_tab): Declare as static to match definition.
14582
14583 2000-02-16 Mark Elbrecht <snowball3@bigfoot.com>
14584
14585         * i386/xm-djgpp.h (LIBSTDCXX): Delete. Moved to config/i386/djgpp.h.
14586         (XREF_FILE_NAME): Define.
14587
14588         * i386/djgpp.h (DATA_SECTION_ASM_OP): Define.
14589         (EH_FRAME_SECTION_ASM_OP): Define.
14590         (IDENT_ASM_OP): Define.
14591         (TEXT_SECTION_ASM_OP): Define.
14592         (CPP_SPEC): Define.
14593         (CTORS_SECTION_ASM_OP): Define.
14594         (CTOR_SECTION_FUNCTION): Use it.
14595         (DTORS_SECTION_ASM_OP): Define.
14596         (DTOR_SECTION_FUNCTION): Use it.
14597
14598 2000-02-16  Zack Weinberg  <zack@wolery.cumb.org>
14599
14600         * reg-stack.c (emit_swap_insn): Do not put a new insn before a
14601         NOTE_BASIC_BLOCK.
14602
14603         * flow.c (dump_regset, debug_regset, dump_bb, debug_bb,
14604         debug_bb_n): New functions.
14605         (dump_flow_info, print_rtl_with_bb): Use dump_regset.
14606         * basic-block.h: Prototype new functions.
14607
14608 Wed Feb 16 21:07:53 2000  Denis Chertykov  <denisc@overta.ru>
14609
14610         * configure.in: Add support for avr target.
14611         * configure: Rebuilt.
14612
14613         * invoke.texi: Add AVR invocation docs.
14614         * install.texi: Add information about AVR.
14615         * md.texi: Add AVR constraint letters description.
14616         * extend.texi: Add description for AVR specific attributes.
14617
14618 2000-02-16  Jason Merrill  <jason@casey.cygnus.com>
14619
14620         * fixinc/fixinc.svr4: Wrap byteorder.h with extern "C".
14621
14622 2000-02-16  Nick Clifton  <nickc@cygnus.com>
14623
14624         * emit-rtl.c (emit_insn): Move RTL check into make_insn_raw.
14625         (make_insn_raw): Move RTL check here.
14626
14627 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14628
14629         * version.c: Include gansidecl.h and version.h.
14630
14631         * version.h: Wrap entire file in macro __GCC_VERSION_H__.
14632
14633         * configure.in (gcc_version): When setting, narrow search to
14634         lines containing `version_string'.
14635
14636         * Makefile.in (mainversion): Likewise.
14637         (GCC_H): New variable.
14638         (gcc.h): Delete target.
14639         (gcc.o, gccspec.o, cppspec.o): Depend on $(GCC_H), not gcc.h.
14640         (version.o): Depend on version.h.
14641         (dbxout.o): Don't depend on gcc.h.
14642
14643 Wed Feb 16 15:04:49 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14644                           Michael Meissner  <meissner@cygnus.com>
14645
14646         * md.texi (Simple Constraints): Add item about whitespace.
14647         * genoutput.c (strip_whitespace): New.
14648         (scan_operands) [MATCH_OPERAND, MATCH_SCRATCH]: Call
14649         strip_whitespace for constraints.
14650         Test pointer using NULL, not 0.
14651
14652 2000-02-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14653
14654         * cpplib.c (do_line): Pedwarn for #line > 32767.
14655
14656         * c-lex.c (readescape): Warn about '\x', but do not reject it.
14657
14658 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
14659
14660         * gcc.c (default_compilers): Add new __GNUC_PATCHLEVEL__ define
14661         to default cpp spec.
14662         (do_spec_1): Add support for %v3 spec used by __GNUC_PATCHLEVEL__.
14663         * cpp.texi: Document __GNUC_PATCHLEVEL__.
14664         * cpp.1: Likewise.
14665
14666         * objc/lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to
14667         default spec.
14668
14669 2000-02-15  Denis Chertykov  <denisc@overta.ru>
14670
14671         * configure.in: Add support for avr target.
14672
14673 Wed Feb 16 03:21:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14674
14675         * sh.h (OVERRIDE_OPTIONS): Don't set sh_addr_diff_vec_mode.
14676         (sh_addr_diff_vec_mode): Don't declare.
14677         * sh.c (sh_addr_diff_vec_mode): Delete.
14678
14679 Wed Feb 16 01:27:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14680
14681         * sh.md (mulsi3_highpart): Add REG_EQUAL note to last insn.
14682
14683 Wed Feb 16 00:58:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14684
14685         * sh.md (udivsi3_i1, divsi3_i1, umulhisi3_i, mulhisi3_i): Name.
14686         (smulsi3_highpart_i): Name.
14687         (udivsi3): Wrap emitted insns in REG_LIBCALL / REG_RETVAL notes.
14688         (divsi3, mulhisi3, umulhisi3, mulsidi3, umulsidi3): Likewise.
14689         (smulsi3_highpart, umulsi3_highpart): Likewise.
14690
14691         (mulsidi3_i, umulsidi3_i): Make rtl describe operation
14692         correctly independent of endianness.
14693         (mulsidi3, umulsidi3): Now define_insn.  Hide details that
14694         confuse the optimizers.
14695         (mulsidi3+1, umulsidi3+1): New define_split.
14696
14697 Tue Feb 15 23:22:26 2000  Andrew Haley  <aph@cygnus.com>
14698
14699         * config/sh/sh.md: Guard insn splits against illegal registers.
14700         * config/sh/sh.h: Correct comment about macros.
14701
14702 Tue Feb 15 22:30:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14703                           Andrew MacLeod  <amacleod@cygnus.com>
14704
14705         * Makefile.in (lcm.o): Depend on insn-attr.h.
14706         * basic-block.h (optimize_mode_switching): Declare.
14707         * lcm.c (tm_p.h, insn-attr.h): #include.
14708         (seginfo, bb_info): New structs.
14709         (antic, transp, comp, delete, insert) : New file-scope static variables.
14710         (new_seginfo, add_seginfo, make_preds_opaque, reg_dies): New functions.
14711         (reg_becomes_live, optimize_mode_switching): Likewise.
14712         * tm.texi: Add description of mode switching macros.
14713         * toplev.c (rest_of_compilation): Call optimize_mode_switching.
14714
14715         * sh-protos.h (remove_dead_before_cse): Remove prototype.
14716         (fldi_ok, fpscr_set_from_mem): New prototypes.
14717         * sh.h (OPTIMIZATION_OPTION): Remove sh_flag_remove_dead_before_cse set.
14718         (CONST_DOUBLE_OK_FOR_LETTER_P, SECONDARY_INPUT_RELOAD_CLASS):
14719         Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
14720         (sh_flag_remove_dead_before_cse): Remove declaration.
14721         (NUM_MODES_FOR_MODE_SWITCHING, OPTIMIZE_MODE_SWITCHING): New macros.
14722         (MODE_USES_IN_EXIT_BLOCK, MODE_NEEDED, MODE_AT_ENTRY): Likewise.
14723         (MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
14724         * sh.c (broken_move): Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
14725         (barrier_align): Allow for JUMP_INSNS containing a parallel.
14726         (machine_dependent_reorg): Remove sh_flag_remove_dead_before_cse set.
14727         (fldi_ok): New function.
14728         (get_fpscr_rtx): Add fpscr_rtx as GC root.
14729         (emit_sf_insn): Only generate fpu switches when optimize < 1.
14730         (emit_df_insn): Likewise.
14731         (expand_fp_branch, emit_fpscr_use, remove_dead_before_cse): Delete.
14732         (sh_flag_remove_dead_before_cse): Delete.
14733         (get_free_reg, fpscr_set_from_mem): New functions.
14734         * sh.md (movdf, movsf): Remove no_new_pseudos code.
14735         (return): Remove emit_fpscr_use / remove_dead_before_cse calls.
14736
14737 2000-02-15  Loren Rittle  <ljrittle@acm.org>
14738
14739         * ginclude/stddef.h: Correct usage of _BSD_RUNE_T_ for FreeBSD.
14740
14741 2000-02-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14742
14743         * Makefile.in (TREE_H, collect2.o, gcc.h, mips-tfile.o, cccp.o,
14744         cpphash.o, cppinit.o, protoize.o, unprotoize.o): Depend on version.h.
14745
14746         * cccp.c: Include version.h and/or don't declare `version_string'.
14747         * collect2.c: Likewise.
14748         * alpha.c: Likewise.
14749         * arm/aof.h: Likewise.
14750         * arm/coff.h: Likewise.
14751         * arm/elf.h: Likewise.
14752         * arm/pe.h: Likewise.
14753         * arm/tcoff.h: Likewise.
14754         * arm/telf.h: Likewise.
14755         * arm/tpe.h: Likewise.
14756         * arm/vxarm.h: Likewise.
14757         * convex/convex.c: Likewise.
14758         * i386/dgux.c: Likewise.
14759         * i386/sun386.h: Likewise.
14760         * m88k/m88k.c: Likewise.
14761         * mcore/mcore-pe.h: Likewise.
14762         * mips/mips.h: Likewise.
14763         * romp/romp.h: Likewise.
14764         * sh/sh.c: Likewise.
14765         * cpphash.c: Likewise.
14766         * cppinit.c: Likewise.
14767         * dwarf2out.c: Likewise.
14768         * dwarfout.c: Likewise.
14769         * gcc.c: Likewise.
14770         * gcc.h: Likewise.
14771         * mips-tfile.c: Likewise.
14772         * protoize.c: Likewise.
14773         * toplev.c: Likewise.
14774         * tree.h: Likewise.
14775
14776         * version.c (version_string): Constify a char*.
14777
14778         * version.h: New file.
14779
14780 2000-02-14  Nick Clifton  <nickc@cygnus.com>
14781
14782         * configure.in: Add mcore-elf and mcore-pe targets.
14783         * configure: Regenerate.
14784
14785         * NEWS: Add note that MCore port has been contributed.
14786
14787         * invoke.texi: Document command line switches for MCore port.
14788         * install.texi: Add MCore to list of supported targets.
14789
14790 2000-02-14  Geoff Keating  <geoffk@cygnus.com>
14791
14792         * collect2.c (main) [COLLECT_EXPORT_LIST]: If we have frames,
14793         then we will need to import the frame handling functions.
14794         (scan_prog_file) [COLLECT_EXPORT_LIST]: We will also need
14795         to import the frames themselves.
14796
14797 Mon Feb 14 13:31:01 2000  Stan Cox  <scox@cygnus.com>
14798                           Jason Eckhardt  <jle@cygnus.com>
14799
14800         * basic_block.h: Added prototype for reorder_basic_blocks.
14801         * toplev.c: Changes to add -freorder-blocks and graph dump after
14802         block reordering is done.
14803         * flow.c (reorder_block_def): New structure for use during block
14804         reordering.
14805         (REORDER_BLOCK_*): New macros to access members of above structure.
14806         (skip_insns_between_block, get_common_dest, chain_reorder_blocks,
14807         make_reorder_chain, fixup_reorder_chain, reorder_basic_blocks): New
14808         functions for block reordering.
14809
14810 Mon Feb 14 11:24:44 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14811
14812         * gcc.texi (Passes): Fix typo.
14813         * md.texi (Standard Names): Ditto.
14814         * tm.texi (Storage Layout): Ditto.
14815
14816 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
14817
14818         * cpplib.c (do_define): Only free the old definition if it
14819         actually had one.
14820
14821 2000-02-13   Neil Booth  <NeilB@earthling.net>
14822
14823         * cppfiles.c (read_and_prescan): When emitting deferred
14824         newlines, test speccase[] again instead of checking each
14825         possible whitespace character in turn.  When we encounter \r,
14826         look behind for \n first, then ahead.
14827
14828 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
14829
14830         * cse.c (cse_altered): New internal flag.
14831         (cse_insn): Set it if we changed an insn.
14832         (cse_main): Clear cse_altered before each basic block.
14833         Only garbage collect if cse_altered is true afterward.
14834
14835 Sun Feb 13 14:12:28 2000  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
14836
14837         * sparc/sol2.h (LIB_SPEC): Link -ldl if profiling.
14838
14839 Sun Feb 13 13:21:55 2000  Jeffrey A Law  (law@cygnus.com)
14840
14841         * combine.c (simplify_comparison): Fix typo.
14842
14843 Sun Feb 13 12:57:52 2000  Neil Booth <NeilB@earthling.net>
14844
14845         * prefix.c (concat, lookup_key): Use xmalloc and xrealloc
14846         consistently.
14847
14848 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14849
14850         * flow.c (flow_loop_tree_node_add): Use better algorithm by passing
14851         previously inserted node instead of root node.  Caller changed.
14852
14853 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14854
14855         * basic-block.h (FLOW_LOOP_FIRST_BLOCK, FLOW_LOOP_LAST_BLOCK): Delete.
14856
14857 2000-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14858
14859         * crtstuff.c (__do_global_ctors_aux, __reg_frame_ctor,
14860         __dereg_frame_dtor): Add prototype argument.
14861
14862         * gthr-dce.h (__gthread_active_p, __gthread_once): Likewise.
14863
14864         * gthr-posix.h (__gthread_active_p, __gthread_once): Likewise.
14865
14866         * gthr-solaris.h (__gthread_active_p, __gthread_once): Likewise.
14867
14868         * gthr-vxworks.h (__gthread_once): Likewise.
14869
14870         * gthr-win32.h (__gthread_active_p, __gthread_once): Likewise.
14871
14872 Sat Feb 12 01:44:26 MET 2000  Jan Hubicka  <jh@suse.cz>
14873
14874         * i386.c (ix86_emit_restore_regs_using_mov): Break out from ...
14875         (ix86_expand_epilogue): ... here. Use mov instead of add to restore
14876         stack pointer in functions w/o saved registers, output LEAVE more often
14877         on TARGET_USE_LEAVE machines.
14878
14879 2000-02-07  Dmitri Makarov  <dim@wrs.com> & Bernd Schmidt <bernds@redhat.com>
14880
14881         * config/arm/arm.c (arm_init_cumulative_args); New function:
14882         Initlaise the CUMULATIE_ARGS strcuture for a function
14883         defintion.
14884         (arm_function_arg): New function: Determine where to place a
14885         function's argument.  Also handles deciding the function's
14886         call cookie.
14887         (current_file_function_operand): New function: Return true if
14888         the symbol is a function which has already been compiled.
14889         (arm_is_long_call_p): New function: Return true if the
14890         indicated function should be called via a long call.
14891         (arm_valid_type_attribute_p): New function: Return true if the
14892         attribute is a valid, arm specific, attribute.
14893         (arm_comp_type_attribute): New function: Return true if the
14894         two types have compatable, arm specific, attributes.
14895
14896         * config/arm/arm.h (CUMULATIVE_ARGS): Redefine to be a
14897         structure.
14898         (FUNCTION_ARG): Redefine to call arm_function_arg.
14899         (FUNCTION_ARG_PARTIAL_NREGS): Redefine to use correct
14900         structure field.
14901         (INIT_CUMULATIVE_ARGS): Redefine to call
14902         arm_init_cumulative_args.
14903         (FUNCTION_ARG_ADVANCE): Redefine to use correct structure
14904         field.
14905         (SETUP_INCOMING_VARARGS): Redefine to use correct structure
14906         field.
14907         (ARM_MARK_NEARBY_FUNCTION): New macro: Mark already compiled
14908         functions.
14909         (ENCODE_SECTION): Add call to ARM_MARK_NEARBY_FUNCTION.
14910         (VALID_MACHINE_TYPE_ATTRIBUTE): Define.
14911         (COMP_TYPE_ATTRIBUTES): Define.
14912
14913         * config/arm/arm.md (call): Call arm_is_long_call_p to decide
14914         if a long call is needed.
14915         (call_value): Call arm_is_long_call_p to decide if a long call
14916         is needed.
14917         (call_symbol): Call arm_is_long_call_p to decide if a long call
14918         is needed.
14919
14920         * config/arm/arm-protos.h: Add prototype for arm_is_long_call_p.
14921
14922 2000-02-11  Denis Chertykov  <denisc@overta.ru>
14923
14924         * README.AVR: New file with information about the avr ports.
14925         * config/avr: New directory with avr port files.
14926
14927 2000-02-11  Andreas Jaeger  <aj@suse.de>
14928
14929         * fixinc/Makefile.in (FIXINC_DEFS): Remove unneeded @fixinc_defs@.
14930
14931 2000-02-11  Zack Weinberg  <zack@wolery.cumb.org>
14932
14933         * cpphash.c: Fix formatting, update commentary.
14934         (dump_definition): Take three separate arguments instead of a
14935         MACRODEF structure argument.
14936         * cpphash.h: Update prototype of dump_definition.
14937         * cppinit.c (cpp_finish): Update call of dump_definition.
14938
14939         * cpplib.c (do_define): Always create new hash entry with
14940         T_MACRO type.  Remove redundant check for redefinition of
14941         poisoned identifier.  Update call of dump_definition.
14942         (do_undef): Don't call check_macro_name.  Rename sym_length to
14943         len.
14944         (do_error, do_warning): Don't use copy_rest_of_line or
14945         SKIP_WHITE_SPACE.
14946         (do_warning): Don't use pedwarn for the actual warning,
14947         only the notice about its not being in the standard.  (Fixes
14948         bug with #warning in system headers.)
14949         (do_ident): Stricter argument checking - accept only a single
14950         string after #ident.  Also, macro-expand the line.
14951         (do_xifdef): Use cpp_defined.  De-obfuscate.
14952
14953         (do_pragma): Split out specific pragma handling to separate
14954         functions.  Use get_directive_token.  Update commentary.  Do
14955         not pass on #pragma once or #pragma poison to the front end.
14956         (do_pragma_once, do_pragma_implementation, do_pragma_poison,
14957         do_pragma_default): New.
14958
14959 Feb 11 12:30:53 2000  Jeffrey A Law  (law@cygnus.com)
14960
14961         * jump.c (jump_optimize_1): The first operand in a relational
14962         can be a CONST_INT.
14963         * optabs.c (emit_conditional_move): Handle relationals which
14964         have a known true/false result.
14965
14966 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
14967
14968         * function.c (thread_prologue_and_epilogue_insns): Don't insert
14969         a RETURN insn into a block which already ends with a jump.
14970
14971 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
14972
14973         * haifa-sched.c (BUF_LEN): Increase a lot.
14974
14975 2000-02-11  Nick Clifton  <nickc@cygnus.com>
14976
14977         * configure.in: Add tm_p_file specification for thumb targets.
14978         * configure: Regenerate.
14979
14980         * config/arm/thumb-protos.h: New file: Prototypes for exported
14981         functions defined in thumb.c.
14982
14983 2000-02-11  Robert Lipe  <robertl@sco.com>
14984
14985         * Makefile.in (bootstrap-lean): Remove additional files.
14986         (bootstrap2-lean): Likewise.
14987         (VOL_FILES): List of files for above.
14988
14989 2000-02-11  Nathan Sidwell  <nathan@acm.org>
14990
14991         * cpphash.c (special_symbol): Remove spurious argument to
14992         cpp_lookup.
14993
14994 2000-02-11  Joel Sherrill (joel@OARcorp.com>
14995
14996         * configure.in: (i*86-*-rtems*): Swapped elf and coff
14997         stanzas.
14998         * configure: Rebuilt.
14999
15000 2000-02-11  Rodney Brown  <RodneyBrown@pmsc.com>
15001
15002         * pa-protos.h: Wrap function_arg_padding in TREE_CODE #ifdef.
15003
15004 Fri Feb 11 02:59:05 2000  Jeffrey A Law  (law@cygnus.com)
15005
15006         * pa.c, pa.h: Remove trigraph sequences within comments.
15007
15008 Fri Feb 11 02:51:56 2000  Pavel Roskin <pavel_roskin@geocities.com>
15009
15010         * invoke.texi (PPC Options): -mno-new-mnenomics -> -mold-mnemonics.
15011
15012 Fri Feb 11 02:48:30 2000  Brad Lucier  (lucier@math.purdue.edu)
15013
15014         * sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
15015
15016 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15017
15018         * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.
15019
15020 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15021
15022         * config/c4x/c4x.h (ASM_GLOBALIZE_LABEL): Use c4x_global_label.
15023         (ASM_OUTPUT_EXTERNAL): Use c4x_external_ref.
15024         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
15025         (ASM_FILE_END): Use c4x_file_end.
15026         * config/c4x/c4x.c (c4x_global_label): New function.
15027         (c4x_external_ref, c4x_file_end): Likewise.
15028
15029         * config/c4x/c4x-protos.h (c4x_global_label): Add prototype.
15030         (c4x_external_ref, c4x_end_file): Likewise.
15031
15032 2000-02-10  Zack Weinberg  <zack@wolery.cumb.org>
15033
15034         * cppexp.c: Don't include cpphash.h.
15035         (parse_charconst, cpp_lex): Use cpp_defined.
15036         (cpp_lex): Use get_directive_token throughout.  Remove
15037         unnecessary cases from switch.  Move assertion-handling code
15038         down to OTHER case.
15039         (cpp_parse_expr): If we see '+' or '-', check the context to
15040         determine if they are unary or binary operators.  Streamline
15041         the jumps a bit.  Do not call skip_rest_of_line.
15042
15043         * cpplib.c: Make skip_rest_of_line and cpp_skip_hspace
15044         static.  Export get_directive_token.  Update commentary.
15045         (cpp_defined): New function.
15046         (do_define): Remove reference to T_PCSTRING.  Call
15047         free_definition to release memory for old definition, when
15048         redefining a macro.
15049         (eval_if_expression): Set only_seen_white to 0 before calling
15050         cpp_parse_expr.  Call skip_rest_of_line after it returns.
15051         (cpp_read_check_assertion): Don't preserve a pointer into the
15052         token buffer across a call to cpp_get_token.
15053
15054         * Makefile.in (cppexp.o): Don't depend on cpphash.h.
15055         * cppfiles.c (redundant_include_p): Use cpp_defined.
15056         * cpphash.c (free_definition): New function.
15057         (delete_macro): Use it.  Update commentary.
15058         * cpphash.h: Typedef HASHNODE here.  Prototype cpp_lookup and
15059         free_definition.
15060         * cpplib.h: Don't typedef HASHNODE here. Delete T_PCSTRING
15061         from enum node_type.  Prototype cpp_defined and get_directive_token.
15062         Don't prototype cpp_lookup, skip_rest_of_line, or cpp_skip_hspace.
15063
15064         * fix-header.c (check_macro_names): Use cpp_defined.
15065         (read_scan_file): Set inhibit_warnings and inhibit_errors in
15066         the options structure.
15067
15068 2000-02-10  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
15069
15070         * c-pragma.c (maximum_field_alignment): Remove duplicate declaration.
15071
15072 2000-02-10  Jason Merrill  <jason@casey.cygnus.com>
15073
15074         * dwarf2out.c (add_abstract_origin_attribute): Check TREE_CODE (origin)
15075         rather than die->die_tag.
15076
15077 Thu Feb 10 16:26:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15078
15079         * combine.c (make_extraction, force_to_mode): Avoid warning on
15080         mixed-signedness conditionals.
15081         (make_field_assignment, nonzero_bits): Likewise.
15082         * expmed.c (store_fixed_bit_field): ALIGN arg now unsigned.
15083         (store_split_bit_field, extract_split_bit_field): Likewise.
15084         (extract_fixed_bit_field, store_bit_field,
15085         * expr.c: Change alignment to be unsigned everywhere.
15086         (move_by_pieces, store_constructor_field, store_constructor):
15087         Alignment parm is unsigned.
15088         (emit_block_move, emit_group_load, emit_group_store): Likewise.
15089         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
15090         (do_compare_rtx_and_jump): Likewise.
15091         (move_by_pieces_ninsns, clear_by_pieces): Likewise.
15092         Compare align with GET_MODE_ALIGNMENT.
15093         (expand_expr_unaligned): Pointer to alignment is pointer to unsigned.
15094         (get_inner_reference): Likewise.
15095         (copy_blkmode_from_reg, emit_push_insn): Remove unneeded casts.
15096         (expand_assignment): Local vars for alignment now unsigned.
15097         (store_constructor, store_field, expand_expr, do_jump): Likewise.
15098         (do_compare_and_jump): Likewise.
15099         (store_field): Call new function expr_align.
15100         * expr.h (emit_block_move, emit_group_load, emit_group_store):
15101         Alignment arg now unsigned.
15102         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
15103         (do_compare_rtx_and_jump, store_bit_field): Likewise.
15104         (extract_bit_field): Likewise.
15105         * fold-const.c (add_double): Add cast to eliminate signedness warning.
15106         * machmode.h (GET_MODE_ALIGNMENT): Result is unsigned.
15107         (get_best_mode): Alignment arg is unsigned.
15108         * rtl.h (move_by_pieces): Likewise.
15109         * store-layout.c (maximum_field_alignment, set_alignment):
15110         Now unsigned.
15111         (layout_decl): Alignment arg is now unsigned.
15112         Remove unneeded casts.
15113         (layout_record, layout_union, layout_type): Remove unneeded casts.
15114         Local alignment variables now unsigned.
15115         (get_best_mode): Alignment arg now unsigned.
15116         * tree.c (expr_align): New function.
15117         * tree.h (expr_align): Likewise.
15118         (maximum_field_alignment, set_alignment): Now unsigned.
15119         (get_inner_reference): Alignment argument is now pointer to unsigned.
15120         * varasm.c (assemble_variable): Add cast to eliminate warning.
15121
15122 Thu Feb 10 12:56:47 2000  Jim Wilson  <wilson@cygnus.com>
15123
15124         * expmed.c (store_bit_field): If op0 and fieldmode are the same size,
15125         then store directly into op0.
15126
15127         * calls.c (expand_call): When emitting a NOTE_INSN_SETJMP, search for
15128         the CALL_INSN, and emit the note immediately after it.
15129
15130 2000-02-10  Nick Clifton  <nickc@cygnus.com>
15131
15132         * config/arm/thumb.md (epilogue): Include a (return) in the
15133         generated insn, and emit it using emit_jump_insn not
15134         emit_insn.
15135
15136 Thu Feb 10 18:28:59 MET 2000  Jan Hubicka  <jh@suse.cz>
15137
15138         * function.c (assign_temp): Change zero-sized arrays to size 1.
15139         * integrate.c (expand_inline_function): Do not update
15140         stack_alignment_needed
15141         * i386.c (compute_frame_size): Remove #ifdef PREFERRED_FRAME_BOUNDARY,
15142         add some sanity checking, remove optimization for function with
15143         zero frame size.
15144
15145 2000-02-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15146
15147         * flow.c (mark_regs_live_at_end): Delete unused variables.
15148
15149         * ggc-page.c (ggc_page_print_statistics): bzero -> memset.
15150
15151         * integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
15152         in macro FRAME_GROWS_DOWNWARD.
15153
15154         * stmt.c (expand_end_bindings): Delete unused variable.
15155
15156         * unroll.c (iteration_info): Mark parameter `loop' with
15157         ATTRIBUTE_UNUSED.
15158
15159 2000-02-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
15160
15161         * fixinc/server.c (load_data): Return NULL if the marker line is
15162         not found.
15163         (run_shell): If load_data returns NULL, retry the command once, in
15164         a new shell.
15165
15166         * configure: Rebuilt.
15167
15168 2000-02-09  Bruce Korb  <bkorb@gnu.org>
15169
15170         * gcc/fixincludes:  ** DELETED **
15171         * gcc/fixcpp:  ** DELETED **
15172         * gcc/fixinc-nt.sed:  ** DELETED **
15173         * gcc/just-fixinc:  ** DELETED **
15174         * gcc/Makefile.in:  Removed out-dated commentary
15175         * gcc/configure.in: Removed fast-fixincludes disablement.
15176         * MAINTAINERS(Ian Taylor) moved to "Write after approval" group.
15177
15178 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
15179         * function.c (thread_prologue_and_epilogue_insns): Uncomment
15180         last change.
15181
15182 2000-02-09  Richard Henderson  <rth@cygnus.com>
15183
15184         * jump.c (delete_insn): Don't delete user labels at -O0.
15185
15186 2000-02-09  Robert Lipe  <robertl@sco.com>
15187
15188         * Makefile.in (gen-protos): Don't depend on HOST_LIBDEPS.
15189         Don't link with HOST_LIBS.
15190
15191 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15192
15193         * configure.in: Correct --help text for --with-dwarf2.
15194         Put tm-dwarf2.h after other tm files, if it's requested.
15195         * configure: Regenerate.
15196         * config/tm-dwarf2.h: #undef PREFERRED_DEBUGGING_TYPE before
15197         defining it.
15198
15199 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15200
15201         * cpplib.h: Provide HASHNODE typedef and forward decl of
15202         struct hashnode only.  Kill cpp_hashnode typedef.  MACRODEF,
15203         DEFINITION, struct hashnode, struct macrodef, struct
15204         definition, scan_decls prototype, default defn of
15205         INCLUDE_LEN_FUDGE moved elsewhere.
15206
15207         * cpphash.h: MACRODEF, DEFINITION, struct macrodef, struct
15208         definition, and struct hashnode moved here. Remove the unused
15209         'predefined' field from struct definition.  Replace the 'args'
15210         union with its sole member.  All users updated (cpphash.c).
15211         Delete HASHSTEP and MAKE_POS macros, and hashf prototype.  Add
15212         multiple include guard.
15213
15214         * cpphash.c (hashf): Make static; use better algorithm; drop
15215         HASHSIZE parameter; return an unsigned int.
15216         (cpp_lookup): Drop HASH parameter.  PFILE parameter is
15217         used. Calculate HASHSIZE modulus here.
15218         (cpp_install): Drop HASH parameter. Calculate HASHSIZE modulus
15219         here.
15220         (create_definition): Drop PREDEFINITION parameter.
15221         * cpplib.c (do_define): Don't calculate a hash value here.
15222         Don't pass (keyword == NULL) to create_definition.
15223
15224         * scan.h: Prototype scan_decls here.
15225         * cppfiles.c: Move INCLUDE_LEN_FUDGE default defn here.
15226         * cppexp.c, cppfiles.c, cppinit.c, cpplib.c, fix-header.c: All
15227         callers of cpp_lookup and cpp_install updated.
15228
15229         * cpphash.c (macarg): Hoist all the flag diddling out of the
15230         function...
15231         (macroexpand): ... and out of the loop that calls macarg.
15232         Skip over the initial paren before macro arguments with
15233         cpp_get_non_space_token; point may be some distance before
15234         that paren.  Abort if it's not there.
15235
15236         * cpplib.c (parse_clear_mark): Delete function.
15237         (parse_set_mark, parse_goto_mark): Make static.
15238         (ACTIVE_MARK_P): New macro.
15239         (skip_block_comment, skip_line_comment): Do not bump the line
15240         if ACTIVE_MARK_P is true.
15241         (cpp_pop_buffer): The buffer to be popped may not have an
15242         active mark.
15243         (cpp_get_token): When looking for the initial paren before
15244         macro arguments, only set a mark in a file buffer, Always
15245         return to that mark before proceeding to call macroexpand or
15246         return a NAME token.
15247
15248         * cpplib.h: Remove prototypes of parse_set_mark,
15249         parse_clear_mark, parse_goto_mark.
15250         (struct cpp_options): Rename 'put_out_comments' to
15251         'discard_comments' and invert its sense.
15252         * cppinit.c, cpphash.c, cpplib.c: All users of
15253         put_out_comments changed to use discard_comments, with
15254         opposite sense.
15255
15256 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
15257
15258         * function.c (thread_prologue_and_epilogue_insns): Don't delete
15259         the edge from a block that both jumps and falls through to the
15260         fallthru block.
15261
15262 2000-02-09  Scott Bambrough  <scottb@netwinder.org>
15263
15264         * config/arm/arm.md (movsi): In PIC mode, make sure that a
15265         constant source address is legitimate.
15266
15267 2000-02-09  Philip Blundell  <pb@futuretv.com>
15268
15269         * config/arm/arm.c (legitimize_pic_address): Handle LABEL_REF
15270         correctly.
15271
15272         * config/arm/arm.h (LEGITIMATE_CONSTANT_P): Allow anything when
15273         generating PIC.
15274         (LEGITIMATE_PIC_OPERAND): Disallow references to labels.
15275
15276 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
15277
15278         * cpplib.c (cpp_define, cpp_undef): Make sure the stacked buffer
15279         ends with a newline and a NUL.  Don't be so clever manipulating
15280         strings.
15281
15282 Wed Feb  9 14:18:08 MET 2000  Jan Hubicka  <jh@suse.cz>
15283
15284         * reload1.c (reload) Align stack frame to cfun->stack_alignment_needed,
15285         not to BIGGEST_ALIGNMENT.
15286
15287 2000-02-08  Geoff Keating  <geoffk@cygnus.com>
15288
15289         * dwarf2.h (DW_CFA_GNU_negative_offset_extended): New constant.
15290         * dwarf2out.c (dwarf_cfi_name): Print name of new constant.
15291         (reg_save): Use DW_CFA_GNU_negative_offset_extended when needed.
15292         (output_cfi): Handle output of DW_CFA_GNU_negative_offset_extended.
15293         * frame.c (execute_cfa_insn): Handle
15294         DW_CFA_GNU_negative_offset_extended.
15295
15296 2000-02-08  Richard Henderson  <rth@cygnus.com>
15297
15298         * flow.c (tidy_fallthru_edges): Split out from ...
15299         (delete_unreachable_blocks): ... here.
15300         (find_basic_blocks): Use it.
15301
15302 Tue Feb  8 15:51:50 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15303
15304         * stmt.c (expand_decl): Do set RTX_UNCHANGING_P for TREE_READONLY.
15305
15306 2000-02-08  Zack Weinberg  <zack@wolery.cumb.org>
15307
15308         * Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
15309         (gen_protos.o): Don't depend on cpplib.h or cpphash.h.
15310         (fix-header.o): Don't depend on cpphash.h.
15311
15312         * scan.c (hashstr): New function.
15313         * scan.h: Prototype it.
15314         * fix-header.c: Don't include cpphash.h.  Use hashstr.
15315         * gen-protos.c: Don't include cpphash.h or cpplib.h.  Use
15316         hashstr.  Report hash table statistics.  Add private
15317         definition of xrealloc.
15318
15319 2000-02-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15320
15321         * i386.h (TARGET_SWITCHES): Fix typo in option name.
15322
15323 2000-02-08  Clinton Popetz  <cpopetz@cygnus.com>
15324
15325         * function.c (thread_prologue_and_epilogue_insns): Don't replace
15326         jumps with returns unless they are jumps to the fallthru block.
15327
15328 Tue Feb  8 07:53:55 2000  Jan Hubicka  <jh@suse.cz>
15329
15330         * i386.md (addqi3_cc): Fix contraints.
15331
15332 Tue Feb  8 01:39:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15333
15334         * function.c (emit_return_into_block): Wrap in #ifdef HAVE_return.
15335
15336 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
15337
15338         * cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
15339         carriage return after a macro name.
15340
15341 2000-02-07  Fred Fish  <fnf@be.com>
15342
15343         * i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing
15344         so the gcc2_compiled symbol doesn't confuse BeOS debuggers.
15345
15346 2000-02-07  Zack Weinberg  <zack@wolery.cumb.org>
15347
15348         * cppfiles.c (deps_output): Count spacers in deps_column.
15349
15350 2000-02-07  Neil Booth  <NeilB@earthling.net>
15351
15352         * cppinit.c (initialize_dependency_output): If there is no
15353         suffix, don't try to look for known suffixes.  Use strrchr.
15354         (cpp_start_read): Remove duplicate initialization.
15355
15356 Mon Feb  7 18:36:41 MET 2000  Jan Hubicka  <jh@suse.cz>
15357
15358         * calls.c (compute_argument_block_size): New argument
15359         preferred_stack_boundary.
15360         (expand_call): update cfun->preferred_stack_boundary, update call of
15361         compute_argument_block_size
15362         (emit_library_call): Increate cfun->preferred_stack_boundary
15363         to PREFERRED_STACK_BOUNDARY
15364         (emit_library_call_value): Likewise.
15365         * explow.c (allocate_dynamic_stack_spave): Likewise.
15366         * function.c (prepare_function_start): Set
15367         cfun->preferred_stack_boundary
15368         * function.h (struct function): Add preferred_stack_boundary field.
15369         * integrate.c (expand_inline_function): Update
15370         cfun->preferred_stack_boundary and cfun->stack_alignment_needed.
15371         (copy_rtx_and_substitute): Align frame to stack_alignment_needed only.
15372         * i386.c (compute_frame_size): Use cfun->preferred_stack_boundary.
15373
15374 2000-02-06  Zack Weinberg  <zack@wolery.cumb.org>
15375
15376         * cpplib.c (my_strerror, cpp_error, cpp_error_with_line,
15377         cpp_error_from_errno, cpp_warning, cpp_warning_with_line,
15378         cpp_pedwarn, cpp_pedwarn_with_line,
15379         cpp_pedwarn_with_file_and_line): Move to cpperror.c.
15380         (cpp_print_file_and_line, v_cpp_error, v_cpp_warning,
15381         v_cpp_error_with_line, v_cpp_warning_with_line,
15382         cpp_message_from_errno, cpp_perror_with_name): Delete.
15383
15384         * cpperror.c (cpp_print_containing_files): Take starting
15385         buffer as argument.
15386         (cpp_file_line_for_message): Rename to cpp_print_file_and_line.
15387         (v_cpp_message): Now called directly by all entry points.
15388         Remove -1 case.
15389         (cpp_pfatal_with_name, cpp_message): Delete.
15390         (cpp_notice_from_errno, cpp_ice): New functions.
15391         (cpp_notice): Is now for reporting error conditions, just
15392         without an associated file.
15393         (cpp_error, cpp_error_with_line): Don't do anything if
15394         opts->inhibit_errors is on.
15395         (cpp_pedwarn_with_file_and_line): Take column argument also.
15396
15397         * cpplib.h: Update prototypes of exported functions.
15398         (struct cpp_options): Add inhibit_errors.
15399
15400         * cppalloc.c, cppfiles.c: Use fprintf not cpp_notice for
15401         non-error messages.  Include intl.h.
15402
15403         * cppinit.c, cppmain.c: Likewise.  Also, use
15404         cpp_notice_from_errno instead of cpp_perror_with_name or
15405         cpp_pfatal_with_name, and cpp_notice instead of cpp_message.
15406
15407         * cppexp.c, cpphash.c, cppinit.c, cpplib.c: Use cpp_ice to
15408         report internal errors.
15409
15410         * cpplib.c (do_define): Switch bcopy to memcpy.
15411         Give cpp_pedwarn_with_file_and_line a dummy column argument.
15412
15413         * cpplib.c (copy_rest_of_line): Revert previous change: don't
15414         bail out early if we hit a line comment.
15415
15416 2000-02-06  Richard Henderson  <rth@cygnus.com>
15417
15418         * flow.c (flow_delete_insn, make_edge, remove_edge): Export.
15419         * basic-block.h: Declare them.
15420         * emit-rtl.h (active_insn_p): New.
15421         (next_active_insn, prev_active_insn): Use it.
15422         * rtl.h: Declare it.
15423         * function.c (emit_return_into_block): New.
15424         (thread_prologue_and_epilogue_insns): Insert return insns instead
15425         of epilogues when possible.
15426         * jump.c (jump_optimize_1): Remove code to insert a return insn
15427         on the fallthru to the exit block.
15428
15429         * i386.c (ix86_can_use_return_insn_p): Fail for large poped args
15430         and for non-empty stack frames.
15431         * i386.md (return): Expand to return-pop as needed.
15432
15433 2000-02-06  Richard Henderson  <rth@cygnus.com>
15434
15435         * simplify-rtx.c (simplify_relational_operation): Canonicalize
15436         constant to op1 for testing.
15437
15438 2000-02-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15439
15440         * config/c4x/c4x.md (*ldi_on_overflow): New pattern.
15441         (fixuns_truncqfqi2): Use it.
15442
15443 2000-02-06  Richard Henderson  <rth@cygnus.com>
15444
15445         * i386.c (ix86_agi_dependant): Handle pro_epilogue_adjust_stack
15446         as a TYPE_LEA insn.
15447
15448         * i386.md (widening and peepholes): Mask the constant instead of
15449         using gen_lowpart.
15450
15451 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
15452
15453         * cppfiles.c (read_and_prescan) [case SPECCASE_QUESTION]: Bump
15454         input pointer before possibly branching off to the backslash
15455         code.
15456         * cpphash.c (macroexpand): Correctly delete \r escapes when
15457         stringifying parameters.
15458         * cpplib.c (copy_rest_of_line): Go directly to skip_block_comment
15459         if we can; bail out early if we hit a line comment.
15460         (handle_directive): Treat '# 123' in an .S file just like
15461         '# <punctuation>'.  Discard the shifted '#' if we hit '#\n'.
15462         Return 1 for '# not_a_directive'.
15463         (get_directive_token): Pop macro buffers here, so that
15464         cpp_get_token can't sneakily move past a newline.
15465         Add sanity checks.
15466         (cpp_get_token): goto randomchar if handle_directive returns 0.
15467
15468         * cppalloc.c: Update copyright.
15469         * cpplib.c: Merge all the static function prototypes into one
15470         block.
15471         * cpplib.h: Remove #if 0 block.
15472
15473         * cpperror.c: Remove #ifdef EMACS block.
15474         * cppmain.c: Likewise.
15475         * cpphash.c: Remove #if 0 blocks.
15476         * cppinit.c: Remove #if 0 blocks, and the -lint option.
15477         * cpplib.c: Remove #if 0 blocks and code referencing
15478         pcp_inside_if or for_lint.  Remove duplicate error message.
15479         Fix error messages for #else after #else or #elif.  Reformat.
15480         Remove archaic TODO list.
15481         * cpplib.h: Remove pcp_inside_if and for_lint flags.
15482
15483 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
15484
15485         * i386/osf1elf.h: Add missing backslash to multiline string.
15486
15487 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15488
15489         * longlong.h [sparc] (udiv_qrnnd): Avoid stringifying macro arg.
15490
15491 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15492
15493         * Makefile.in (c-common.o): Depend on $(EXPR_H).
15494
15495         * c-common.c: Include expr.h.
15496
15497         * c-pragma.c (mark_align_stack): Add prototype.
15498
15499         * caller-save.c (add_stored_regs): Likewise.
15500
15501         * combine.c (record_promoted_value): Likewise.
15502
15503         * i386.c (ix86_sched_reorder_pentium, ix86_sched_reorder_ppro):
15504         Likewise.
15505
15506         * cppinit.c (new_pending_define): Likewise.
15507
15508         * cpplib.c (skip_block_comment, skip_line_comment): Likewise.
15509
15510         * dwarf2out.c (save_rtx, splice_child_die, reverse_die_lists,
15511         AT_class, AT_flag, AT_int, AT_unsigned, AT_string, AT_ref, AT_loc,
15512         AT_addr, AT_lbl, get_AT_ref, free_AT, free_die, local_scope_p,
15513         class_scope_p): Likewise.
15514
15515         * dwarf2out.h (dwarf2out_set_demangle_name_func,
15516         dwarf2out_add_library_unit_info): Likewise.
15517
15518         * ggc.h (ggc_page_print_statistics): Likewise.
15519
15520         * haifa-sched.c (propagate_deps): Likewise.
15521
15522         * reg-stack.c (next_flags_user, record_label_references): Likewise.
15523
15524         * rtl.h (set_stack_check_libfunc): Likewise.
15525
15526         * toplev.h (set_fatal_function): Likewise.
15527
15528         * toplev.c (set_fatal_function): Delete prototype.
15529
15530         * diagnostic.c: Deconstify functions returning malloc'ed ptrs.
15531
15532 2000-02-05  Geoff Keating  <geoffk@cygnus.com>
15533
15534         * ginclude/ppc-asm.h (FUNC_START): Use USER_LABEL_PREFIX.
15535         (FUNC_END): Likewise.
15536
15537 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15538
15539         * caller-save.c: Include tm_p.h.
15540
15541 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15542
15543         * Makefile.in (libgcc.a): Add $(LIBGCC1) to libgcc.a after $(LIBGCC2).
15544
15545 2000-02-04  Neil Booth  <NeilB@earthling.net>
15546
15547         * cccp.c (main): Check 'dir' for a NULL pointer before passing
15548         it to strcmp.
15549
15550 2000-02-04  Zack Weinberg  <zack@wolery.cumb.org>
15551
15552         * recog.h: Remove NO_MD_PROTOTYPES ifdefs.
15553         * genflags.c: Use the max_operand_1 logic from genemit.c to
15554         calculate how many arguments gen_insn prototypes have.  Remove
15555         NO_MD_PROTOTYPES ifdefs from the generated file.
15556         * genoutput.c: Don't define NO_MD_PROTOTYPES in the generated
15557         file.  Cast gen_insn initializers to insn_gen_fn.
15558         * config/alpha/vms.h: Don't define NO_MD_PROTOTYPES.
15559         * gcc.texi: Remove documentation of NO_MD_PROTOTYPES.
15560
15561 2000-02-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15562
15563         * fixinc/Makefile.in (HDR): Add machname.h.
15564         (clean): Likewise.
15565
15566 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15567
15568         * config/c4x/c4x.h (c4x_compare_op0, c4x_compare_op1): Move ...
15569         (c4x_regclass_map, c4x_caller_save_map, c4x_rpts_cycles): Ditto.
15570         (c4x_cpu_version): Ditto.
15571         * config/c4x/c4x-protos.h: ... here.
15572
15573 2000-02-04  Jason Merrill  <jason@casey.cygnus.com>
15574
15575         * dwarf2out.c (add_abstract_origin_attribute): Don't call
15576         gen_abstract_function on our context if we're a nested function.
15577
15578 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15579
15580         * config/c4x/c4x.md (fixuns_truncqfqi2): Rewrite.
15581         * config/c4x/libgcc.S (ufix_truncqfhi2n): Fix.
15582
15583 2000-02-04  Bruce Korb  <bkorb@gnu.org>
15584
15585         * fixinc/genfixes(machname.h):
15586         Move the functionality from gen-machine.h into this file.
15587         UNdef MN_NAME_PAT if there are no names to change.
15588         Also, be a little kinder when AutoGen is not present.
15589
15590         * fixinc/Makefile.in(machname.h):
15591         Change the generation rule to use genfixes.
15592
15593         * fixinc/fixfixes.c(machine_name):
15594         machine_name_fix's functionality now dependent upon whether
15595         MN_NAME_PAT is defined.
15596
15597         * fixinc/fixtests.c(machine_name):
15598         ditto.
15599
15600         * fixinc/fixlib.c(mn_get_regexps): conditional on definition
15601         of MN_NAME_PAT.
15602
15603         * fixinc/fixlib.h(mn_get_regexps):
15604         ditto
15605
15606         * fixinc/gen-machine.h: DELETED
15607
15608 2000-02-04  Jan Hubicka  <jh@suse.cz>
15609             Richard Henderson  <rth@cygnus.com>
15610
15611         * i386.c (SAVE_REGS_FIRST): Remove.
15612         (ix86_initial_elimination_offset): Handle only SAVE_REGS_FIRST mode.
15613         (ix86_compute_frame_size): Likewise.
15614         (ix86_expand_prologue): Likewise.  Use pro_epilogue_adjust_stack.
15615         (ix86_emit_restore_regs): Remove.
15616         (ix86_emit_epilogue_esp_adjustment): Use pro_epilogue_adjust_stack
15617         when a frame pointer is in use.
15618         (ix86_expand_epilogue): Handle only SAVE_REGS_FIRST mode.  Use mov
15619         instead of pop to restore a register when profitable; emit leave
15620         when profitable.
15621         (ix86_attr_length_default): Handle pro_epilogue_adjust_stack
15622         as a TYPE_LEA insn.
15623         (ix86_adjust_cost): Handle pro_epilogue_adjust_stack as TYPE_ALU.
15624         * i386.md (prologue_allocate_stack): Remove.
15625         (epilogue_deallocate_stack): Remove.
15626         (pro_epilogue_adjust_stack): New.
15627
15628 2000-02-04  Richard Henderson  <rth@cygnus.com>
15629
15630         * function.c (diddle_return_value): Rework to use a callback function.
15631         Use current_function_return_rtx if it's been set up.
15632         (do_clobber_return_reg, clobber_return_register): New.
15633         (do_use_return_reg, use_return_register): New.
15634         (expand_function_end): Use them.
15635         * stmt.c (expand_null_return): Likewise.
15636         * function.h: Declare them.
15637         * flow.c (mark_regs_live_at_end): Use diddle_return_value.
15638         (mark_reg): Change arguments as appropriate for callback.
15639         * integrate.c (expand_inline_function): Revert 19 Jan change.
15640
15641 Fri Feb  4 20:25:42 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15642
15643         * tm.texi (Values in Registers): Fix typo: "fo" "for".
15644         (Misc): Say the scheduler, not the Haifa scheduler.
15645
15646 2000-02-04  Clinton Popetz  <cpopetz@cygnus.com>
15647
15648         * jump.c (mark_jump_label): Add in_mem param, check SYMBOL_REFs
15649         when in_mem is set.  Update all callers.
15650
15651 2000-02-04  Richard Henderson  <rth@cygnus.com>
15652
15653         * i386/openbsd.h (INT_ASM_OP): Define.
15654
15655 Fri Feb  4 10:51:30 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15656
15657         * tm.texi: Fix various typos.
15658
15659 Thu Feb  3 17:17:32 2000  Steve Ellcey <sje@cup.hp.com>
15660
15661         * config/pa/pa-hpux11.h (LIB_SPEC): Correct typo in !p case.
15662         (MD_STARTFILE_PREFIX_1): New macro.
15663
15664 Thu Feb  3 15:08:13 MET 2000  Jan Hubicka  <jh@suse.cz>
15665
15666         * i386.md (movstrsi, clrstrsi): Support variable sized copies, align
15667         destination when needed.
15668         (strmovsi, strsetsi): New expander.
15669         (strmovsi_1, strsetsi_1): New pattern.
15670         * i386.h (MASK_NO_ALIGN_STROP, MASK_INLINE_ALL_STROP,
15671         TARGET_ALIGN_STRINGOPS, TARGET_INLINE_ALL_STRINGOPS): New macros.
15672         (TARGET_SWITCHES) Add align-stringops and inline-all-stringops.
15673         * invoke.texi (align-stringops, inline-all-stringops): Document.
15674
15675 Wed Feb  2 23:04:47 2000   Krister Walfridsson <cato@df.lth.se>
15676
15677         * i386/netbsd.h (INT_ASM_OP): Define.
15678
15679 2000-02-02  Zack Weinberg  <zack@wolery.cumb.org>
15680
15681         * cpplib.h (cpp_reader): Add new flag, no_directives.
15682         * cpphash.c (macarg): Set it.
15683         * cpplib.c (handle_directive): If no_directives is on and we
15684         find a directive, issue an error and discard the line.
15685
15686 Wed Feb  2 13:07:10 2000  Jim Wilson  <wilson@cygnus.com>
15687
15688         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Delete 'E' check for
15689         FP constants.  Add ! TARGET_FPU check for FP constants.
15690
15691 2000-02-02  Clinton Popetz  <cpopetz@cygnus.com>
15692
15693         * flow.c (find_basic_blocks): Don't kill label_value_list
15694         here.
15695         (cleanup_cfg): Kill it here.
15696
15697 Wed Feb  2 08:12:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15698
15699         * expr.c (store_field): Ensure ALIGN is no stricter than the
15700         alignment of EXP.
15701
15702 2000-02-02  Richard Henderson  <rth@cygnus.com>
15703
15704         * jump.c (delete_insn): Partially revert 19 Jan change;
15705         don't convert unused code labels to notes at -O0.
15706
15707 2000-02-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15708
15709         * toplev.c (rest_of_compilation): Run rebuild_jump_labels after
15710         split_all_insns to recreate REG_LABEL notes for flow2 pass.
15711
15712 2000-02-01  Richard Henderson  <rth@cygnus.com>
15713
15714         * i386.c (general_no_elim_operand): New.
15715         (nonmemory_no_elim_operand): New.
15716         (ix86_expand_move): Copy eliminable operands before a push.
15717         * i386-protos.h: Declare new functions.
15718         * i386.h (CAN_ELIMINATE): Simplify.
15719         (PREDICATE_CODES): Update.
15720         * i386.md (push insns): Don't allow eliminable register operands.
15721
15722 2000-02-01  Richard Henderson  <rth@cygnus.com>
15723
15724         * flow.c (mark_regs_live_at_end): Follow expand_function_end and
15725         replace BLKmode with DECL_RTL's mode.
15726
15727 2000-02-01  Zack Weinberg  <zack@wolery.cumb.org>
15728
15729         * frame.c (find_fde): Convert for loop to do-while so compiler
15730         sees it's always executed at least once.
15731         * libgcc2.c (BBINBUFSIZE): Kill.
15732         (__bb_init_prg): Use fgets.
15733         (__bb_exit_trace_func): Don't paste strings.
15734         * unroll.c (unroll_loop): Initialize unroll_type, not
15735         unroll_number, and tweak logic to match.
15736
15737         * i386.c (ix86_expand_int_movcc): Add explicit 'return 0' in
15738         all failure paths.
15739         (ix86_flags_dependant): Likewise.  Disentangle control flow.
15740         (ix86_sched_reorder): Break guts out to
15741         ix86_sched_reorder_pentium and ix86_sched_reorder_ppro.
15742         (ix86_sched_reorder_ppro): Initialize pair2 and insnp before
15743         any possible use.
15744
15745         * i386.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Don't
15746         use string concatenation.  Don't save and restore esi.
15747
15748         * fixinc/Makefile.in (fixincl.sh): Don't depend on inclhack.def.
15749         (machname.h): Remove script to separate file.  Use two-step
15750         sequence so target is not created if script fails.
15751         * fixinc/gen-machname.h: New file.  Handle case where no non-reserved
15752         identifiers are defined.
15753         * fixinc/fixlib.c (mn_get_regexps): Return a flag: if MN_NAME_PAT is
15754         an empty string, machine_name doesn't need to do anything at
15755         all.
15756         (is_cxx_header): Add more cases to regexp.
15757         * fixinc/fixlib.h: Update prototype.
15758         * fixinc/fixtests.c, fixinc/fixfixes.c: Update callers of
15759         mn_get_regexps.
15760         * fixinc/fixincl.c: Define NO_BOGOSITY.
15761
15762         * fixinc/inclhack.def (no_double_slash, else_endif_label): Ifdef out.
15763         (hp_sysfile): Add missing comma.
15764         (math_exception): Put the wrapper ifdefs at the beginning and
15765         the end of the file.
15766         * fixinc/fixincl.x, fixinc/inclhack.sh: Regenerate.
15767
15768 2000-02-01  Richard Henderson  <rth@cygnus.com>
15769
15770         * sparc.c (fp_zero_operand): Turn into a normal predicate.
15771         Use CONST0_RTX.  Update all callers.
15772         * sparc.h, sparc-protos.h: Update accordingly.
15773         * sparc.md (fp mov insns): Use fp_zero_operand directly
15774         where applicable.
15775
15776 Wed Feb  2 02:59:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15777
15778         * tm.texi (Values in Registers): Fix typo in HARD_REGNO_NREGS
15779         example.
15780
15781 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15782
15783         * Makefile.in (specs.ready): New target.
15784         (fixinc.sh): Depend on `specs.ready' instead of `specs'.
15785
15786 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15787
15788         * fixinc.irix: Use unique filenames for writing into /tmp,
15789         * fixinc.ptx: Likewise.
15790         * fixinc.sco: Likewise.
15791         * fixinc.svr4: Likewise.
15792         * fixinc.winnt: Likewise.
15793
15794 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15795
15796         * tsystem.h: New file.
15797
15798         * Makefile.in (libgcc2.a, stmp-multilib, crtbegin.o, crtend.o,
15799         s-crtS): Depend on tsystem.h.
15800
15801         * crtstuff.c: Include tsystem.h.
15802         * frame.c: Likewise.
15803         * libgcc2.c: Likewise.
15804
15805 Tue Feb  1 19:53:27 CET 2000  Jan Hubicka  <jh@suse.cz>
15806
15807         * builtins.c (expand_builtin_memset): Expand for variable sized
15808         lengths too.
15809
15810 2000-02-01  David Billinghurst <David.Billinghurst@riotinto.com.au>
15811
15812         * config/mips/iris6.h (SUBTARGET_ASM_SPEC) : Default ISA based
15813         on ABI.
15814
15815 Tue Feb  1 00:57:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
15816
15817         * dwarfout.c (SHORT_TYPE_SIZE): Correct default.
15818
15819         * tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE.
15820
15821 2000-01-31  Chandra Chavva <cchavva@cygnus.com>
15822
15823         * combine.c (try_combine) [HAVE_cc0]: Trying to check the missed
15824         case 3->2 combining (combining with splitting) in which 2 is CC0
15825         setter/user and 3 is user. The rest of cases 2->1 and 3->2 are
15826         checked at the begining of the function with the aid of calling
15827         function 'can_combine_p'.
15828
15829 2000-01-31  Dave Brolley  <brolley@redhat.com>
15830
15831         * cccp.c (struct argdata): Redeclare 'newlines' field as 'int'.
15832
15833 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
15834
15835         * jump.c (redirect_jump): Move a NOTE_INSN_FUNCTION_END to the
15836         new label.
15837
15838 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15839
15840         * gansidecl.h (PROTO, VPROTO, PVPROTO): Delete macros.
15841
15842         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit):
15843         PROTO -> PARAMS.
15844
15845 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
15846
15847         * i386/386bsd.h, i386/beos-pe.h, i386/bsd386.h, i386/crtdll.h,
15848         i386/cygwin.h, i386/dgux.h, i386/djgpp-rtems.h, i386/djgpp.h,
15849         i386/freebsd.h, i386/gnu.h, i386/i386-aout.h, i386/i386-coff.h,
15850         i386/i386-interix.h, i386/i386elf.h, i386/linux.h, i386/lynx-ng.h,
15851         i386/lynx.h, i386/mach.h, i386/mingw32.h, i386/moss.h,
15852         i386/netbsd.h, i386/next.h, i386/openbsd.h, i386/osf1elf.h,
15853         i386/ptx4-i.h, i386/rtems.h, i386/rtemself.h, i386/sco.h,
15854         i386/sequent.h, i386/sun.h, i386/sysv4.h, i386/uwin.h, i386/vsta.h,
15855         i386/vxi386.h, i386/win-nt.h, i386/win32.h:
15856         Remove -Di386 -Acpu(i386) -Amachine(i386) from CPP_PREDEFINES.
15857
15858         * i386/osf1elf.h, i386/scodbx.h, i386/seq-sysv3.h, i386/sysv5.h:
15859         Add %(cpp_cpu) to CPP_SPEC.
15860
15861         * i386/osf1elf.h, i386/osfelf.h, i386/osfrose.h:
15862         Add %(cc1_cpu) to CC1_SPEC.
15863
15864 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
15865
15866         * c-decl.c (c_decode_option): Accept optional numeric argument to
15867         -Wformat and set warn_format.
15868         * c-common.c: Don't emit warning about non-constant printf format
15869         string unless warn_format > 1.
15870
15871 2000-01-30  Richard Henderson  <rth@cygnus.com>
15872
15873         * alpha.md (return_internal): Allow after reload only.
15874
15875 2000-01-30  Richard Henderson  <rth@cygnus.com>
15876
15877         * i386.c (ix86_compute_frame_size): Omit padding1 if the
15878         local frame size is zero.
15879
15880 2000-01-30  Richard Henderson  <rth@cygnus.com>
15881
15882         * alpha.c (alpha_expand_epilogue): Don't emit the return insn.
15883         * alpha.h (EPILOGUE_USES): New.  Mark $26 live.
15884         * alpha.md (return): Turn into an expander.
15885         (return_internal): Don't use $26.
15886         (epilogue): Emit the return insn.
15887
15888 2000-01-30  Richard Henderson  <rth@cygnus.com>
15889
15890         * alpha.md (negtf2, abstf2): Fix word order thinko.
15891         (extendsftf2): New.
15892         (trunctfsf2): Avoid intermediate rounding errors.
15893
15894 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
15895
15896         * cppfiles.c (find_position): Drop 'colp' argument, return the
15897         new line base.
15898         (read_and_prescan): Adjust to match.  Don't ever manipulate
15899         line or line_base except via find_position.
15900
15901 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
15902
15903         * c-parse.in: Apply Ulrich's changes from c-parse.y.
15904         * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
15905         Regenerate.
15906
15907 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
15908
15909         * cpperror.c (cpp_file_line_for_message): If 'line' is zero,
15910         just print "<command line>".  If 'filename' is null or an
15911         empty string, print "<stdin>" for the filename.
15912         * cpplib.c (do_define): Don't print the 'location of the
15913         previous definition' message if we're still parsing the
15914         command line.
15915         (cpp_pedwarn_with_file_and_line): Always call
15916         cpp_file_line_for_message.
15917
15918 2000-01-29  Mark Mitchell  <mark@codesourcery.com>
15919
15920         * flow.c (mark_regs_live_at_end): Fix typo.
15921
15922 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
15923
15924         * c-common.c: Adjust variable names, comments, help strings to c99.
15925         * c-lex.c: Likewise.
15926         * c-parse.y: Likewise.
15927         * c-tree.h: Likewise.
15928         * cccp.c: Likewise.
15929         * cpplib.h: Likewise.
15930         * c-decl.c: Likewise.  Recognize options with names "*99" as well.
15931         * cppinit.c: Likewise.
15932
15933 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15934
15935         * c4x.h (INIT_TARGET_OPTABS): Add all missing local optab entries.
15936         * c4x.c: Define the optab rtx values.
15937         (c4x_add_gc_roots): Add the ggc roots for these optab rtx values.
15938         (c4x_emit_libcall): Use new optab rtx values.
15939         (c4x_emit_libcall3): Likewise.
15940         (c4x_emit_libcall_mulhi): Likewise.
15941         * c4x-protos.h: Add prototypes for optab rtx values and change
15942         prototypes for above c4x_emit_libcall functions.
15943
15944 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15945
15946         * c4x.c (c4x_output_ascii): Restrict line length of output when TI
15947         syntax is used.
15948         (c4x_function_prologue): Use regnames intead of float_reg_names when
15949         TI syntax is used.
15950         (c4x_function_epilogue): Likewise.
15951         (c4x_print_operand): Likewise.
15952         * c4x.h (HOST_WIDE_INT_PRINT_HEX): Redefine.
15953         * c4x.md (set_high): Disable for TARGET_TI.
15954
15955 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15956
15957         * c4x.h (PREFERRED_RELOAD_CLASS): Change to restrict the reloading
15958         of framepointer + constant to ADDR_REGS class.
15959         * c4x.md (addqi3, addqi3_noclobber_reload): Update.
15960         * c4x.c (std_or_reg_operand): New function.
15961         * c4x-protos.h (std_or_reg_operand): Prototype it.
15962
15963 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
15964
15965         * t-c4x: Change qi,qf,di,df into si,sf,hi,hf to generate same
15966                 object names as libgcc2.c.
15967         * libgcc.S: Use newly defined names.
15968
15969 Fri Jan  7 19:48:04 CET 2000  Jan Hubicka  <jh@suse.cz>
15970         * sbitmap.c (sbitmap_first_set_bit, sbitmap_last_set_bit): New
15971         function.
15972         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit): Declare.
15973         * basic_block.h (FLOW_LOOP_FIRST_BLOCK): New macro.
15974         (FLOW_LOOP_LAST_BLOCK): Likewise.
15975
15976 2000-01-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15977
15978         * basic-block.h (struct loop): New fields 'first' and 'last'.
15979         * flow.c (flow_loops_find): Compute loop->first and loop->last.
15980         (flow_loops_dump): Use loop->first to check for NOTE_INSN_LOOP_BEG
15981         and loop->last to check for NOTE_INSN_LOOP_END.
15982
15983 Fri Jan 28 10:57:58 2000  Jason Eckhardt  <jle@cygnus.com>
15984
15985         * predict.c (estimate_probability): Use the new FIRST and LAST fields
15986         of the loop descriptor rather than HEADER and LATCH. Also added
15987         missing break statements as well making some coding style modifications
15988         as suggested by Michael Hayes.
15989
15990 2000-01-28  Richard Henderson  <rth@cygnus.com>
15991
15992         * flow.c (find_basic_blocks): Remove do_cleanup argument.
15993         Break out that code ...
15994         (cleanup_cfg): ... here.
15995         (commit_one_edge_insertion): Detect a return instruction being
15996         emitted to an edge.  Emit a barrier following; clear fallthru.
15997         (commit_edge_insertions): Verify CFG consistency.
15998         * function.c (expand_function_start): Kill unused variable.
15999         (expand_function_end): Likewise.
16000         (thread_prologue_and_epilogue_insns): Use insert_insn_on_edge
16001         to insert the epilogue.
16002
16003         * gcse.c (gcse_main): Adjust for find_basic_blocks change.
16004         (delete_null_pointer_checks): Likewise.
16005         * output.h: Likewise.
16006         * reg-stack.c (reg_to_stack): Likewise.
16007         * toplev.c (rest_of_compilation): Likewise.  Run
16008         thread_prologue_and_epilogue_insns after rebuilding the CFG.
16009
16010 2000-01-28  Richard Henderson  <rth@cygnus.com>
16011
16012         * Makefile.in (flow.o): Revert 24 Jan change.
16013         * flow.c (mark_regs_live_at_end): Likewise.  Force BLKmode
16014         FUNCTION_VALUE result to DECL_RESULT's mode.
16015
16016         * haifa-sched.c (schedule_insns): Don't recompute reg info
16017         after reload.
16018
16019 2000-01-28  Zack Weinberg  <zack@wolery.cumb.org>
16020
16021         * configure.in: Make --enable-cpplib the default.
16022         * configure: Regenerate.
16023         * gcc.dg/990119-1.c: No longer expected to fail.
16024
16025 2000-01-28  Bernd Schmidt  <bernds@cygnus.co.uk>
16026
16027         * jump.c (jump_optimize_1): Delete an optimization that is also done
16028         by merge_blocks in flow.
16029
16030 2000-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16031
16032         * diagnostic.c (build_message_string, output_printf,
16033         line_wrapper_printf): Add ATTRIBUTE_PRINTF_*.
16034         (build_location_prefix): Fix non-literal format string.
16035
16036 2000-01-27  Richard Henderson  <rth@cygnus.com>
16037
16038         * alpha.md (trunctfsf2): New.
16039
16040 2000-01-27  Andrew Hobson  <ahobson@eng.mindspring.net>
16041
16042         * configure.in (alpha-dec-osf5): Enable MASK_SUPPORT_ARCH.
16043
16044 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
16045
16046         * cppinit.c (cpp_handle_option): Recognize C++ comments under
16047         -std=gnu89.
16048         * cpplib.c (skip_block_comment, skip_line_comment): Split code
16049         out of...
16050         (skip_comment) ... here.  Permit C++ comments in system
16051         headers always.  Warn about C++ comments in user code under
16052         -std=gnu89 -pedantic.
16053         (copy_comment): Use skip_comment.
16054         (cpp_skip_hspace, cpp_get_token): skip_comment can no longer
16055         return EOF.
16056         (consider_directive_while_skipping, do_else, do_endif): Call
16057         validate_else unconditionally.
16058         (validate_else): Check CPP_PEDANTIC here.  Accept non-comment
16059         text after the conditional in a system header.
16060         * cpplib.h (struct cpp_buffer): Add flag
16061         warned_cplusplus_comments.
16062
16063 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
16064
16065         * emit-rtl.c (unshare_all_rtl): Unshare virtual parameters too.
16066         Use unshare_all_rtl_1.
16067         (unshare_all_rtl_again): New function.
16068         (unshare_all_rtl_1): New function split out of unshare_all_rtl.
16069
16070         * function.c (purge_addressof_1): Use unshare_all_rtl_again
16071         rather than resetting the 'used' flags ourself.
16072
16073         * toplev.c (rest_of_compilation): Add current_function_decl
16074         to the unshare_all_rtl call.
16075         * tree.h: Prototype unshare_all_rtl.
16076         * rtl.h: Prototype unshare_all_rtl_again here.
16077
16078 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
16079
16080         * genoutput.c (output_prologue): Include ggc.h in generated
16081         files.
16082         * Makefile.in (insn-output.o): Depends on ggc.h.
16083
16084 2000-01-27  Ian Dall  <ian@sibyl.beware.dropbear.id.au>
16085             Hans-Peter Nilsson  <hp@bitrange.com>
16086
16087         * ns32k/xm-ns32k.h (memcpy, memset, memcmp): Delete.
16088         Remove redundant include of xm-ns32k.h.
16089         * ns32k/xm-genix.h (memcpy, memset, memcmp): Add definitions.
16090         Remove redundant include of xm-ns32k.h.
16091         * ns32k/xm-netbsd.h (memcpy, memset, memcmp): No longer undefine.
16092         Remove redundant include of xm-ns32k.h.
16093         * ns32k/netbsd.h (TARGET_DEFAULT): Enable multiply-add instructions.
16094
16095         * ns32k/ns32k.h: Update comment on multiply-add instructions.
16096         (TARGET_SWITCHES): Add documentation strings.
16097         (DWARF_FRAME_REGNUM): Override default definition.
16098         (REG_CLASS_CONTENTS): Add comments.
16099         (SUBSET_P): Format to reduce line length.
16100         (SMALL_REGISTER_CLASSES): Make a run time option.
16101         (GO_IF_NONINDEXED_ADDRESS): Reformat.
16102         (GO_IF_LEGITIMATE_ADDRESS): Ensure that cfun is non NULL before
16103         dereferencing it.  Braces to avoid "ambiguous else" were misplaced.
16104         (regclass_map): fix typo in comment.
16105         * ns32k/ns32k.c: Add spaces before parentheses for consistant style.
16106         Prefer gen_rtx_FOO(...) to gen_rtx(FOO,...).
16107         (trace, reg_or_mem_operand): Delete, unused function.
16108         (calc_address_cost): Small offsets are cheaper than large ones.
16109         (expand_block_move): Generate more efficient code when bytes is a
16110         known at compile time.
16111         * ns32k/ns32k.md: Alternate constraints for multiply-add instructions.
16112         (udivmodsi4, udivmodhi4, udivmodqi4): Use nonimmediate_operand
16113         instead of reg_or_mem_operand.
16114
16115         * ns32k/ns32k.md: Use nonimmediate_operand or stricter for outputs,
16116         not general_operand.  Similarly use "=rm" or stricter, not "=g".
16117         For input operands, use stricter constraints than "g" if not
16118         general_operand.  Similarly use stricter predicate than
16119         "general_operand" when stricter constraints than "g" are present,
16120         except for matching constraints.
16121         (movstrsi): Use "memory_operand" for operands 0 and 1.
16122         (truncsiqi2, truncsihi2, trunchiqi2): Remove.
16123         (udivmoddisi4_internal): Use nonimmediate_operand for operand 0,
16124         not reg_or_mem_operand.
16125         (udivmoddisi4): Ditto.
16126         Use nonimmediate_operand for operand 1, not reg_or_mem_operand.
16127         Use nonimmediate_operand for operand 3, not register_operand.
16128         (udivmoddiqi4_internal): Use register_operand for operand 1, not
16129         reg_or_mem_operand.
16130
16131 2000-01-27  Fred Fish  <fnf@be.com>
16132
16133         * gthr-posix.h: Fix typo; compatibily -> compatibility.
16134         * gthr-single.h: Likewise.
16135         * gthr-solaris.h: Likewise.
16136         * gthr-vxworks.h: Likewise.
16137         * gthr-win32.h: Likewise.
16138         * gthr.h: Likewise.
16139
16140 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
16141
16142         * cppinit.c: Add " (cpplib)" to end of string printed by
16143         -v / --version.
16144
16145 2000-01-27  Richard Henderson  <rth@cygnus.com>
16146
16147         * alpha.c (alpha_emit_conditional_move): Use VOIDmode when
16148         testing for a signed comparison.
16149         (alpha_emit_floatuns): New.
16150         * alpha-protos.h: Declare it.
16151         * alpha.md (floatunsdisf2, floatunsdidf2): New.
16152         (extendsfdf2): Tidy.
16153
16154 2000-01-27  Jakub Jelinek  <jakub@redhat.com>
16155
16156         * config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but
16157         no -g option specifying debugging format, default to -gstabs+.
16158
16159 Wed Jan 26 22:19:14 1999  J"orn Rennecke  <amylaar@cygnus.co.uk>
16160
16161         * calls.c (special_function_p): New argument fork_or_exec.
16162         (expand_call): When profile_arc_flag is set and the function
16163         is in the fork_or_exec group, call __bb_fork_func first.
16164         * libgcc2.c, _bb module (__bb_fork_func): New function.
16165         (__bb_exit_func): If fcntl F_SETLKW is available, use it to lock
16166         output file.
16167         * config/svr4.h (TARGET_HAS_F_SETLKW): Define.
16168         * tree.h (special_function_p): Update prototype.
16169
16170 2000-01-26  Richard Henderson  <rth@cygnus.com>
16171
16172         * alpha.c (alpha_split_tfmode_pair): New.
16173         * alpha-protos.h: Declare it.
16174         * alpha.md (abstf2, negtf2): New.
16175         (movtf insn): Add input G constraint.
16176         (movtf splitter): Use alpha_split_tfmode_pair.
16177
16178 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16179
16180         * i386/cygwin.h: PROTO -> PARAMS.
16181
16182 2000-01-26  Jakub Jelinek  <jakub@redhat.com>
16183
16184         * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
16185         TARGET_ARCH32 again. Handle ORDERED, UN* and LTGT comparisons
16186         using _Qp_cmp/_Q_cmp and testing the return value.
16187         (print_operand): Call reverse_condition_maybe_unordered if
16188         we are handling CCFPmode or CCFPEmode.
16189         Handle ORDERED, UN* and LTGT comparisons.
16190         * config/sparc/sparc.md (cmptf): Use even on TARGET_ARCH32
16191         if not TARGET_HARD_QUAD.
16192         (seq, sne, sgt, slt, sge, sle, beq, bne, bgt, blt, bge, ble,
16193         bunordered, bordered, bungt, bunlt, buneq, bunge, bunle, bltgt):
16194         Call sparc_emit_float_lib_cmp even on TARGET_ARCH32.
16195         Adjust gen_b* calls so that they reflect return comparison of
16196         sparc_emit_float_lib_cmp.
16197
16198 2000-01-26  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16199
16200         * config/alpha/alpha.c (alpha_emit_xfloating_cvt): Do not assume
16201         incoming operands array is large enough for one more operand.
16202         (alpha_emit_xfloating_arith): Likewise.
16203
16204 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16205
16206         * fixinc/Makefile.in (machname.h): SunOS 4 sed can't handle a
16207         file with one line and no trailing newline.
16208         Patch by Kaveh Ghazi <ghazi@caip.rutgers.edu>.
16209         * fixinc/fixtests.c (machine_name_test): Fix fencepost error
16210         checking if the match is on the line.
16211         * fixinc/gnu-regex.c: Provide regerror not __regerror.
16212
16213 2000-01-25  Richard Henderson  <rth@cygnus.com>
16214
16215         * sparc.c (output_cbranch): Fix accidental squashing of the
16216         fp branch pre-delay nop.
16217
16218 2000-01-25  Richard Henderson  <rth@cygnus.com>
16219
16220         * tree.def (UNNE_EXPR): Remove.
16221         * c-typeck.c (build_binary_op): Don't handle it.
16222         * expr.c (expand_expr, do_jump, do_store_flag): Likewise.
16223
16224         * rtl.def (UNNE): Remove.
16225         (LTGT): Add.
16226         * jump.c (reverse_condition): Update accordingly.
16227         (swap_condition): Likewise.
16228         (comparison_dominates_p): Handle unordered comparisons.
16229         (reverse_condition_maybe_unordered): New.
16230         * rtl.h (reverse_condition_maybe_unordered): Declare.
16231
16232         * sparc.c (select_cc_mode): Update for UNNE/LTGT.
16233         (output_cbranch): Use reverse_condition_maybe_unordered and LTGT.
16234         * sparc.h (REVERSIBLE_CC_MODE): Always true.  Update docs.
16235         * sparc.md (bltgt): New.
16236
16237 2000-01-25  Nick Clifton  <nickc@redhat.com>
16238
16239         * emit-rtl.c (emit_insn): Only check machine class insns for
16240         improper emission of a RETURN.
16241
16242 2000-01-25  Richard Henderson  <rth@cygnus.com>
16243
16244         * Makefile.in (flow.o): Depend on $(EXPR_H).
16245         * flow.c (mark_regs_live_at_end): Use hard_function_value, i.e.
16246         duplicate the structure of diddle_return_value for keeping regs live.
16247
16248 2000-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16249
16250         * loop.c (current_loop_info): Delete.
16251         (consec_sets_invariant_p): Add loop argument, update callers.
16252         (get_condition_for_loop): Likewise.
16253         (count_nonfixed_reads, update_giv_derive): Likewise.
16254         (simplify_giv_expr, general_induction_var): Likewise.
16255         (consec_sets_giv, recombine_givs): Likewise.
16256         (move_movables): Delete loop_start and loop_end arguments,
16257         add loop argument, and update callers.
16258         (find_mem_givs, check_final_value): Likewise.
16259         (record_giv, maybe_eliminate_biv, maybe_eliminate_biv_1): Likewise.
16260         (loop_invariant_p): Rename from invariant_p, add loop argument, and
16261         update callers.
16262         (basic_induction_var): Add loop argument, delete loop_level argument,
16263         and update callers.
16264         * unroll.c (iteration_info): Delete loop_start and loop_end arguments,
16265         add loop argument, and update callers.
16266         (find_splittable_regs, find_splittable_givs): Likewise.
16267         (reg_dead_after_loop, loop_find_equiv_value): Likewise.
16268         (final_biv_value, final_giv_value, back_branch_in_range_p): Likewise.
16269         (biv_total_increment): Delete loop_start and loop_end arguments;
16270         update callers.
16271         (precondition_loop_p): Delete loop_start and loop_info arguments;
16272         update callers.
16273         * loop.h (get_condition_for_loop): Add loop argument.
16274         (biv_total_increment): Delete loop_start and loop_end arguments.
16275         (precondition_loop_p): Delete loop_start and loop_info arguments;
16276         add loop argument.
16277         (final_biv_value): Delete loop_start and loop_end arguments;
16278         add loop argument.
16279         (final_giv_value, back_branch_in_range_p): Likewise.
16280
16281 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
16282
16283         * config/mips/mips.h (LEGITIMATE_CONSTANT_P): Fix for mips16.
16284
16285 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
16286
16287         * Makefile.in (c-gperf.h) : Change the "See" pointer to
16288         point to the new "generated_files" doc.
16289
16290 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
16291
16292         * config/fp-bit.c (_unord_f2): Fix typo.
16293
16294 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16295
16296         * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c,
16297         c-typeck.c, objc/objc-act.c: Remove all references to obstack
16298         functions obsoleted by GC, such as push_obstacks_nochange,
16299         end_temporary_allocation, savealloc, saveable_tree_cons, etc.
16300         and code which existed only to decide whether or not to call
16301         them.  Remove now-unused NESTED argument from start_function;
16302         all callers changed.  Do not change behavior based on ggc_p.
16303         The use of the ixp_obstack in c-iterate.c and the util_obstack
16304         in objc/objc-act.c remain; these are not obsoleted by garbage
16305         collection.
16306         * c-tree.h: Update prototype for start_function.
16307
16308         * c-parse.y, c-parse.c, objc/objc-parse.c, objc/objc-parse.y: Rebuild.
16309
16310 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
16311
16312         * config/mips/mips.md (zero_extendsidi2_internal): Disable for
16313         mips16.
16314
16315 2000-01-25  Richard Henderson  <rth@cygnus.com>
16316
16317         * sparc-protos.h (select_cc_mode): Declare.
16318         * sparc.c (select_cc_mode): New.  Handle unordered compares.
16319         (output_cbranch): Always reverse via code change.  Handle
16320         unordered compares.  Factor tests and string updates.
16321         * sparc.h (SELECT_CC_MODE): Split out to select_cc_mode.
16322         (REVERSIBLE_CC_MODE): Also exclude CCFPmode.
16323         * sparc.md (bunordered, bordered): New.
16324         (bungt, bunlt, buneq, bunge, bunle): New.
16325
16326 2000-01-25  Richard Henderson  <rth@cygnus.com>
16327
16328         * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root.
16329         * ggc-common.c (ggc_add_rtx_varray_root): New.
16330         (ggc_mark_rtx_varray): New.
16331         (ggc_mark_rtx_varray_ptr): New.  Shift all ggc_mark_foo_ptr
16332         functions down below ggc_mark_foo.
16333         * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare.
16334
16335 2000-01-25  Richard Henderson  <rth@cygnus.com>
16336
16337         * alpha.c (secondary_reload_class): Don't allocate a secondary
16338         for integral mode memories into FLOAT_REGS.  Rearrange the more
16339         complicated memory expression inward.
16340
16341 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
16342
16343         * inclhack.def: Fixes to play nicer with FreeBSD, and
16344         corrections to comments.
16345         (cxx_unready): Add select expression.
16346         (irix_sockaddr): Add bypass expression.
16347         (machine_ansi_h_va_list): New fix.
16348         (stdio_va_list): No need to edit _BSD_VA_LIST_.
16349         Split out addition of "#include <stdarg.h>" to...
16350         (stdio_stdarg_h): ... here.
16351         (systypes_for_aix): Rename to systypes_stdlib_size_t.  Apply
16352         to stdlib.h also.  Do not munge _BSD_SIZE_T_.
16353         (sysz_stdlib_for_sun): Delete duplicate fix for unprotected
16354         size_t.
16355         (ultrix_ifdef): Tighten up select expression.
16356
16357         * fixincl.tpl: Exorcise 'exesel'.  Rewrite calculations of
16358         re_ct and max_mach to avoid use of shell.  Make printed names
16359         match names in inclhack.def.  Use static copyright date.
16360         Don't count c_test and test expressions as requiring regex_t
16361         slots.  Add some commentary.
16362         * inclhack.tpl: Do not include the 'This script contains N
16363         fixup scripts' line if PROGRAM is defined.  Use static
16364         copyright date.
16365
16366 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
16367
16368         * dwarf2out.c: include "varray.h", not dyn-string.h.
16369         (ASM_OUTPUT_DWARF2_ADDR_CONST, ASM_NAME_TO_STRING): Lose.
16370         (addr_const_to_string, addr_to_string): Lose.
16371         (ASM_OUTPUT_DWARF_ADDR_CONST): Copy from dwarfout.c.
16372         (struct dw_val_struct): val_addr is now an rtx.
16373         (add_AT_addr, AT_addr, free_AT, output_aranges): Adjust.
16374         (used_rtx_varray): New varray.
16375         (dwarf2out_init): Initialize it.
16376         (save_rtx): New fn.
16377         (mem_loc_descriptor, add_const_value_attribute): Call it instead of
16378         addr_to_string.
16379         * arm/telf.h, arm/unknown-elf.h, mn10200.h, mn10300.h,
16380         sparc/sp64-elf.h: Remove definition of ASM_OUTPUT_DWARF2_ADDR_CONST.
16381         * Makefile.in (dwarf2out.o): Update dependencies.
16382
16383 2000-01-24  Richard Henderson  <rth@cygnus.com>
16384
16385         * i386.c (i386_dwarf_output_addr_const): New.
16386         * i386.h (ASM_OUTPUT_DWARF_ADDR_CONST): New.
16387
16388         * dwarf2out.c (mem_loc_descriptor): Call ASM_SIMPLIFY_DWARF_ADDR
16389         if defined.
16390         * dwarfout.c (output_mem_loc_descriptor): Likewise.
16391         * i386.c (i386_simplify_dwarf_addr): New.
16392         * i386.h (ASM_SIMPLIFY_DWARF_ADDR): New.
16393
16394 Mon Jan 24 16:56:10 2000  Jim Wilson  <wilson@cygnus.com>
16395
16396         * dwarf2out.c (gen_struct_or_union_type_die): Set complete if
16397         TYPE_STUB_DECL is NULL.
16398
16399 2000-01-24  Richard Henderson  <rth@cygnus.com>
16400
16401         * builtins.c (expand_tree_builtin): Move ...
16402         * c-common.c (expand_tree_builtin): ... here.
16403
16404 2000-01-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16405
16406         * loop.h (LOOP_INFO): New accessor macro.
16407         * basic-block.h (struct loop): Rename field `info' to `aux'.
16408         * loop.c (scan_loop): Replace loop->info with LOOP_INFO (loop).
16409         (prescan_loop, strength_reduce, check_dbra_loop, insert_bct): Likewise.
16410         * unroll.c (loop_iterations, unroll_loop): Likewise.
16411
16412 2000-01-24  Christopher Faylor <cgf@cygnus.com>
16413
16414         * config/i386/t-cygwin: Accomodate new winsup directory layout
16415         when searching for include files.
16416
16417 2000-01-24  Richard Henderson  <rth@cygnus.com>
16418
16419         * rtl.def: Add unordered fp comparisions.
16420         * tree.def: Likewise.
16421         * tree.h: Add ISO C 9x unordered fp comparision builtins.
16422
16423         * builtins.c (expand_tree_builtin): New function.
16424         * c-typeck.c (build_function_call): Use it.
16425         (build_binary_op): Support unordered compares.
16426         * c-common.c (c_common_nodes_and_builtins): Add unordered compares.
16427
16428         * combine.c (known_cond): Handle reverse_condition returning UNKNOWN.
16429         (reversible_comparison_p): Allow UNORDERED/ORDERED to be reversed.
16430         * cse.c (fold_rtx): Check FLOAT_MODE_P before reversing.
16431         (record_jump_equiv): Handle reverse_condition returning UNKNOWN.
16432         * jump.c (reverse_condition): Don't abort for UNLE etc, but
16433         return UNKNOWN.
16434         (swap_condition): Handle unordered compares.
16435         (thread_jumps): Check can_reverse before reversing.
16436         * loop.c (get_condition): Likewise.  Allow UNORERED/ORDERED to be
16437         reversed for FP.
16438
16439         * optabs.c (can_compare_p): New argument CODE.  Verify branch or
16440         setcc is present before acking for cmp_optab.  Update all callers.
16441         (prepare_float_lib_cmp, init_optabs): Handle UNORDERED.
16442         * expmed.c (do_cmp_and_jump): Update for can_compare_p.
16443         * expr.c (expand_expr): Likewise.  Support unordered compares.
16444         (do_jump, do_store_flag): Likewise.
16445         * expr.h (enum libfunc_index): Add unordered compares.
16446
16447         * Makefile.in (FPBIT_FUNCS): Add _unord_sf.
16448         (DPBIT_FUNCS): Add _unord_df.
16449         * config/fp-bit.c (_unord_f2): New.
16450         * fp-test.c (main): Try unordered compare builtins.
16451
16452         * alpha-protos.h (alpha_fp_comparison_operator): Declare.
16453         * alpha.c (alpha_comparison_operator): Check mode properly.
16454         (alpha_swapped_comparison_operator): Likewise.
16455         (signed_comparison_operator): Likewise.
16456         (alpha_fp_comparison_operator): New.
16457         (alpha_emit_conditional_branch): Handle unordered compares.
16458         * alpha.h (PREDICATE_CODES): Update.
16459         * alpha.md (fp compares): Use alpha_fp_comparison_operator.
16460         (bunordered, bordered): New.
16461
16462 2000-01-24  Richard Henderson  <rth@cygnus.com>
16463
16464         * alpha.c (alpha_emit_xfloating_cvt): Thinko in operand manipulation.
16465         * alpha.md (movtf): New expander, insn, and splitter.
16466
16467 Mon Jan 24 19:49:47 MET 2000  Jan Hubicka  <jh@suse.cz>
16468
16469         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
16470         dead registers.
16471
16472 Mon Jan 24 17:37:31 MET 2000  Jan Hubicka  <jh@suse.cz>
16473
16474         * i386.h (FIRST_PSEUDO_REGISTER): Set to 21.
16475         (FIXED_REGISTERS, CALL_USED_REGISTERS,
16476          REG_ALLOC_ORDER): Add frame pointer
16477         (FRAME_POINTER_REGNUM): Set to 20
16478         (HARD_FRAME_POINTER_REGNUM): New macro.
16479         (ELIMINABLE_REGS): Eliminate ARG_POINTER and FRAME_POINTER
16480         to HARD_FRAME_POINTER.
16481         (REGNO_OK_FOR_BASE_P): Accept FRAME_POINTER_REGNUM
16482         (REG_OK_FOR_INDEX_NONSTRICT_P): Likewise.
16483         (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
16484         (HI_REGISTER_NAMES): Add "frame".
16485         (CAN_ELIMINATE): Handle FRAME_POINTER_REGNUM elimination.
16486         (debug_reg): Handle FRAME_POINTER_REGNUM.
16487         (reg_class): Add arg pointer and frame pointer to NON_Q_REGS,
16488         GENERAL_REGS and INDEX_REGS.
16489         * i386.c (SAVED_REGS_FIRST): new macro.
16490         (AT_BP): Use hard_frame_pointer_rtx instead of frame_pointer_rtx
16491         (ix86_decompose_address, memory_address_length): Likewise.
16492         (regclass_map): Add frame pointer.
16493         (call_insn_operand): Handle frame_pointer_rtx.
16494         (reg_no_sp_operand): Likewise.
16495         (ix86_decompose_address): Handle frame_pointer_rtx as stack_pointer_rtx.
16496         (print_operand, legitimize_pic_address): Fix formating.
16497         (ix86_compute_frame_size): Make static, update prototype, new
16498         parameters padding1, padding2, use ix86_nsaved_regs, use
16499         stack_alignment_needed.
16500         (ix86_initial_elimination_offset): Handle FRAME_POINTER_REGNUM
16501         to HARD_FRAME_POINTER_REGNUM conversions.
16502         (ix86_expand_prologue): Handle SAVED_REGS_FIRST prologues.
16503         (ix86_expand_epilogue): Handle SAVED_REGS_FIRST epilogues.
16504         (print_reg): Abort on FRAME_POINTER_REGNUM
16505
16506 Mon Jan 24 16:50:08 MET 2000  Jan Hubicka  <jh@suse.cz>
16507
16508         * i386.h (PREDICATE_CODES): Add aligned_operand.
16509         * i386.c (aligned_operand): New function.
16510         (ix86_aligned_p): Kill.
16511         * i386.md (movhi_1): Emit mov for aligned operands.
16512         (promoting peep2s): Use aligned_operand.
16513
16514 2000-01-23  Zack Weinberg  <zack@wolery.cumb.org>
16515
16516         * fixinc/fixfixes.c (fix_char_macro_uses): Correct regular
16517         expression to allow underscores in macro names.
16518         (fix_char_macro_defines): Increment scanning pointer.
16519
16520 2000-01-23  Richard Henderson  <rth@cygnus.com>
16521
16522         * alpha/osf.h (TARGET_HAS_XFLOATING_LIBS): Define.
16523         * alpha/osf5.h: New file.
16524         * configure.in (alpha-*-osf5): Add it to tm_file.
16525
16526         * emit-rtl.c (operand_subword): Support TFmode on a 64-bit target.
16527
16528         * alpha-protos.h (alpha_emit_xfloating_arith): Declare.
16529         (alpha_emit_xfloating_cvt, function_arg): Declare.
16530         * alpha.c (alpha_emit_conditional_branch): Call
16531         alpha_emit_xfloating_compare for TFmode compares.
16532         (alpha_lookup_xfloating_lib_func): New.
16533         (alpha_compute_xfloating_mode_arg): New.
16534         (alpha_emit_xfloating_libcall): New.
16535         (alpha_emit_xfloating_arith): New.
16536         (alpha_emit_xfloating_compare): New.
16537         (alpha_emit_xfloating_cvt): New.
16538         (print_operand): Add default abort case.
16539         (function_arg): Mind FUNCTION_ARG_PASS_BY_REFERENCE.
16540         * alpha.h (TARGET_HAS_XFLOATING_LIBS): New.
16541         (BIGGEST_ALIGNMENT): Increase to 128 bits.
16542         (RETURN_IN_MEMORY): True for TF/TCmode.
16543         (ALPHA_ARG_SIZE): TF/TCmode is passed indirect.
16544         (FUNCTION_ARG): Move to function_arg.
16545         (FUNCTION_ARG_PASS_BY_REFERENCE): New.
16546         (ASM_OUTPUT_LONG_DOUBLE): New.
16547         (ASM_OUTPUT_DOUBLE): Always output bits.
16548         * alpha.md (addtf3, divtf3, multf3, subtf3, cmptf): New.
16549         (fix_trunctfdi2, floatditf2, floatunsditf2): New.
16550         (extenddftf2, trunctfdf2): New.
16551
16552 2000-01-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16553
16554         * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Moved...
16555         * config/sparc/sol2.h: ... here.
16556
16557 2000-01-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16558
16559         * basic-block.h (struct loops): New field `levels'.
16560         * flow.c (flow_loops_level_compute): Traverse all outer loops.
16561         (flow_loop_level_compute): Initialise level to 1.
16562         (flow_loops_find): Set loops->levels.
16563         (flow_loops_dump): Print loops->levels.
16564
16565 2000-01-23  Richard Henderson  <rth@cygnus.com>
16566
16567         * libgcc2.c (dwarf_reg_size_table): Size with DWARF_FRAME_REGISTERS.
16568         (throw_helper): Iterate over DWARF_FRAME_REGISTERS.
16569
16570 2000-01-23  Richard Henderson  <rth@cygnus.com>
16571
16572         * i386.c (dbx_register_map, svr4_dbx_register_map): New.
16573         * i386.h (DBX_REGISTER_NUMBER): Use them.
16574         * i386/beos-elf.h, i386/freebsd-elf.h, i386/i386elf.h: Likewise.
16575         * i386/linux.h, i386/osfrose.h, i386/ptx4-i.h: Likewise.
16576         * i386/rtemself.h, i386/sco5.h, i386/sysv4.h: Likewise.
16577         * i386/sequent.h: Kill incorrect comment.
16578
16579 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
16580
16581         * ggc-page.c (struct page_entry): Make `context_depth' an
16582         `unsigned short'.
16583         (struct globals): Likewise.
16584
16585 2000-01-23  Clinton Popetz  <cpopetz@cygnus.com>
16586
16587         * loop.c (check_dbra_loop): When checking a loop for
16588         reversability, check the source of any stores to ensure
16589         they don't depend on an initial value.
16590
16591 2000-01-23  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16592
16593         * config/c4x/c4x.h (ASM_OUTPUT_BSS): Redefine.
16594
16595 2000-01-22  Zack Weinberg  <zack@wolery.cumb.org>
16596
16597         * fixinc/fixincl.c: Move declarations of 'pz_fname' and
16598         'pz_scan' into scope of entire function.  Only affects
16599         compiles with -DDEBUG.
16600
16601 2000-01-22  Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>
16602
16603         * config/elfos.h (UNIQUE_SECTION): Restore uninitialised data
16604         section naming to that prior to 2000-01-07 patch.
16605         * config/mips/elf.h (UNIQUE_SECTION): Ditto.
16606         * config/mips/elf64.h (UNIQUE_SECTION): Ditto.
16607         * config/mips/iris6gld.h (UNIQUE_SECTION): Ditto.
16608         * config/i386/interix.c (UNIQUE_SECTION): Ditto.
16609         * config/i386/winnt.c (UNIQUE_SECTION): Ditto.
16610
16611 2000-01-22  Bernd Schmidt  <bernds@cygnus.co.uk>
16612
16613         * config/arm/arm.c (soft_df_operand): Reject SUBREGs containing a
16614         constant.
16615
16616 2000-01-21  Jim Wilson  <wilson@cygnus.com>
16617
16618         * fixinc/inclhack.tpl: Test for directory before trying to cd into it.
16619         * fixinc/fixincl.sh, fixinc/inclhack.sh: Regenerate.
16620
16621 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
16622
16623         * cpphash.c (change_newlines): Delete function.
16624         (struct argdata): Delete 'newlines' and 'use_count' fields.
16625         (macroexpand): Remove code referencing those fields.
16626
16627 2000-01-22  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16628
16629         * loop.c (loops_info): New variable.
16630         (loop_optimize): Allocate loops->array and free it on exit.
16631         Allocate memory for loops_info and assign to each loop,
16632         replacing alloca.
16633         (find_and_verify_loops): Do not allocate loops->array.
16634
16635 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
16636
16637         * fixinc/fixfixes.c (machine_name_fix): Don't free 'scratch'.
16638
16639 2000-01-21  Jakub Jelinek  <jakub@redhat.com>
16640
16641         * config/sparc/sparc.md (movsi_pic_label_ref): Avoid creating new
16642         pseudos if expanded after first flow.
16643         (movdi_pic_label_ref): Likewise.
16644
16645 2000-01-20  Richard Henderson  <rth@cygnus.com>
16646
16647         * jump.c (jump_optimize_1): Don't do addr_vec optimizations at -O0.
16648
16649 2000-01-20  Zack Weinberg  <zack@wolery.cumb.org>
16650
16651         * Makefile.in (fixinc.sh): Depend on specs.
16652         * fixinc/Makefile.in: Add rule to create machname.h.
16653         (fixlib.o): Depend on machname.h.
16654         * fixinc/fixtests.c (machine_name): New test.
16655         * fixinc/fixfixes.c (machine_name): New fix.
16656         * fixinc/fixlib.c (mn_get_regexps): New helper function for
16657         the machine_name test and fix.
16658         * fixinc/fixlib.h: Prototype it.
16659         * fixinc/inclhack.def (machine_name): Use the C test and fix.
16660         * fixinc/fixincl.x, fixinc/inclhack.sh: Rebuild.
16661
16662         * gcc.c (do_spec_1) [case P]: Take care not to create
16663         identifiers with three leading or trailing underscores.
16664
16665         * fixinc/Makefile.in (FIXINC_DEFS): Add -DIN_GCC.
16666         (fixincl): Don't specify libraries twice on link line.
16667         (gnu-regex.o): Remove special rule.
16668         * fixinc/gnu-regex.c: Define REGEX_MALLOC if C_ALLOCA was
16669         defined by config.h.  Do not define _REGEX_RE_COMP.
16670         (regcomp): Allocate and initialize a fastmap.
16671         * fixinc/gnu-regex.h: Do not define _REGEX_RE_COMP.
16672
16673 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
16674
16675         * Makefile.in (predict.o): Depend on $(EXPR_H), not expr.h.
16676
16677 2000-01-19  Richard Henderson  <rth@cygnus.com>
16678
16679         * flow.c (propagate_block): Replace FIRST, LAST and BNUM
16680         arguments with BB.  Update all callers.  Tidy line wrapping.
16681
16682 2000-01-19  Clinton Popetz  <cpopetz@cygnus.com>
16683
16684         * emit-rtl.c (try_split): Return last_insn if we split the
16685         last_insn.
16686
16687 Thu Jan 20 01:01:23 MET 2000  Jan Hubicka  <jh@suse.cz>
16688
16689         * i386-protos.h (ix86_compute_frame_size): Remove prototype.
16690         (ix86_initial_elimination_offset): Declare.
16691         * i386.c (ix86_nsaved_regs): Break out from ...
16692         (ix86_can_use_return_insn_p): ... here.
16693         (ix86_emit_save_regs): Break out from ...
16694         (ix86_expand_prologue): ... here.
16695         (ix86_emit_epilogue_esp_adjustment, ix86_emit_restore_regs): Break
16696         out from ...
16697         (ix86_expand_epilogue): ... here.
16698         (ix86_compute_frame_size): Make static, add prototype.
16699         (ix86_initial_elimination_offset): Break out from ...
16700         * i386.h (INITIAL_ELIMINATION_OFFSET): ... here.
16701
16702 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16703
16704         * recog.h (OUT_FCN): Delete.
16705
16706         * vax.md: Call `get_insn_template' instead of OUT_FCN.
16707
16708 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16709
16710         * cppalloc.c: PROTO -> PARAMS.
16711         * cpperror.c: Likewise.
16712         * cppfiles.c: Likewise.
16713         * cpplib.c: Likewise.
16714         * cpplib.h: Likewise.
16715
16716         * config/arm/arm-protos.h: PROTO -> PARAMS.
16717         * config/arm/arm.c: Likewise.
16718         * config/c4x/c4x.c: Likewise.
16719         * config/fr30/fr30-protos.h: Likewise.
16720         * config/nextstep.c: Likewise.
16721         * config/pa/pa.c: Likewise.
16722         * config/pj/pj.c: Likewise.
16723         * config/rs6000/rs6000.c: Likewise.
16724         * config/v850/v850-protos.h: Likewise.
16725         * config/v850/v850.c: Likewise.
16726
16727 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16728
16729         * i370-protos.h: New file.
16730
16731         * i370.c: Include tm_p.h.  Fix compile time warnings.
16732
16733         * i370.h: Move prototypes to i370-protos.h.  Fix compile time
16734         warnings.
16735
16736         * i370.md: Likewise.
16737
16738 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16739
16740         * real.c (enan, einan, eiisnan, eiisneg, make_nan): Wrap in NANS.
16741         (target_isinf, target_isnan, eisnan): Mark parameter with
16742         ATTRIBUTE_UNUSED.
16743         (eiisinf): Wrap in INFINITY.
16744         (etoe113, etoe64, etoe53, etoe24): Wrap label `nonorm' in INFINITY.
16745         (ibmtoe): Remove unused variable `rndsav'.
16746
16747 Wed Jan 19 20:23:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16748
16749         * sh.h (PASS_IN_REG_P): Remove extraneous paranthesis.
16750         (GO_IF_LEGITIMATE_ADDRESS): Added missing tab.
16751
16752 2000-01-19  Zack Weinberg  <zack@wolery.cumb.org>
16753
16754         * fixinc/Makefile.in: Correct dependencies of fixincl and fixincl.o.
16755         * fixinc/fixfixes.c (IO_use, CTRL_use, IO_defn, CTRL_defn): New fixes.
16756         (fix_char_macro_defines, fix_char_macro_uses): New functions.
16757
16758         * fixinc/fixlib.c (is_cxx_header): Do the text scan with a regexp.
16759         Recognize Emacs mode markers also.
16760         * fixinc/fixtests.c (else_endif_label): Fix bug in recognition of
16761         C++ comments in C++ headers.  Call is_cxx_header only if
16762         necessary.
16763
16764         * fixinc/inclhack.def (avoid_bool): Add select for the problem and
16765         bypass for ncurses.
16766         (bsd43_io_macros, io_def_quotes, ioctl_fix_ctrl): Replace with...
16767         (io_def_quotes, io_use_quotes, ctrl_def_quotes, ctrl_use_quotes):
16768         ... these, which use the new C fixes.
16769         (math_exception): Escape literal '+' in bypass expression.
16770
16771         * fixinc/fixincl.x, fixinc/fixincl.sh, fixinc/inclhack.sh:
16772         Regenerate.
16773
16774 2000-01-19  Geoff Keating  <geoffk@cygnus.com>
16775
16776         * rtlanal.c (reg_referenced_p): A CLOBBER of a MEM uses any REGs
16777         inside the MEM.
16778
16779 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16780
16781         * loop.c (loop_optimize): Allocate loop_info structure for each loop
16782         prior to calling scan_loop.
16783
16784 Wed Jan 19 19:54:38 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16785
16786         * sh.c (find_barrier, gen_block_redirect): Fix indentation.
16787         (split_branches, calc_live_regs): Likewise.
16788
16789 Wed Jan 19 19:12:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16790
16791         * sh.md (fpu_single, fp_mode): New attributes.
16792
16793 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16794
16795         * loop.c (current_loop_info): Renamed from loop_info_data
16796         and changed to a pointer.
16797         (loop_optimize): Allocate loop_info structure for each loop
16798         and initialise to zero.
16799         (scan_loop): Set current_loop_info.
16800
16801         * unroll.c (loop_iterations): Don't abort if REG_USERVAR_P set
16802         on iteration_var.
16803
16804 2000-01-19  Richard Henderson  <rth@cygnus.com>
16805
16806         * stupid.c: Die die die.
16807         * Makefile.in (OBJS): Remove stupid.o.
16808         (stupid.o): Likewise.
16809
16810         * except.c (emit_eh_context): Don't emit USEs for stupid.
16811         * explow.c (probe_stack_range): Likewise.
16812         * flags.h (obey_regdecls): Remove.
16813         * flow.c (find_basic_blocks): Don't run try_merge_blocks
16814         when not optimizing.
16815         (life_analysis): Limit data collection when not optimizing.
16816         (mark_regs_live_at_end): Always mark the return value registers.
16817         (mark_used_regs): Remove dummy RETURN case.
16818         (print_rtl_with_bb): Don't consult obey_regdecls.
16819         * function.c (use_variable, use_variable_after): Remove.
16820         (assign_parms): Consult optimize not obey_regdecls.
16821         (expand_function_start): Don't emit USEs for stupid.
16822         (expand_function_end): Likewise.
16823         * global.c (build_insn_chain): Export.
16824         * integrate.c (expand_inline_function): Kill return-value USE
16825         handling code.
16826         * jump.c (jump_optimize_1): Do simple jump optimizations and
16827         dead code elimination.
16828         (calculate_can_reach_end): Remove check_deleted argument.
16829         (delete_insn): Patch out insns even when not optimizing.
16830         * local-alloc.c (block_alloc): Don't do tying when not optimizing.
16831         * rtl.h (use_variable, use_variable_after): Remove declarations.
16832         (build_insn_chain): Declare.
16833         * stmt.c (expand_value_return): Don't emit USEs for stupid.
16834         (expand_end_bindings): Likewise.
16835         (expand_decl): Likewise.  Consult optimize not obey_regdecls.
16836         * toplev.c (obey_regdecls): Remove.
16837         (rest_of_compilation): Don't set it.  Kill stupid in favour of
16838         flow1, local-alloc, and reload.
16839         (main): Don't set obey_regdecls.
16840
16841         * config/nextstep.c (handle_pragma): Likewise.
16842
16843         * alpha/alpha.md (allocate_stack): Don't emit USEs for stupid.
16844
16845         * arm/arm.h (CONDITIONAL_REGISTER_USAGE): Don't fix reg 0 for stupid.
16846
16847 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16848
16849         * alpha-protos.h: PROTO -> PARAMS.
16850         * alpha.c: Likewise.
16851         * elf.h: Likewise.
16852         * h8300.c: Likewise.
16853         * i386-protos.h: Likewise.
16854         * i386.c: Likewise.
16855         * m32r-protos.h: Likewise.
16856         * m32r.c: Likewise.
16857         * mips.c: Likewise.
16858         * mips.md: Likewise.
16859         * gmon-sol2.c: Likewise.
16860         * sparc.c: Likewise.
16861
16862 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16863
16864         * ns32k-protos.h: New file.
16865
16866         * ns32k.c: Fix compile time warnings.
16867
16868         * ns32k.h: Move prototypes to ns32k-protos.h.  Fix compile time
16869         warnings.
16870
16871         * ns32k.md: Likewise.
16872
16873 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16874
16875         * vax-protos.h: New file.
16876
16877         * vax.c: Fix compile time warnings.
16878
16879         * vax.h: Move prototypes to vax-protos.h.  Fix compile time
16880         warnings.
16881
16882         * vax.md: Likewise.
16883
16884         * vaxv.md: Likewise.
16885
16886 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16887
16888         * romp-protos.h: New file.
16889
16890         * romp.c: Fix compile time warnings.
16891
16892         * romp.h: Move prototypes to romp-protos.h.  Fix compile time
16893         warnings.
16894
16895         * romp.md: Likewise.
16896
16897 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16898
16899         * we32k-protos.h: New file.
16900
16901         * we32k.c: Fix compile time warnings.
16902
16903         * we32k.h: Move prototypes to we32k-protos.h.  Fix compile time
16904         warnings.
16905
16906 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16907
16908         * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
16909
16910         * except.c (eh_regs): Likewise.
16911
16912         * final.c (output_operand): Likewise.
16913
16914         * fold-const.c (target_isinf, target_isnan): Likewise.
16915
16916 Tue Jan 18 16:19:55 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
16917
16918         * i386.h (BIGGEST_ALIGNMENT): Set to 128.
16919         (BIGGEST_FIELD_ALIGNMENT): Set to (TARGET_ALIGN_DOUBLE ? 64 : 32)
16920
16921         * i386.md (memstr): Do not use rep stosb for counts divisible by 4
16922         when optimize_size.
16923         (clrstrsi): Rewrite.
16924         (strsethi, strsetqi): New expanders.
16925         (strsethi_1, strsetqi_1, rep_stossi, rep_stosqi): New insn patterns.
16926         (cmpstrsi): Emit compare insn before cmpstrsi_1
16927         (cmpstrsi_nz): use flags, set type to str, prefix_length to 1.
16928         (strlensi_1): Likewise.
16929         (cmpstrsi_1): Likewise; do not output compare.
16930         (strlen expander): Do not unroll when optimizing for size.
16931         (*subsi3_carry): Rename to subsi3_carry
16932         (addqi3_cc): New pattern.
16933         * i386.h (processor_costs): Add move_ratio field.
16934         (MOVE_RATIO): Use move_ratio field, set to 3 for OPTIMIZE_SIZE
16935         * i386.c (*_cost): Set move_ratio.
16936         (x86_unroll_strlen): Enable for Athlon, PPro and K6 too.
16937         (x86_expand_strlensi_1): Rewrite the main loop.
16938
16939 2000-01-17  Richard Henderson  <rth@cygnus.com>
16940
16941         * combine.c (combine_simplify_rtx): Give FLOAT_STORE_FLAG_VALUE a mode.
16942         * cse.c (find_comparison_args, fold_rtx): Likewise.
16943         * integrate.c (subst_constants): Likewise.
16944         * loop.c (get_condition): Likewise.
16945
16946         * tm.texi (FLOAT_STORE_FLAG_VALUE): Update docs.
16947
16948         * alpha.h (FLOAT_STORE_FLAG_VALUE): Use REAL_VALUE_ATOF.
16949
16950 2000-01-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16951
16952         * c-parse.in (SAVE_WARN_FLAGS): Create an INTEGER_CST.
16953         (RESTORE_WARN_FLAGS): Unpack it.
16954         Change semantic type of extension to ttype.
16955         * c-common.c (split_specs_attrs): Expect an INTEGER_CST.
16956         * c-parse.y, c-parse.c, objc/objc-parse.y,
16957         objc/objc-parse.c: Regenerate.
16958
16959 2000-01-17  Zack Weinberg  <zack@wolery.cumb.org>
16960
16961         * fixinc/fixlib.c: Add copyright notice.
16962         (compile_re): New function.
16963         * fixinc/fixlib.h: Prototype compile_re.
16964
16965         * fixinc/fixfixes.c, fixinc/fixtests.c, fixinc/fixincl.c:
16966         Use compile_re to compile regular expressions.
16967
16968         * fixinc/fixincl.c (egrep_test): Don't bother asking regexec
16969         where the pattern matched.
16970
16971         * fixinc/inclhack.def (sun_memcpy): Move to AAB_sun_memcpy,
16972         use 'replace'.
16973         (ultrix_ansi_compat): Likewise.
16974         (interactv_add1): Rename to 'isc_omits_with_stdc', remove shell test,
16975         add egrep test.
16976         (interactv_add2, interactv_add3): Delete.
16977         (x11_sprintf): Don't use filename glob.
16978         * fixinc/fixincl.x, fixinc/inclhack.sh, fixinc/fixincl.sh:
16979         Regenerate.
16980
16981 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16982
16983         * print-rtl.c: PROTO -> PARAMS.
16984         * real.c: Likewise.
16985         * reg-stack.c: Likewise.
16986         * resource.c: Likewise.
16987         * sdbout.h: Likewise.
16988         * simplify-rtx.c: Likewise.
16989         * stor-layout.c: Likewise.
16990         * stupid.c: Likewise.
16991         * xcoffout.c: Likewise.
16992         * xcoffout.h: Likewise.
16993
16994 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16995
16996         * toplev.c: PROTO -> PARAMS.
16997         * toplev.h: Likewise.
16998         * tree.c: Likewise.
16999         * tree.h: Likewise.
17000         * unroll.c: Likewise.
17001         * varasm.c: Likewise.
17002         * varray.c: Likewise.
17003         * varray.h: Likewise.
17004
17005 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17006
17007         * reload.c: PROTO -> PARAMS.
17008         * reload.h: Likewise.
17009         * reload1.c: Likewise.
17010         * reorg.c: Likewise.
17011         * resource.h: Likewise.
17012         * rtl.c: Likewise.
17013         * rtl.h: Likewise.
17014         * rtlanal.c: Likewise.
17015         * sbitmap.h: Likewise.
17016         * sdbout.c: Likewise.
17017         * stack.h: Likewise.
17018         * stmt.c: Likewise.
17019         * system.h: Likewise.
17020
17021 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17022
17023         * machmode.h: PROTO -> PARAMS.
17024         * mbchar.h: Likewise.
17025         * mips-tdump.c: Likewise.
17026         * mips-tfile.c: Likewise.
17027         * optabs.c: Likewise.
17028         * output.h: Likewise.
17029         * prefix.c: Likewise.
17030         * profile.c: Likewise.
17031         * protoize.c: Likewise.
17032         * real.h: Likewise.
17033         * recog.c: Likewise.
17034         * recog.h: Likewise.
17035         * regclass.c: Likewise.
17036         * regmove.c: Likewise.
17037         * regs.h: Likewise.
17038
17039 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17040
17041         * ggc-common.c: PROTO -> PARAMS.
17042         * ggc-page.c: Likewise.
17043         * ggc-simple.c: Likewise.
17044         * ggc.h: Likewise.
17045         * global.c: Likewise.
17046         * graph.c: Likewise.
17047         * gthr-win32.h: Likewise.
17048         * haifa-sched.c: Likewise.
17049         * halfpic.h: Likewise.
17050         * integrate.c: Likewise.
17051         * integrate.h: Likewise.
17052         * jump.c: Likewise.
17053         * lcm.c: Likewise.
17054         * local-alloc.c: Likewise.
17055         * loop.c: Likewise.
17056         * loop.h: Likewise.
17057
17058 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17059
17060         * genattr.c: PROTO -> PARAMS.
17061         * genattrtab.c: Likewise.
17062         * gencheck.c: Likewise.
17063         * gencodes.c: Likewise.
17064         * genconfig.c: Likewise.
17065         * genemit.c: Likewise.
17066         * genextract.c: Likewise.
17067         * genflags.c: Likewise.
17068         * gengenrtl.c: Likewise.
17069         * genopinit.c: Likewise.
17070         * genoutput.c: Likewise.
17071         * genpeep.c: Likewise.
17072         * genrecog.c: Likewise.
17073
17074 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
17075
17076         * tree.h (BINFO_VPTR_FIELD): Augment documentation.
17077
17078 2000-01-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17079
17080         * aclocal.m4 (AC_FUNC_MMAP_ZERO): New macro.
17081         * configure.in (AC_FUNC_MMAP_ZERO): Use instead of AC_FUNC_MMAP.
17082         * ggc-page.c: Replace HAVE_MMAP with HAVE_MMAP_ZERO.
17083         * configure, config.in: Rebuilt.
17084
17085 2000-01-16  Zack Weinberg  <zack@wolery.cumb.org>
17086
17087         * config/i386/i386.md: Add peephole to merge successive stack
17088         adjusts.
17089
17090 Sat Jan 15 15:41:14 EST 2000  John Wehle  (john@feith.com)
17091
17092         * gcse.c (insert_insn_end_bb): Use emit_block_insn_before
17093         instead of emit_insn_before.  Also handle NOTE_INSN_BASIC_BLOCK
17094         when walking backwards to find all the parameter loads when
17095         the basic block ends in a call.
17096
17097 2000-01-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17098
17099         * loop.c (this_loop_info): Delete.
17100         (uid_loop): Add in place of uid_loop_num.  All uses updated.
17101         (loop_number_exit_count): Delete and replace with entry in loop
17102         structure.  All uses updated.
17103         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
17104         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
17105         (loop_outer_loop): Likewise.
17106         (loop_invalid, loop_number_exit_labels): Likewise.
17107         (loop_used_count_register): Delete and replace with entry in
17108         loop_info structure.
17109         (find_and_verify_loops): Add loops argument.
17110         (verify_dominator, mark_loop_jump, prescan_loop): Replace loop_start,
17111         loop_end, etc. arguments with loop structure pointer.  All callers
17112         changed.
17113         (loop_reg_used_before_p, scan_loop, strength_reduce): Likewise.
17114         (check_dbra_loop, next_insn_in_loop, try_copy_prop): Likewise.
17115         (load_mems_and_recount_loop_regs_set, load_mems): Likewise.
17116         (insert_bct): Likewise.
17117         (basic_induction_var): New argument level.
17118         * loop.h (struct loop_info): Delete fields num, loops_enclosed,
17119         vtop, and cont.  Add used_count_register.
17120         (uid_loop): Delete declaration.
17121         (loop_number_exit_count): Likewise.
17122         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
17123         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
17124         (loop_outer_loop, loop_used_count_register): Likewise.
17125         (loop_invalid, loop_number_exit_labels): Likewise.
17126         (unroll_loop): Replace loop_start and loop_end arguments
17127         with loop structure pointer.
17128         (loop_precondition_p, loop_iterations): Likewise.
17129         Include basic-block.h.
17130         * unroll.c: (unroll_loop): Replace loop_start and loop_end arguments
17131         with loop structure pointer.
17132         (loop_precondition_p, loop_iterations): Likewise.
17133         * basic-block.h (struct loop): New entries vtop, cont,
17134         cont_dominator, start, end, top, scan_start, exit_labels,
17135         exit_count.
17136         * Makefile.in (LOOP_H): Add basic-block.h to dependencies.
17137
17138 2000-01-15  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17139
17140         * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
17141
17142 2000-01-14  Nathan Sidwell  <sidwell@codesourcery.com>
17143
17144         * config.in: Rebuilt for 2000-01-13 change to acconfig.h.
17145
17146 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17147
17148         * pdp11-protos.h: New file.
17149
17150         * pdp11.c: Include tm_p.h.  Add static prototypes.  Fix compile
17151         time warnings.
17152
17153         * pdp11.h: Move prototypes to pdp11-protos.h.  Fix compile time
17154         warnings.
17155
17156         * pdp11.md: Likewise.
17157
17158         * 2bsd.h: Likewise.
17159
17160 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17161
17162         * mn10300-protos.h: New file.
17163
17164         * mn10300.c: Include tm_p.h.  Add static prototypes.  Fix compile
17165         time warnings.
17166
17167         * mn10300.h: Move prototypes to mn10300-protos.h.  Fix compile time
17168         warnings.
17169
17170         * mn10300.md: Likewise.
17171
17172 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17173
17174         * mn10200-protos.h: New file.
17175
17176         * mn10200.c: Include tm_p.h.  Add static prototypes.  Fix compile
17177         time warnings.
17178
17179         * mn10200.h: Move prototypes to mn10200-protos.h.  Fix compile time
17180         warnings.
17181
17182         * mn10200.md: Likewise.
17183
17184 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17185
17186         * h8300-protos.h: New file.
17187
17188         * h8300.c: Include tm_p.h.  Add static prototypes.  Fix compile
17189         time warnings.
17190
17191         * h8300.h: Move prototypes to h8300-protos.h.  Fix compile time
17192         warnings.
17193
17194         * h8300.md: Likewise.
17195
17196 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17197
17198         * varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
17199         (asm_emit_uninitialised): Likewise.
17200
17201 2000-01-13  Gavin Romig-Koch  <gavin@cygnus.com>
17202
17203         * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New.
17204         * config/mips/mips.md: Use ISA_HAS_INT_CONDMOVE.
17205
17206 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17207
17208         * config/mips/mips.c (override_options): Don't turn on extra
17209         alignment for mips16.
17210
17211 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17212
17213         * config/mips/mips.c (mips_va_arg): Fix fprv for the 32 bit
17214         eabi, and make sure queued POSTINCREMENT rtl is emitted at
17215         the right point.
17216
17217 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17218
17219         * builtins.c (PAD_VARARGS_DOWN): Define.
17220         (std_expand_builtin_va_arg): Use the above macro.
17221         * config/mips/mips.h (PAD_VARARGS_DOWN): Define.
17222         * tm.texi (Register Arguments): Document the above macro.
17223
17224 2000-01-14  Nick Clifton  <nickc@cygnus.com>
17225
17226         * emit-rtl.c (emit_insn): If checking is enabled, make sure
17227         that this function has not been used to emit a jump
17228         instruction.
17229
17230         * jump.c (return_jump_1): Cope with being passed a null rtx.
17231
17232 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17233
17234         * eh-common.h: PROTO -> PARAMS.
17235         * emit-rtl.c: Likewise.
17236         * errors.c: Likewise.
17237         * errors.h: Likewise.
17238         * except.c: Likewise.
17239         * except.h: Likewise.
17240         * explow.c: Likewise.
17241         * expmed.c: Likewise.
17242         * expr.c: Likewise.
17243         * expr.h: Likewise.
17244         * final.c: Likewise.
17245         * fix-header.c: Likewise.
17246         * flow.c: Likewise.
17247         * fold-const.c: Likewise.
17248         * function.c: Likewise.
17249         * function.h: Likewise.
17250         * gcc.c: Likewise.
17251         * gcov-io.h: Likewise.
17252         * gcov.c: Likewise.
17253         * gcse.c: Likewise.
17254
17255 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17256
17257         * sh-protos.h: New file.
17258
17259         * sh.c: Include insn-config.h, toplev.h, recog.h and tm_p.h.
17260         Add static prototypes.  Fix compile time warnings.
17261
17262         * sh.h: Move prototypes to sh-protos.h.  Fix compile time warnings.
17263         * sh.md: Likewise.
17264         * elf.h: Likewise.
17265
17266 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17267
17268         * arc-protos.h: New file.
17269
17270         * arc.c: Include tm_p.h.  Add static prototypes.  Fix compile
17271         time warnings.
17272
17273         * arc.h: Move prototypes to arc-protos.h.  Fix compile time
17274         warnings.
17275
17276         * arc.md: Likewise.
17277
17278 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17279
17280         * dsp16xx-protos.h: New file.
17281
17282         * dsp16xx.c: Include tm_p.h.  Add static prototypes.  Fix compile
17283         time warnings.
17284
17285         * dsp16xx.h: Move prototypes to dsp16xx-protos.h.  Fix compile time
17286         warnings.
17287
17288         * dsp16xx.md: Likewise.
17289
17290 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17291
17292         * convex-protos.h: New file.
17293
17294         * convex.c: Include tm_p.h.  Add static prototypes.  Fix compile
17295         time warnings.
17296
17297         * convex.h: Move prototypes to convex-protos.h.  Fix compile time
17298         warnings.
17299
17300 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17301
17302         * elxsi-protos.h: New file.
17303
17304         * elxsi.c: Include tm_p.h.  Add static prototypes.  Fix compile
17305         time warnings.
17306
17307         * elxsi.h: Move prototypes to elxsi-protos.h.  Fix compile time
17308         warnings.
17309
17310         * elxsi.md: Likewise.
17311
17312 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
17313
17314         * config/mips/mips.h (REGISTER_MOVE_COST): Remove redundant
17315         case for moving from HI/LO/HI_LO_REG.  This makes the behavior
17316         match the comment for MIPS16.
17317
17318 Fri Jan 14 00:28:06 2000  Jeffrey A Law  (law@cygnus.com)
17319
17320         * flow.c (split_edge): Do not call set_block_for_insn if we
17321         do not have a basic_block_for_insn structure.
17322
17323         * fr30.h (TRAMPOLINE_TEMPLATE): Use nops to ensure the static chain
17324         and destination functions are 32bit aligned within the trampoline.
17325         (TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE): Corresponding changes.
17326         (TRAMPOLINE_ALIGNMENT): Define.
17327
17328         * cse.c (cse_insn): When changing (set (pc) (reg)) to
17329         (set (pc) (label_ref)), verify the change creates a valid insn.
17330
17331         * fr30.c (call_operand): Tighten and rework to match rules for
17332         call RTL expressions.
17333         * fr30.h (PREDICATE_CODES, case call_operand): Only allow MEMs.
17334         * fr30.md (call patterns): Improve constraints.
17335
17336 Thu Jan 13 23:44:03 2000  Richard Henderson  <rth@cygnus.com>
17337
17338         * fr30.c (fr30_expand_epilogue): Revert last change.
17339         Use emit_jump_insn for the return insn.
17340
17341 Thu Jan 13 14:46:03 2000  Jason Eckhardt  <jle@cygnus.com>
17342                           Stan Cox  <scox@cygnus.com>
17343
17344         * predict.c: New file. Preliminary infrastructure work for static
17345         branch prediction and basic block reordering.
17346         * basic-block.h: Add prototype for estimate_probability.
17347         * Makefile.in: Add rules for predict.o.
17348
17349 2000-01-13  Jason Merrill  <jason@yorick.cygnus.com>
17350
17351         * fixincludes (va_list): Use __not_va_list__ for the dummy.
17352         * fixinc/*: Likewise.
17353
17354 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17355
17356         * cccp.c: PROTO -> PARAMS.
17357         * cexp.y: Likewise.
17358         * collect2.c: Likewise.
17359         * combine.c: Likewise.
17360         * convert.h: Likewise.
17361         * cse.c: Likewise.
17362         * dbxout.c: Likewise.
17363         * dbxout.h: Likewise.
17364         * diagnostic.c: Likewise.
17365         * doprint.c: Likewise.
17366         * dwarf2out.c: Likewise.
17367         * dwarf2out.h: Likewise.
17368         * dwarfout.c: Likewise.
17369         * dwarfout.h: Likewise.
17370         * dyn-string.h: Likewise.
17371
17372 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17373
17374         * calls.c (emit_call_1): Wrap varaible `struct_value_size_rtx' in
17375         macro conditionals guarding use.
17376
17377         * dwarf2out.c: Include "tm_p.h".
17378
17379         * function.c (locate_and_pad_parm): Mark parameter with
17380         ATTRIBUTE_UNUSED.
17381         (expand_function_end): Likewise for variable `context'.
17382
17383         * reorg.c (make_return_insns): Wrap prototype in macro HAVE_return.
17384
17385 2000-01-13  Nick Clifton  <nickc@cygnus.com>
17386
17387         * config/fr30/fr30.c (fr30_expand_epilogue): Emit USEs of pop'ed
17388         register to prevent compile time warnings.
17389
17390 2000-01-13  Zack Weinberg  <zack@wolery.cumb.org>
17391
17392         * longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
17393         to avoid -Wtraditional warning.
17394
17395 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17396
17397         * 1750a-protos.h: New file.
17398
17399         * 1750a.c: Include tm_p.h.  Add static prototypes.  Fix compile
17400         time warnings.
17401
17402         * 1750a.h: Move prototypes to 1750a-protos.h.  Fix compile time
17403         warnings.
17404
17405         * 1750a.md: Likewise.
17406
17407 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17408
17409         * a29k-protos.h: New file.
17410
17411         * a29k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17412         time warnings.
17413
17414         * a29k.h: Move prototypes to a29k-protos.h.  Fix compile time
17415         warnings.
17416
17417 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17418
17419         * clipper-protos.h: New file.
17420
17421         * clipper.c: Include tm_p.h.  Add static prototypes.  Fix compile
17422         time warnings.
17423
17424         * clipper.h: Move prototypes to clipper-protos.h.  Fix compile time
17425         warnings.
17426
17427 Thu Jan 13 16:03:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
17428
17429         * reload1.c (reload_combine_note_store): Use HARD_REGNO_NREGS.
17430
17431 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
17432
17433         * configure.in (--enable-new-gxx-abi): New option.
17434         * acconfig.h (ENABLE_NEW_GXX_ABI): New define.
17435         * Makefile.in (GXX_ABI_FLAG): New variable.
17436         * configure: Regenerate.
17437
17438 2000-01-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17439
17440         * stor-layout.c (layout_type): Use FORCE_STRUCT_BLK.
17441         * tm.texi (FORCE_STRUCT_BLK): Document.
17442         * config/c4x/c4x.h (FORCE_STRUCT_BLK): New macro.
17443
17444 Wed Jan 12 23:12:47 2000  Hans-Peter Nilsson  <hp@axis.com>
17445
17446         * config/ns32k/ns32k.md: Revert Jan 9 change.
17447
17448         * genrecog.c (maybe_both_true_2): Do not compare a predicate-test
17449         to a mode-test, if the predicate is address_operand.
17450
17451 Wed Jan 12 22:34:00 2000  Jeffrey A Law  (law@cygnus.com)
17452
17453         * combine.c (if_then_else_cond): Be careful about what kinds
17454         of RTL expressions are passed to operand_subword.
17455
17456         * flow.c (split_edge): If we have to insert a new jump, make
17457         sure to associate it with a basic block.
17458
17459         * flow.c (commit_one_edge_insertion): A block with one successor
17460         can end in a JUMP_INSN that is not a simplejump.
17461
17462 2000-01-12  Robert Lipe  <robertl@sco.com>
17463
17464         * i386/sco5.h (INIT_SECTION_ASM_OP_COFF): Rename section to "ctor".
17465         (BUILD_VA_LIST_TYPE): Define.
17466         (EH_FRAME_SECTION_ASM_OP): Explictly define to better interact
17467         with crtstuff.c.
17468
17469 2000-01-12  Jason Merrill  <jason@casey.cygnus.com>
17470
17471         * cccp.c (do_pragma): Add cast to (char *).
17472
17473 2000-01-12  Richard Henderson  <rth@cygnus.com>
17474             Fred Fish  <fnf@be.com>
17475             Jason Merrill  <jason@cygnus.com>
17476
17477         * configure.in (i?86-*-beos{pe,elf,}*): Recognize.
17478         * i386/t-beos, i386/x-beos, i386/xm-beos.h: New files.
17479         * i386/beos-elf.h, i386/beos-pe.h: New files.
17480
17481         * Makefile.in (CROSS_SYSTEM_HEADER_DIR): New.
17482         * cross-make (SYSTEM_HEADER_DIR): Define using
17483         CROSS_SYSTEM_HEADER_DIR.
17484
17485         * gcc.c (LIBRARY_PATH_ENV): Provide default.
17486         (process_command): Use it.
17487         (main): Likewise.  Kill trailing = from env vars.
17488         (build_search_list): Put it back.
17489         * collect2.c (main): Use LIBRARY_PATH_ENV.
17490
17491         * configure.in (GCC_NEED_DECLARATIONS): Add environ.
17492         * toplev.c: Use NEED_DECLARATION_ENVIRON.
17493
17494         * tm.texi (Frame Layout): Document SMALL_STACK.
17495         * c-common.c (c_common_nodes_and_builtins): Check it.
17496
17497         * system.h: Undef alloca after including glibc's <stdlib.h>,
17498         if USE_C_ALLOCA is defined.
17499
17500         * gcc.c (set_input): New fn.
17501         (main): After all input files are compiled, reset the input file
17502         info to the first.
17503
17504         * aclocal.m4 (rindex, index): If already defined, don't attempt
17505         to redefine.
17506
17507         * ginclude/varargs.h: (__va_list__): Define ifndef.
17508         * ginclude/stdarg.h: Likewise.
17509
17510         * ginclude/stddef.h (__WCHAR_TYPE__) [BEOS]: Use int
17511         instead of unsigned char.
17512
17513         * hash.h (true, false, boolean): Undef before enum.
17514
17515         * expmed.c (choose_multiplier): Cast &mhigh_lo and &mhigh_hi to be
17516         proper type of "HOST_WIDE_INT *", rather than their natural type of
17517         "unsigned HOST_WIDE_INT *".
17518
17519 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17520
17521         * svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
17522
17523         * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED.
17524
17525         * regclass.c (choose_hard_reg_mode): Likewise.
17526
17527         * reload.c (find_valid_class, strict_memory_address_p): Likewise.
17528
17529         * reorg.c (optimize_skip): Wrap prototype in macro conditionals.
17530
17531 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17532
17533         * c-common.c: PROTO -> PARAMS.
17534         * c-common.h: Likewise.
17535         * c-decl.c: Likewise.
17536         * c-iterate.c: Likewise.
17537         * c-lang.c: Likewise.
17538         * c-lex.c: Likewise.
17539         * c-lex.h: Likewise.
17540         * c-parse.in: Likewise.
17541         * c-pragma.c: Likewise.
17542         * c-pragma.h: Likewise.
17543         * c-tree.h: Likewise.
17544         * c-typeck.c: Likewise.
17545         * objc/objc-act.c: Likewise.
17546         * objc/objc-act.h: Likewise.
17547
17548 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17549
17550         * m88k-protos.h: New file.
17551
17552         * m88k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17553         time warnings.
17554
17555         * m88k.h: Move prototypes to m88k-protos.h.  Fix compile time warnings.
17556
17557         * m88k.md: Likewise.
17558
17559         * tekXD88.h: Likewise.
17560
17561 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17562
17563         * m68k-protos.h: New file.
17564
17565         * m68k.c: Include tm_p.h.  Add static prototypes.  Fix compile
17566         time warnings.
17567
17568         * m68k.h: Move prototypes to m68k-protos.h.  Fix compile time warnings.
17569
17570         * mot3300.h: Likewise.
17571
17572 2000-01-12  Richard Earnshaw <rearnsha@arm.com>
17573
17574         * haifa-sched.c (split_edges): Pass edgeset_size as second arg to
17575         extract_bitlst.
17576         (extract_bitlist): Declare bitlen.
17577
17578 2000-01-12  Zack Weinberg  <zack@wolery.cumb.org
17579
17580         * cccp.c: Accept and ignore -lang-fortran.
17581
17582         * c-typeck.c (build_c_cast): Issue -Wcast-qual warnings if the
17583         qualifiers don't match at any level of pointerness.
17584
17585 2000-01-12  Robert Lipe  <robertl@sco.com>
17586
17587         * i386/sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
17588
17589 2000-01-12  Bernd Schmidt  <bernds@cygnus.co.uk>
17590
17591         * reload1.c (reload_reg_unavailable): New static variable.
17592         (reload_reg_free_p): Test it.
17593         (reload_reg_free_for_value_p): Test it instead of
17594         reload_reg_used.
17595         (choose_reload_regs_init): Compute it.
17596
17597 Wed Jan 12 03:24:41 2000  Toshiyasu Morita (toshi.morita@sega.com)
17598
17599         * reorg.c (fill_slots_from_thread): Check modified_in_p
17600         before replacing.
17601
17602 Wed Jan 12 03:20:31 2000  John Marshall <john_w_marshall@palm.com>
17603
17604         * gcc.texi (Funding, GNU/Linux, Copying, Contributors): Format
17605         these nodes even if INTERNALS is not set.
17606
17607 Wed Jan 12 09:39:22 2000  Nick Burrett  <nick.burrett@btinternet.com>
17608
17609         * gcse.c (delete_null_pointer_checks_1): Cope when
17610         get_condition cannot determine the condition.
17611
17612 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
17613
17614         * toplev.h (set_message_length): Declare.
17615
17616         * diagnostic.c (obstack_chunk_alloc): Define macro.
17617         (obstack_chunk_free): Likewise.
17618         (struct output_buffer): New data structure.
17619         (vmessage): Remove.
17620         (output_maximum_width): New variable.
17621         (doing_line_wrapping, set_message_length, init_output_buffer,
17622         get_output_prefix, output_space_left, emit_output_prefix,
17623         output_newline, output_append, output_puts, dump_output,
17624         vbuild_message_string, build_message_string, build_location_prefix,
17625         voutput_notice, output_printf, line_wrapper_printf,
17626         vline_wrapper_message_with_location):  New functions. Implement
17627         automatic line wrapping.
17628         (v_message_with_decl): Make it handle automatic line wrapping.
17629         (v_error_with_file_and_line): Likewise.
17630         (v_warning_with_file_and_line): Likewise.
17631         (announce_function): Likewise.
17632         (default_print_error_function): Likewise.
17633
17634 2000-01-11 16:24 -0800  Zack Weinberg  <zack@wolery.cumb.org>
17635
17636         * cpplib.h (struct cpp_options): Change lang_asm to char.
17637         Add lang_fortran.
17638         * cppinit.c (builtin_array): Take out __STDC_VERSION__, it's
17639         done in cpp_handle_option now.
17640         (initialize_builtins): Take out special case code used only by
17641         __STDC_VERSION__.
17642         (cpp_handle_option): Turn off trigraphs and trigraph warnings
17643         if -traditional.  Recognize -lang-fortran and set
17644         lang_fortran, also turn off cplusplus_comments.
17645         (print_help): Document -lang-fortran.
17646         * cpplib.c (handle_directive): Ignore `# 123 "file"' if
17647         lang_asm. Ignore all directives other than `# 123 "file"' if
17648         CPP_PREPROCESSED.
17649         (cpp_get_token): If -traditional, don't recognize directives
17650         unless the # is in column 1.
17651         (parse_string): If lang_fortran or lang_asm, silently
17652         terminate strings ('' or "") at end of line.
17653         Remove unnecessary braces.
17654
17655 2000-01-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17656             Richard Henderson  <rth@cygnus.com>
17657
17658         * resource.c (mark_referenced_resources): Mark a set strict_low_part
17659         as used.
17660         * config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
17661         strict_low_part when possible.
17662
17663 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17664
17665         * alias.c: PROTO -> PARAMS.
17666         * basic-block.h: Likewise.
17667         * bitmap.c: Likewise.
17668         * bitmap.h: Likewise.
17669         * builtins.c: Likewise.
17670         * c-aux-info.c: Likewise.
17671         * caller-save.c: Likewise.
17672         * calls.c: Likewise.
17673
17674 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17675
17676         * Makefile.in (toplev.o): Depend on regs.h.
17677
17678         * output.h (tdesc_section): Prototype.
17679
17680         * regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED.
17681
17682         * sdbout.c: Include "tm_p.h".
17683
17684         * toplev.c: Include "regs.h".
17685
17686 Tue Jan 11 11:37:58 2000  Mike Stump  <mrs@wrs.com>
17687
17688         * unroll.c (unroll_loop): Add EH support.
17689
17690 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17691
17692         * pa-protos.h: New file.
17693
17694         * pa.c: Include recog.h and tm_p.h.
17695         (compute_zdepwi_operands, compute_movstrsi_length,
17696         remove_useless_addtr_insns, store_reg, load_reg, set_reg_plus_d,
17697         find_addr_reg, import_milli): Add static prototypes.
17698         (pa_cpu_string, pa_arch_string): Constify a char*.
17699         (legitimize_pic_address): Pass argument `mode' to pic_label_operand.
17700         (read_only_operand): Add argument `mode'.
17701         (singlemove_string, output_move_double, output_fp_move_double,
17702         output_block_move, output_and, output_ior, output_ascii,
17703         remove_useless_addtr_insns, milli_names, output_mul_insn,
17704         output_div_insn, output_mod_insn, output_arg_descriptor,
17705         output_cbranch, output_bb, output_bvb, output_dbra, ,
17706         output_millicode_call, output_call, hppa_encode_label,
17707         output_parallel_movb, output_parallel_addb): Constify a char*.
17708         (hppa_va_start): Mark parameter `stdarg_p' with ATTRIBUTE_UNUSED.
17709         (output_parallel_addb): Remove extra arg to `constrain_operands'
17710
17711         * pa.h:  Move all prototypes to pa-protos.h.
17712         (pa_cpu_string, pa_arch_string): Constify a char*.
17713         (LEGITIMIZE_ADDRESS): Call `symbolic_operand' with mode argument.
17714
17715         * pa.md: Call `function_label_operand' with mode argument.
17716         Likewise for `read_only_operand'.
17717         Fix nesting of parens in call to `symbolic_operand'.
17718
17719 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17720
17721         * i860-protos.h: New file.
17722
17723         * i860.c: Include tm_p.h.  Add static prototypes.  Fix compile
17724         time warnings.
17725
17726         * i860.h: Move prototypes to i860-protos.h.  Fix compile time warnings.
17727
17728         * i860.md: Likewise.
17729
17730 Tue Jan 11 18:59:35 MET 2000  Jan Hubicka <jh@suse.cz>
17731
17732         * i386.md (movstrsi expander): Rewrite.
17733         (movstrsi_1 insn): Deleted.
17734         (strmovhi, strmovqi expander): New expanders.
17735         (movshi_1, movsqi_1, rep_movsi, rep_movqi): New patterns.
17736         * i386.c (x86_single_stringop): New global variable.
17737         * i386.h (x86_single_stringop): Declare.
17738         (TARGET_SINGLE_STRINGOP): New macro.
17739
17740 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
17741
17742         * config/mips/mips.c (mips_va_arg): For EABI, emit the queued
17743         integer vararg POSTINCREMENT before the destination of the jump
17744         for the hard fp case.
17745         (function_arg_pass_by_reference): Pass a copy of CUM to
17746         FUNCTION_ARG.
17747
17748         * config/mips/mips.h (GO_IF_LEGITIMATE_ADDRESS): Move check
17749         for CONSTANT_ADDRESS_P above while loop for subreg.
17750
17751 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
17752
17753         * flow.c (propagate_block): When a prologue/epilogue insn
17754         is marked dead, unconditionally clear libcall_is_dead and
17755         insn_is_dead, and only dump rtl if warnings aren't being
17756         suppressed.
17757
17758 Tue Jan 11 16:26:47 MET 2000  Jan Hubicka <jh@suse.cz>
17759
17760         * i386.c (ix86_attr_length_default): Handle TYPE_STR and TYPE_CLD.
17761         * i386.md (FIRST_PSEUDO_REGISTER): Set to 20.
17762         (FIXED_REGISTERS): Set dirflag as fixed.
17763         (CALL_USED_REGISTERS): Set dirflag as used.
17764         (REG_ALLOC_ORDER): Set dirflag as last one.
17765         (DIRFLAG_REG): New macro.
17766         (MD_ASM_CLOBBERS): Asm clobber dirflag for backward compatibility.
17767         (HI_REGISTER_NAMES): Add dirflag.
17768         (DEBUF_PRINT_REG): Handle dirflag.
17769         * i386.md (type attribute): New cld and str types.
17770         (length_opcode attribute): Set cld and str to 1.
17771         (memory attribute): Set str to unknown - it is not clear from the
17772         patterns.
17773         (pent_np function unit): Prefixed string operations takes 12 cycles
17774         minimally; cld takes 2 cycles.
17775         (ppro_uops attribute): Str is "many" and cld is "few".
17776         (ppro_p0 unit): Handle cld here.
17777         (k6_alux unit): Handle cld and str types.
17778         (k6_load unit): It is ocupied by str opcodes.
17779         (k6_store unit): It is ocupied by str opcodes.
17780         (athlon_decode): Str is vector decoded.
17781         (athlon_ieu): Handle str and cld.
17782         (cld pattern): New.
17783         (movstrsi, clrstr, cmpstr, strlen expander): Emit cld instruction
17784         (movstrsi_1, clrstrsi_1, cmpstrsi_1, strlensi_1,
17785         cmpstrsi_nz_1 insn): Do not output cld instruction
17786
17787 Tue Jan 11 06:14:39 2000  David Starner <dstarner98@aasaa.ofe.org>
17788
17789         * gcc.texi (G++ and GCC): Add Java and Chill.
17790         (Bug Critera): Don't list languages.
17791
17792         * gcc.texi (Incompatibilities): No longer claim most C compilers
17793         are K&R.
17794
17795         * gcc.texi (G++ and GCC): Update other front-ends list.
17796
17797 Tue Jan 11 05:49:01 2000  Jeffrey A Law  (law@cygnus.com)
17798
17799         * i386.c (ix86_expand_setcc): Fix typo.
17800         (ix86_expand_movcc): Similarly.
17801
17802         * Band-aid until haifa's bitset implementation is nuked.
17803         * haifa-sched.c (extract_bitlst): New parameter for size of the
17804         bitset in bits.  All callers changed.  Avoid looking at undefined
17805         bits in the bitset.
17806         (edgeset_bitsize): New variable.
17807         (schedule_region): Initialize edgeset_bitsize.
17808
17809 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17810
17811         * Makefile.in (optabs.o): Depend on real.h
17812         (resource.o): Depend on insn-attr.h
17813
17814         * builtins.c (result_vector): Wrap prototype in macro conditions
17815         governing definition and use.
17816
17817         * c-common.c: Include tm_p.h.
17818
17819         * c-lex.c: Likewise.
17820
17821         * elfos.h: Constify a char*.
17822
17823         * final.c (align_fuzz): Wrap prototype in macro HAVE_ATTR_length.
17824         (get_attr_length, shorten_branches, profile_after_prologue): Mark
17825         parameter with ATTRIBUTE_UNUSED.
17826
17827         * fold-const.c (exact_real_inverse): Wrap variable `i' in
17828         CHECK_FLOAT_VALUE.
17829
17830         * haifa-sched.c (schedule_insns): Mark parameter with
17831         ATTRIBUTE_UNUSED.
17832
17833         * optabs.c: Include real.h.
17834
17835         * real.h (ereal_atof): Add prototype arguments.
17836
17837         * resource.c: Include insn-attr.h.
17838
17839         * sdbout.c (sdbout_queue_anonymous_type,
17840         sdbout_dequeue_anonymous_types): Wrap in macro
17841         SDB_ALLOW_FORWARD_REFERENCES.
17842         (sdbout_init, sdbout_start_new_source_file): Mark parameter with
17843         ATTRIBUTE_UNUSED.
17844
17845         * stmt.c (expand_return): Wrap variable `op0' in macro HAVE_return.
17846
17847         * stupid.c: Include tm_p.h.
17848
17849         * tree.c (real_value_from_int_cst): Mark parameter with
17850         ATTRIBUTE_UNUSED.
17851
17852 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17853
17854         * i960-protos.h: New file.
17855
17856         * i960.c: Include tm_p.h.  Add static prototypes.  Fix compile
17857         time warnings.
17858
17859         * i960.h: Move prototypes to i960-protos.h.  Fix compile time warnings.
17860
17861 2000-01-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17862
17863         * combine.c (expand_field_assignment): Do not discard SUBREGs
17864         while computing nonzero_bits.
17865
17866 2000-01-09  Nick Clifton  <nickc@cygnus.com>
17867
17868         * config/arm/arm.c: Fix compile time warnings about signed vs
17869         unsigned constants.
17870         * config/arm/arm.h: Fix compile time warnings about signed vs
17871         unsigned constants.
17872
17873 2000-01-09  Philip Blundell  <philb@gnu.org>
17874
17875         * config/arm/arm.c (output_return_instruction): Use `ldr' rather
17876         than `ldm' with only one register.
17877         * config/arm/arm.md (push_multi): Use `str' rather than `stm' with
17878         only one register.
17879
17880         * config/arm/linux-gas.h (CLEAR_INSN_CACHE): Say that R0 is
17881         clobbered.
17882
17883 Sun Jan  9 17:50:23 2000  Hans-Peter Nilsson  <hp@axis.com>
17884
17885         * config/ns32k/ns32k.md (load or push effective address): Operand 1
17886         must have SImode.
17887
17888 2000-01-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17889
17890         * elfos.h (ASM_OUTPUT_LIMITED_STRING): Add parentheses around
17891         assignment used as truth value.
17892
17893         * function.c (assign_temp): Mark parameter `dont_promote' with
17894         ATTRIBUTE_UNUSED.  Wrap variable `unsignedp' with macro
17895         PROMOTE_FOR_CALL_ONLY.
17896
17897         * genrecog.c (write_subroutine): Mark variable `operands' with
17898         ATTRIBUTE_UNUSED.
17899
17900         * optabs.c (prepare_cmp_insn): Mark parameter `align' with
17901         ATTRIBUTE_UNUSED.
17902
17903         * sdbout.c (sdbout_init): Likewise for parameter `asm_file'.
17904         (sdbout_begin_block, sdbout_end_block): Likewise for `file'.
17905
17906         * toplev.c (note_deferral_of_defined_inline_function): Likewise
17907         for `decl'.
17908
17909 2000-01-09  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17910
17911         * config/c4x.h: Tidy up comments.
17912         * config/c4x.c: Likewise.
17913
17914 Sun Jan  9 01:02:55 EST 2000  John Wehle  (john@feith.com)
17915
17916         * fold-const.c (lshift_double, rshift_double): Handle
17917         shifting by 2 * HOST_BITS_PER_WIDE_INT correctly.
17918
17919 2000-01-08  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17920
17921         * toplev.c (rest_of_compilation): Initialize cse_not_expected as
17922         in prepare_function_start().
17923
17924 Sat Jan  8 12:12:46 2000  Nick Clifton  <nickc@cygnus.com>
17925
17926         * config/v850/v850.c (expand_epilogue): Interrupt functions no
17927         longer allocate extra stack for function calls.
17928
17929 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17930
17931         * config/c4x/c4x.md (*subqf3_set): Fix typo.
17932
17933 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17934
17935         * config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Define as 0.
17936
17937 2000-01-07  David Edelsohn  <edelsohn@gnu.org>
17938
17939         * rs6000.c (processor_target_table): Add power3 as alias for 630.
17940         * aix43.h: Revert Aug 2 change.
17941         (HAS_INIT_SECTION): Define, not visible yet.
17942         (LD_INIT_SWITCH): Define, not visible yet.
17943         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
17944
17945         * glimits.h (__LONG_MAX__): Recognize 64-bit AIX too.
17946
17947         * collect2.c (main): Expand ld2 size further.
17948         (export_object_lst): Cast assignment to avoid warning.
17949         (main, LD_INIT_SWITCH): Add AIX 4.2+ -binitfini support.
17950         (scan_prog_file, COFF): Do not collect initialization or
17951         finalization functions generated for entire shared object if
17952         init/fini support present.
17953
17954 2000-01-07  Nick Clifton  <nickc@cygnus.com>
17955
17956         * config/elfos.h: Tidy up formatting of marcos.  Make sure
17957         that .section directives are always prefixed by a tab.
17958
17959         * config/svr4.h: Add #include "elfos.h" and remove duplicate
17960         definitions.
17961
17962 2000-01-07  Matt Austern  <austern@sgi.com>
17963
17964         * fold-const.c (real_hex_to_f): Remove duplicate declaration of
17965         expon.
17966
17967 Fri Jan  7 01:55:34 2000  Jeffrey A Law  (law@cygnus.com)
17968
17969         * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
17970         crtstuff.c.
17971         (crtbegin.o, s-crtS): Likewise.
17972
17973 2000-01-06  Richard Henderson  <rth@cygnus.com>
17974
17975         * alpha.md (adddi_2+1): Limit offset such that it will be
17976         loadable with a single ldah+lda pair.
17977         (adddi_2+2): Explicitly fail split if we can't make it work.
17978
17979 2000-01-06  Mumit Khan  <khan@xraylith.wisc.edu>
17980
17981         * protoize.c: Conditionally include unistd.h.
17982         (IS_SAME_PATH_CHAR): New macro.
17983         (IS_SAME_PATH): New macro.
17984         (CPLUS_FILE_SUFFIX): New macro.
17985         (cplus_suffix): New static variable.
17986         (is_abspath): New static function.
17987         (in_system_include_dir): Handle DOS style pathnames.
17988         (file_could_be_converted): Likewise.
17989         (file_normally_convertible): Likewise.
17990         (directory_specified_p): Likewise.
17991         (file_excluded_p): Likewise.
17992         (abspath): Likewise.
17993         (shortpath): Likewise.
17994         (referenced_file_is_newer): Likewise.
17995         (save_def_or_dec): Likewise.
17996         (do_processing): Likewise.
17997         (main): Likewise.
17998         (edit_file): Likewise. Use rename instead of link.
17999         (rename_c_file): Likewise. Don't rename syscalls file.
18000         (munge_compile_params): Define null device for DOS based systems.
18001         (process_aux_info_file): Use binary mode if appliable.
18002         (edit_file): Likewise.
18003         * invoke.texi (Running Protoize): Document C++ suffixes used.
18004
18005         * cccp.c: Delete PATH_SEPARATOR, DIR_SEPARATOR and
18006         IS_DIR_SEPARATOR macros.
18007         * collect2.c: Likewise.
18008         * cppinit.c: Likewise.
18009         * dwarf2out.c: Likewise.
18010         * gcc.c: Likewise.
18011         * gcov.c: Likewise.
18012         * prefix.c: Likewise.
18013         * rtl.c: Likewise.
18014         * toplev.c: Likewise.
18015         * system.h: And move to here.
18016
18017         * prefix.c (update_path): Fix typo in variable name.
18018
18019 2000-01-06  Richard Henderson  <rth@cygnus.com>
18020
18021         * flow.c (mark_set_1): Use loop_depth+1 as reference weight.
18022         (find_auto_inc, mark_used_regs, try_pre_increment_1): Likewise.
18023         (count_reg_sets_1, count_reg_references): Likewise.
18024         (flow_loops_level_compute): Start counting actual loop depth at 1.
18025         (flow_loops_find): Likewise.
18026         * local-alloc.c (update_equiv_regs): Likewise.
18027         * regclass.c (regclass): Re-instate Jan 4 0-based loop_depth change.
18028
18029 2000-01-06  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
18030
18031         * defaults.h (DWARF_FRAME_REGISTERS): if not defined, default to
18032         FIRST_PSEUDO_REGISTER
18033         * dwarf2out.c: Don't include frame.h
18034         * dwarfout.c: Likewise
18035         * Makefile.in (dwarfout.o, dwarf2out.o): Remove dependence on
18036         frame.h
18037
18038 Thu Jan  6 13:44:59 CET 2000  Jan Hubicka  <jh@suse.cz>
18039
18040         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
18041         dead registers.
18042
18043         * i386.c (movsf splitter): Fix typo in my last checkin.
18044
18045 2000-01-05  Nick Clifton  <nickc@cygnus.com>
18046
18047         * varasm.c (IN_NAMED_SECTION): Allow targets to provide their
18048         own definition of this macro.
18049         (asm_emit_uninitialised): Invoke UNIQUE_SECTION if either
18050         flag_data_sections or UNIQUE_SECTION_P are true.
18051
18052         * tm.texi (UNIQUE_SECTION): Document that it can be called for
18053         unitialised data decls.
18054
18055         * config/i386/winnt.c (i386_pe_unique_section): Cope with
18056         being called for uninitialised data.
18057
18058         * config/i386/interix.c (i386_pe_unique_section): Cope with
18059         being called for uninitialised data.
18060
18061         * config/mips/elf.h (UNIQUE_SECTION): Cope with being called
18062         for uninitialised data.
18063
18064         * config/mips/elf64.h (UNIQUE_SECTION): Cope with being called
18065         for uninitialised data.
18066
18067         * config/mips/iri6gld.h (UNIQUE_SECTION): Cope with being called
18068         for uninitialised data.
18069
18070         * config/arm/unknown-elf.h (IN_NAMED_SECTION): Define.
18071         (UNIQUE_SECTION_P): Always generate a unique section if
18072         flag_data_sections is true.
18073         (UNIQUE_SECTION): Also generate unique sections for
18074         uninitialised data.
18075         (ASM_OUTPUT_ALIGNED_BSS): Redefine to use named_section().
18076         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Redefine to use
18077         named_section().
18078
18079 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18080
18081         * config/c4x/t-c4x (TARGET_LIBGCC2_CFLAGS): Don't redefine SF, DF,
18082         SI, or DI.
18083
18084 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18085
18086         * config/c4x/c4x.md (udivqi3, divqi3): Delete.
18087         (umodqi3, modqi3, udivhi3, divhi3, umodhi3, modhi3, ffsqi2): Likewise.
18088         (*smulqi3_highpart_noclobber, *umulqi3_highpart_noclobber): New.
18089         (*lshrqi3_const_noclobber, *lshrqi3_nonconst_noclobber): Likewise.
18090         (*ashrqi3_const_noclobber, *ashrqi3_nonconst_noclobber): Likewise.
18091
18092         * c4x.h (INIT_TARGET_OPTABS): Define to init libcalls.
18093
18094 2000-01-05 11:25 -0800  Zack Weinberg  <zack@rabi.columbia.edu>
18095
18096         * c-decl.c (finish_enum): Simplify code to determine minimum and
18097         maximum values of the enum, and calculate the type.  Remove check
18098         for FUNCTION_DECLs in the values list, which cannot happen.  Replace
18099         the DECL_INITIAL of each enumeration constant with a copy converted
18100         to the enumeration type.  When updating variant types, don't bother
18101         updating the type itself.
18102
18103         * c-typeck.c (build_binary_op): Simplify conditional expressions
18104         when weeding out spurious signed-unsigned warnings.  Add new
18105         spurious warning category: if the unsigned quantity is an enum
18106         and its maximum value fits in signed_type(result_type).  Update
18107         commentary.
18108         (build_conditional_expr): Warn here if one alternative is signed
18109         and the other is unsigned.
18110
18111 2000-01-05  Nick Clifton  <nickc@cygnus.com>
18112
18113         * config/fr30/fr30.h: Remove extraneous comments.
18114
18115 2000-01-05  Bernd Schmidt  <bernds@cygnus.co.uk>
18116
18117         * reload1.c (choose_reload_regs): When disabling a reload, also
18118         set reload_spill_index to -1.
18119
18120 2000-01-04  Joel Sherrill (joel@OARcorp.com>
18121
18122         * configure.in (m68*-*-rtemscoff*): New target, formal name for
18123         old m68*-*-rtems*.
18124         (m68*-*-rtemself*): New target.
18125         (mips64orion-*-rtems*): Remove duplicate definition of tm_file.
18126         (sparc*-*-rtemsaout*): New target, formal name for old sparc*-*-rtems*.
18127         (sparc*-*-rtemself*): New target.
18128         (sparc*-*-rtems*): Now elf not a.out.
18129         * config/i386/rtems.h: Include config/rtems.h.
18130         * config/i386/rtemself.h: Include config/rtems.h.
18131         * config/i960/rtems.h: Include config/rtems.h.
18132         * config/m68k/rtems.h: Include config/rtems.h.
18133         * config/m68k/rtemself.h: Include config/rtems.h.
18134         * config/mips/rtems64.h: Include config/rtems.h.
18135         * config/pa/rtems.h: Include config/rtems.h.
18136         * config/rs6000/rtems.h: Include config/rtems.h.
18137         * config/sh/rtems.h: Include config/rtems.h.
18138         * config/sh/rtemself.h: Include config/rtems.h.
18139         * config/sparc/rtems.h: Include config/rtems.h.
18140         * config/sparc/rtemself.h: Include config/rtems.h
18141
18142 Tue Jan  4 23:59:26 2000  Denis Chertykov <denisc@overta.ru>
18143
18144         * final.c (shorten_branches): Correctly compute length of
18145         asms without operands.
18146
18147 Tue Jan  4 22:55:41 2000  Steve Chamberlain <sac@pobox.com>
18148
18149         * configure.in: Add pj target.
18150         * configure: Regenerate.
18151         * config/pj: New directory.
18152         * config/pj/lib1funcs.S: New file.
18153         * config/pj/linux.h: New file.
18154         * config/pj/pj.c: New file.
18155         * config/pj/pj.md: New file.
18156         * config/pj/pjl.h: New file.
18157         * config/pj/t-pj: New file.
18158         * config/pj/xm-pj.h: New file
18159
18160 Tue Jan  4 22:30:16 2000  Jeffrey A Law  (law@cygnus.com)
18161
18162         * toplev.c (rest_of_compilation): Run shorten-branches before
18163         reg-stack for now.
18164
18165 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18166
18167         * config/c4x/c4x.h (IS_XXX_REG, IS_XXX_REGNO): Swap behaviour of
18168         macros so that they're consistent with their names.
18169         * config/c4x/c4x.c (IS_XXX_REG, IS_XXX_REGNO): Likewise.
18170         * config/c4x/c4x.md (IS_XXX_REG, IS_XXX_REGNO): Likewise.
18171
18172 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18173
18174         * config/c4x/c4x.md (*addqi3_noclobber_reload): Ensure that CC never
18175         modified inadvertently.
18176
18177 2000-01-04  Joel Sherrill <joel@OARcorp.com>
18178
18179         * configure.in (v850*-*-rtems*): New target.
18180         * configure: Regenerate.
18181         * config/v850/rtems.h: New file.
18182
18183 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
18184
18185         * gthr-win32.h (__gthread_active_p): Support Mingw MT runtime.
18186         (__gthread_key_create): Likewise.
18187         (__gthread_key_dtor):  Likewise.
18188         (__gthread_once): Fix logic.
18189         (__gthread_key_delete): Cast away constness.
18190
18191         * i386/cygwin.h (SUBTARGET_SWITCHES): Add -mthreads option.
18192         * invoke.texi: Document.
18193         * i386/mingw32.h (CPP_SPEC): Use.
18194         (LIBGCC_SPEC): Likewise.
18195         * i386/crtdll.h (LIBGCC_SPEC): Likewise.
18196
18197 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
18198
18199         * rs6000/sysv4.h (ASM_OUTPUT_DEF): Undefine.
18200         (HANDLE_PRAGMA_PACK): Undefine.
18201         (SLOW_UNALIGNED_ACCESS): Define.
18202
18203 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
18204
18205         * expmed.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
18206         to default definition.
18207         (store_bit_field): Call SLOW_UNALIGNED_ACCESS with mode and alignment.
18208         (store_fixed_bit_field): Call macro with word_mode and alignment.
18209         (extract_bit_field): Call macro with relevant mode and alignment.
18210         * expr.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
18211         to default definition.
18212         (move_by_pieces): Call SLOW_UNALIGNED_ACCESS with word_mode
18213         and alignment.
18214         (move_by_pieces_ninsns): Likewise.
18215         (clear_by_pieces): Likewise.
18216         (emit_push_insn): Likewise.
18217         (store_field): Call macro with relevant mode and alignment.
18218         (expand_expr): Likewise.
18219         (expand_expr_unaligned): Likewise.
18220
18221         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
18222         (SLOW_UNALIGNED_ACCESS): Define.
18223         (CASE_VECTOR_MODE): Always use 32-bit offsets.
18224         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
18225         (EXTRA_SECTION_FUNCTIONS): Indent .csect pseudo-op.
18226         (toc_section): Likewise and .toc pseudo-op.
18227         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
18228         64-bit mode.
18229         (TEXT_SECTION_ASM_OP): Likewise.
18230         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
18231         32-bit offsets.
18232
18233         * a29k.h (SLOW_UNALIGNED_ACCESS): Add MODE and ALIGN parameters.
18234         * alpha.h (SLOW_UNALIGNED_ACCESS): Likewise.
18235         * arm/thumb.h (SLOW_UNALIGNED_ACCESS): Likewise.
18236         * gmicro.h (SLOW_UNALIGNED_ACCESS): Likewise.
18237         * fr30.h (SLOW_UNALIGNED_ACCESS): Likewise.
18238
18239 Tue Jan  4 11:44:13 2000  Jeffrey A Law  (law@cygnus.com)
18240
18241         * regclass.c: Revert my Jan 4 change to loop cost computation.
18242
18243 Tue Jan  4 19:22:39 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18244
18245         * regclass.c (regclass): Do not obey REG_N_REFS in non-optimizing
18246         compilation.
18247
18248 2000-01-04  Stan Cox  <scox@cygnus.com>
18249
18250         * haifa-sched.c (build_control_flow): Change unreachable simple
18251         loop test to check if current block has only one predecessor.
18252         (find_rgns): Initialize degree.  Use dest as degree index, not src.
18253
18254 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18255
18256         * builtins.c (expand_builtin_strlen): Initialize variable `icode'.
18257
18258         * calls.c (expand_call): Likewise for
18259         `old_stack_arg_under_construction'.
18260
18261         * cpphash.c (macroexpand): Likewise for `args' and `rest_zero'.
18262
18263         * function.c (pad_to_arg_alignment): Likewise for `save_var' and
18264         `save_constant'.
18265
18266         * gcc.c (execute): Likewise for `ut' and `st'.
18267
18268         * genattrtab.c (attr_rtx): Likewise for `rt_val'.
18269
18270         * genopinit.c (gen_insn): Likewise for `m1', `m2' and `op'.
18271
18272         * jump.c (jump_optimize_1): Likewise for `temp2'.
18273
18274         * local-alloc.c (block_alloc): Likewise for `r1'.
18275
18276         * loop.c (recombine_givs): Likewise for `life_start' and `life_end'.
18277
18278         * reg-stack.c (check_asm_stack_operands): Likewise for `clobber_reg'.
18279         (subst_asm_stack_regs): Likewise for `clobber_reg' and `clobber_loc'.
18280
18281         * regmove.c (fixup_match_1): Likewise for `insn_const', `dst_node'
18282         and `set2'.
18283
18284         * reload.c (find_reloads): Likewise for `goal_alternative_number'
18285         and `goal_earlyclobber'.
18286
18287         * scan-decls.c (scan_decls): Likewise for `prev_id_end'.
18288
18289         * sdbout.c (sdbout_one_type): Likewise for `member_scl'.
18290
18291         * stupid.c (stupid_life_analysis): Likewise for `chain'.
18292
18293         * unroll.c (copy_loop_body): Likewise for `copy'.
18294
18295         * varasm.c (output_constructor): Likewise for `byte'.
18296
18297 Tue Jan  4 15:34:34 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18298
18299         * i386.c (ix86_expand_move): Allow pushes of memory, offload to memory
18300         all FP constants for constant->reg moves.
18301         (ix86_split_to_parts): Try to convert memory address into immediate
18302         when available in the constant pool.
18303         * i386.h (PREFERRED_RELOAD_CLASS): Allow CONST_DOUBLE->integer reg
18304         moves.
18305         (LEGITIMATE_CONSTANT_P): Return 1.
18306         * i386.md (pushsf): New splitter to convert constant pool memory
18307         reference to immediate.
18308         (mov?f): Likewise; do not allow CONST_DOUBLE for reg moves before
18309         reload.
18310
18311 2000-01-04  Bernd Schmidt  <bernds@cygnus.co.uk>
18312
18313         * i386.md (ashlsi3_cmpno): Don't accept variables shifts.
18314         (ashlhi3_cmpno, ashlqi3_cmpno, ashrsi3_cmpno, ashrhi3_cmpno,
18315         ashrqi3_cmpno, lshrsi3_cmpno, lshrhi3_cmpno, lshrqi3_cmpno): Likewise.
18316         (rotlsi3_cmpno, rotlhi3_cmpno, rotlqi3_cmpno, rotrsi3_cmpno,
18317         rotrhi3_cmpno, rotrqi3_cmpno): Likewise.
18318
18319 2000-01-04  Martin von Löwis  <loewis@informatik.hu-berlin.de>
18320
18321         * ginclude/stdbool.h:  Support compilation as C++.
18322
18323 Tue Jan  4 01:35:13 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
18324
18325         * fold-const.c (make_range): Don't try to reverse an unbounded range.
18326
18327 Tue Jan  4 00:18:46 2000  Jeffrey A Law  (law@cygnus.com)
18328
18329         * regclass.c (regclass): Properly compute loop_cost.  Adjust
18330         comments.
18331
18332         * regclass.c: Fix minor whitespace problems.
18333
18334 2000-01-03  Anthony Green  <green@cygnus.com>
18335
18336         * config/i386/i386.md (builtin_setjmp_receiver): New pattern.
18337         Restore the pic register if required.
18338
18339 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
18340
18341         * c-common.c (format_char_info): Update comment.
18342         (check_format_info): Recognize 'z' modifier in the same way 'Z'
18343         was recognized.  Emit warning for formats new in ISO C99 only
18344         if flag_isoc9x is not set.
18345
18346 Mon Jan  3 12:59:54 2000  Mark P. Mitchell  <mark@codesourcery.com>
18347
18348         * config/mips/iris6gld.h: Fix typo in -mabi=n32 specs.
18349
18350 Mon Jan  3 15:33:37 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
18351
18352         * combine.c (expand_compound_operation): Do not convert ZERO_EXTEND to
18353         SIGN_EXTEND, convert SIGN_EXTEND to ZERO_EXTEND.
18354         (make_compound_operation): Choose cheaper alternative between
18355         ZERO_EXTEND and SIGN_EXTEND when sign bit is not set.
18356
18357         * regclass.c (op_costs): Remove global variable.
18358         (record_reg_classes): New parameter "op_costs" and "reg_pref".
18359         (record_operand_costs): Break out from ...
18360         (scan_one_insn): ... here.
18361         (dump_regclass): Make dumps nicer.
18362         (regclass): Dump preferrences choosed and changes done during passes.
18363
18364 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
18365
18366         * config/sparc/sparc.c (gen_df_reg): Fix for 32bit SPARC.
18367
18368 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
18369
18370         * config/sparc/sparc.c (gen_df_reg): New function.
18371         * config/sparc/sparc-protos.h (gen_df_reg): Add prototype.
18372         * config/sparc/sparc.md (movtf_no_e_insn_sp64+1,
18373         movtf_no_e_insn_sp64+2, movtf_no_e_insn_sp64+3, movtf_cc_sp64+1,
18374         movtf_cc_reg_sp64+1): Use it.
18375
18376 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
18377
18378         * integrate.c (copy_decl_for_inlining): Clear TREE_ADDRESSABLE on
18379         copied LABEL_DECLs.
18380
18381 Mon Jan  3 02:54:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
18382
18383         * config/i386/i386.c (ix86_expand_unary_operator): Function
18384         definition made void.
18385         (ix86_expand_binary_operator): Update outdated preceding comment.
18386         * config/i386/i386-protos.h (ix86_expand_unary_operator): Update
18387         prototype.
18388
18389         * config/i386/i386.c (override_options): Fix option-name typo.
18390
18391 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
18392
18393         * system.h (CEIL): Define.
18394         * builtins.c (CEIL): Remove.
18395         * expmed.c (CEIL): Likewise.
18396         * expr.c (CEIL): Likewise.
18397         * stor-layout.c (CEIL): Likewise.
18398
18399 2000-01-02  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
18400
18401         * expr.c (store_constructor_field): Fix typo introduced with last
18402         gcc2 merge.
18403
18404 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
18405
18406         * tree.h (BINFO_N_BASETYPES): New macro.
18407
18408 2000-01-01  Bernd Schmidt  <bernds@cygnus.co.uk>
18409
18410         * expmed.c (emit_store_flag): Prevent losing a pending stack
18411         adjust the same way we prevent losing queued increments.
18412
18413 See ChangeLog.2 for earlier changes.