OSDN Git Service

Sat Jul 5 16:18:53 CEST 2003 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 Sat Jul  5 16:18:53 CEST 2003  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2
3         Blame to Jan Hubicka  <jh@suse.cz>
4         * cfglayout.c (record_effective_endpoints): Split insns before
5         first basic block correctly.
6
7 2003-07-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8
9         * expr.c (expand_expr, case COMPONENT_REF): When seeing if should use 
10         bitfield operations, use STRICT_ALIGNMENT, not SLOW_UNALIGNED_ACCESS
11         if EXPAND_CONST_ADDRESS or EXPAND_INITIALIZER.
12
13 2003-07-05  Andreas Jaeger  <aj@suse.de>
14
15         * genattrtab.c (write_attr_get): Revert part of last patch to
16         always write out a prototype.
17
18         * genemit.c (gen_split): Readd lost unused attributes in last
19         patch.
20
21 2003-07-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
22
23         * cfgloopmanip.c (force_single_succ_latches): Force latch to be
24         different from header.
25
26 2003-07-05  Andreas Schwab  <schwab@suse.de>
27
28         * config/m68k/m68k.c: Remove code protected by CRDS.
29         * config/m68k/m68k.md: Likewise.
30
31 2003-07-05  Neil Booth  <neil@daikokuya.co.uk>
32
33         PR driver/11417
34         * c-opts.c (permit_fortran_options): New.
35         (c_common_init_options): Accept fortran front end options if
36         it looks like we might be preprocessing Fortran.
37         (c_common_handle_option): Don't reject switch if permit_fotran_options.
38
39 2003-07-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
40
41         * genattr.c (internal_dfa_insn_code): Output prototype.
42         * genattrtab.c: Don't output unnecessary decls, output in ISO C.
43         * genautomata.c: Likewise.
44         * genconditions.c: Likewise.
45         * genemit.c: Likewise.
46         * genextract.c: Likewise.
47         * gengenrtl.c: Likewise.
48         * gengtype.c: Likewise.
49         * genopinit.c: Likewise.
50         * genoutput.c: Likewise.
51         * genpeep.c: Likewise.
52         * genrecog.c: Likewise.
53
54 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
55
56         * cpplib.h (CPP_AT_NAME, CPP_OBJC_STRING): New token types.
57         (struct cpp_options): Add narrow_charset, wide_charset,
58         bytes_big_endian fields.  Remove EBCDIC field.
59         (cpp_init_iconv, cpp_interpret_string): New external interfaces.
60
61         * cpphash.h: Include <iconv.h> if we have it, otherwise
62         provide a dummy definition of iconv_t.
63         (struct cpp_reader): Add narrow_cset_desc and wide_cset_desc fields.
64         (_cpp_valid_ucn): Update prototype.
65         (_cpp_destroy_iconv): New prototype.
66
67         * doc/cpp.texi: Document character set handling.
68         * doc/cppopts.texi: Document -fexec-charset= and -fexec-wide-charset=.
69         * doc/extend.texi: Delete entire section on multiline strings.
70         Rewrite section on __FUNCTION__ etc now that these are
71         variables in C.
72
73         * cppucnid.tab, cppucnid.pl: New files.
74         * cppucnid.h: New generated file.
75         * cppcharset.c: Include cppucnid.h.  Lots of commentary added.
76         (iconv_open, iconv, iconv_close): Provide dummy definitions
77         if !HAVE_ICONV.
78         (SOURCE_CHARSET, struct strbuf, init_iconv_desc, cpp_init_iconv,
79         _cpp_destroy_iconv, convert_cset, width_to_mask, convert_ucn,
80         emit_numeric_escape, convert_hex, convert_oct, convert_escape,
81         cpp_interpret_string, narrow_str_to_charconst,
82         wide_str_to_charconst): New.
83         (ucn_valid_in_identifier): Use a binary search through the
84         ucnranges table defined in cppucnid.h, not a long chain of if
85         statements.
86         (_cpp_valid_ucn): Add a limit pointer.  Downgrade "universal
87         character names are only valid in C++ and C99" to a warning.
88         Issue the "meaning of \[uU] is different in traditional C"
89         warning here.  Take care not to let iconv see an invalid UCS
90         value if we get a malformed UCN.  Issue an error if we don't
91         have iconv.
92         (cpp_interpret_charconst): Moved here from cpplex.c.  Use
93         cpp_interpret_string to do the heavy lifting.
94
95         * cppinit.c (cpp_create_reader): Initialize bytes_big_endian,
96         narrow_charset, wide_charset fields of options structure.
97         (cpp_destroy): Call _cpp_destroy_iconv.
98         * cpplex.c (forms_identifier_p): Adjust call to _cpp_valid_ucn.
99         (maybe_read_ucn, hex_digit_value, cpp_parse_escape): Delete.
100         (cpp_interpret_charconst): Moved to cppcharset.c.
101         * cpplib.c (dequote_string): Delete.
102         (interpret_string_notranslate): New.
103         (do_line, do_linemarker): Use interpret_string_notranslate.
104
105         * Makefile.in (cppcharset.o): Depend on cppucnid.h.
106
107         * c-common.c (fname_string, combine_strings): Delete.
108         * c-common.h (fname_string, combine_strings): Delete prototypes.
109         * c-lex.c (ignore_escape_flag): Delete.
110         (cb_ident): Use cpp_interpret_string, not lex_string.
111         (get_nonpadding_token): New function.
112         (c_lex): Handle Objective-C @-prefixed identifiers and strings here.
113         Adjust calls to lex_string.  Don't write *value twice.
114         (lex_string): Now handles string constant concatenation.
115         Most of the work handed off to cpp_interpret_string.
116         Call fix_string_type here.
117         * c-parse.in (STRING_FUNC_NAME, VAR_FUNC_NAME): Replace with
118         FUNC_NAME, throughout.
119         (OBJC_STRING): New token type.
120         (primary:STRING): No need to call fix_string_type here.
121         (primary:objc_string): Make that OBJC_STRING.
122         (objc_string nonterminal): Delete.
123         (yylexname): Delete code to handle fake string constants.
124         (yylexstring): Delete entirely.
125         (_yylex): Handle CPP_AT_NAME and CPP_OBJC_STRING.  No need
126         to handle CPP_ATSIGN.
127
128         * c.opt (-fexec-charset=, -fwide-exec-charset=): New options.
129         * c-opts.c (missing_arg, c_common_handle_option): Handle
130         OPT_fexec_charset_ and OPT_fwide_exec_charset_.
131         (c_common_init): Set cpp_opts->bytes_big_endian, not
132         cpp_opts->EBCDIC.  Call cpp_init_iconv.
133         (print_help): Document -fexec-charset= and -fexec-wide-charset=.
134         (TARGET_EBCDIC): Delete default definition.
135
136         * objc/objc-act.c (build_objc_string_object): No need to
137         handle string constant concatenation.
138
139 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
140
141         * doc/install.texi: Fix typos.
142         * doc/invoke.texi: Likewise.
143         * doc/tm.texi: Likewise.
144
145 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
146
147         * config/pa/fptr.c: Fix comment typos.
148         * config/pa/pa-64.h: Likewise.
149         * config/pa/pa.c: Likewise.
150         * config/pa/pa.h: Likewise.
151         * config/rs6000/603.md: Likewise.
152         * config/rs6000/7xx.md: Likewise.
153         * config/rs6000/darwin.h: Likewise.
154         * config/rs6000/freebsd.h: Likewise.
155         * config/rs6000/rs6000.c: Likewise.
156         * config/rs6000/rs6000.md: Likewise.
157         * config/rs6000/spe.h: Likewise.
158
159 2003-07-04  Ulrich Weigand  <uweigand@de.ibm.com>
160
161         * config/s390/2064.md: Change GNU CC to GCC.
162         * config/s390/2084.md: Likewise.
163         * config/s390/fixdfdi.h: Likewise.
164         * config/s390/linux.h: Likewise.
165         * config/s390/s390-modes.def: Likewise.
166         * config/s390/s390-protos.h: Likewise.
167         * config/s390/s390.c: Likewise.
168         * config/s390/s390.h: Likewise.
169         * config/s390/s390.md: Likewise.
170         * config/s390/s390x.h: Likewise.
171
172 2003-07-04  Jeff Law  <law@redhat.com>
173
174         PR c/11428
175         * expr.c (do_store_flag): Pass in the correct result type
176         when calling fold_single_bit_test.
177         * fold-const.c (fold_single_bit_test): Use result_type for the
178         result when folding a sign bit test.
179
180 2003-07-04  Neil Booth  <neil@daikokuya.co.uk>
181
182         * opts.c (common_handle_options): Negate sense of -falign- switches.
183
184 2003-07-04  H.J. Lu <hongjiu.lu@intel.com>
185
186         * Makefile.in: Replace PWD with PWD_COMMAND.
187
188 2003-07-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
189
190         * cfgloopanal.c (count_strange_loop_iterations): New static function.
191         (constant_iterations, count_loop_iterations, simple_loop_exit_p):
192         Handle strange loops.
193
194 2003-07-04  Toon Moene  <toon@moene.indiv.nluug.nl>
195
196         * install.texi: Even the g77 manpage is derived from
197         the full g77 manual.
198
199 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
200
201         * ABOUT-NLS: Delete.
202         * intl: Delete entire directory.
203         * aclocal.m4: Include ../config/gettext.m4.  Delete
204         AC_ISC_POSIX, AM_LANGINFO_CODESET, jm_GLIBC21, AM_LC_MESSAGES,
205         AM_PATH_PROG_WITH_TEST, AM_WITH_NLS, and AM_GNU_GETTEXT.
206         * configure.in: Use CY_GNU_GETTEXT, not AM_GNU_GETTEXT.
207         Remove intl/Makefile from all_outputs.
208         * configure, config.in: Regenerate.
209         * Makefile.in: Expunge all references to intl subdirectory.
210         Add -I../intl to INCLUDES.
211         * intl.h: Include libintl.h if and only if ENABLE_NLS is defined.
212
213 2003-07-04  Roger Sayle  <roger@eyesopen.com>
214
215         * config/rs6000/aix51.h (TARGET_C99_FUNCTIONS): Define.
216         * config/rs6000/aix52.h (TARGET_C99_FUNCTIONS): Likewise.
217
218 2003-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
219
220         PR c++/5287, PR c++/7910, PR c++/11021
221         * config/i386/winnt.c (ix86_handle_dll_attribute): Don't add
222         dllimport attribute if function is defined at declaration, but
223         report error instead. Likewise for dllimport'd variable
224         definitions.  Set implicit TREE_PUBLIC for dllimport'd variables
225         declared within functions, Report error if dllimport or dllexport
226         symbol is not global.
227         (i386_pe_dllimport_p): Ignore dllimport attribute of functions
228         if defined after declaration or if inlined. Don't allow definition
229         of static data members of C++ classes. Don't dllimport virtual
230         methods.
231         (i386_pe_mark_dllexport): Warn about inconsistent dll attributes.
232         (i386_pe_mark_dllimport): Remove unnecessary checks.
233         (i386_pe_encode_section_info): Warn if the dllimport attribute
234         and symbol prefix have been instantiated and then overridden.
235
236         * doc/extend.texi: Document dllimport and dllexport attributes.
237
238         * config/i386/winnt.c (i386_pe_output_labelref): Fix indents.
239
240 2003-07-03 Uwe Stieber <uwe@kaos-group.de>
241
242         * config/kaos.h (CPP_PREDEFINES): Delete.
243         (TARGET_OS_CPP_BUILTINS): New.
244
245 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
246
247         * c-aux-info.c: Include toplev.h after c-tree.h.
248         * c-common.c: Likewise.
249         (GCC_DIAG_STYLE): Undef.
250         * c-semantics.c (GCC_DIAG_STYLE): Define.
251         * c-tree.h (GCC_DIAG_STYLE): Likewise.
252         * diagnostic.h (inform): Move prototype to toplev.h.
253         * jump.c: Include diagnostic.h before toplev.h.
254         * toplev.h (GCC_DIAG_STYLE, ATTRIBUTE_GCC_DIAG): Define.
255         (warning, error, fatal_error, pedwarn, sorry, inform,
256         error_for_asm, warning_for_asm): Mark with ATTRIBUTE_GCC_CXXDIAG.
257
258 2003-07-03  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
259
260         * cfglayout.c (cfg_layout_duplicate_bb): Do not update frequencies
261         at all if edge is not specified.
262         (can_copy_bbs_p, copy_bbs): New.
263         * cfglayout.h (can_copy_bbs_p, copy_bbs): Declare.
264         * cfgloop.c (get_loop_body): Comment more precisely.
265         * cfgloopmanip.c (copy_bbs, record_exit_edges): Removed.
266         (scale_bbs_frequencies): Fix comment typo.
267         (can_duplicate_loop_p): Use can_copy_bbs_p.
268         (duplicate_loop_to_header_edge): Simplify by using copy_bbs.
269
270 2003-07-03  Devang Patel <dpatel@apple.com>
271
272         * c-opts.c (c_common_parse_file): Remove extra
273         debug_hooks->start_source_file call.
274
275 2003-07-03  Roger Sayle  <roger@eyesopen.com>
276
277         * real.c (real_trunc, real_floor, real_ceil): New functions
278         to implement trunc, floor and ceil respectively.
279         * real.h (real_trunc, real_floor, real_ceil): Prototype here.
280         * builtins.c (integer_valued_real_p): New function to test if
281         a floating point expression has an integer valued result.
282         (fold_trunc_transparent_mathfn): Optimize foo(foo(x)) as
283         foo(x) where foo is an integer rounding function.  Similarly,
284         optimize foo(bar(x)) as bar(x), and foo((double)(int)x) as
285         (double)(int)x when both foo and bar are integer rounding
286         functions and we don't need to honor errno.
287         (fold_builtin_trunc, fold_builtin_floor, fold_builtin_ceil):
288         New functions to fold trunc, floor and ceil.
289         (fold_builtin): Use fold_builtin_trunc to fold BUILT_IN_TRUNC*,
290         fold_builtin_floor to fold BUILT_IN_FLOOR* and fold_builtin_ceil
291         to fold BUILT_IN_CEIL*.
292         * fold-const.c (tree_expr_nonnegative_p): Handle FLOAT_EXPR and
293         the remaining integer rounding functions.
294
295 2003-07-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
296
297         * config/sparc/sparc.c (function_arg_partial_nregs): Use
298         SPARC_INT_ARG_MAX to determine where to split unnamed
299         complex FP arguments.
300
301 Thu Jul  3 20:36:47 CEST 2003  Jan Hubicka  <jh@suse.cz>
302
303         * basic-block.h (create_basic_block, merge_blocks_nomove): Kill.
304         * cfgcleanup.c (merge_blocks): Rename to merge_blocks_move.
305         (merge_blocks_move_predecessor_nojumps,
306          merge_blocks_move_successor_nojumps): Use merge_blocks.
307         (try_optimize_cfg): Use merge_blocks_move.
308         * cfgrtl.c (create_basic_block): Rename to rtl_create_basic_block.
309         (merge_blocks_nomove): Rename to rtl_merge_blocks.
310         (cfg_layout_create_basic_block): New.
311         (rtl_can_merge_blocks): New.
312         (cfg_layout_split_block): Do not alloc aux by hand.
313         * cfghooks.h (cfg_hooks): Add create_basic_block, can_merge_blocks_p,
314         merge_blocks.
315         (create_basic_block, can_merge_blocks_p, merge_blocks): New macros.
316         * cfglayout.c (cfg_layout_duplicate_bb): Do not allocate aux by hand.
317         * cfgloopmanip.c (loop_split_edge_with): Likewise.
318         * ifcvt.c (merge_if_block): Use merge_blocks_nomove.
319
320         * basic-block.h (basic_block_def): Add field 'rbi'.
321         * bb-reorder.c (find_traces, rotate_loop, mark_bb_visited,
322         find_traces_1_round, copy_bb, connect_traces): Update use of rbi.
323         * cfg.c (entry_exit_blocks): Add new field.
324         * cfglayout.c: Include alloc-pool.h;
325         (cfg_layout_pool): New.
326         (record_effective_endpoints, fixup_reorder_chain,
327         fixup_fallthru_exit_predecessor, cfg_layout_duplicate_bb): Update use
328         of rbi.
329         (cfg_layout_initialize_rbi): New function.
330         (cfg_layout_initialize): Use it.
331         (cfg_layout_finalize): Clear rbi fields.
332         * cfglayout.h (RBI): Kill.
333         (cfg_layout_initialize_rbi): Declare.
334         * cfgloopmanip.c (copy_bbs): Use rbi.
335         (record_exit_edges): Likewise.
336         (duplicate_loop_to_header_edge): Likewise.
337         * cfgrtl.c (cfg_layout_create_basic_block): Use
338         cfg_layout_initialize_rbi.
339         (cfg_layout_split_block): Use rbi.
340         (cfg_layout_delete_block): Likewise.
341         * loop-init.c (loop_optimizer_finalize): Likewise.
342         * loop-unswitch.c (unswitch_loop): Likewise.
343         * tracer.c (seen, tail_duplicate, layout_superblocks): Likewise.
344
345         * cfgrtl.c: Update comments.
346         (try_redirect_by_replacing_jump): New argument.
347         (redirect_branch_edge): Break out from ...
348         (rtl_redirect_edge_and_branch): ... this one.
349         (update_cfg_after_block_merging): Break out from ...
350         (rtl_merge_blocks): ... this one.
351         (cfg_layout_split_edge): New.
352         (cfg_layout_merge_blocks): New.
353         (cfg_layout_can_merge_blocks_p): New.
354         (cfg_layout_redirect_edge_and_branch): Reorganize.
355         (cfg_layout_rtl_cfg_hooks): Fill in.
356         (cfg_layout_delete_block): Kill barriers.
357         * cfganal.c (can_fallthru): Deal with exit blocks
358         * cfglayout.c (cfg_layout_function_header): New function
359         (record_effective_endpoints): Record function header.
360         (fixup_reorder_chain): Fixup dead jumptables; place header
361
362         * basic-block.h (CLEANUP_CFGLAYOUT): New flag.
363         * bb-reorder.c (cfg_layout_initialize): Update call.
364         * cfgcleanup.c (try_optimize_cfg): Supress optimizations of fallthru
365         edges in cfglayout mode.
366         * cfglayout.c (cleanup_unconditional_jumps): Kill.
367         (cfg_layout_initialize): Kill agrument loops; use cfgcleanup.
368         * cfglayout.h (cfg_layout_initialize): Update prototype.
369         * cfgloop.h (CP_INSIDE_CFGLAYOUT): Kill.
370         * cfgloopmanip.c (loop_split_edge_with): Use split_edge.
371         * flow.c (propagate_block): Do not crash when basic block ends
372         by first insn in the chain.
373         * loop-init.c (loop_optimizer_init):  First enter cfglayout mode; later
374         do loop discovery.
375         * tracer.c (tracer): Update call of cfg_layout_initialize.
376
377 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
378
379         * Makefile.in: Use dependency variables in lieu of explicit
380         files throughout.
381
382 2003-07-03  Steven Bosscher  <steven@gcc.gnu.org>
383
384         * rtl.h (ECF_*, flags_from_decl_or_type): Move from here...
385         * tree.h: ...to here.
386
387 2003-07-03  Kazu Hirata  <kazu@cs.umass.edu>
388
389         * config/s390/2064.md: Fix comment typos.
390         * config/s390/2084.md: Likewise.
391         * config/s390/s390.c: Likewise.
392         * config/s390/s390.md: Likewise.
393         * config/sh/sh.c: Likewise.
394         * config/sh/sh.h: Likewise.
395         * config/sh/sh.md: Likewise.
396         * config/sparc/sparc.c: Likewise.
397         * config/sparc/sparc.h: Likewise.
398         * config/sparc/sparc.md: Likewise.
399         * config/stormy16/stormy16.c: Likewise.
400         * config/stormy16/stormy16.h: Likewise.
401         * config/stormy16/stormy-abi: Fix a typo.
402
403 2003-07-03  Kelley Cook  <kelleycook@wideopenwest.org>
404
405         * Makefile.in (ifcvt.o): Depend on OPTABS_H.
406
407 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
408
409         * config/mips/mips.h (save_argv): Delete.
410
411 2003-07-03  Roger Sayle  <roger@eyesopen.com>
412
413         PR target/10700
414         * fold-const.c (extract_muldiv_1): There's nothing that can be done
415         if the expression is a SAVE_EXPR.
416
417 2003-07-03  Kazu Hirata  <kazu@cs.umass.edu>
418
419         * config/m32r/m32r.c: Fix comment typos.
420         * config/m68hc11/m68hc11.c: Likewise.
421         * config/m68hc11/m68hc11.h: Likewise.
422         * config/m68k/m68k.c: Likewise.
423         * config/mcore/mcore.c: Likewise.
424         * config/mcore/mcore.h: Likewise.
425         * config/mcore/mcore.md: Likewise.
426         * config/mips/mips.c: Likewise.
427         * config/mips/mips.h: Likewise.
428         * config/mips/mips.md: Likewise.
429         * config/mips/netbsd.h: Likewise.
430         * config/mn10300/mn10300.c: Likewise.
431
432 2003-07-03  Andreas Schwab  <schwab@suse.de>
433
434         * dbxout.c (pending_bincls): Move decl down inside
435         DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO section.
436
437 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
438
439         * rtl.h (NOTE_DATA): Refer to whole union.
440         * emit-rtl.c (emit_note): Use memset to clear NOTE_DATA.
441
442 2003-07-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
443
444         PR optimization/11381
445         * simplify-rtx.c (simplify_relational_operation): Check that
446         two equal operands have no side-effects before simplifying
447         the comparison.
448
449 2003-07-02  Jeff Law  <law@redhat.com>
450
451         * expr.c (do_store_flag): Remove special case folding for
452         single bit tests.  Instead call back into the commonized folder
453         routine.
454         * fold-const.c (fold_single_bit_test): New function, mostly
455         extracted from do_store_flag, with an additional case extracted
456         from fold.
457         (fold): Call fold_single_bit_test appropriately.
458         * tree.h (fold_single_bit_test): Prototype.
459
460 2003-07-02  Zack Weinberg  <zack@codesourcery.com>
461
462         * system.h: Include filenames.h.
463         (IS_DIR_SEPARATOR, IS_ABSOLUTE_PATHNAME): Don't define.
464         (DIR_SEPARATOR, DIR_SEPARATOR_2): If not already defined,
465         define based on HAVE_DOS_BASED_FILE_SYSTEM.
466         * config/i386/xm-cygwin.h, config/i386/xm-djgpp.h
467         * config/i386/xm-mingw32.h: Don't define
468         HAVE_DOS_BASED_FILE_SYSTEM,
469         DIR_SEPARATOR, or DIR_SEPARATOR_2.
470         * doc/hostconfig.texi: Update to match.
471
472         * cppfiles.c, gcc.c, gensupport.c, protoize.c,
473         config/i386/cygwin.h:
474         Use IS_ABSOLUTE_PATH throughout.
475         * gcc.c (DIR_UP): Delete, unused.
476         * protoize.c (IS_SAME_PATH): Define in terms of
477         FILENAME_CMP.
478         (is_abspath): Delete.
479
480 2003-07-02  Kazu Hirata  <kazu@cs.umass.edu>
481
482         * config/i386/emmintrin.h: Fix comment typos.
483         * config/i386/i386.c: Likewise.
484         * config/i386/i386.h: Likewise.
485         * config/i386/sco5.h: Likewise.
486         * config/ia64/ia64.c: Likewise.
487         * config/ia64/itanium2.md: Likewise.
488
489 2003-07-02  H.J. Lu  <hongjiu.lu@intel.com>
490
491         * dbxout.c (pending_bincls): Replace DBX_USE_BINCLS with
492         DBX_USE_BINCL.
493         (emit_bincl_stab): Same.
494         (emit_pending_bincls): Same.
495
496 2003-07-02  Kazu Hirata  <kazu@cs.umass.edu>
497
498         * config/h8300/h8300.c (compute_mov_length): Fix the length of
499         loading CONST0_RTX (SFmode).
500         * config/h8300/h8300.h (CONST_DOUBLE_OK_FOR_LETTER_P): Change
501         'G' to CONST0_RTX (SFmode).
502         * config/h8300/h8300.md (movsf_h8300): Change the first
503         constraint to 'G'.
504         (movsf_h8300h): Likewise.
505
506 2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
507
508         * c-common.h (c_common_init_options): New prototype.
509         * c-opts.c (deferred_size): Remove.
510         (defer_opt): Array is now pre-allocated.
511         (c_common_init_options): Pre-allocate deferred_opts.  Make
512         lang_flags unsigned.
513         (push_command_line_options): Free deferred_opts.
514         * hooks.c (hook_uint_uint_constcharptrptr_0): New.
515         * hooks.h (hook_uint_uint_constcharptrptr_0): New.
516         * langhooks-def.h (LANG_HOOKS_INIT_OPTIONS): Update.
517         * langhooks.h (struct lang_hooks): New prototype for init_options.
518         * main.c (main): Cast argv.
519         * opts.c (handle_option, handle_options): Update prototypes.
520         (decode_options): save_argc, save_argv are not global.  Constify.
521         * opts.h (decode_options): New prototype.
522         * toplev.c (general_init): New protoype.
523         (save_argv): Make static.
524         (save_argc): Remove.
525         (print_switch_values, general_init): Constify.
526         (toplev_main): Save argv.
527         * toplev.h (toplev_main): Update prototype.
528         (save_argc, save_argv): Remove.
529
530 2003-07-02  David Edelsohn  <edelsohn@gnu.org>
531
532         * dbxout.c (pending_bincls): Guard with DBX_USE_BINCLS.
533         (emit_bincl_stab): Same.
534         (emit_pending_bincls): Same.
535
536 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
537
538         PR c++/11072
539         * ginclude/stddef.h (offsetof): Remove cast to 'char &'. Explain why.
540
541 2003-07-02  Andreas Schwab  <schwab@suse.de>
542
543         * dbxout.c (pending_bincls): Only define if DBX_DEBUGGING_INFO.
544
545 2003-07-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
546
547         PR optimization/11210
548         * expr.c (handled_component_p) [NOP_EXPR]: Add ??? note
549         about the behaviour with regard to bitfields.
550         * fold-const (decode_field_reference): Record outermost type in
551         case the expression is a NOP. Strip all NOPs. Set the signedness
552         to that of the outermost type (if any) when the bitsize is equal
553         to the size of the type.
554
555 2003-07-02  Richard Sandiford  <rsandifo@redhat.com>
556
557         * config/mips/mips.md (addsi3): Remove workaround for adds of -32768.
558         (addsi3_internal, adddi3, adddi3_internal_2): Likewise.
559         (adddi3_internal_3, addsi3_internal_2): Likewise.
560
561 2003-07-02  Richard Sandiford  <rsandifo@redhat.com>
562
563         * config/mips/mips.c (machine_function): Add new fields:
564         ignore_hazard_length_p and all_noreorder_p.
565         (mips_flag_delayed_branch): New variable.
566         (override_options): Treat '/' as an operand punctuation character.
567         Set up mips_flag_delayed_branch.
568         (print_operand): Handle '/'.
569         (mips_output_function_prologue): Put the whole function in
570         .set noreorder and .set nomacro if all_noreorder_p is true.
571         (mips_output_function_epilogue): End the noreorder/nomacro sequence.
572         (mips16_optimize_gp): Remove "first insn" parameter.
573         (mips16_lay_out_constants): New function, split out from mips_reorg.
574         (mips_avoid_hazard, mips_avoid_hazards): New functions.
575         (mips_reorg): For mips16 code, call mips16_lay_out_constant
576         and (optionally) mips16_optimize.  If TARGET_EXPLICIT_RELOCS,
577         do delayed-branch scheduling followed by hazard detection.
578         (mips_adjust_insn_length): Only account for hazards if
579         !ignore_hazard_length_p.
580         (mips_output_load_label): Add a nop to the o32 sequence if
581         the target suffers from load delays.
582         (mips_output_conditional_branch): Add %/ to the end of branches.
583         (mips_output_division): Fill the branch delay slot with %#.
584         * config/mips/mips.md: Remove redundant '%*' from mips16 branch
585         instructions.  End all other %* branches with %/.
586         (ffssi2, ffsdi2): Fix lengths.
587         (truncdisi2, truncdihi2, truncdiqi2): Add store attributes.
588         (fix_truncdfsi2_macro): Turn off .set nomacro if appropriate.
589         (fix_truncsfsi2_macro): Likewise.
590         (mov_lwl): Set hazard to "none".
591         (ashldi3_internal): Fill the branch delay slot with %#.
592         (ashrdi3_internal, lshrdi3_internal): Likewise.
593         (exception_receiver): Explicitly set $28.
594         (hazard_nop): New pattern.
595
596 Wed Jul  2 08:12:36 CEST 2003  Jan Hubicka  <jh@suse.cz>
597
598         * cgraphunit.c (cgraph_finalize_unit): Set current_function_decl
599         before calling tree_inlinable_function_p.
600
601 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
602
603         * fixinc/inclhack.def (irix_stdio_va_list): Apply to IRIX 6.5
604         <internal/stdio_core.h> too.
605         (stdio_va_list): Apply to IRIX 6.5 <internal/stdio_core.h> and
606         <internal/wchar_core.h> too.
607         Substitute va_list uses in inline definition.
608         * fixinc/fixincl.x: Regenerate.
609
610 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
611
612         * config/mips/iris5.h (SET_FILE_NUMBER): Moved here from iris3.h.
613         Undef before redefinition.
614         (LABEL_AFTER_LOC): Likewise.
615         (DEFAULT_SIGNED_CHAR): Likewise.
616         (ASM_OUTPUT_ASCII): Moved here from iris4.h.
617         Fix IRIX spelling.
618
619         * config/mips/iris3.h: Remove, unused.
620         * config/mips/iris4.h: Likewise.
621
622         * config/mips/mips.h (STACK_ARGS_ADJUST): Remove, unused.
623
624         * config/mips/iris5.h (TARGET_DEFAULT): Move ...
625         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): ... here to
626         target_cpu_default.
627
628         * config/mips/iris5.h: Move explicit includes ...
629         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): ... here.
630
631         * config/mips/iris6.h (MIPS_ISA_DEFAULT, MIPS_ABI_DEFAULT): Move ...
632         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here to
633         tm_defines.
634
635         * config/mips/iris6.h (TARGET_DEFAULT): Move ...
636         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here to
637         target_cpu_default.
638
639         * config/mips/iris6.h: Fix IRIX spelling.
640         (MULTILIB_DEFAULTS): Undef before redefinition.
641
642         * config/mips/iris6.h: Move explicit includes ...
643         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here.
644
645 Wed Jul  2 02:16:48 CEST 2003  Jan Hubicka  <jh@suse.cz>
646
647         * cgraph.c (cgraph_mark_needed_node, cgraph_varpool_mark_needed_node,
648         cgraph_varpool_finalize_decl, cgraph_varpool_assemble_pending_decls):
649         Use next_needed field instead of aux to maintain the queue.
650         * cgraph.h (cgraph_node): Add next_needed.
651         (cgraph_varpool_node): Add next_needed; remove aux.
652         * cgraphunit.c (cgraph_finalize_compilation_unit): Use next_needed.
653
654 Wed Jul  2 02:12:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
655
656         * cgraphunit.c (cgraph_finalize_function): Set finalized.
657         (cgraph_finalize_function): Do not examine inlinablility.
658         (cgraph_finalize_compilation_unit): Do it here.
659         * cgraph.h (cgraph_local_info): Add finalized field.
660
661 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
662
663         * ggc-common.c (gt_pch_save): Cast MAP_FAILED to void *.
664         (gt_pch_restore): Likewise.
665
666 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
667
668         * config/alpha/alpha.c: Fix comment typos.
669         * config/alpha/elf.h: Likewise.
670         * config/arm/arm.c: Likewise.
671         * config/arm/arm.h: Likewise.
672         * config/arm/arm.md: Likewise.
673         * config/arm/t-arm-coff: Likewise.
674         * config/arm/t-strongarm-pe: Likewise.
675         * config/arm/xscale-elf.h: Likewise.
676         * config/avr/avr.h: Likewise.
677
678 2003-07-01  Jeff Law  <law@redhat.com>
679
680         * stmt.c (any_pending_cleanups): Remove another redundant test.
681
682 2003-07-01  David Edelsohn  <edelsohn@gnu.org>
683             J"orn Rennecke <joern.rennecke@superh.com>
684
685         * config/rs6000/rs6000.md (ctr{s,d}i_internal?): Add earlyclobber
686         for MEM case.
687
688 2003-07-01  Devang Patel  <dpatel@apple.com>
689
690         * dbxout.c (DBXOUT_DECR_NESTING): Emit pending bincls, if required.
691         (binclstatus): New.
692         (struct dbx_file): New members - bincl_status, pending_bincl_name and
693         prev.
694         (pending_bincls): New.
695         (dbxout_init): Initialize new dbx_file members.
696         (dbxout_start_source_file): Same.
697         (emit_bincl_stab): New function.
698         (emit_pending_bincls): Same.
699         (emit_pending_bincls_if_required): Same.
700         (dbxout_end_source_file): Emit EINCL stab only if BINCL is  already
701         processed.
702         (dbxout_begin_block): Emit pending BINCL stabs.
703         (dbxout_end_block): Same.
704         (dbxout_function_decl): Same.
705         (dbxout_continue): Same.
706         (dbxout_type): Same.
707         (dbxout_class_name_qualifiers): Same.
708         (dbxout_symbol): Same.
709         (dbxout_symbol_location): Same.
710         (dbxout_parms): Same.
711
712 2003-07-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
713
714         * c-semantics.c (genrtl_case_label): Fix format specifier bug.
715         * cfgrtl.c (rtl_verify_flow_info_1): Likewise.
716
717 2003-07-01  Andreas Jaeger  <aj@suse.de>
718
719         * fold-const.c: Convert prototypes to ISO C90.
720         * function.c: Likewise.
721         * function.h: Likewise.
722
723 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
724
725         * doc/contrib.texi: Fix typos.
726         * doc/invoke.texi: Likewise.
727         * doc/passes.texi: Likewise.
728         * doc/sourcebuild.texi: Likewise.
729         * doc/tm.texi: Likewise.
730
731 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
732
733         * basic-block.h: Fix comment typos.
734         * bb-reorder.c: Likewise.
735         * c-format.c: Likewise.
736         * cfgcleanup.c: Likewise.
737         * cfghooks.h: Likewise.
738         * cfgloop.c: Likewise.
739         * cfgloopmanip.c: Likewise.
740         * cfgrtl.c: Likewise.
741         * cgraph.h: Likewise.
742         * cgraphunit.c: Likewise.
743         * combine.c: Likewise.
744         * convert.c: Likewise.
745         * dbxout.c: Likewise.
746         * df.c: Likewise.
747         * df.h: Likewise.
748         * diagnostic.c: Likewise.
749         * dwarf2out.c: Likewise.
750         * et-forest.h: Likewise.
751         * flow.c: Likewise.
752         * fold-const.c: Likewise.
753         * function.h: Likewise.
754         * gcov-io.h: Likewise.
755         * gcov.c: Likewise.
756         * gcse.c: Likewise.
757         * genautomata.c: Likewise.
758         * ggc-common.c: Likewise.
759         * ggc-page.c: Likewise.
760         * loop-unroll.c: Likewise.
761         * loop-unswitch.c: Likewise.
762         * loop.c: Likewise.
763         * mips-tfile.c: Likewise.
764         * optabs.c: Likewise.
765         * ra-build.c: Likewise.
766         * ra-colorize.c: Likewise.
767         * ra-rewrite.c: Likewise.
768         * ra.h: Likewise.
769         * regmove.c: Likewise.
770         * reload.c: Likewise.
771         * rtlanal.c: Likewise.
772         * sched-ebb.c: Likewise.
773         * sched-int.h: Likewise.
774         * sched-vis.c: Likewise.
775         * sreal.c: Likewise.
776         * ssa-ccp.c: Likewise.
777         * ssa.c: Likewise.
778         * toplev.c: Likewise.
779         * tree-inline.c: Likewise.
780         * value-prof.c: Likewise.
781         * value-prof.h: Likewise.
782
783 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
784
785         * rtl.h (emit_line_note_after): Remove.
786         (emit_note_copy_after, emit_note_copy): New.
787         * emit-rtl.c (reorder_insns_with_line_notes): Replace
788         emit_line_note_after with emit_note_copy_after.
789         (emit_insn_after_with_line_notes): Likewise.
790         (emit_line_note_after): Kill.
791         (emit_note_copy_after): New.
792         (emit_note_copy): New.
793         * function.c (emit_return_into_block): Use emit_note_copy_after.
794         (thread_prologue_and_epilogue_insns): Likewise.
795         * integrate.c (expand_inline_function): Use emit_note_copy.
796         (copy_insn_list): Likewise.
797         * unroll.c (copy_loop_body): Likewise.
798         * cfglayout.c (duplicate_insn_chain): Likewise.
799
800 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
801
802         * c-tree.h (define_label): Replace filename and lineno arguments
803         with a location_t.
804         * c-decl.c (poplevel): Adjust define_label call.
805         (pop_label_level): Likewise.
806         (define_label): Replace filename and lineno arguments with a
807         location_t.
808         (store_parm_decls): Use DECL_SOURCE_LOCATION.
809         * c-parse.in (label): Adjust define_label call.
810
811 2003-07-01  Neil Booth  <neil@daikokuya.co.uk>
812
813         * config/sol2.h, config/alpha/alpha.h, config/alpha/linux.h,
814         config/i386/i386-interix.h, config/ia64/hpux.h, config/mips/iris6.h,
815         config/mips/linux.h, config/mips/mips.h, config/pa/pa-hpux.h,
816         config/pa/pa-hpux10.h, config/pa/pa-hpux11.h, config/pa/pa-pro-end.h,
817         config/pa/pa.h, config/pa/rtems.h: Use c_dialect_ macros.
818
819 2003-07-01  Andreas Jaeger  <aj@suse.de>
820
821         * final.c: Convert prototypes to ISO C90.
822         * flow.c: Likewise.
823         * flags.h: Likewise.
824         * gcov-io.c: Likewise.
825         * gcov-io.h: Likewise.
826
827 2003-06-30  Bruno Haible  <bruno@clisp.org>
828
829         PR middle-end/6578
830         * libgcc2.c (__subvsi3): Remove simplification that would not work
831         when subtracting -0x80000000.
832         (__subvdi3): Remove simplification that would return a wrong result.
833         (__mulvsi3): Fix overflow check.
834         (__absvdi2): Fix simplification that would return a wrong result.
835         (__mulvdi3): Fix overflow check.
836
837 2003-06-30  Jeff Law  <law@redhat.com>
838
839         * stmt.c (any_pending_cleanups): Lose argument THIS_CONTOUR, it
840         was always passed in the value '1'.  Simplify body appropriately.
841         * tree.h (any_pending_cleanups): Corresponding changes.
842         * calls.c: (expand_call): Corresponding changes.
843
844 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
845
846         * combine.c (distribute_notes): Don't bother REG_WAS_0.
847         * cse.c (cse_insn): Likewise.
848         * final.c (final_scan_insn): Likewise.
849         * jump.c (duplicate_loop_exit_test): Likewise.
850         * rtl.c (reg_note_name): Remove REG_WAS_0.
851         * rtl.h (REG_WAS_0): Remove.
852         * unroll.c (final_reg_note_copy): Don't bother REG_WAS_0.
853         * config/avr/avr.c (output_movqi): Don't use reg_was_0.
854         (output_movhi): Likewise.
855         (output_movsisf): Likewise.
856         (reg_was_0): Remove.
857         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't use
858         REG_WAS_0.
859         (m68hc11_gen_movqi): Likewise.
860         * config/vax/vax-protos.h: Remove the prototype for
861         reg_was_0_p.
862         * config/vax/vax.c (follows_p): Remove.
863         (reg_was_0_p): Likewise.
864         * config/vax/vax.md (movsi): Don't use reg_was_0_p.
865         (movhi): Likewise.
866         (movqi): Likewise.
867         * doc/rtl.texi (REG_WAS_0): Remove.
868
869 2003-06-30  Mark Mitchell  <mark@codesourcery.com>
870
871         * config/rs6000/spe.h (__ev_set_spefscr_frmc): Set the flag.
872
873 2003-06-30  Bob Wilson  <bob.wilson@acm.org>
874
875         * config/xtensa/lib1funcs.asm: Use "xtensa-config.h" from
876         top-level include directory.
877         * config/xtensa/lib2funcs.S: Likewise.
878         * config/xtensa/xtensa.h: Likewise.
879         * config/xtensa/xtensa-config.h: Remove.
880         * doc/install.texi: Update location of "xtensa-config.h" header.
881
882 2003-06-30  Ulrich Weigand  <uweigand@de.ibm.com>
883
884         * config/s390/s390.c (s390_extra_constraint): New function.
885         * config/s390/s390-protos.h (s390_extra_constraint): Declare it.
886         * config/s390/s390.h (EXTRA_CONSTRAINT): Use it.
887         * config/s390/s390.c (q_constraint): Remove.
888         * config/s390/s390-protos.h (q_constraint): Likewise.
889         * config/s390/s390.h (EXTRA_MEMORY_CONSTRAINT): Add 'R', 'S', 'T'.
890         (EXTRA_ADDRESS_CONSTRAINT): Define.
891
892         * config/s390/s390.c (larl_operand): Refuse out-of-range operands.
893         (DISP_IN_RANGE, s390_short_displacement): New.
894         (legitimate_reload_operand_p): Support long displacements.
895         (s390_decompose_address): Likewise.
896         (legitimize_pic_address): Likewise.
897         (legitimize_address): Likewise.
898         (s390_fixup_clobbered_return_reg): Likewise.
899         (s390_emit_prologue, s390_emit_epilogue): Likewise.
900         (s390_output_mi_thunk): Likewise.
901
902         * config/s390/s390.md (attr "op_type"): Add "RXY", "RSY", "SIY".
903         (attr "atype", attr "length"): Add defaults for new op_types.
904         (all insns): Change op_type attribute where appropriate.
905
906         ("*movdi_lay", "*movsi_lay", "*extendqidi2", "*extendqisi2"): New insns.
907         ("*tmqi_ext", "*tmdi_mem", "*tmsi_mem", "*tmhi_mem", *tmqi_mem",
908         "*tstsi", "*tstsi_cconly", "*tsthiCCT", "*tsthiCCT_cconly",
909         "*tsthi", "*tsthi_cconly", "*tstqiCCT", "*tstqiCCT_cconly",
910         "*tstqi", "*tstqi_cconly", "*cmpsi_ccs_sign", "*cmpsi_ccs",
911         "*cmpsi_ccu", "*cmphi_ccu", "*cmpqi_ccu", "*cli",
912         "movti", "*movdi_64", "*movdi_31", "*movsi", "movhi", "movqi_64",
913         "movqi", "*movstrictqi", "*movstricthi", "movstrictsi",
914         "*movdf_64", "*movdf_31", "*movsf",
915         "*load_multiple_si", "*store_multiple_di",
916         "*sethighqisi", "*sethighhisi", "*sethighqidi_31", "*extendhisi2",
917         "*la_64", "*la_31", "*la_31_and", "force_la_31",
918         "*addsi3_carry1_cc", *addsi3_carry1_cconly",
919         "*addsi3_carry2_cc", *addsi3_carry2_cconly",
920         "*addsi3_cc", "*addsi3_cconly", "*addsi3_cconly2",
921         "*addsi3_sign", "*addsi3_sub", "addsi3",
922         "*subsi3_borrow_cc", "*subsi3_borrow_cconly", "*subsi3_cc",
923         "*subsi3_cconly", "*subsi3_sign", "*subsi3_sub", "subsi3",
924         "mulsi3"
925         "*andsi3_cc", "*andsi3_cconly", "andsi3",
926         "*andqi3_ss", "*andqi3_ss_inv",
927         "*iorsi3_cc", "*iorsi3_cconly", "iorsi3",
928         "*iorqi3_ss", "*iorqi3_ss_inv",
929         "*xorsi3_cc", "*xorsi3_cconly", "xorsi3",
930         "*xorqi3_ss", "*xorqi3_ss_inv",
931         "*tls_load_31"): Add alternatives for long-displacement instructions.
932
933         ("*cmpdf_ccs", "*cmpdf_ccs_ibm", "*cmpsf_ccs", "*cmpsf_ccs_ibm",
934         "*load_multiple_di", "*store_multiple_di",
935         "*sethighqidi_64", "*zero_extendhisi2_31",
936         "truncdfsf2_ibm", "extendsfdf2_ieee", "extendsfdf2_ibm",
937         "adddf3", "*adddf3", "*adddf3_ibm",
938         "addsf3", "*addsf3", "*addsf3_ibm",
939         "subdf3", "*subdf3", "*subdf3_ibm",
940         "subsf3", "*subsf3", "*subsf3_ibm",
941         "mulsi_6432", "divmoddisi3",
942         "muldf3", "*muldf3", "*muldf3_ibm",
943         "mulsf3", "*mulsf3", "*mulsf3_ibm",
944         "divdf3", "*divdf3", "*divdf3_ibm",
945         "divsf3", "div*sf3", "*divsf3_ibm",
946         "sqrtdf2", "sqrtsf2",
947         "*cjump_long", "*icjump_long", "indirect_jump", "casesi_jump",
948         "*doloop_si_long", "*doloop_di_long", "bas_64", "bas_31",
949         "bas_r_64", "bas_r_31", "bas_tls_31", "bas_tls_64"): Adapt memory
950         and address constraints for instructions that do not accept long
951         displacements.
952
953 2003-06-30  Hartmut Penner  <hpenner@de.ibm.com>
954             Ulrich Weigand  <uweigand@de.ibm.com>
955
956         * config/s390/2084.md: New file.
957         * config/s390/s390.md: Include it.
958         * config/s390/s390.c (s390_adjust_priority): New function.
959         (TARGET_SCHED_ADJUST_PRIORITY): Define.
960         (s390_first_cycle_multipass_dfa_lookahead): New function.
961         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Define.
962         (s390_sched_reorder2): New function.
963         (TARGET_SCHED_REORDER2): Define.
964         (s390_adjust_cost): Support PROCESSOR_2084_Z990 cpu type.
965         (s390_issue_rate): Likewise.
966
967 Mon Jun 30 23:47:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
968
969         * Makefile.in (GTFILES): Add cgraph.h.
970         * cgraph.c (known_decls): Remove.
971         (cgraph_hash, cgraph_nodes, cgraph_nodes_queue,
972         cgraph_varpool_hash, cgraph_varpool_nodes_queue): GTYize.
973         (cgraph_node): Do not allocate known_decls; use polutate hashtable.
974         (cgraph_varpool_node): Likewise; add next pointer.
975         (cgraph_varpool_nodes): New static variable.
976         * cgraph.h (cgraph_local_info, cgraph_global_info, cgraph_rtl_info,
977         cgraph_node, cgraph_edge, cgraph_varpool_node, cgraph_nodes, cgraph_n_nodes,
978         cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): GTYize.
979         * gengtype.c (open_base_files): Include cgraph.h
980
981 2003-06-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
982
983         * Changelog: Remove ">>>>>>>" from previous change.
984
985 2003-06-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
986
987         * config/cris/cris.c: Fix spelling for "testcase".
988         * config/cris/cris.h: Likewise.
989         * config/cris/cris.md: Likewise.
990         * config/mmix/crti.asm: Likewise.
991         * config/mmix/mmix.h: Likewise.
992         * config/mmix/mmix.md: Likewise.
993
994 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
995
996         * config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Make it always
997         1.
998
999 2003-06-30  Ulrich Weigand  <uweigand@de.ibm.com>
1000
1001         * config.gcc [s390*-*-*]: Support --with-arch, --with-tune, and
1002         --with-mode configure options.
1003         * config/s390/s390.h (OPTION_DEFAULT_SPECS): Define.
1004         (DRIVER_SELF_SPECS): Define.
1005         * config/s390/linux.h (ASM_SPEC): Pass architecture mode and cpu
1006         architecture to assembler.
1007         (LINK_SPEC): Merge 31-bit and 64-bit variants.
1008         (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC, EXTRA_SPECS): Remove.
1009         * config/s390/s390.c (override_options): New default rules for
1010         architecture mode and cpu architecture selection.
1011         * doc/invoke.texi (-mesa, -mzarch, -march, -mtune): Document
1012         new default rules.
1013
1014         * config/s390/s390.h (enum processor_type): Add PROCESSOR_2084_Z990.
1015         * config/s390/s390.md (attr "cpu"): Add "z990" processor type.
1016         * config/s390/s390.c (override_options): Add "z990" to
1017         processor_alias_table.
1018         * doc/invoke.texi (-march): Document "z990" processor type.
1019
1020         * config/s390/s390.c (s390_tune_flags, s390_arch_flags): New variables.
1021         * config/s390/s390.h (s390_tune_flags, s390_arch_flags): Declare.
1022         (enum processor_flags, TARGET_CPU_IEEE_FLOAT, TARGET_CPU_ZARCH,
1023         TARGET_CPU_LONG_DISPLACEMENT, TARGET_LONG_DISPLACEMENT): New.
1024         * config/s390/s390.c (override_options): Replace enum pta_flags by
1025         enum processor_flags.  Fill in s390_tune_flags and s390_arch_flags.
1026
1027         * config/s390/s390.c (s390_cpu): Rename to ...
1028         (s390_tune): ... this.
1029         * config/s390/s390.h (s390_cpu, s390_tune): Likewise.
1030         * config/s390/s390.c (s390_issue_rate, override_options): Likewise.
1031         * config/s390/s390.md (attr "cpu"): Likewise.
1032
1033 2003-06-30  Neil Booth  <neil@daikokuya.co.uk>
1034
1035         * c-common.c (enum c_language_kind, flag_objc): Remove.
1036         (fix_string_type, check_case_value, c_common_nodes_and_builtins,
1037         c_add_case_label, finish_label_addr_expr, boolean_increment):
1038         Use c_dialect_ macros.
1039         * c-common.h (enum c_language_kind): Extend.
1040         (c_dialect_cxx, c_dialect_objc): New.
1041         (flag_objc): Remove.
1042         (c_common_init_options): Update prototype.
1043         * c-cppbuiltin.c (define__GNUC__, c_cpp_builtins): Use c_dialect_
1044         macros.
1045         * c-decl.c (finsih_decl, grokfield, finish_struct): Use c_dialect_
1046         macros.
1047         * c-format.c (C_STD_VER, C_STD_NAME): Similarly.
1048         * c-lang.c (c_init_options): Remove.
1049         (c_language): Define.
1050         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
1051         * c-lex.c (lex_charconst): Use c_dialect_ macros.
1052         * c-opts.c (lang_flags): Make function-local.
1053         (c_common_init_options): Use c_dialect_ macros.  Handle
1054         C++ diagnostic requirements.
1055         (c_common_handle_option, c_common_post_options): Use flag_cxx.
1056         * c-parse.in (init_reswords): Use c_dialect_objc ().
1057         * c-pch.c (get_ident): Use c_language.
1058         * c-pretty-print.c (pp_c_bool_literal): Use c_dialect_ macros.
1059         * c-typeck.c (comptypes, build_c_cast): Similarly.
1060         * objc/objc-lang.c (c_language): Define.
1061         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
1062         (objc_init_options): Remove.
1063
1064 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
1065
1066         * config/alpha/alpha.h (FUNCTION_ARG_PADDING): Remove.
1067         * config/alpha/unicosmk.h: Don't #undef FUNCTION_ARG_PADDING.
1068
1069 2003-06-30  Wolfgang Bangerth  <bangerth@dealii.org>
1070
1071         * doc/sourcebuild.texi: Don't reference gnats.html any more.
1072
1073 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
1074
1075         * config/h8300/h8300.c (compute_mov_length): Fix length of
1076         mov:SF on H8/300.
1077
1078 2003-06-30  Nick Clifton  <nickc@redhat.com>
1079
1080         * config/arm/arm.h (BIGGEST_FIELD_ALIGNMENT): Make defintion
1081         constant.
1082
1083 Mon Jun 30 15:36:29 CEST 2003  Jan Hubicka  <jh@suse.cz>
1084
1085         (fyl2x_sfxf3, fyl2x_dfxf3, fscale_sfxf3, fscale_dfxf3): Fix condition.
1086
1087 2003-06-30 Hartmut Penner  <hpenner@de.ibm.com>
1088
1089         * config/rs6000/rs6000.c (rs6000_split_altivec_in_gprs): New function.
1090         (altivec_in_gprs_p): New function.
1091
1092         * config/rs6000/rs6000-protos (rs6000_split_altivec_in_gprs): New
1093         prototype.
1094         (altivec_in_gprs_p): New prototype.
1095
1096         * config/rs6000/altivec.md (*movv4si_internal): Change
1097         multi-assembler alternative to '#'. Add postreload splitter to
1098         handle this cases.
1099         (*movv4hi_internal): Likewise.
1100         (*movv4qi_internal): Likewise.
1101         (*movv4sf_internal): Likewise.
1102
1103 2003-06-30  Jason Merrill  <jason@redhat.com>
1104
1105         * defaults.h (PUSH_ARGS_REVERSED): Define default here.
1106         * calls.c: Not here.
1107
1108 2003-06-30  Ben Elliston  <bje@wasabisystems.com>
1109
1110         * config/arm/arm.c (arm_rtx_costs): Remove #if 0 block.
1111         (bad_signed_byte_operand): Likewise.
1112         (arm_output_epilogue): Likewise.
1113         (arm_final_prescan_insn): Likewise.
1114
1115 2003-06-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1116
1117         * cfgrtl.c (mark_killed_regs): Cast HARD_REGNO_NREGS to int.
1118
1119 2003-06-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1120
1121         * c-pch.c (c_common_write_pch): Flush asm_out_file to allow for
1122         subsequent writes.
1123
1124 Mon Jun 30 10:03:02 CEST 2003  Jan Hubicka  <jh@suse.cz>
1125
1126         * cfgrtl.c (verify_flow_info): Accept degenerated condjumps
1127         in cfglayout mode.
1128
1129 Mon Jun 30 09:52:39 CEST 2003  Jan Hubicka  <jh@suse.cz>
1130
1131         * i386.c (standard_80387_constant_p): Accept TFmode constants too.
1132         (init_ext_80387_constants): Likewise.
1133         (standard_80387_constant_rtx): Likewise.
1134         * i386.md (atanxf): Disable for TARGET_128BIT_LONG_LONG
1135         (atantf): Disable for !TARGET_128BIT_LONG_LONG
1136         (fyl2x_sfxf3, fyl2x_dfxf3): Accept TFmode operands.
1137         (fyl2x_xfxf3, fyl2x_tfxf3): Enable/disable as needed.
1138         (fscale_sfxf3, fscale_dfxf3): Accept TFmode operands.
1139         (fscale_xfxf3, fscale_tfxf3): Enable/disable as needed.
1140         (frndinttf2): New.
1141         (f2xm1tf2): New.
1142         (exp?f2): Use expsf2_tf when needed.
1143         (exp?f2_tf): New.
1144         (exptf): New.
1145
1146 2003-06-29 Uwe Stieber <uwe@kaos-group.de>
1147
1148         * config.gcc (sh*-*-kaos*): Put tm_file setting in separate case
1149         statement from tmake_file set.
1150
1151 2003-06-29  James E Wilson  <wilson@tuliptree.org>
1152
1153         * reload.c (find_reloads): Change push_reloads to push_reload in
1154         comment.
1155         * reload1.c (eliminate_regs): Likewise.
1156         (dump_needs): Delete prototype for deleted function.
1157
1158 2003-06-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1159
1160         * builtin-attrs.def (gcc_diag, gcc_cdiag, gcc_cxxdiag): New
1161         format attributes.
1162         * c-format.c (enum format_type): Add gcc_diag_format_type,
1163         gcc_cdiag_format_type, and gcc_cxxdiag_format_type.
1164         (gcc_diag_length_specs, gcc_cdiag_length_specs,
1165         gcc_cxxdiag_length_specs, gcc_diag_flag_pairs,
1166         gcc_cdiag_flag_pairs, gcc_cxxdiag_flag_pairs, gcc_diag_flag_specs,
1167         gcc_cdiag_flag_specs, gcc_cxxdiag_flag_specs, gcc_diag_char_table,
1168         gcc_cdiag_char_table, gcc_cxxdiag_char_table): New.
1169         (format_types_orig): Add new data.
1170         (find_char_info_specifier_index, init_dynamic_diag_info): New
1171         functions.
1172         (handle_format_attribute): Update to handle new format attributes.
1173
1174 2003-06-29  Aaron W. LaFramboise  <awlaframboise@aol.com>
1175
1176         * config/i386/gthr-win32.h (__GTHREAD_HIDE_WIN32API): Define to 1.
1177
1178 2003-06-29  Dara Hazeghi  <dhazeghi@yahoo.com>
1179
1180         * doc/install.texi: Remove install documentation for obsoleted targets
1181         i?86-*-sco, i?86-*-sco3.2v4, powerpcle-*-pe, powerpcle-*-winnt,
1182         arm-*-aof.
1183         Update information about IA64 toolchain, AIX make requirements,
1184         and binutils for m68k-*-hpux and *-*-linuxaout targets.
1185
1186 Mon Jun 30 00:50:43 CEST 2003  Jan Hubicka  <jh@suse.cz>
1187
1188         * regmove.c (regmove_optimize): Don't try to make src and dst match
1189         when they are in different modes.
1190
1191 Sun Jun 29 23:06:32 CEST 2003  Jan Hubicka  <jh@suse.cz>
1192
1193         * builtins.c (expand_builtin_mathfn, expand_builtin_mathfn_2): Avoid
1194         busy work when builtin is not supported by the backend.
1195
1196 2003-06-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1197
1198         * loop.c (count_one_set): Fix detection of registers set in more
1199         than one basic block.
1200
1201 2003-06-29  Andreas Jaeger  <aj@suse.de>
1202
1203         * target-def.h: Remove usage of OBJECT_FORMAT_ROSE.
1204         * system.h: Poison OBJ_FORMAT_ROSE.
1205         * doc/tm.texi (Macros for Initialization): Remove documentatin of
1206         OBJECT_FORMAT_ROSE.
1207         * config/rs6000/lynx.h: Remove undef of OBJECT_FORMAT_ROSE.
1208         * collect2.c: Remove usage of OBJECT_FORMAT_ROSE.
1209
1210 2003-06-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1211
1212         * pa.c (update_total_code_bytes): New function.
1213         (last_address): Number of bytes output for a function and its
1214         associated thunks.
1215         (compute_frame_size): Use BITS_PER_UNIT.
1216         (pa_output_function_epilogue): Compute last_address.  Use
1217         update_total_code_bytes.
1218         (output_lbranch): Handle long branch on portable runtime.
1219         (attr_length_millicode_call, attr_length_call,
1220         attr_length_indirect_call): Only use total_code_bytes for calls in
1221         the text section.
1222         (output_call): Only use an indirect call sequence when the target is
1223         not local.
1224         (pa_asm_output_mi_thunk): Handle updating of total_code_bytes.  Improve
1225         test to determine when an IA-relative branch can be used.  Add various
1226         long branch sequences.  Avoid using an indirect branch on all ports
1227         except SOM.
1228
1229 2003-06-29  Ulrich Weigand  <uweigand@de.ibm.com>
1230
1231         * expr.c (clear_by_pieces): Fix prototype.
1232
1233 2003-06-29  Andreas Jaeger  <aj@suse.de>
1234
1235         * cse.c: Convert prototypes to ISO C90.
1236         * cselib.c: Likewise.
1237         * cselib.h: Likewise.
1238         * dbxout.c: Likewise.
1239         * debug.c: Likewise.
1240         * df.c: Likewise.
1241         * df.h: Likewise.
1242         * dojump.c: Likewise.
1243         * doloop.c: Likewise.
1244         * dominance.c: Likewise.
1245         * dwarf2asm.c: Likewise.
1246         * dwarf2out.c: Likewise.
1247         * dwarf2out.h: Likewise.
1248         * dwarfout.c: Likewise.
1249         * except.c: Likewise.
1250         * except.h: Likewise.
1251         * emit-rtl.c: Likewise.
1252         * et-forest.c: Likewise.
1253         * et-forest.h: Likewise.
1254         * except.c: Likewise.
1255         * explow.c: Likewise.
1256         * expmed.c: Likewise.
1257         * expr.c: Likewise.
1258         * expr.h: Likewise.
1259
1260 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
1261
1262         * alloc-pool.c: Fix comment formatting.
1263         * bitmap.c: Likewise.
1264         * bitmap.h: Likewise.
1265         * bt-load.c: Likewise.
1266         * builtins.c: Likewise.
1267         * caller-save.c: Likewise.
1268         * cfganal.c: Likewise.
1269         * cfgrtl.c: Likewise.
1270         * collect2.c: Likewise.
1271         * cse.c: Likewise.
1272         * df.c: Likewise.
1273         * diagnostic.c: Likewise.
1274         * dwarf2out.c: Likewise.
1275         * dwarfout.c: Likewise.
1276         * expmed.c: Likewise.
1277         * final.c: Likewise.
1278         * flags.h: Likewise.
1279         * fold-const.c: Likewise.
1280         * gcc.c: Likewise.
1281         * gcov-io.h: Likewise.
1282         * gcov.c: Likewise.
1283         * genattrtab.c: Likewise.
1284         * genautomata.c: Likewise.
1285         * libgcov.c: Likewise.
1286         * mips-tfile.c: Likewise.
1287         * optabs.c: Likewise.
1288         * prefix.c: Likewise.
1289         * rtlanal.c: Likewise.
1290         * stmt.c: Likewise.
1291         * stor-layout.c: Likewise.
1292         * toplev.c: Likewise.
1293         * varasm.c: Likewise.
1294         * vmsdbgout.c: Likewise.
1295
1296 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
1297
1298         * expr.c (emit_single_push_insn): If padding is needed
1299         downward, adjust the stack pointer first, and then store the
1300         data into the stack location using an offset.
1301
1302 2003-06-29  Andreas Jaeger  <aj@suse.de>
1303
1304         * collect2.h: Convert prototypes to ISO C90.
1305         * collect2.c: Likewise.
1306         * conflict.c: Likewise.
1307         * coverage.c: Likewise.
1308         * convert.h: Likewise.
1309         * convert.c: Likewise.
1310
1311 2003-06-29  Nathan Sidwell  <nathan@codesourcery.com>
1312
1313         * c-decl.c (c_init_decl_processing): Use a location_t. Set input
1314         filename to <internal>.
1315         * tree.c (make_node): Just copy the current location.
1316
1317 2003-06-29  Eric Botcazou  <ebotcazou@libertysurf.fr>
1318
1319         PR optimization/11210
1320         * fold-const (decode_field_reference): Revert 2003-06-26 patch.
1321
1322 2003-06-29  Neil Booth  <neil@daikokuya.co.uk>
1323
1324         * toplev.c (flag_dummy): Remove.
1325         (f_options): Restore flag pointers.
1326
1327 2003-06-29  David Edelsohn  <edelsohn@gnu.org>
1328
1329         * config/rs6000/rs6000.c (processor_target_table): Add 970.
1330         * config.gcc: Add 970.
1331
1332 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
1333
1334         * dwarf2out.c (add_AT_string): Replace ggc_alloc_string (X,
1335         -1) with ggc_strdup.
1336         * stmt.c (expand_asm_operands): Likewise.
1337         * config/rs6000/rs6000.md (builtin_setjmp_receiver): Likewise.
1338
1339 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1340
1341         * config/ip2k/ip2k.c (ip2k_reorg): Use INSN_P instead of its
1342         definition.
1343
1344 2003-06-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
1345
1346         * opts.c: Include insn-attr.h.
1347         * Makefile.in (opts.o): Depend on INSN_ATTR_H.
1348
1349 2003-06-27  J"orn Rennecke <joern.rennecke@superh.com>
1350
1351         * flow.c (propagate_one_insn): Use proper test for a register
1352         being part of the return value.
1353
1354 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1355
1356         * config/avr/avr.c: Fix a comment typo.
1357
1358 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1359
1360         * config/avr/avr-protos.h: Replace avr_simplify_comparision_p
1361         with avr_simplify_comparison_p.
1362         * config/avr/avr.c: Likewise.
1363
1364 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1365
1366         * builtins.c: Follow spelling conventions.
1367         * cgraph.c: Likewise.
1368         * cpplex.c: Likewise.
1369         * config/arm/arm.c: Likewise.
1370         * config/arm/iwmmxt.md: Likewise.
1371         * config/c4x/c4x-modes.def: Likewise.
1372         * config/c4x/c4x.c: Likewise.
1373         * config/c4x/c4x.h: Likewise.
1374         * config/c4x/c4x.md: Likewise.
1375         * config/i386/i386-interix.h: Likewise.
1376         * config/mips/mips.h: Likewise.
1377
1378 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
1379
1380         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Predicate
1381         __mc68020__ on TARGET_68020.
1382
1383 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1384
1385         * config/h8300/h8300.c: Fix a comment typo.
1386
1387 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
1388
1389         * c-parse.in (yylexstring): Use a location_t.
1390
1391         * diagnostic.h (diagnostic_set_info): Replace file and lineno
1392         parameters with a location_t.
1393         * diagnostic.c (diagnostic_set_info): Replace file and lineno
1394         parameters with a location_t.
1395         (inform, warning, pedwarn, error, sorry, fatal_error,
1396         internal_error, warning_with_decl, pedwarn_with_decl,
1397         error_with_decl): Adjust.
1398         * c-error.c (pedwarn_c99): Adjust.
1399         * c-format.c (status_warning): Adjust.
1400         * rtl-error.c (file_and_line_for_asm): Rename to ...
1401         (location_for_asm): Return a location_t.
1402         (diagnostic_for_asm): Adjust.
1403
1404 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
1405
1406         * cpptrad.c (skip_macro_block_comment): New.
1407         (copy_comment): Use it if appropriate.
1408
1409 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1410
1411         * gcse.c (compute_ld_motion_mems): Use INSN_P instead of its
1412         definition.
1413         (store_killed_in_insn): Likewise.
1414         * print-rtl.c (print_rtx): Likewise.
1415         * config/frv/frv.c (frv_final_prescan_insn): Likewise.
1416         * config/m68hc11/m68hc11.c (dead_register_here): Likewise.
1417         (m68hc11_reassign_regs): Likewise.
1418         (m68hc11_reorg): Likewise.
1419
1420 2003-06-28  Gabriel Dos Reis <gdr@integrable-solutions.net>
1421
1422         * diagnostic.c (output_integer_with_precision): New macro.
1423         (output_format): Use it.  Handle more format specifiers.
1424         (output_long_decimal): Remove.
1425         (output_unsigned_decimal): Likewise.
1426         (output_long_unsigned_decimal): Likewise.
1427         (output_octal): Likewise.
1428         (output_long_octal): Likewise.
1429         (output_hexadecimal): Likewise.
1430         (output_long_hexadecimal): Likewise.
1431         (output_long_long_decimal): Likewise.
1432
1433 2003-06-28  Andreas Schwab  <schwab@suse.de>
1434
1435         * config/ia64/ia64.md: Follow recent emit_note API change.
1436
1437 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
1438
1439         * c-parse.in (%union): Replace filename & lineno with location.
1440         (save_filename, save_lineno): Remove.
1441         (save_location): New.
1442         (fndef, old_style_parm_decls_1, lineno_datadecl, lineno_decl,
1443         nested_function, notype_nested_function, if_prefix, lineno_stmt,
1444         lineno_label, label): Adjust.
1445
1446 2003-06-28  Jakub Jelinek  <jakub@redhat.com>
1447
1448         * builtins.c (c_strlen): Add only_value argument.
1449         Handle COND_EXPR and COMPOUND_EXPR.
1450         (expand_builtin_strlen): Optimize also strlen (i++ ? "foo" : "bar").
1451         Adjust c_strlen callers.
1452         (expand_builtin_strcpy, expand_builtin_strncpy,
1453         expand_builtin_strcmp, expand_builtin_strncmp,
1454         expand_builtin_fputs, expand_builtin_sprintf,
1455         fold_builtin): Adjust c_strlen callers.
1456
1457 2003-06-28  Josef Zlomek  <zlomekj@suse.cz>
1458
1459         * bb-reorder.c (find_traces_1_round): Do not send basic block
1460         to next round when we are in the last round.
1461
1462 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
1463
1464         * Makefile.in: Update.
1465         * opts.c: Include tm_p.h.
1466         (handle_options): Make static.
1467         (decode_options): Copied from toplev.c.
1468         * opts.h (decode_options): New.
1469         * toplev.c (parse_options_and_default_flags): Move most to opts.c,
1470         some to...
1471         (general_init): ...here.
1472         (toplev_main): Use decode_options instead.
1473         * toplev.h (save_argc, save_argv): New.
1474
1475 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
1476
1477         * explow.c (find_next_ref): Remove.
1478         * rtl.h: Remove the prototype for find_next_ref.
1479
1480 2003-06-27  Roger Sayle  <roger@eyesopen.com>
1481
1482         * config/alpha/alpha.md (anonymous define_split): Adjust emit_note
1483         call to match recent API change.
1484
1485 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
1486
1487         * dbxout.c (flag_debug_only_used_symbols): Delete redundant
1488         declaration.
1489
1490         * c-format.c (check_format_string, get_constant)
1491         * cfgrtl.c (rtl_split_edge):
1492         Mark the definition static, matching the forward declaration.
1493
1494 2003-06-27  Gunther Nikl <gni@gecko.de>
1495
1496         * unwind-c.c (PERSONALITY_FUNCTION): Delete duplicate define.
1497
1498         PR target/11014
1499         * config/m68k/m68k.c (m68k_output_mi_thunk): Use correct assembly
1500         syntax for MIT / MOTOROLA.
1501
1502         PR other/10240
1503         * configure.in: Removed $(XCFLAGS) from BUILD_CFLAGS for build != host.
1504         * configure: Rebuilt.
1505
1506 2003-06-27  Chris Demetriou  <cgd@broadcom.com>
1507
1508         * config/mips/mips.c (mips_build_va_list): Make padding in
1509         va_list structure explicit to avoid -Wpadded warnings.
1510
1511 2003-06-27  Ulrich Weigand  <uweigand@de.ibm.com>
1512
1513         * config/s390/s390.h (SECONDARY_OUTPUT_RELOAD_CLASS): Define.
1514         * config/s390/s390.c (s390_secondary_output_reload_class): New function.
1515         * config/s390/s390-protos.h (s390_secondary_output_reload_class):
1516         Declare it.
1517         * config/s390/s390.md ("reload_outti", "reload_outdi",
1518         "reload_outdf"): New expanders.
1519
1520         * config/s390/s390.md ("movti" + splitters): Handle non-offsettable
1521         memory operands as source.
1522         ("movdi" + splitters): Likewise.
1523         ("movdf" + splitters): Likewise.
1524         * config/s390/s390.c (s390_split_ok_p): New function.
1525         * config/s390/s390-protos.h (s390_split_ok_p): Declare it.
1526
1527 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1528
1529         * combine.c (force_to_mode): Replace the equality comparison
1530         of INTVALs with a pointer equality comparison.
1531         (simplify_comparison): Likewise.
1532
1533 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1534
1535         * jump.c (rtx_renumbered_equal_p): Replace an expression that
1536         is known to be 0 with 0.
1537
1538 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1539
1540         * gcse.c (expr_equiv_p): Replace expressions that are known to
1541         be 0 with 0.
1542
1543 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1544
1545         * cse.c (fold_rtx): Replace the equality comparison of INTVALs
1546         with a pointer equality comparison.
1547
1548 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1549
1550         * rtlanal.c (reg_mentioned_p): Return 0 earlier if REG and IN
1551         are known to be not equivalent.
1552
1553 2003-06-27  Richard Henderson  <rth@redhat.com>
1554
1555         * config/alpha/alpha.c (function_arg): Don't pass small aggregates
1556         in floating point registers.  Validate that we don't receive complex
1557         values here.  Use #elif.
1558         (return_in_memory, function_value): New.
1559         (alpha_va_arg): Handle complex values as two arguments.
1560         * config/alpha/alpha.h (RETURN_IN_MEMORY): Use return_in_memory.
1561         (FUNCTION_VALUE, LIBCALL_VALUE): Use function_value.
1562         (SPLIT_COMPLEX_ARGS): New.
1563         * config/alpha/alpha-protos.h: Update.
1564
1565 2003-06-27  Ulrich Weigand  <uweigand@de.ibm.com>
1566
1567         * ggc-page.c (inverse_table): Change type of mult to size_t.
1568         (compute_inverse): Compute inverse using size_t, not unsigned int.
1569         Compute inverse also for sizes larger than half a machine page.
1570
1571 Fri Jun 27 18:36:12 CEST 2003  Jan Hubicka  <jh@suse.cz>
1572
1573         * toplev.c (rest_of_decl_compilation):  Only varpoolize argument
1574         when called before cgraph_optimize.
1575
1576 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
1577
1578         * config/darwin.h, config/elfos.h, config/i960/i960-coff.h
1579         * config/m68k/coff.h: ASM_FILE_START_FILE_DIRECTIVE should
1580         be TARGET_ASM_FILE_START_FILE_DIRECTIVE.
1581
1582 Fri Jun 27 17:41:16 CEST 2003  Jan Hubicka  <jh@suse.cz>
1583
1584         * cgraph.c (cgraph_node, cgraph_varpool_node): Avoid re-initializing
1585         of known_decls.
1586
1587 2003-06-27  Hans-Peter Nilsson  <hp@axis.com>
1588
1589         * defaults.h (REGISTER_MOVE_COST): Define default here.
1590         * regclass.c: Don't define default REGISTER_MOVE_COST here.
1591         * reload.c, reload1.c: Ditto.
1592
1593 2003-06-27  Richard Earnshaw <rearnsha@arm.com>
1594
1595         * flags.h: Really install previous change.
1596
1597 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
1598
1599         * rtl.h (emit_note): Remove FILE parameter.
1600         * emit-rtl.c (emit_line_note): Adjust emit_note call.
1601         (emit_note): Remove FILE parameter. Adjust.
1602         * builtins.c (expand_builtin_expect): Adjust emit_note call.
1603         * c-semantics.c (genrtl_scope_stmt): Likewise.
1604         (expand_stmt): Likewise.
1605         * cfglayout.c (reemit_insn_block_notes): Likewise.
1606         (duplicate_insn_chain): Likewise.
1607         * except.c (expand_eh_region_start, expand_eh_region_end,
1608         sjlj_emit_function_enter): Likewise.
1609         * explow.c (probe_stack_range): Likewise.
1610         * expr.c (emit_block_move_via_loop): Likewise.
1611         * function.c (init_function_start, expand_function_start,
1612         expand_function_end, thread_prologue_and_epilogue_insns): Likewise.
1613         * integrate.c (expand_inline_function, copy_insn_list): Likewise.
1614         * reg-stack.c (compensate_edge): Likewise.
1615         * reload1.c (reload): Likewise.
1616         * rtlanal.c (hoist_insn_to_edge): Likewise.
1617         * stmt.c (expand_fixup, expand_start_loop, expand_start_null_loop,
1618         expand_loop_continue_here, expand_end_loop, expand_continue_loop,
1619         expand_exit_loop_top_cond, expand_value_return,
1620         expand_start_bindings_and_block, expand_end_bindings,
1621         expand_decl_cleanup, expand_start_case): Likewise.
1622         * unroll.c (copy_loop_body
1623         * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Likewise.
1624         * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
1625         * config/rs6000/rs6000.c (rs6000_emit_eh_toc_restore,
1626         rs6000_emit_allocate_stack, rs6000_output_function_prologue,
1627         rs6000_output_function_epilogue, rs6000_output_mi_thunk): Likewise.
1628         * config/sh/sh.c (sh_output_mi_thunk): Likewise.
1629         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
1630
1631 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
1632
1633         * c-tree.h (grokfield): Remove unused filename and line parameters.
1634         * c-decl.c (grokfield): Remove unused filename and line parameters.
1635         * c-parse.in (component_decl): Adjust field grokking rules, adjust
1636         grokfield calls.
1637         (component_declarator): Likewise.
1638         (component_notype_declarator): Likewise.
1639         * objc/objc-act.c (build_module_descriptor): Adjust grokfield
1640         calls.
1641         (build_protocol_template, build_method_prototype_list_template,
1642         build_method_prototype_template, build_category_template,
1643         build_selector_template, build_class_template,
1644         build_super_template, build_ivar_template,
1645         build_ivar_list_template, build_method_list_template,
1646         build_method_template, add_instance_variable): Likewise.
1647
1648 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
1649
1650         * stmt.c (do_jump_if_equal): Return 0 earlier if OP1 and
1651         OP2 are known to be not equivalent.
1652
1653 2003-06-26  Devang Patel <dpatel@apple.com>
1654
1655         * final.c (debug_flush_symbol_queue): New function.
1656         (debug_queue_symbol): New function.
1657         (debug_free_queue): New function.
1658         (debug_nesting): New variable.
1659         (symbol_queue): New variable.
1660         (symbol_queue_index): Same.
1661         (symbol_queue_size): Same.
1662         * debug.h (debug_flush_symbol_queue): New.
1663         (debug_queue_symbol): New.
1664         (debug_free_queue): New.
1665         (debug_nesting): New.
1666         (symbol_queue_index): New.
1667         * dbxout.c (DBXOUT_DECR_NESTING): New macro.
1668         (DBXOUT_DECR_NESTING_AND_RETURN): New macro.
1669         (dbxout_init): Delay symbol output.
1670         (dbxout_global_decl): Save, set and reset TREE_USED bit around
1671         dbxout_symbol() call.
1672         (dbxout_begin_function): Same.
1673         (dbxout_finish): Free symbol queue.
1674         (dbxout_type): Put appropriate symbols in queue.
1675         (dbxout_symbol): Put info for symbol's type in queue.
1676         Decrement/Increment nesting counts flush symbol queue appropriately.
1677         (dbxout_parms): Increment dbxout nesting.
1678         (dbxout_reg_parms): Same.
1679         * flags.h (flag_debug_only_used_symbols): New.
1680         * toplev.c (flag_debug_only_used_symbols): New variable.
1681         (lang_independent_options): Add entries for new option
1682         -feliminate-unused-debug-symbols.
1683         * common.opt: Add entry for -feliminate-unused-debug-symbols.
1684         * opts.c (common_handle_options): Same.
1685         * config/rs6000/darwin.h (CC1_SPEC): Interpret -gused as
1686         -feliminate-unused-debug-symbols.
1687         * doc/invoke.texi (Debugging Options): Document
1688         -feliminate-unused-debug-symbols.
1689
1690 2003-06-26  Roger Sayle  <roger@eyesopen.com>
1691             Jakub Jelinek  <jakub@redhat.com>
1692
1693         * builtins.c (expand_builtin_sprintf): Use c_getstr and strlen to
1694         obtain the format string instead of using TREE_STRING_POINTER and
1695         TREE_STRING_LENGTH.  Only optimize sprintf(dst,"%s",src) when the
1696         return value is unused or the length of src is a known constant.
1697
1698 2003-06-26  Richard Henderson  <rth@redhat.com>
1699
1700         * config/ia64/ia64.h (REGISTER_NAMES): R0 is really AP.
1701
1702 2003-06-26  Richard Henderson  <rth@redhat.com>
1703
1704         * config/ia64/ia64.c (ia64_expand_call): Don't add ar.pfs for sibcalls.
1705         (ia64_split_call): Only load descriptor for GP register inputs.
1706         (ia64_expand_epilogue): Check current_frame_info.mask not
1707         current_function_is_leaf to restore ar.pfs.
1708
1709 2003-06-26  Richard Henderson  <rth@redhat.com>
1710
1711         * emit-rtl.c (try_split): Append to new CALL_INSN_FUNCTION_USAGE
1712         instead of replacing it.
1713
1714 2003-06-26  Richard Henderson  <rth@redhat.com>
1715
1716         * flow.c (propagate_one_insn): Kill function return value
1717         registers across tail calls.
1718
1719         * flow.c (propagate_one_insn): Preserve live-at-end registers
1720         across tail calls.
1721
1722 2003-06-26  J"orn Rennecke <joern.rennecke@superh.com>
1723
1724         * reload.c (can_reload_into): New function.
1725         (push_reload): Use it.
1726
1727 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
1728
1729         * config/h8300/h8300.c (compute_a_rotate_length): Fix the
1730         references to the amount of a rotation.
1731
1732 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
1733
1734         * config/sh/coff.h: Don't include dbxcoff.h.
1735         * config.gcc: List it here.
1736
1737 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
1738
1739         * postreload.c (reload_cse_simplify_set): Call cselib_lookup
1740         earlier.  Don't check if SRC is a constant.
1741
1742 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
1743
1744         * Makefile.in (OBJS): Add postreload.o.
1745         Remove cselib.h from the dependency list for reload1.o.
1746         Add a dependency list for postreload.o.
1747         * reload.h: Change the comment for the prototype of
1748         reload_cse_regs.
1749         * reload1.c: Don't include cselib.h.
1750         (reload_cse_regs): Move to postreload.c
1751         (reload_cse_regs_1): Likewise.
1752         (reload_cse_noop_set_p): Likewise.
1753         (reload_cse_simplify_set): Likewise.
1754         (reload_cse_simplify_operands): Likewise.
1755         (RELOAD_COMBINE_MAX_USES): Likewise.
1756         (reload_combine_ruid): Likewise.
1757         (LABEL_LIVE): Likewise.
1758         (reload_combine): Likewise.
1759         (reload_combine_note_use): Likewise.
1760         (reload_combine_note_store): Likewise.
1761         (reg_set_luid): Likewise.
1762         (reg_offset): Likewise.
1763         (reg_base_reg): Likewise.
1764         (reg_mode): Likewise.
1765         (move2add_luid): Likewise.
1766         (move2add_last_label_luid): Likewise.
1767         (MODES_OK_FOR_MOVE2ADD): Likewise.
1768         (reload_cse_move2add): Likewise.
1769         (move2add_note_store): Likewise.
1770         (reload_cse_simplify): Likewise.
1771         * postreload.c: New.
1772
1773 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
1774
1775         * config/avr/avr.c (final_prescan_insn): Remove support for
1776         -mrtl.
1777         * config/avr/avr.h (MASK_RTL_DUMP): Remove.
1778         (TARGET_RTL_DUMP): Likewise.
1779         (TARGET_SWITCHES): Remove -mrtl.
1780
1781 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
1782
1783         * config/h8300/h8300-protos.h: Change emit_a_rotate to
1784         output_a_rotate.  Add a prototype for compute_a_rotate_length.
1785         * config/h8300/h8300.c (emit_a_rotate): Change to
1786         output_a_rotate.
1787         (compute_a_rotate_length): New.
1788         (h8300_adjust_insn_length): Remove.
1789         * config/h8300/h8300.h (ADJUST_INSN_LENGTH): Remove.
1790         * config/h8300/h8300.md (adjust_length): Remove.
1791         (*rotlqi3_1): Use output_a_rotate and compute_a_rotate_length.
1792         (*rotlhi3_1): Likewise.
1793         (*rotlsi3_1): Likewise.
1794
1795 2003-06-26  Roger Sayle  <roger@eyesopen.com>
1796             Richard Henderson  <rth@redhat.com>
1797
1798         * builtins.c (expand_builtin_mathfn): Always stabilize the argument
1799         list against re-evaluation.  If expand_unop fails, call expand_call
1800         with the stabilized argument list rather than return NULL_RTX.
1801         (expand_builtin_mathfn2): Likewise, always stabilize the argument
1802         list, and call expand_call ourselves if expand_binop fails.
1803
1804 2003-06-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
1805
1806         PR optimization/11210
1807         * fold-const (decode_field_reference): Strip only NOPs that
1808         don't affect the sign.
1809
1810 2003-06-26  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
1811
1812         * gcc/config/sh/sh.md (push_fpscr): Enable for TARGET_SH2E.
1813         (pop_fpscr, fpu_switch): Likewise.
1814
1815 2003-06-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1816
1817         * value-prof.c: New.
1818         * value-prof.h: New.
1819         * Makefile.in (value-prof.o): New.
1820         (LIBGCOV): Add _gcov_merge_single and _gcov_merge_delta
1821         (profile.o): Add value-prof.h and tree.h dependency.
1822         * flags.h (flag_profile_values): Declare.
1823         * gcov-io.h (GCOV_COUNTERS, GCOV_COUNTER_NAMES, GCOV_MERGE_FUNCTIONS):
1824         Add new counters.
1825         (GCOV_COUNTER_V_INTERVAL, GCOV_COUNTER_V_POW2, GCOV_COUNTER_V_SINGLE,
1826         GCOV_COUNTER_V_DELTA): New counter sections.
1827         (__gcov_merge_single, __gcov_merge_delta): Declare.
1828         * flow.c (mark_used_regs): Set subregs_of_mode only when the
1829         structure is initialized.
1830         * libgcov.c (__gcov_merge_single, __gcov_merge_delta): New functions.
1831         * profile.c: Include value-prof.h and tree.h.
1832         (gen_interval_profiler, gen_pow2_profiler, gen_one_value_profiler,
1833         gen_const_delta_profiler, instrument_values): New static functions.
1834         (get_exec_counts): Fix comment.
1835         (branch_prob): Invoke instrument_values.
1836         * toplev.c (flag_profile_values): New flag.
1837         * doc/invoke.texi (-fprofile-values): Document.
1838
1839 2003-06-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1840
1841         * Makefile.in (cfgrtl.o): Add expr.h dependency.
1842         * cfgrtl.c: Include expr.h.
1843         (mark_killed_regs, safe_insert_insn_on_edge): New
1844         functions.
1845         * config/i386/i386.h (AVOID_CCMODE_COPIES): Define.
1846         * basic-block.h (safe_insert_insn_on_edge): Declare.
1847
1848 2003-06-26  Neil Booth  <neil@daikokuya.co.uk>
1849
1850         * c-opts.c (missing_arg): Make non-static.
1851         (c_common_handle_option): Don't check for missing arguments.
1852         * opts.c (handle_option): Check for missing arguments.
1853
1854 2003-06-26  David Edelsohn  <edelsohn@gnu.org>
1855
1856         * config/rs6000/power4.md (power4-veccomplex): Correct latency.
1857
1858 2003-06-25  Loren James Rittle  <ljrittle@acm.org>
1859
1860         * configure.in (ld_vers): Portability [sed].
1861         * configure: Regenerate with autoconf213.
1862
1863 2003-06-25  H.J. Lu <hongjiu.lu@intel.com>
1864
1865         * doc/extend.texi: Document new builtin functions for Intel
1866         Prescott New Intrunctions.
1867
1868         * doc/invoke.texi: Document new command-line options, -mpni and
1869         -mno-pni, for Intel Prescott New Intrunctions.
1870
1871         * config.gcc (extra_headers): Add pmmintrin.h for i[34567]86-*-*.
1872
1873         * config/i386/i386.c (override_options): Turn on MASK_SSE2
1874         for -mpni. Turn on MASK_SSE for -msse2.
1875         (bdesc_2arg): Add PNI builtins with 2 args.
1876         (bdesc_1arg): Add PNI builtins with 1 arg.
1877         (ix86_init_mmx_sse_builtins): Handle PNI builtins.
1878         (ix86_expand_builtin): Likewise.
1879
1880         * config/i386/i386.h (MASK_3DNOW, MASK_3DNOW_A,
1881         MASK_128BIT_LONG_DOUBLE, MASK_64BIT, MASK_MS_BITFIELD_LAYOUT,
1882         MASK_TLS_DIRECT_SEG_REFS): Renumbered.
1883         (TARGET_PNI): New.
1884         (TARGET_SWITCHES): Don't enable MASK_SSE for -msse2 here. Add
1885         -mpni and -mno-pni.
1886         (TARGET_CPU_CPP_BUILTINS): Defined __PNI__ for PNI.
1887         (ix86_builtins): Add PNI builtins.
1888         (config/i386/i386.md): Add PNI patterns.
1889
1890         * config/i386/pmmintrin.h: New file.
1891
1892 2003-06-25  Kazu Hirata  <kazu@cs.umass.edu>
1893
1894         * config/h8300/h8300.md (call): Fix the insn lengths.
1895         (call_value): Likewise.
1896
1897 Thu Jun 26 00:13:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
1898
1899         * c-common.c (handle_used_attribute): Use mark_referenced.
1900         * varasm.c (mark_referenced): Break out from ...
1901         (assemble_name): ... here.
1902         * tree.h (mark_referenced): Declare.
1903
1904 2003-06-25  Wolfgang Bangerth  <bangerth@dealii.org>
1905
1906         * gccbug.in: Add PCH to list of categories.
1907
1908 2003-06-25 Martin Schaffner <schaffner@gmx.li>
1909
1910         * cppfiles.c: Clarify comments.
1911         * cpphash.h: Likewise.
1912         * cpplib.h: Likewise.
1913         * cppmacro.c: Likewise.
1914         * mkdeps.h: Likewise.
1915
1916 2003-06-25  Neil Booth  <neil@daikokuya.co.uk>
1917
1918         * c-opts.c (complain_wrong_lang, write_langs): Remove.
1919         (c_common_handle_option): Complaints about wrong language are
1920         handled in opts.c now.
1921         * opts.c (complain_wrong_lang, write_langs, handle_options): New.
1922         (find_opt): Fix thinko.
1923         (handle_option): Update prototype.  Complain about switches for
1924         a different front end.
1925         * opts.h (lang_names, handle_options): New.
1926         (handle_option): Remove.
1927         * opts.sh: Write out language names array.
1928         * toplev.c (parse_options_and_default_flags): Use handle_options.
1929
1930 2003-06-25  H.J. Lu <hongjiu.lu@intel.com>
1931
1932         * config/i386/i386.c (MASK_SSE1): Removed.
1933         (MASK_SSE164): Removed.
1934         (MASK_SSE264): Removed.
1935         (bdesc_2arg): Replace MASK_SSE1 with MASK_SSE. Replace
1936         MASK_SSE164 with MASK_SSE | MASK_64BIT. Replace MASK_SSE264
1937         with MASK_SSE2 | MASK_64BIT.
1938         (bdesc_1arg): Likewise.
1939         (ix86_init_mmx_sse_builtins): Likewise.
1940
1941         * config/i386/i386.h (TARGET_SSE): Remove MASK_SSE2.
1942         (TARGET_SWITCHES): Enable both MASK_SSE and MASK_SSE2 for
1943         -msse2.
1944
1945 2003-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1946
1947         * hwint.h (HOST_WIDE_INT_PRINT, HOST_WIDE_INT_PRINT_C): New macros.
1948         (HOST_WIDE_INT_PRINT_DEC_SPACE,
1949         HOST_WIDE_INT_PRINT_UNSIGNED_SPACE,
1950         HOST_WIDEST_INT_PRINT_DEC_SPACE,
1951         HOST_WIDEST_INT_PRINT_UNSIGNED_SPACE): Delete.
1952         (HOST_WIDE_INT_PRINT_DEC, HOST_WIDE_INT_PRINT_DEC_C,
1953         HOST_WIDE_INT_PRINT_UNSIGNED, HOST_WIDE_INT_PRINT_HEX): Define in
1954         terms of HOST_WIDE_INT_PRINT and possibly HOST_WIDE_INT_PRINT_C.
1955
1956         * final.c (asm_fprintf): Use HOST_WIDE_INT_PRINT.
1957         * ra-debug.c (dump_static_insn_cost): Likewise.
1958
1959 2003-06-26  Nick Clifton  <nickc@redhat.com>
1960
1961         * config/arm/arm.h (BIGGEST_FIELD_ALIGNMENT): Define instead
1962         of ADJUST_FIELD_ALIGN if IN_TARGET_LIBS.
1963         Replace occurances of '???' with 'XXX' incase they are
1964         mistaken for trigraphs.
1965         (THUMB_PRINT_OPERAND_ADDRESS): abort if a compound address
1966         does not have a register for the first operand.
1967
1968 2003-06-25      Dhananjay Deshpande <dhananjayd@kpitcummins.com>
1969
1970         * config/sh/sh.c (sh_register_move_cost):
1971         Add case for moving between MAC_REGS.
1972
1973 2003-06-25  Zack Weinberg  <zack@codesourcery.com>
1974
1975         PR 10178
1976         * langhooks.h (struct lang_hooks): Add no_body_blocks bool.
1977         * langhooks-def.h (LANG_HOOKS_NO_BODY_BLOCKS): New; default false.
1978         * c-lang.c, objc/objc-lang.c: Override LANG_HOOKS_NO_BODY_BLOCKS
1979         to true.
1980         * stmt.c (is_body_block): If lang_hooks.no_body_blocks, always
1981         return 0.
1982
1983 2003-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1984
1985         * Makefile.in (bt-load.o): Depend on $(TM_P_H).
1986         * bt-load.c: Include "tm_p.h".
1987
1988 2003-06-25  Kazu Hirata  <kazu@cs.umass.edu>
1989
1990         * config/h8300/h8300.c (compute_mov_length): Adjust for the
1991         new optimization.
1992         * config/h8300/h8300.md (*movsi_h8300): Optimize the load of
1993         an SImode constant whose upper and lower are the same.
1994
1995 Wed Jun 25 11:31:59 CEST 2003  Jan Hubicka  <jh@suse.cz>
1996
1997         * varasm.c (assemble_name): Mark needed variables even when
1998         global info is ready.
1999
2000 2003-06-24  Jerry Quinn  <jlquinn@optonline.net>
2001
2002         PR other/11280
2003         * gcc/doc/invoke.texi (Optimization Options): Remove -Os from
2004         -freorder-functions description.
2005
2006 2003-06-25  Josef Zlomek  <zlomekj@suse.cz>
2007
2008         * dwarf2out.c (gen_field_die): Return if type of decl is error mark.
2009
2010 2003-06-25  Neil Booth  <neil@daikokuya.co.uk>
2011
2012         * opts.c (common_handle_option): Add missing break;s.
2013
2014 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
2015
2016         * config/h8300/h8300-protos.h: Add a prototype for
2017         compute_mov_length.
2018         * config/h8300/h8300.c (compute_mov_length): New.
2019         * config/h8300/h8300.md (*movqi_h8300): Use it.
2020         (*movqi_h8300hs): Likewise.
2021         (movstrictqi): Likewise.
2022         (*movhi_h8300): Likewise.
2023         (*movhi_h8300hs): Likewise.
2024         (movstricthi): Likewise.
2025         (*movsi_h8300): Likewise.
2026         (*movsf_h8300): Likewise.
2027         (*movsi_h8300hs): Likewise.
2028         (*movsf_h8300hs): Likewise.
2029
2030 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
2031
2032         * jump.c (next_nondeleted_insn): Remove.
2033         * rtl.h: Remove the prototype for next_nondeleted_insn.
2034
2035 2003-06-24  Roger Sayle  <roger@eyesopen.com>
2036
2037         PR optimization/11311
2038         * builtins.c (powi_cost): Fix typo.  The number of multiplications
2039         required is the number to reduce the argument, result, plus the
2040         cost of calculating the residual, val [not n, the original value].
2041
2042 2003-06-24  Roger Sayle  <roger@eyesopen.com>
2043
2044         * config/alpha/osf5.h (TARGET_C99_FUNCTIONS): Define.
2045
2046 2003-06-24  Richard Henderson  <rth@redhat.com>
2047             (blame to: Loren James Rittle  <ljrittle@acm.org>)
2048
2049         * real.h (ieee_extended_intel_96_round_53_format): New.
2050         * real.c (ieee_extended_intel_96_round_53_format): New.
2051         * config/i386/freebsd.h (SUBTARGET_OVERRIDE_OPTIONS): Use it
2052         for XFmode and TFmode.
2053
2054 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
2055
2056         * config/h8300/h8300.md (4 anonymous patterns): Give internal
2057         names.
2058         (movsi_h8300): Change the name to *movsi_h8300.
2059         (movsi_h8300hs): Change the name to *movsi_h8300hs.
2060         (movsf_h8300): Change the name to *movsf_h8300.
2061         (movsf_h8300hs): Change the name to *movsf_h8300hs.
2062
2063 2003-06-24  Jakub Jelinek  <jakub@redhat.com>
2064
2065         * builtins.c (expand_builtin_strcpy): Don't evaluate side-effects in
2066         src twice.
2067
2068 2003-06-24  J"orn Rennecke <joern.rennecke@superh.com>
2069
2070         Back out these patches:
2071          2003-06-02  J"orn Rennecke <joern.rennecke@superh.com>
2072           * sh.h (OLD_ARG_MODE): New macro.
2073           (FUNCTION_ARG_ADVANCE, FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
2074           (FUNCTION_ARG_1): Break out of:
2075           (FUNCTION_ARG).  Use OLD_ARG_MODE.
2076          2003-06-06  J"orn Rennecke <joern.rennecke@superh.com>
2077           * sh.h (FUNCTION_ARG_1): Consistently use NEW_MODE for the mode
2078           of the generated register.
2079
2080         * sh.h (FUNCTION_ARG_SCmode_WART): Define.
2081         (FUNCTION_ARG): Unless FUNCTION_ARG_SCmode_WART is defined and
2082         an even number of floating point regs are in use, use the same
2083         sequence of argument passing registers for SCmode as would be
2084         used for two SFmode values.
2085         * sh.c (sh_va_arg): If FUNCTION_ARG_SCmode_WART is defined,
2086         swap real / imaginary parts in incoming SCmode values passed
2087         in registers.
2088
2089 2003-06-24  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
2090
2091         PR target/11260
2092         * config/alpha/alpha.md (sqrtdf2): Fix operand substitution.
2093
2094 Tue Jun 24 18:49:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
2095
2096         * Makefile.in (cgraph.o): Depend on output.h, not depend on
2097         tree-inline.h
2098         * cgraph.c: Do not include tree-inline.h; include output.h
2099         (known_fns): Rename to ...
2100         (known_decls): ... this one; update all uses.
2101         (cgraph_varpool_hash): New static variable.
2102         (cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): New global
2103         variables.
2104         (cgraph_varpool_hash_node, eq_cgraph_varpool_node, cgraph_varpool_node,
2105         cgraph_varpool_node_for_identifier, cgraph_varpool_mark_needed_node,
2106         cgraph_varpool_finalize_decl, cgraph_varpool_assemble_pending_decls):
2107         New functions.
2108         * cgraph.h (cgraph_varpool_node): New structure.
2109         (cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): Declare.
2110         (cgraph_varpool_node, cgraph_varpool_node_for_identifier,
2111         cgraph_varpool_finalize_decl, cgraph_varpool_mark_needed_node,
2112         cgraph_varpool_asemble_pending_decls): Declare.
2113         * cgraphunit.c (record_call_1): Notice variable references.
2114         (cgraph_finalize_compilation_unit): Assemble pending variables.
2115         * toplev.c (wrapup_global_declarations): Use varpool.
2116         (compile_file): Assemble pending declarations.
2117         (rest_of_decl_compilation): Use varpool in unit-at-a-time mode.
2118         * varasm.c (assemble_name): Notice varpool references.
2119
2120 Tue Jun 24 13:52:11 CEST 2003  Jan Hubicka  <jh@suse.cz>
2121
2122         * langhooks-def.h (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): New macro.
2123         * langhooks.h (lang_hooks_for_decls): Add prepare_assemble_variable.
2124         * varasm.c (assemble_variable): Call prepare_assemble_variable.
2125
2126 2003-06-23  Roger Sayle  <roger@eyesopen.com>
2127
2128         * builtins.c (expand_builtin): Use expand_builtin_pow to expand
2129         calls for pow, powf, powl and their __builtin_ variants.
2130         (expand_builtin_pow): If the second argument is a constant
2131         integer and compiling with -ffast-math, use expand_powi to
2132         generate RTL if powi_cost is less than POWI_MAX_MULTS.
2133         (powi_cost): New function to return the number of multiplications
2134         necessary to evaluate an Nth power, for integer constant N.
2135         (expand_powi): New function to expand the RTL for evaluating
2136         the Nth power of a floating point value, for integer constant N.
2137
2138         * doc/tm.texi (POWI_MAX_MULTS): Document new target macro.
2139
2140 Mon Jun 23 23:07:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
2141
2142         * cgraph.c (cgraph_nodes_queue): Declare.
2143         (eq_node): Take identifier as p2.
2144         (cgraph_node): Update htab_find_slot_with_hash call.
2145         (cgraph_node_for_identifier): New.
2146         (cgraph_mark_needed_node): Move here from cgraphunit.c.
2147         * cgraph.h (cgraph_nodes_queue): Declare.
2148         (cgraph_node_for_identifier): Declare.
2149         * cgraphunit.c (cgraph_finalize_function): Collect entry points here
2150         instead of in cgraph_finalize_compilation_unit; constructors and
2151         destructors are entry points.
2152         (cgraph_finalize_compilation_unit): Reorganize debug outout;
2153         examine nested functions after lowerng; call collect_functions hook.
2154         (cgraph_mark_local_functions): DECL_COMDAT functions are not local.
2155         (cgraph_finalize_compilation_unit): Do not collect entry points.
2156         * varasm.c: Include cgraph.h
2157         (assemble_name): Mark referenced identifier as needed.
2158
2159         * cgraphunit.c (record_call_1): Use get_callee_fndecl.
2160
2161 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
2162
2163         * config/i386/i386.c (x86_output_mi_thunk): Don't pass MEM to %P0,
2164         just SYMBOL_REF.
2165         * config/s390/s390.c (s390_output_mi_thunk): Avoid .plt in -m31
2166         mode, as it requires pic register loaded.
2167
2168         * varasm.c (resolve_unique_section): Remove prototype.  No longer
2169         static.
2170         * tree.h (resolve_unique_section): New prototype.
2171
2172 2003-06-23  Andreas Schwab  <schwab@suse.de>
2173
2174         PR debug/9905
2175         * dwarf2out.c (loc_descriptor_from_tree): Handle MODIFY_EXPR by
2176         recursing through first argument.
2177
2178 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
2179
2180         * ChangeLog.1: Fix a typo.
2181         * cfgrtl.c: Fix comment typos.
2182         * dwarf2out.c: Likewise.
2183         * expmed.c: Likewise.
2184         * genrecog.c: Likewise.
2185         * jump.c: Likewise.
2186         * rtlanal.c: Likewise.
2187         * ssa-dce.c: Likewise.
2188         * toplev.c: Likewise.
2189
2190 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
2191
2192         * doc/extend.texi: Fix typos.
2193         * doc/md.texi: Likewise.
2194         * doc/tm.texi: Likewise.
2195
2196 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
2197
2198         * basic-block.h: Fix comment formatting.
2199         * bt-load.c: Likewise.
2200         * builtins.c: Likewise.
2201         * c-common.c: Likewise.
2202         * c-common.h: Likewise.
2203         * c-format.c: Likewise.
2204         * coverage.c: Likewise.
2205         * cpplib.h: Likewise.
2206         * cpppch.c: Likewise.
2207         * dbxout.c: Likewise.
2208         * diagnostic.c: Likewise.
2209         * dwarf2out.c: Likewise.
2210         * expr.c: Likewise.
2211         * fold-const.c: Likewise.
2212         * function.c: Likewise.
2213         * gcc.c: Likewise.
2214         * gcov-io.c: Likewise.
2215         * gcov-io.h: Likewise.
2216         * gcov.c: Likewise.
2217         * profile.c: Likewise.
2218         * real.h: Likewise.
2219         * sched-deps.c: Likewise.
2220
2221 2003-06-23  Roger Sayle  <roger@eyesopen.com>
2222             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
2223
2224         * doc/contrib.texi (Contributors): Add a note on testing and
2225         remove duplicates from testers list.
2226
2227 2003-06-23  Nick Clifton  <nickc@redhat.com>
2228
2229         * read-rtl.c (read_braced_string): Check for EOF.  If
2230         encountered issue an error message.
2231
2232 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
2233
2234         * doc/invoke.texi: Document dump options, dT and dW.
2235
2236 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
2237
2238         * genrecog.c (pred_table): Remove the entry for
2239         mode_independent_operand.
2240         * recog.c (next_insns_test_no_inequality): Remove.
2241         (mode_independent_operand): Likewise.
2242         * recog.h: Remove the prototype for mode_independent_operand.
2243
2244 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2245
2246         * config/h8300/h8300.c (output_simode_bld): Use rotxl.l to
2247         store into bit 0.
2248         * config/h8300/h8300.md (*extzv_1_r_h8300hs): Change cc of the
2249         second alternative to set_znv.
2250         (*extzv_1_r_inv_h8300hs): Likewise.
2251
2252 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
2253
2254         * configure.in (in_tree_gas): Find out here whether GAS is ELF,
2255         set in_tree_gas_is_elf accordingly.
2256         (in_tree_ld): Find out whether LD emulation is ELF, set
2257         in_tree_ld_is_elf accordingly.
2258         (gcc_cv_as_subsections, gcc_cv_as_hidden, gcc_cv_as_leb128)
2259         (gcc_cv_as_eh_frame, gcc_cv_as_shf_merge)
2260         (gcc_cv_as_dwarf2_debug_line, gcc_cv_as_gdwarf2_flag)
2261         (gcc_cv_as_gstabs_flag): Use $in_tree_gas_is_elf instead of
2262         grepping gas/Makefile.
2263         (gcc_cv_ld_ro_rw_mix, gcc_cv_ld_eh_frame_hdr, gcc_cv_ld_pie): Use
2264         $in_tree_ld_is_elf instead of grepping ld/Makefile.
2265         * configure: Regenerate.
2266
2267 2003-06-22  Roger Sayle  <roger@eyesopen.com>
2268
2269         * builtins.c (expand_builtin_mathfn_2): Use tree_cons to build
2270         up the stabilized argument list, not build_tree_list.
2271         (expand_builtin_strcpy): Construct new argument list manually
2272         instead of using chainon to modify the original argument list.
2273         (expand_builtin_stpcpy): Construct new argument list manually
2274         instead of using copy_list and chainon.
2275         (expand_builtin_sprintf): New function.  Optimize calls to
2276         sprintf when the format is "%s" or doesn't contain a '%'.
2277         (expand_builtin): Expand BUILT_IN_SPRINTF using the new function
2278         expand_builtin_sprintf.
2279
2280 2003-06-22  Andreas Schwab  <schwab@suse.de>
2281
2282         * function.c (set_insn_locators): Mark as unused.
2283
2284 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
2285
2286         * common.opt: Add -finline-limit.
2287         * opts.c (common_handle_options): Handle it.
2288         * opts.sh: Temporary kludge for -finline-limit.
2289         * toplev.c (decode_f_option, independent_decode_option): Die.
2290         (parse_options_and_default_flags): No independent_decode_option.
2291
2292 2003-06-22  Andreas Jaeger  <aj@suse.de>
2293
2294         * calls.c (emit_call_1): Readd lost ATTRIBUTE_UNUSED.
2295
2296 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2297
2298         * doc/invoke.texi: Document dumps, .btl, .cfg, and .bypass.
2299
2300 2003-06-22  Andreas Schwab  <schwab@suse.de>
2301
2302         * doc/invoke.texi: Remove leading `-' from options in index.
2303
2304 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2305
2306         * bt-load.c: Follow spelling conventions.
2307
2308 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2309
2310         * expr.c (emit_move_insn_1): Fix a comment typo.
2311
2312 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2313
2314         * doc/invoke.texi: Alphabetize dump options.
2315
2316 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2317
2318         * doc/invoke.texi: Remove a duplicate -dk.
2319
2320 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2321
2322         * doc/invoke.texi: Update dump file names.
2323
2324 2003-06-22  Zack Weinberg  <zack@codesourcery.com>
2325
2326         * config/i370/i370.c, config/i370/i370.h: Use HOST_CHARSET_ASCII
2327         and HOST_CHARSET_EBCDIC, not HC_ASCII and HC_EBCDIC.
2328
2329 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
2330
2331         * doc/rtl.texi: Fix the @findex for pre_modify.
2332
2333 2003-06-22  Andreas Jaeger  <aj@suse.de>
2334
2335         * caller-save.c: Convert to ISO C90.
2336         * calls.c: Likewise.
2337         * cfg.c: Likewise.
2338         * cfganal.c: Likewise.
2339         * cfgbuild.c: Likewise.
2340         * cfgcleanup.c: Likewise.
2341         * cfghooks.c: Likewise.
2342         * cfglayout.c: Likewise.
2343         * cfglayout.h: Likewise.
2344         * cfgloop.c: Likewise.
2345         * cfgloop.h: Likewise.
2346         * cfgloopanal.c: Likewise.
2347         * cfgloopmainip.c: Likewise.
2348         * cfgrtl.c: Likewise.
2349
2350 2003-06-22  Richard Earnshaw  <rearnsha@arm.com>
2351
2352         * arm.h (BIGGEST_ALIGNMENT): Use TARGET_REALLY_IWMMXT for selecting
2353         64-bit alignment.
2354
2355 2003-06-22  Richard Earnshaw  <rearnsha@arm.com>
2356
2357         * arm.md (all call_value patterns): Remove register constraints on
2358         value operand.
2359
2360 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
2361
2362         * common.opt: More -f switches.
2363         * opts.c (common_handle_options): Handle them.
2364         * toplev.c (time_report): Make extern.
2365         (f_options): USe flag_dummy.
2366         (decode_f_option): No need to use f_options now.
2367         * toplev.h (flag_cprop_registers, flag_ssa, flag_ssa_ccp,
2368         flag_ssa_dce, time_report, flag_new_regalloc): Make extern.
2369
2370 2003-06-22  Andreas Jaeger  <aj@suse.de>
2371
2372         * c-lex.c: Convert to ISO C90.
2373         * c-objc-common.c: Likewise.
2374         * c-opts.c: Likewise.
2375         * c-pch.c: Likewise.
2376         * c-ppoutput.c: Likewise.
2377         * c-pragma.h: Likewise.
2378         * c-pretty-print.c: Likewise.
2379         * c-pretty-print.h: Likewise.
2380         * c-semantics.c: Likewise.
2381         * c-tree.h: Likewise.
2382         * c-typeck.c: Likewise.
2383
2384         * c-lang.c: Convert to ISO C90.
2385
2386 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
2387
2388         * opts.c (find_opt): Fix to always guarantee a find of a
2389         switch with joined parameter.
2390         * opts.h (struct cl_option): New member back_chain.
2391         * opts.sh: Update to calculate and add back_chain member.
2392
2393 2003-06-22  Gabriel Dos Reis <gdr@integrable-solutions.net>
2394
2395         * diagnostic.h (output_host_wide_integer): Declare.
2396         * diagnostic.c (output_long_long_decicaml): New function.
2397         (output_host_wide_integer): Likewise.
2398         (output_format): Use them.  Handle "%ll" and "%w".
2399
2400 2003-06-21  Jason Thorpe  <thorpej@wasabisystems.com>
2401
2402         * config.gcc (*-*-netbsd*): Add t-libgcc-pic to tmake_file.
2403
2404 2003-06-21  Zack Weinberg  <zack@codesourcery.com>
2405
2406         * aclocal.m4 (gcc_AC_C_CHARSET): Delete.
2407         * configure.in: Don't use gcc_AC_C_CHARSET.
2408         * configure, config.in: Regenerate.
2409         * config/i370/i370.c, config/i370/i370.h: Use
2410         (HOST_CHARSET == HC_EBCDIC) or (HOST_CHARSET == HC_ASCII)
2411         instead of HOST_EBCDIC or !HOST_EBCDIC.  Clarify comments a tad.
2412
2413 2003-06-21  Neil Booth  <neil@daikokuya.co.uk>
2414
2415         * Makefile.in: Update.
2416         * common.opt: New switches.
2417         * opts.c: Include diagnostic.h.
2418         (common_handle_option): Handle new switches.
2419         * toplev.c (flag_loop_optimize, flag_crossjumping, flag_if_conversion,
2420         flag_if_conversion2, flag_delete_null_pointer_checks,
2421         flag_rerun_cse_after_loop): Make extern.
2422         (flag_dummy): New.
2423         (f_options): Update to use flag_dummy for moved options.
2424         (decode_f_option): Some switches moved to opts.c.
2425         * toplev.h (flag_loop_optimize, flag_crossjumping, flag_if_conversion,
2426         flag_if_conversion2, flag_delete_null_pointer_checks,
2427         flag_rerun_cse_after_loop, flag_keep_static_consts, flag_peel_loops,
2428         flag_tracer, flag_thread_jumps, flag_unroll_loops,
2429         flag_unroll_all_loops, flag_unswitch_loops): New.
2430
2431 Sat Jun 21 13:41:00 CEST 2003  Jan Hubicka  <jh@suse.cz>
2432
2433         * i386.c (ix86_va_arg): Fix allocation of temporary slot.
2434
2435 2003-06-20  Kazu Hirata  <kazu@cs.umass.edu>
2436
2437         * config/h8300/h8300-protos.h: Add a prototype for
2438         same_cmp_preceding_p.
2439         * config/h8300/h8300.c (same_cmp_preceding): New.
2440         * config/h8300/h8300.md: Extend peephole2's that transform
2441         compare:SI into shorter sequences so that they can deal with
2442         signed comparisons.
2443
2444 2003-06-21  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
2445
2446         * doc/contrib.texi (Contributors): Use Windows instead of Win32.
2447
2448         Update Andreas Jaeger's entry.
2449
2450         Merge the two entries of Kaveh Ghazi, David Edelsohn, and
2451         Loren J. Rittle.
2452
2453 2003-06-21  Nathanael Nerode  <neroden@gcc.gnu.org>
2454
2455         * mkconfig.sh: Add multiple inclusion guards to generated headers.
2456
2457 2003-06-20  Neil Booth  <neil@daikokuya.co.uk>
2458
2459         * c-decl.c (store_parm_decls): Make saved_warn_shadow boolean.
2460         * common.opt: Add remaining -W options and -g.
2461         * diagnostic.c (warnings_are_errors): Remove.
2462         * flags.h: Make most warning flags boolean.
2463         * opts.c (common_handle_option): Handle remaining -W options, and -g.
2464         Move many warning flags from toplev.c, making them boolean.
2465         * toplev.c: Remove many warning flags.
2466         (decode_W_option): Remove.
2467         (decode_g_option): Make extern.  Error on unknown switch.
2468         (lang_independent_W_options): Use warn_dummy.
2469         (independent_decode_option): Just handle -f switches now.
2470         * toplev.h (decode_g_option): New.
2471
2472 2003-06-20  Aldy Hernandez  <aldyh@redhat.com>
2473
2474         PR/11092
2475         * config/rs6000/rs6000.h (LEGITIMATE_CONSTANT_P): Adjust for
2476         vectors.
2477
2478 2003-06-20  Kelley Cook  <kelleycook@wideopenwest.com>
2479
2480         * opts.sh: Tweak awk script for portability.
2481
2482 2003-06-20  Mark Mitchell  <mark@codesourcery.com>
2483
2484         PR c++/10888
2485         * tree-inline.c (expand_call_inline): Do not warn about failing to
2486         inline functions declared in system headers.
2487         * doc/invoke.texi (-Winline): Expand on documentation.
2488
2489 2003-06-20  Richard Henderson  <rth@redhat.com>
2490
2491         * config/alpha/alpha.c (alpha_file_start): Disable
2492         file_start_file_directive for ELF and not MDEBUG.
2493
2494 2003-06-20  J"orn Rennecke <joern.rennecke@superh.com>
2495
2496         * sh.h (ROUND_TYPE_ALIGN): Remove.
2497
2498 2003-06-20  Richard Henderson  <rth@redhat.com>
2499
2500         * hooks.c (hook_int_void_no_regs): Rename from
2501         hook_reg_class_void_no_regs; change return type.
2502         * hooks.h: Update.
2503         * target-def.h (TARGET_BRANCH_TARGET_REGISTER_CLASS): Update.
2504         * target.h (branch_target_register_class): Change return type to int.
2505         Add documentation.
2506         * config/sh/sh.c (sh_target_reg_class): Change return type.
2507         * doc/tm.texi (TARGET_BRANCH_TARGET_REGISTER_CLASS): Likewise.
2508
2509 2003-06-20  Andreas Tobler <toa@pop.agri.ch>
2510
2511         * c-format.c: Change _Bool to bool reverting part of the last
2512         patch.
2513
2514 2003-06-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2515
2516         * som.h (ASM_OUTPUT_SOURCE_LINE): Use targetm.strip_name_encoding to
2517         strip name encoding.
2518
2519 2003-06-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2520
2521         * configure.in (gcc_cv_as_gstabs_flag): Disable if assembler warns.
2522         * configure: Regenerate.
2523         Fixes PR driver/9362.
2524
2525 2003-06-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2526
2527         * config/alpha/alpha.c (alpha_file_start): Fix typo.
2528
2529 2003-06-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2530
2531         * config/mips/mips.h (PUT_SDB_FUNCTION_END): Pass 0 as third arg
2532         to ASM_OUTPUT_SOURCE_LINE.
2533
2534 2003-06-20  Daniel Egger  <degger@fhm.edu>
2535             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
2536
2537         * doc/install.texi (Building): Correct and improve statement
2538         about parallel builds.
2539
2540 2003-06-20  Andreas Jaeger  <aj@suse.de>
2541
2542         * c-common.c: Change _Bool to bool reverting part of the last
2543         patch.
2544
2545 2003-06-20  Nathan Sidwell  <nathan@codesourcery.com>
2546
2547         * tree.h (expand_function_end): Remove all parameters.
2548         * function.c (expand_function_end): Remove all parameters.
2549         Use input_location. Never expand_end_bindings.
2550         * c-decl.c (c_expand_body_1): Adjust expand_function_end call.
2551         * coverage.c (create_coverage): Likewise.
2552
2553 2003-06-20  Nick Clifton  <nickc@redhat.com>
2554
2555         * doc/extend.texi (ARM Built-in Functions): New node.  Document
2556         ARM builtin functions for iWMMXt support.
2557
2558 2003-06-20  Eric Botcazou  <ebotcazou@libertysurf.fr>
2559
2560         * doc/install.texi (--with-gnu-as): Mention SPARC/Solaris and
2561         SPARC64/Solaris as platforms where --with-gnu-as makes a difference.
2562         (--with-as): Add @anchor.
2563         (--with-gnu-ld): Fix typo.
2564         (--with-ld): Add @uref to --with-as.
2565
2566 2003-06-19  Zack Weinberg  <zack@codesourcery.com>
2567
2568         * doc/tm.texi: Uniformly use @defmac for macros, rather than
2569         @table items.  Minor formatting and editorial corrections.
2570
2571 2003-06-20  Neil Booth  <neil@daikokuya.co.uk>
2572
2573         * line-map.c, line-map.h: Convert to ISO prototypes.
2574
2575 2003-06-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2576
2577         * gcse.c (store_killed_in_insn): Fix.
2578
2579 2003-06-19  Zack Weinberg  <zack@codesourcery.com>
2580
2581         * target.h (asm_out.file_start, file_start_app_off,
2582         file_start_file_directive): New hooks.
2583         * target-def.h (TARGET_ASM_FILE_START_FILE_DIRECTIVE,
2584         TARGET_ASM_FILE_START_APP_OFF, TARGET_ASM_FILE_START):
2585         New hook-definition macros.
2586         * doc/tm.texi: Document new hooks; remove docs of ASM_FILE_START.
2587         * varasm.c (default_file_start): New.
2588         * output.h: Prototype it.
2589         * toplev.c (init_asm_output): Use targetm.asm_out.file_start.
2590         * system.h: Poison ASM_FILE_START.
2591
2592         * config/alpha/alpha.c (alpha_write_verstamp): Delete.
2593         (alpha_file_start): New, define if !TARGET_ABI_UNICOSMK.
2594         (unicosmk_asm_file_start): Rename unicosmk_file_start,
2595         make static, take no arguments.
2596         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_END,
2597         TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set as appropriate.
2598         * config/alpha/unicosmk.h: Don't define ASM_FILE_START nor
2599         TARGET_ASM_FILE_END.  Remove reference to ASM_FILE_START in
2600         comment.
2601         * config/arc/arc.c (arc_asm_file_start): Rename
2602         arc_file_start, take no arguments, make static.
2603         (TARGET_ASM_FILE_START): Set it.
2604         * config/arm/arm.c (aof_file_start): New static function.
2605         (TARGET_ASM_FILE_START): Set it, when appropriate.
2606         * config/arm/coff.h, config/arm/elf.h:
2607         Set TARGET_ASM_FILE_START_APP_OFF to true.
2608         * config/avr/avr.c (asm_file_start): Rename avr_file_start,
2609         take no arguments, make static.
2610         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE):
2611         Set them.
2612         * config/c4x/c4x.c (c4x_file_start): New static function.
2613         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE):
2614         Set them.
2615         * config/cris/cris.c (cris_file_start): New static function.
2616         (TARGET_ASM_FILE_START): Set it.
2617         * config/dsp16xx/dsp16xx.c (coff_dsp16xx_file_start): Rename
2618         dsp16xx_file_start, make static.
2619         (luxworks_dsp16xx_file_start): Delete.
2620         (TARGET_ASM_FILE_START): Set it.
2621         * config/h8300/h8300.c (asm_file_start): Rename
2622         h8300_file_start, make static, take no arguments.
2623         (TARGET_ASM_FILE_START): Set it.
2624         * config/i370/i370.c (i370_file_start): New static function.
2625         (TARGET_ASM_FILE_START): Set it.
2626         * config/i386/i386.c (x86_file_start): New static function.
2627         (TARGET_ASM_FILE_START): Set it.
2628         * config/i386/i386.h (X86_FILE_START_VERSION_DIRECTIVE,
2629         X86_FILE_START_FLTUSED): New macros, default to false.
2630         * config/i386/i386-interix.h: Override X86_FILE_START_FLTUSED to 1.
2631         * config/i386/sysv4.h, config/i386/sco5.h: Override
2632         X86_FILE_START_VERSION_DIRECTIVE to true.
2633         * config/ia64/ia64.c (ia64_file_start): New static function.
2634         (TARGET_ASM_FILE_START): Set it.
2635         (emit_safe_across_calls): Take no arguments.
2636         * config/ia64/ia64.md: Update to match.
2637         * config/m32r/m32r.c (m32r_asm_file_start): Rename
2638         m32r_file_start, make static, take no arguments.
2639         (TARGET_ASM_FILE_START): Set it.
2640         * config/m68hc11/m68hc11.c (m68hc11_asm_file_start): Rename
2641         m68hc11_file_start, make static, take no arguments.
2642         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2643         (print_options): Delete.
2644         * config/m68k/m68k.c (m68k_hp320_file_start): New static function.
2645         (TARGET_ASM_FILE_START_APP_OFF): Set.
2646         * config/m68k/hp320.h: Set TARGET_ASM_FILE_START to
2647         m68k_hp320_file_start.
2648         * config/mips/mips.c (iris6_asm_file_start, mips_asm_file_start):
2649         Make static, take no arguments.
2650         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2651         * config/mmix/mmix.c (mmix_asm_file_start): Rename
2652         mmix_file_start, make static, take no arguments.
2653         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2654         * config/mn10300/mn10300.c (asm_file_start): Rename
2655         mn10300_file_start, make static, take no arguments.
2656         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2657         * config/ns32k/ns32k.c (TARGET_ASM_FILE_START_APP_OFF): Set.
2658         * config/pa/pa.c (pa_file_start_level, pa_file_start_space,
2659         pa_file_start_file, pa_file_start_mcount, pa_elf_file_start,
2660         pa_som_file_start, pa_linux_file_start, pa_hpux64_gas_file_start,
2661         pa_hpux64_hpas_file_start): New static functions.
2662         * config/pa/elf.h: Set TARGET_ASM_FILE_START to pa_elf_file_start.
2663         * config/pa/pa-linux.h: Set TARGET_ASM_FILE_START to
2664         pa_linux_file_start.
2665         * config/pa/pa64-hpux.h: Set TARGET_ASM_FILE_START to
2666         pa_hpux64_gas_file_start or pa_hpux64_hpas_file_start, as
2667         appropriate.
2668         * config/pa/som.h: Set TARGET_ASM_FILE_START to pa_som_file_start.
2669         * config/rs6000/rs6000.c: Include xcoffout.h when TARGET_XCOFF.
2670         (rs6000_file_start): Make static, take no arguments.  Reset
2671         default_cpu under certain conditions.
2672         (rs6000_xcoff_file_start): New function.
2673         * config/rs6000/rs6000.h (TARGET_ASM_FILE_START): Set.
2674         * config/rs6000/xcoff.h (TARGET_ASM_FILE_START,
2675         TARGET_ASM_FILE_START_FILE_DIRECTIVE): Override.
2676         * config/sh/sh.c (output_file_start): Rename
2677         sh_file_start, make static, take no arguments.  Merge in old
2678         code from sh/elf.h's ASM_FILE_START, conditioned on TARGET_ELF.
2679         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2680         * config/sh/sh.c (TARGET_ELF): Define to 0.
2681         * config/sh/elf.h (TARGET_ELF): Redefine to 1.
2682         * config/v850/v850.c (asm_file_start): Delete.
2683         (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
2684         * config/vax/vax.c (vax_file_start): New static function.
2685         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_APP_OFF): Set.
2686
2687         * config/darwin.h: Override ASM_FILE_START_FILE_DIRECTIVE to false.
2688         * config/elfos.h, config/svr3.h, config/arm/elf.h, config/arm/pe.h
2689         * config/i386/att.h, config/i386/gas.h, config/i386/linux.h
2690         * config/i386/sysv4.h, config/i386/sco5.h, config/i960/i960-coff.h
2691         * config/m68k/coff.h, config/m68k/hp320.h, config/mcore/mcore-pe.h
2692         * config/vax/vaxv.h: Set ASM_FILE_START_FILE_DIRECTIVE to true.
2693
2694         * config/darwin.h, config/elfos.h, config/alpha/elf.h
2695         * config/alpha/openbsd.h, config/alpha/osf.h, config/alpha/vms.h
2696         * config/arc/arc.h, config/arm/aof.h, config/arm/aout.h
2697         * config/arm/coff.h, config/arm/elf.h, config/arm/pe.h
2698         * config/avr/avr.h, config/c4x/c4x.h, config/cris/cris.h
2699         * config/dsp16xx/dsp16xx.h, config/h8300/elf.h, config/h8300/h8300.h
2700         * config/i370/i370.h, config/i386/att.h, config/i386/gas.h
2701         * config/i386/i386-interix.h, config/i386/linux.h, config/i386/sysv4.h
2702         * config/i386/sco5.h, config/i960/i960-coff.h, config/i960/i960.h
2703         * config/ia64/ia64.h, config/ia64/sysv4.h, config/m32r/m32r.h
2704         * config/m68hc11/m68hc11.h, config/m68k/coff.h, config/m68k/m68k.h
2705         * config/mcore/mcore-pe.h, config/mips/iris6.h, config/mips/mips.h
2706         * config/mmix/mmix.h, config/mn10300/mn10300.h, config/ns32k/ns32k.h
2707         * config/pa/elf.h, config/pa/pa-linux.h, config/pa/pa64-hpux.h
2708         * config/pa/som.h, config/pdp11/pdp11.h, config/rs6000/linux64.h
2709         * config/rs6000/lynx.h, config/rs6000/xcoff.h, config/sh/elf.h
2710         * config/sh/sh.h, config/sparc/sparc.h, config/v850/v850.h
2711         * config/vax/vax.h, config/vax/vaxv.h: Don't (re)define ASM_FILE_START.
2712
2713         * config/alpha/alpha-protos.h, config/arc/arc-protos.h
2714         * config/avr/avr-protos.h, config/dsp16xx/dsp16xx-protos.h
2715         * config/h8300/h8300-protos.h, config/ia64/ia64-protos.h
2716         * config/m32r/m32r-protos.h, config/m68hc11/m68hc11-protos.h
2717         * config/mips/mips-protos.h, config/mmix/mmix-protos.h
2718         * config/mn10300/mn10300-protos.h, config/rs6000/rs6000-protos.h
2719         * config/sh/sh-protos.h, config/v850/v850-protos.h: Update.
2720
2721         * xcoffout.h, config/rs6000/aix.h, config/rs6000/xcoff.h:
2722         Remove reference to ASM_FILE_START in comment.
2723         * config/arm/aof.h, config/arm/aout.h, config/arm/freebsd.h
2724         * config/arm/linux-gas.h, config/arm/netbsd-elf.h
2725         * config/arm/netbsd.h: Delete definition of ARM_OS_NAME.
2726
2727 2003-06-19  Graeme Peterson <gp@qnx.com>
2728
2729         * gcc.c (target_sysroot_suffix, target_sysroot_hdrs_suffix,
2730         SYSROOT_SUFFIX_SPEC, SYSROOT_HEADERS_SUFFIX_SPEC, sysroot_suffix_spec,
2731         sysroot_hdrs_suffix_spec): New.
2732         (static_specs): Initialize new variables.
2733         (add_sysroot_suffix_prefix, do_spec_1, main): Use new variables.
2734         * doc/tm.texi (SYSROOT_SUFFIX_SPEC, SYSROOT_HEADERS_SUFFIX_SPEC):
2735         New macros.
2736
2737 2003-06-19  Andreas Jaeger  <aj@suse.de>
2738
2739         * c-aux-info.c: Convert to ISO C90.
2740         * c-pragma.c: Likewise.
2741         * c-common.c: Likewise.
2742         * c-common.h: Likewise.
2743         * c-convert.c: Likewise.
2744         * c-cppbuiltin.c: Likewise.
2745         * c-dump.c: Likewise.
2746         * c-decl.c: Likewise
2747         * c-format.c: Likewise.
2748         * c-incpath.c: Likewise.
2749         * c-incpath.h: Likewise.
2750
2751 2003-06-19  Roger Sayle  <roger@eyesopen.com>
2752
2753         * builtins.c (expand_errno_check): Assume that flag_errno_math
2754         and HONOR_NANS have been tested before calling here.  Only try
2755         to set errno ourselves if the decl can't throw an exception.
2756         (expand_builtin_mathfn): Move the code to stabilize the arg
2757         after the main switch, so that that its only done when needed.
2758         BUILT_IN_SQRT{,F,L} doesn't set errno if its arg is nonnegative.
2759         Don't modify the original expr when stabilizing the argument.
2760         (expand_builtin_mathfn_2): Likewise, move the code to stabilize
2761         the args after the main switch, and don't modify the orginal exp.
2762
2763 2003-06-19  Aldy Hernandez  <aldyh@redhat.com>
2764
2765         * expr.c (const_vector_from_tree): Initialize remaining elements
2766         to 0.
2767
2768 2003-06-19  Aldy Hernandez  <aldyh@redhat.com>
2769
2770         * config/rs6000/spe.md ("spe_evfscfsi"): Change operand types.
2771         Change "fix" to "float".
2772
2773 2003-06-19  Andreas Jaeger  <aj@suse.de>
2774
2775         * c-tree.h: Remove declaration of poplevel.
2776
2777         * tree.h: Remove declaration of approx_sqrt.
2778
2779         * c-lex.c: Remove redundant declaration of asm_out_file.
2780
2781         * flags.h: Remove declaration of warn_unknown_pragma and
2782         main_input_filename.
2783
2784         * rtl.h: Remove functions from fold-const.c since they're already
2785         declared in tree.h.
2786
2787         * regs.h: Remove redundant declaration of reg_names.
2788
2789         * bt-load.c (migrate_btr_defs): Correct printf arguments.
2790
2791         * protoize.c: Fix breakage from last patch.
2792
2793 2003-06-19  J"orn Rennecke <joern.rennecke@superh.com>
2794
2795         * hooks.h (hook_reg_class_void_no_regs): Only declare if tm.h
2796         has been included.
2797
2798 2003-06-18  James A Morrison <ja2morri@student.math.uwaterloo.ca>
2799
2800         * config/sparc/sparc.c: Update copyright year.
2801
2802 2003-06-19  David Edelsohn  <edelsohn@gnu.org>
2803
2804         * config/rs6000/rs6000.c (init_cumulative_args): Limit CALL_LIBCALL
2805         to ABI_V4.
2806
2807 2003-06-18  Joseph S. Myers  <jsm@polyomino.org.uk>
2808
2809         PR bootstrap/4068
2810         * config/i386/liunx.h: Don't include sys/ucontext.h for glibc 2.0.
2811
2812 2003-06-19  Kazu Hirata  <kazu@cs.umass.edu>
2813
2814         * config/h8300/h8300.c (TARGET_INITIALIZER and friends): Move
2815         to the end of the file.  Remove unnecessary prototypes.
2816
2817 2003-06-19  Hans-Peter Nilsson  <hp@axis.com>
2818
2819         * bt-load.c (migrate_btr_def) [INSN_SCHEDULING]: Conditionalize
2820         calls to insn_default_latency and result_ready_cost.  Initialize
2821         def_latency to 1.
2822
2823 2003-06-18  Richard Henderson  <rth@redhat.com>
2824
2825         * config/ia64/unwind-ia64.c (_Unwind_GetCFA): New.
2826         (_Unwind_FindEnclosingFunction): Implement.
2827
2828 2003-06-18  Kazu Hirata  <kazu@cs.umass.edu>
2829
2830         * toplev.c (rest_of_handle_sched): Hide the entire function if
2831         INSN_SCHEDULING is not defined.
2832         (rest_of_compilation): Call rest_of_handle_sched() only when
2833         INSN_SCHEDULING is defined.
2834
2835 2003-06-18  Stephen Clarke <stephen.clarke@superh.com>
2836             J"orn Rennecke <joern.rennecke@superh.com>
2837
2838         * bt-load.c: New file.
2839         * Makefile.in (OBJS): Include bt-load.o
2840         (bt-load.o): Add dependencies.
2841         * flags.h (flag_branch_target_load_optimize): Declare.
2842         (flag_branch_target_load_optimize2): Likewise.
2843         * hooks.c (hook_reg_class_void_no_regs): New function.
2844         (hook_bool_bool_false): Likewise.
2845         * hooks.h (hook_reg_class_void_no_regs, hook_bool_bool_false): Declare.
2846         * rtl.h (branch_target_load_optimize): Declare.
2847         * target-def.h (TARGET_BRANCH_TARGET_REGISTER_CLASS): Define.
2848         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
2849         (TARGET_INITIALIZER): Include these.
2850         * target.h (struct gcc_target): Add branch_target_register_class
2851         and branch_target_register_callee_saved members.
2852         * toplev.c (enum dump_file_index): Add DFI_branch_target_load
2853         (dump_file) Add "tars" entry.
2854         (flag_branch_target_load_optimize): New variable.
2855         (flag_branch_target_load_optimize2): Likewise.
2856         (lang_independent_options): Add entries for new options.
2857         (rest_of_compilation): Call branch_target_load_optimize.
2858         * doc/tm.texi (TARGET_BRANCH_TARGET_REGISTER_CLASS): Document.
2859         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
2860         * doc/invoke.texi: Document -fbranch-target-load-optimize and
2861         -fbranch-target-load-optimize2.
2862         * rtl.h (epilogue_completed): Declare.
2863         * recog.c (epilogue_completed): New variable.
2864         * toplev.c (rest_of_compilation): Set it.
2865         * flow.c (mark_regs_live_at_end): Use it.
2866         * config/ia64/ia64.c (ia64_output_mi_thunk): Set it.
2867         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
2868         * config/sh/sh.c (sh_output_mi_thunk): Likewise.
2869         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
2870
2871         * sh.c (shmedia_space_reserved_for_target_registers): New variable.
2872         (sh_target_reg_class): New function.
2873         (sh_optimize_target_register_callee_saved): Likwise.
2874         (shmedia_target_regs_stack_space): Likewise.
2875         (shmedia_reserve_space_for_target_registers_p): Likewise.
2876         (shmedia_target_regs_stack_adjust): Likewise.
2877         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Override.
2878         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
2879         (calc_live_regs): If flag_branch_target_load_optimize2 and
2880         TARGET_SAVE_ALL_TARGET_REGS is enabled, and we have space reserved
2881         for target registers, make sure that we save all target registers.
2882         (sh_expand_prologue, sh_expand_epilogue): Take target register
2883         optimizations into account.  Collapse stack adjustments if that
2884         is beneficial.
2885         (initial_elimination_offset): Reserve space for target registers
2886         if necessary.
2887         * sh.h (SAVE_ALL_TR_BIT, TARGET_SAVE_ALL_TARGET_REGS): Define.
2888         (OPTIMIZATION_OPTIONS): Enable flag_branch_target_load_optimize.
2889
2890 2003-06-18  Nick Clifton  <nickc@redhat.com>
2891
2892         * config.gcc: Add an extra_header for ARM targets.
2893         Support configuring with --with-cpu=iwmmxt.
2894         * doc/invoke.texi: Document new value for -mcpu= ARM switch.
2895         * config/arm/aof.h (REGISTER_NAMES): Add iwmmxt register
2896         names.  Fix formatting.
2897         * config/arm/aout.h (REGISTER_NAMES): Add iwmmxt register
2898         names.
2899         * config/arm/arm-protos.h (arm_emit_vector_const): New
2900         prototype.
2901         (arm_output_load_gr): New prototype.
2902         * config/arm/arm.c (extra_reg_names1): Delete.
2903         (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN, FL_IWMMXT,
2904         * arch_is_iwmmxt): Define.
2905         (all_cores, all_architecture): Add entry for iwmmxt.
2906         (arm_override_options): Add support for iwmmxt.
2907         (use_return_insn, arm_function_arg, arm_legitimate_index_p,
2908         arm_print_value, arm_rtx_costs_1, output_move_double,
2909         arm_compute_save_reg_mask, arm_output_epilogue,
2910         arm_get_frame_size, arm_expand_prologue, arm_print_operand,
2911         arm_assemble_integer, arm_hard_regno_ok, arm_regno_class):
2912         Likewise.
2913         (arm_init_cumulative_args): Count iwmmxt registers.
2914         (arm_function_ok_for_sibcall): Return false of sibcall_blocked
2915         has been set.
2916         (struct minipool_node): Add fix_size field.
2917         (add_minipool_forward_ref): Add support for 8-byte aligning of
2918         the pool.
2919         (add_minipool_backward_ref, add_minipool_offsets,
2920         dump_minipool, push_minipool_fix): Likewise.
2921         (struct builtin_description): New struct.
2922         (builtin_description): New array of iwmmxt builtin functions.
2923         (arm_init_iwmmxt_builtins): New function.
2924         (arm_init_builtins): New function.
2925         (safe_vector_operand): New function.
2926         (arm_expand_binop_builtin): New function.
2927         (arm_expand_unop_builtin): New function.
2928         (arm_expand_builtin): New function.
2929         (arm_emit_vector_const): New function.
2930         (arm_output_load_gr): New function.
2931         * config/arm/arm.h (TARGET_CPU_iwmmxt, TARGET_IWMMXT,
2932         TARGET_REALLY_IWMMXT, arm_arch_iwmmxt, IWMMXT_ALIGNMENT,
2933         TYPE_NEEDS_IWMMXT_ALIGNMENT, ADJUST_FIELD_ALIGN,
2934         DATA_ALIGNMENT, LOCAL_ALIGNMENT, VECTOR_MODE_SUPPORTED_P): Define.
2935         (BIGGEST_ALIGNMENT): Set to 64 if ATPCS support is enabled.
2936         (CPP_CPU_ARCH_SPEC): Add entries for iwmmxt.
2937         (FIXED_REGISTERS, CALL_USED_REGISTERS, REG_ALLOC_ORDER,
2938         reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS,
2939         REG_CLASS_FOR_LETTER): Add iwmmxt registers.
2940         (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Disable iwmmxt
2941         registers unless the iwmmxt target is selected.
2942         (FIRST_IWMMXT_GR_REGNUM, LAST_IWMMXT_GR_REGNUM,
2943         FIRST_IWMMXT_REGNUM, LAST_IWMMXT_REGNUM, IS_IWMMXT_REGNUM,
2944         IS_IWMMXT_GR_REGNUM): Define.
2945         (FIRST_PSEUDO_REGISTER): Bump to 63.
2946         (struct machine_function): Add sibcall_blocked field.
2947         (Struct CUMULATIVE_ARGS): Add iwmmxt_nregs, named_count and
2948         nargs fields.
2949         (enum arm_builtins): New enum list.
2950         * config/arm/arm.md (UNSPEC_WSHUFH, UNSPEC_WACC,
2951         UNSPEC_TMOVMSK, UNSPEC_WSAD, UNSPEC_WSADZ, UNSPEC_WMACS,
2952         UNSPEC_WMACU, UNSPEC_WMACSZ, UNSPEC_WMACUZ, UNSPEC_CLRDI,
2953         UNSPEC_WMADDS, UNSPEC_WMADDU): New unspecs.
2954         (VUNSPEC_TMRC, VUNSPEC_TMCR, VUNSPEC_ALIGN8, VUNSPEC_WCMP_EQ,
2955         VUNSPEC_WCMP_GTU, VUNSPEC_WCMP_GT): New vunspecs.
2956         (movv2si, movv4hi, movv8qi): New expands for vector moves.
2957         Include iwmmxt.md.
2958         * config/arm/t-xscale-elf (MULTILIB_OPITONS): Add iwmmxt
2959         multilib.
2960         (MULTILIB_DIRNAMES, MULTILIB_REDUNDANT_DIRS): Likewise.
2961         * config/arm/mmintrin.h: New ARM specific header file.
2962         * config/arm/iwmmx.md: New iWMMXt specific machine patterns.
2963
2964 2003-06-18  J"orn Rennecke <joern.rennecke@superh.com>
2965
2966         * toplev.c (Remaining -d letters summary): Update.
2967
2968 2003-06-18  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
2969
2970         * config/rs6000/rs6000.c (init_cumulative_args): Add and handle LIBCALL
2971         argument.
2972         (function_arg): Handle CALL_LIBCALL flag.
2973         * config/rs6000/rs6000-protos.h (init_cumulative_args): Update
2974         prototype.
2975         * config/rs6000/rs6000.h (CALL_LIBCALL): New macro.
2976         (INIT_CUMULATIVE_LIBCALL_ARGS): New macro.
2977         (INIT_CUMULATIVE_ARGS): Add LIBCALL argument.
2978         (INIT_CUMULATIVE_INCOMING_ARGS): Likewise.
2979
2980 2003-06-18  Neil Booth  <neil@daikokuya.co.uk>
2981
2982         * Makefile.in: Update.
2983         * common.opt: New options.
2984         * opts.c (maybe_warn_unused_parameter, set_Wextra, handle_param,
2985         set_Wunused): New.
2986         (common_handle_option): Handle new options.
2987         * toplev.c (set_target_switch): Export.
2988         (set_Wextra, set_Wunused, maybe_warn_unused_parameter): Move to opts.c.
2989         (decode_W_option): -Wunused and -Wextra handled in opts.c now.
2990         (independent_decode_option): More options handled in opts.c now.
2991         Change prototype.
2992         * toplev.h (set_target_switch): New.
2993
2994 2003-06-17  Robert Abeles  <rabeles@archaelogic.com>
2995
2996         PR debug/4252
2997         * c-opts.c (c_common_handle_option): Pass -fdump argument suffix
2998         to dump_switch_p().
2999         * tree-dump.c (dump_switch_p): Remove redundant 'dump-' prefix
3000         from static strings in dump_files.
3001
3002 2003-06-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3003
3004         * system.h (ANSI_PROTOTYPES, PTR_CONST, LONG_DOUBLE, VPARAMS,
3005         VA_OPEN, VA_FIXEDARG, VA_CLOSE, VA_START): undef and poison these
3006         libiberty macros.
3007
3008 2003-06-17  Jason Merrill  <jason@redhat.com>
3009
3010         PR c++/10929
3011         * tree-inline.c (expand_call_inline): Don't warn about failing to
3012         inline a function which was made inline by -finline-functions.
3013
3014 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
3015
3016         * config/h8300/h8300-protos.h: Update to ISO C.
3017         * config/h8300/h8300.c: Likewise.
3018         * config/h8300/h8300.h: Likewise.
3019         * config/h8300/h8300.md: Likewise.
3020
3021 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3022
3023         * configure.in: Replace BUILD_CC references with CC_FOR_BUILD.
3024         * configure: Regenerate.
3025         * Makefile.in: Replace BUILD_CC references with CC_FOR_BUILD.
3026
3027 2003-06-17  Ranjit Mathew  <rmathew@hotmail.com>
3028
3029         * install.texi (Testing): Add information on how to run Java
3030         runtime tests separately.
3031
3032 2003-06-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3033
3034         * config/mips/mips.md (trap): Use break 0 when !TARGET_GAS.
3035
3036         * config/mips/iris6-o32.h (MIPS_ISA_DEFAULT): Remove.
3037         (MIPS_CPU_STRING_DEFAULT): Redefine to mips2.
3038
3039 2003-06-17  Christopher Faylor  <cgf@redhat.com>
3040
3041         * doc/install.texi: Add msvc rebuild caveat.
3042
3043 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
3044
3045         * config/sh/coff.h: Replace Hitachi with Renesas.
3046         * config/sh/elf.h: Likewise.
3047         * config/sh/embed-elf.h: Likewise.
3048         * config/sh/lib1funcs.asm: Likewise.
3049         * config/sh/sh-protos.h: Likewise.
3050         * config/sh/sh.c: Likewise.
3051         * config/sh/sh.h: Likewise.
3052         * config/sh/sh.md: Likewise.
3053
3054 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
3055
3056         * ChangeLog.3: Fix comment typos.
3057         * ChangeLog.6: Likewise.
3058         * config/d30v/d30v.c: Likewise.
3059         * config/h8300/h8300.md: Likewise.
3060         * config/m32r/m32r.md: Likewise.
3061         * config/mips/mips.c: Likewise.
3062         * config/mips/mips.md: Likewise.
3063         * config/ns32k/NOTES: Likewise.
3064
3065 2003-06-17  Ranjit Mathew  <rmathew@hotmail.com>
3066             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3067
3068         * doc/sourcebuild.texi (libgcj Tests): Simplify instructions on how
3069         to run Java runtime tests separately.
3070
3071 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
3072
3073         * config/h8300/h8300-protos.h: Update a comment.
3074
3075 2003-06-17  J"orn Rennecke <joern.rennecke@superh.com>
3076
3077         * sh.h (ROUND_TYPE_ALIGN, LOCAL_ALIGNMENT): Complex modes
3078         are aligned like integral modes.
3079         (SH5_WOULD_BE_PARTIAL_NREGS): Also test for CDImode and DCmode.
3080
3081         * sh.h (EXTRA_CONSTRAINT_Csy): Allow PIC_DIRECT_ADDR_P.
3082         (LEGITIMATE_PIC_OPERAND_P): Allow LABEL_REF.
3083         * sh.md (*pt): Remove.
3084
3085         * sh.h (REG_ALLOC_ORDER): Avoid squandering call-saved registers.
3086
3087         * sh.md (return_media_rte): New pattern.
3088         (return_media): Use it.
3089
3090 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
3091
3092         * doc/contrib.texi: Replace Hitachi with Renesas.
3093         * doc/install.texi: Likewise.
3094         * doc/invoke.texi: Likewise.
3095
3096 2003-06-17  J"orn Rennecke <joern.rennecke@superh.com>
3097
3098         * sh.h (CONST_OK_FOR_J16): Fix HOST_BITS_PER_WIDE_INT >= 64
3099         behaviour.
3100
3101 2003-06-17  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
3102
3103         * doc/tm.texi (MD_FALLBACK_FRAME_STATE_FOR): Mention MAKE_THROW_FRAME.
3104
3105         * config/rs6000/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Partly revert
3106         2003-01-23 patch. Corrected to handle kernels with changed ucontext.
3107
3108         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Error on invalid
3109         -msdata=eabi usages.
3110
3111         * gcc/config/rs6000/sysv4.h (USE_LIBC_1): Delete all uses.
3112
3113 2003-06-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3114
3115         * alloc-pool.c: Don't check HAVE_LONG_DOUBLE.
3116         * fixinc/gnu-regex.c: Don't define `volatile'.
3117         * ggc-page.c: Don't check HAVE_LONG_DOUBLE.
3118         * ggc-simple.c: Likewise.
3119         * system.h: Don't define `volatile'.
3120
3121         * aclocal.m4 (gcc_AC_C_VOLATILE, gcc_AC_C_LONG_DOUBLE): Delete.
3122         * configure.in (gcc_AC_C_VOLATILE, gcc_AC_C_LONG_DOUBLE): Don't
3123         call these macros.
3124         * config.in, configure: Regenerated.
3125
3126 2003-06-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3127
3128         * config/ia64/ia64.c (ia64_expand_builtin, case IA64_BUILTIN_BSP):
3129         Handle POINTERS_EXTEND_UNSIGNED.
3130
3131 2003-06-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3132
3133         * config/mips/mips.c (TARGET_ASM_UNALIGNED_DI_OP) [TARGET_IRIX5 &&
3134         !TARGET_IRIX6]: Define as NULL.
3135
3136 2003-06-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
3137
3138         * config/sparc/sparc.c (sparc_va_arg): Don't align 16-byte+ structures.
3139
3140 2003-06-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
3141
3142         * dbxout.c (dbxout_source_line_counter): New global variable.
3143         Mark it with GTY(()).
3144         (dbxout_source_line): Increment dbxout_source_line_counter
3145         and pass it to ASM_OUTPUT_SOURCE_LINE.
3146         * sdbout.c (sdbout_source_line_counter): New global variable.
3147         Mark it with GTY(()).
3148         (unnamed_struct_number): Mark it with GTY(()).
3149         (sdbout_source_line): Increment sdbout_source_line_counter
3150         and pass it to ASM_OUTPUT_SOURCE_LINE.
3151         * xcoffout.c (ASM_OUTPUT_SOURCE_LINE): Add third parameter
3152         (xcoffout_source_line): Pass 0 as third argument to
3153         ASM_OUTPUT_SOURCE_LINE.
3154         (xcoffout_begin_prologue): Likewise.
3155         * config/dbxout.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3156         Use it instead of 'sym_lineno' but without incrementing it.
3157         * config/dbxelf.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3158         * config/lynx.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3159         * config/ptx4.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3160         * config/alpha/alpha.c (alpha_start_function): Pass 0 as third
3161         argument to ASM_OUTPUT_SOURCE_LINE.
3162         * config/alpha/alpha.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3163         * config/arm/aout.h: Remove useless comment.
3164         * config/avr/avr.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3165         * config/i960/i960.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3166         * config/m32r/m32r.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3167         Use it instead of 'sym_lineno' but without incrementing it.
3168         * config/m68k/hp320.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3169         * config/mcore/mcore-pe.h (ASM_OUTPUT_SOURCE_LINE): Add third
3170         parameter. Use it instead of 'sym_lineno' but without incrementing it.
3171         * config/mips/mips.c (mips_output_function_prologue): Pass 0 as third
3172         argument to ASM_OUTPUT_SOURCE_LINE.
3173         * config/mips/mips.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3174         * config/mmix/mmix.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3175         * config/pa/som.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
3176         Use it instead of 'sym_lineno' but without incrementing it.
3177         * config/rs6000/linux64.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3178         * config/sh/elf.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3179         * config/sparc/aout.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3180         * config/sparc/pbd.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
3181         * doc/tm.texi (ASM_OUTPUT_SOURCE_LINE): Document third parameter.
3182
3183 2003-06-17  Richard Sandiford  <rsandifo@redhat.com>
3184
3185         * config/mips/mips-protos.h (mips_expand_block_move): Declare.
3186         (expand_block_move, output_block_move): Remove.
3187         * config/mips/mips.h (enum block_move_type): Remove.
3188         * config/mips/mips.c (block_move_call, output_block_move): Remove.
3189         (mips_block_move_straight, mips_adjust_block_mem): New function.
3190         (mips_block_move_loop): Renamed and reworked from block_move_loop.
3191         (mips_expand_block_move): Likewise expand_block_move.  Return false
3192         to fall back on the target-independent code.
3193         * config/mips/mips.md (movstrsi): Use mips_expand_block_move.
3194         (movstrsi_internal*): Remove.
3195
3196 2003-06-16  Zack Weinberg  <zack@codesourcery.com>
3197
3198         * cpplib.h, cpphash.h, cppcharset.c, cpperror.c, cppexp.c
3199         * cppfiles.c, cpphash.c, cppinit.c, cpplex.c, cpplib.c
3200         * cppmacro.c, cpppch.c, cpptrad.c, cppspec.c: Convert to
3201         ISO C: new-style function declarations, no need for PARAMS,
3202         no special punctuation on indirect function calls, use string
3203         constant concatenation where convenient.
3204
3205 2003-06-17  Andreas Jaeger  <aj@suse.de>
3206
3207         * rtl.h: Remove declarations from coverage.h.
3208         * toplev.c: Include coverage.h.
3209         * Makefile.in (toplev.o): Depend on coverage.h.
3210
3211         * toplev.h: Remove extra declaration of print_time.
3212
3213         * gengtype.c (close_output_files): Remove duplicated declaration.
3214
3215 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3216
3217         * config/sparc/sysv4.h: Remove target-independent comment;
3218         replace "GNU CC" with "GCC".
3219         * config/vxworks.h: Replace "GNU compiler" with "GCC".
3220         * config/sparc/aout.h, config/sparc/biarch64.h, config/sparc/elf.h,
3221         config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
3222         config/sparc/lite.h, config/sparc/litecoff.h, config/sparc/liteelf.h,
3223         config/sparc/netbsd-elf.h, config/sparc/openbsd.h,
3224         config/sparc/rtemself.h, config/sparc/sol2-64.h,
3225         config/sparc/sol2-bi.h, config/sparc/sol2-gas-bi.h,
3226         config/sparc/sol2-gld-bi.h, config/sparc/sol2-gld.h,
3227         config/sparc/sol2.h, config/sparc/sp64-aout.h,
3228         config/sparc/sp64-elf.h, config/sparc/sp86x-elf.h,
3229         config/sparc/sparc-protos.h, config/sparc/sysv4-only.h: Replace
3230         "GNU compiler", "GNU CC" with "GCC".
3231         * config/sparc/cypress.md, config/sparc/hypersparc.md,
3232         config/sparc/sparc-modes.def, config/sparc/sparc.c,
3233         config/sparc/sparc.md, config/sparc/sparclet.md,
3234         config/sparc/supersparc.md, config/sparc/ultra1_2.md,
3235         config/sparc/ultra3.md: Replace "GNU CC", "GNU Compiler", and
3236         "GNU C Compiler" with "GCC".
3237         * config/ip2k/ip2k.h: Replace "GNU CC" and "GNU compiler" with "GCC".
3238
3239 2003-06-16  Aldy Hernandez  <aldyh@redhat.com>
3240
3241         * simplify-rtx.c (simplify_subreg): Do not over-extend vector
3242         constants.
3243
3244         * testsuite/gcc.c-torture/execute/simd-4.c: New.
3245
3246 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3247
3248         * config/ip2k/ip2k.h: Remove target-independent comments.
3249
3250         * config.gcc: Explicitly mention elfos.h in ip2k entry.
3251         * config/ip2k/ip2k.h: Don't #include it here.
3252
3253 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3254
3255         * bitmap.c, builtins.c, c-incpath.c, cgraph.c, config/frv/frv.c,
3256         config/mips/mips.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c,
3257         dwarf2out.c, dwarfout.c, except.c, expr.c, expr.h, fold-const.c,
3258         function.c, gcc.c, genoutput.c, gensupport.c, global.c,
3259         haifa-sched.c, hashtable.c, ifcvt.c, integrate.c, local-alloc.c,
3260         loop.c, mips-tdump.c, mips-tfile.c, mkdeps.c, protoize.c,
3261         read-rtl.c, recog.h, reload1.c, sbitmap.c, ssa-dce.c,
3262         stringpool.c, tlink.c, tree.c, varasm.c, varray.c: Don't use
3263         the PTR macro.
3264
3265         * gengtype.c: Don't use UNION_INIT_ZERO.
3266         * system.h (UNION_INIT_ZERO): Delete.
3267
3268 2003-06-16  Richard Henderson  <rth@redhat.com>
3269
3270         * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE instead of
3271         GET_MODE_UNIT_SIZE when simplifying constant vectors.
3272
3273 2003-06-16  Andreas Jaeger  <aj@suse.de>
3274
3275         * timevar.c (get_run_time): Remove function provided also by
3276         libiberty.
3277         * timevar.h: Remove get_run_time declaration.
3278
3279 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
3280
3281         * config/m68hc11/m68hc11.c (m68hc11_rtx_costs): Remove
3282         unreachable code.
3283
3284 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3285
3286         * builtin-attrs.def, builtin-attrs.def, builtins.c, cpplex.c,
3287         cpplib.c, gencheck.c, gengenrtl.c, machmode.def, protoize.c: Don't
3288         use macros from "symcat.h", instead rely on ISO C.
3289
3290         * system.h: Don't include "symcat.h".
3291         * configure.in (AC_C_STRINGIZE): Delete.
3292         * config.in, configure: Regenerate.
3293
3294 2003-06-16  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3295
3296         * Makefile.in (install-mkheaders): Use INSTALL_SCRIPT for scripts.
3297
3298         * tree.h (STMT_CHECK): New macro.
3299         Also upper-case argument names on all checking macros and
3300         fix some whitespace problems; assume CODE argument does not
3301         have side-effects.
3302
3303 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3304
3305         * scan.h: Convert to ISO C.
3306         * system.h: Likewise.
3307
3308         * c-format.c (dynamic_format_types): New pointer for dynamic data.
3309         (find_length_info_modifier_index, init_dynamic_asm_fprintf_info):
3310         New functions split out of...
3311         (handle_format_attribute): ...here.
3312
3313 2003-06-16  J"orn Rennecke <joern.rennecke@superh.com>
3314
3315         * sh.h (REG_CLASS_FROM_LETTER): Change to:
3316         (REG_CLASS_FROM_CONSTRAINT).
3317         (CONST_OK_FOR_I): Rename to:
3318         (CONST_OK_FOR_I08).  Changed all users.
3319         (CONST_OK_FOR_J): Rename to:
3320         (CONST_OK_FOR_I16).  Changed all users.
3321         (CONST_OK_FOR_K): Rename to:
3322         (CONST_OK_FOR_P27).  Changed all users.
3323         (CONST_OK_FOR_L): Rename to:
3324         (CONST_OK_FOR_K08).  Changed all users.
3325         (CONST_OK_FOR_O): Rename to:
3326         (CONST_OK_FOR_I06).  Changed all users.
3327         (CONST_OK_FOR_P): Rename to:
3328         (CONST_OK_FOR_I10).  Changed all users.
3329         (CONSTRAINT_LEN, CONST_OK_FOR_I, CONST_OK_FOR_J16): Define.
3330         (CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_P): Likewise.
3331         (EXTRA_CONSTRAINT_A, EXTRA_CONSTRAINT_Bsc): Likewise.
3332         (EXTRA_CONSTRAINT_B, PIC_OFFSET_P, PIC_DIRECT_ADDR_P): Likewise.
3333         (EXTRA_CONSTRAINT_Cpg, EXTRA_CONSTRAINT_C): Likewise.
3334         (EXTRA_MEMORY_CONSTRAINT,(EXTRA_CONSTRAINT_Sr0): Likewise.
3335         (CONST_OK_FOR_LETTER_P): Replace with
3336         (CONST_OK_FOR_CONSTRAINT_P).
3337         (EXTRA_CONSTRAINT_S): Rename to:
3338         (EXTRA_CONSTRAINT_C16).  Changed all users.
3339         (MOVI_SHORI_BASE_OPERAND_P): Don't allow direct addresses.
3340         (EXTRA_CONSTRAINT_T): Rename to:
3341         (EXTRA_CONSTRAINT_Csy).  Changed all users.
3342         (EXTRA_CONSTRAINT_Z): Remove.
3343         (EXTRA_CONSTRAINT): Replace with:
3344         (EXTRA_CONSTRAINT_STR).
3345         (EXTRA_CONSTRAINT_U): Rename to:
3346          (EXTRA_CONSTRAINT_Z).  Changed all users.
3347         * sh.c (and_operand): Use CONST_OK_FOR_J16.
3348         * sh.md (cmpeqsi_t-1, cmpeqsi_t, adddi3_media): Use new constraints.
3349         (addsi3_media, addsi3_compact, andsi3_compact, anddi3): Likewise.
3350         (iorsi3, iordi3, xorsi3, xordi3, ashlsi3_std, ashlhi3_k): Likewise.
3351         (lshrsi3_k, movsi_i, movsi_ie, movsi_i_lowpart, movsi_media): Likewise.
3352         (movsi_media_nofpu, movqi_media, movhi_i, movhi_media): Likewise.
3353         (*movdi_i, movdi_media, movdi_media_nofpu, shori_media): Likewise.
3354         (movdf_media, movdf_media_nofpu, movv2sf_i, movv4sf_i): Likewise.
3355         (movsf_media, movsf_media_nofpu, movsi_y, beq_media): Likewise.
3356         (beq_media_i, bne_media, pt, ptb, movv8qi_i, movv2hi_i): Likewise.
3357         (movv4hi_i, movv2si_i, negcmpeqv8qi, negcmpeqv2si): Likewise.
3358         (negcmpeqv4hi, negcmpgtuv8qi, negcmpgtv2si, negcmpgtv4hi): Likewise.
3359         (mcmv, mcnvs_lw, mcnvs_wb, mcnvs_wub, mextr_rl, mextr_lr): Likewise.
3360         (mextr1, mextr2, mextr3, mextr4, mextr5, mextr6, mextr7): Likewise.
3361         (mperm_w, mperm_w_little, mperm_w_big, msad_ubq_i): Likewise.
3362         (mshards_q, mshfhi_b, mshflo_b, mshf4_b, mshf0_b, mshfhi_l): Likewise.
3363         (mshflo_l, mshf4_l, mshf0_l, mshfhi_w, mshflo_w, mshf4_w): Likewise.
3364         (mshf0_w, mshflo_w_x, mshfhi_l_di, mshfhi_l_di_rev): Likewise.
3365         (mshflo_l_di_rev, mshflo_l_di_x, concat_v2sf): Likewise.
3366         (mshflo_l_di_x_rev, subv2si3, subv4hi3, sssubv2si3): Likewise.
3367         (sssubv4hi3): Likewise.
3368         (movsf_i): Change I[08]/r to G/r.
3369         (movsf_ie): Change f/{G,H}/c/X to f/{G,H}/c/Bsc.
3370
3371         * sh.c (sh_output_mi_thunk): Use CONST_OK_FOR_ADD.
3372
3373 2003-06-16  Vladimir Makarov  <vmakarov@redhat.com>
3374
3375         * config/i386/i386.c (ix86_memory_move_cost): Fix typo.
3376
3377 2003-06-16  Andreas Jaeger  <aj@suse.de>
3378
3379         * basic-block.h: Remove duplicate prototype of
3380         note_prediction_to_br_prob.
3381
3382         * tree.h: Remove duplicate prototype of strip_float_extensions.
3383
3384 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3385
3386         * config/c4x/c4x.c: Don't include "c-tree.h".
3387         * config/pa/pa.c: Likewise.
3388         * langhooks.c: Likewise.
3389         * tree.h (poplevel): Declare.
3390
3391 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
3392
3393         * config/h8300/h8300.c (const_costs): Move this to ...
3394         (h8300_rtx_costs): ... here.
3395
3396 2003-06-16  Roger Sayle  <roger@eyesopen.com>
3397
3398         * optabs.h (enum optab_index): Add new OTI_tan and OTI_atan.
3399         (tan_optab, atan_optab): Define corresponding macros.
3400         * optabs.c (init_optabs): Initialize tan_optab and atan_optab.
3401         * genopinit.c (optabs): Implement tan_optab and atan_optab
3402         using tan?f2 and atan?f2 patterns.
3403         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_TAN{,F,L}
3404         using tan_optab, and BUILT_IN_ATAN{,F,L} using atan_optab.
3405         Change the default value of errno_set to false.
3406         (expand_builtin): Expand BUILT_IN_TAN{,F,L} and BUILT_IN_ATAN{,F,L}
3407         using expand_builtin_mathfn.
3408
3409         * config/i386/i386.md (atansf2, atandf2, atanxf2, atantf2): New
3410         expander patterns implemented using existing atan2?f3 patterns.
3411
3412 2003-06-16  Roger Sayle  <roger@eyesopen.com>
3413
3414         * expr.c (expand_expr <PLUS_EXPR>): If operand_equal_p considers
3415         both operands of the addition equal, reuse the expanded RTL.
3416         (expand_expr <MULT_EXPR>): Likewise for multiplication.
3417
3418 2003-06-16  Roger Sayle  <roger@eyesopen.com>
3419             Jeff Law  <law@redhat.com>
3420
3421         * fold-const.c (operand_equal_p): Consider two calls to "const"
3422         functions with identical non-volatile arguments to be equal.
3423         Consider the FUNCTION_DECL for the "__builtin_foo" form of a
3424         built-in function to be equal to the "foo" form.
3425
3426 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3427
3428         * config/rs6000/sysv4le.h: Remove target-independent comment.
3429         Replace "GNU compiler" with "GCC" in comment.
3430
3431 2003-06-16  Andreas Jaeger  <aj@suse.de>
3432
3433         * tracer.c: Remove duplicate declaration.
3434
3435         * toplev.c: Remove extra declaration of decode_d_option.
3436
3437         * ssa.c: Remove duplicate declaration.
3438
3439         * sreal.c: Remove extra declaration of dump_sreal.
3440
3441         * reload1.c: Remove duplicate declarations.
3442
3443         * integrate.c: Remove extra declaration of
3444         set_decl_abstract_flags.
3445
3446         * flow.c: Remove extra declaration of dump_flow_info.
3447
3448         * alias.c: Remove extra declaration of get_addr.
3449
3450 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
3451
3452         * config/rtems.h, config/sol2.h, config/svr4.h, config/usegas.h,
3453         config/vxworks.h: GNU CC -> GCC.
3454
3455         * convert.c, dwarf2out.c, dwarfout.c, emit-rtl.c, function.c,
3456         lists.c, print-rtl.c, print-tree.c, read-rtl.c, rtl-error.c,
3457         stmt.c, toplev.c, integrate.h, loop.h, machmode.h, rtl.h,
3458         ssa.h, tree.def: Replace overly specific references to "GNU C"
3459         and "GNU C Compiler" with references to "GCC".
3460
3461 2003-06-16  J"orn Rennecke <joern.rennecke@superh.com>
3462
3463         * sh.c (prepare_move_operand): Check if operand 0 is an invalid
3464         memory reference.  Fix test that checks if operand 1 is using r0.
3465         * sh.md (movhi_i): Don't allow st.w r0,@(rX,rY) .
3466
3467         * defaults.h (REG_CLASS_FROM_CONSTRAINT): Only define if not already
3468         defined.
3469
3470 2003-06-15  Nathan Sidwell  <nathan@codesourcery.com>
3471
3472         * function.h (struct emit_status): Remove x_last_linenum,
3473         x_last_filename. Add x_last_location.
3474         * rtl.h: #include "input.h".
3475         (NOTE_DATA): New.
3476         * cfglayout.c (duplicate_insn_chain): Use emit_line_note for line
3477         number notes.
3478         * emit-rtl.c (last_linenum, last_filename): Remove.
3479         (last_location): New.
3480         (emit_line_note_after): LINE must always be >= 0.
3481         (emit_line_note): Likewise. Check not duplicate here...
3482         (emit_note): ... rather than here.
3483         (emit_line_note_force, force_next_line_note, init_emit): Adjust.
3484         * integrate.c (expand_inline_function): Use emit_line_note for
3485         line number notes.
3486         (copy_insn_list): Likewise.
3487         * unroll.c (copy_loop_body): Likewise.
3488         * Makefile.in (RTL_H): Add input.h.
3489
3490 2003-06-16  Richard Sandiford  <rsandifo@redhat.com>
3491
3492         * optabs.c (emit_libcall_block): Don't hoist insns past a label.
3493
3494 2003-06-16  Richard Henderson  <rth@redhat.com>
3495
3496         * config/alpha/alpha-protos.h, config/alpha/elf.h,
3497         config/alpha/osf.h, config/alpha/unicosmk.h, config/alpha/vms.h,
3498         config/alpha/vms-cc.c, config/alpha/vms-ld.c: Update to ISO C.
3499         * config/alpha/alpha.c: Likewise.  Move targetm init to end of file.
3500         Remove unneeded static function decls.
3501
3502 2003-06-16  Neil Booth  <neil@daikokuya.co.uk>
3503
3504         * c-opts.c (c_common_handle_option): s/on/value/.
3505         (OPT_fabi_version_, OPT_ftabstop_, OPT_ftemplate_depth_): Use value
3506         directly rather than converting the argument.
3507         * c.opt: Update docs.  Use UInteger where appropriate.
3508         * common.opt: Use UInteger where appropriate.
3509         * opts.c (integral_argument): New.
3510         (handle_argument): Handle integral arguments, and optional
3511         joined arguments.
3512         (common_handle_option): Update.
3513         * opts.h (CL_MISSING_OK, CL_UINTEGER): New.
3514         * opts.sh: Handle JoinedOrMissing and UInteger flags.
3515
3516 2003-06-16  Neil Booth  <neil@daikokuya.co.uk>
3517
3518         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Remove
3519         unnecessary extern declaration.
3520
3521 2003-06-15  Nathanael Nerode  <neroden@gcc.gnu.org>
3522
3523         * config/gofast.h, config/interix.h, config/interix3.h,
3524         config/libgloss.h, config/linux-aout.h, config/linux.h,
3525         config/lynx-ng.h, config/lynx.h: GNU CC -> GCC.
3526         * config/kaos.h: "GNU compiler" -> GCC.
3527         * config/linux-aout.h, config/lynx.h: Clarify comment describing file.
3528
3529         * config/ip2k/crt0.S, config/ip2k/ip2k-protos.h,
3530         config/ip2k/ip2k.c, config/ip2k/ip2k.md, config/ip2k/libgcc.S:
3531         GNU CC -> GCC.
3532
3533         * config/svr3.h: Remove #if 0 code, misleading comments.
3534         GNU CC -> GCC.
3535
3536 2003-06-15  Zack Weinberg  <zack@codesourcery.com>
3537
3538         * vmsdbgout.c (vmsdbgout_finish): Rename parameter to
3539         main_input_filename to avoid conflict with input_filename macro.
3540
3541 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3542
3543         * config/mips/mips.h (asm_file_name, g_switch_set,
3544         g_switch_value): Remove.
3545         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Remove
3546         unnecessary extern declarations.
3547
3548 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3549
3550         * config/frv/frv.h: Remove declaration of g_switch_value.
3551         * config/m32r/m32r.h: Remove declaration of g_switch_value.
3552         * config/m68hc11/m68hc11.c: Remove declaration of asm_file_name.
3553
3554 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3555
3556         * opts.sh: Quote '+' in regex.
3557
3558 2003-06-15  Andrew Pinski <pinskia@physics.uc.edu>
3559
3560         * config/rs6000/t-rs6000: Add dependence of cfglayout.h to rs6000.o.
3561         * config/rs6000/rs6000.c: Include cfglayout.h.
3562         * config/alpha/alpha.c: Likewise.
3563         * config/ia64/ia64.c: Likewise.
3564         * config/sparc/sparc.c: Likewise.
3565         * config/sh/sh.c: Likewise.
3566
3567 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3568
3569         * opts.sh: Quote '+' in regex.
3570
3571 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3572
3573         * c-opts.c (lang_flags): Update for new spelling of flags.
3574         (write_langs): Similarly.
3575         * c.opt: Specify languages.
3576         * opts.h: Remove languages.
3577         * opts.sh: Recognise front-end defined languages.
3578         * doc/sourcebuild.texi: Update.
3579
3580 2003-06-15  Andreas Jaeger  <aj@suse.de>
3581
3582         * alloc-pool.c: Convert to ISO C90 prototypes.
3583         * alloc-pool.h: Likewise.
3584         * alias.c: Likewise.
3585         * attribs.c: Likewise.
3586         * bb-reorder.c: Likewise.
3587         * bitmap.h: Likewise.
3588         * bitmap.c: Likewise.
3589         * builtins.c: Likewise.
3590
3591         * tree.h: Convert prototypes of attribs.c to ISO C90.
3592         * basic-block.h: Convert prototypes of bb-reorder.c to ISO C90.
3593         * rtl.h: Convert prototypes of alias.c and builtins.c to ISO C90.
3594         * expr.h: Convert prototypes of builtins.c to ISO C90.
3595
3596 2003-06-15  Roger Sayle  <roger@eyesopen.com>
3597
3598         * config/i386/i386.md (expsf2, expdf2, expxf2): New patterns to
3599         implement exp, expf and expl built-ins as inline x87 intrinsics.
3600         (UNSPEC_FSCALE, UNSPEC_FRNDINT, UNSPEC_F2XM1): New unspecs to
3601         represent x87's fscale, frndint and f2xm1 insns respectively.
3602         (*fscale_sfxf3, *fscale_dfxf3, *fscale_xf3): New insn patterns
3603         to encode x87's "fscale" instruction followed by a pop.
3604         (*frndintxf2): New insn pattern for "frndint".
3605         (*f2xm1xf2): New insn pattern for "f2xm1".
3606
3607         * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_FRNDINT and
3608         UNSPEC_F2XM1 like UNSPEC_{SIN,COS} and handle UNSPEC_FSCALE like
3609         UNSPEC_FPATAN.
3610
3611 2003-06-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3612
3613         * gencheck.c (main): Avoid generating duplicate macros.
3614
3615         * Makefile.in (stagefeedback-start): Use $(SUBDIRS) instead of
3616         knowing names of language subdirectories.
3617
3618 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
3619
3620         * c-pch.c (asm_file_name): Remove.
3621         * common.opt: Add more switches.
3622         * flags.h (g_switch_set): Boolify.
3623         * opts.c (g_switch_value, g_switch_set, exit_after_options,
3624         version_flag): Move from toplev.c.
3625         (common_handle_option): Handle more switches from toplev.c.
3626         * toplev.c (display_help, display_target_options, decode_d_option,
3627         print_version): Make non-static, remove prototypes.
3628         (aux_base_name, asm_file_name, aux_info_file_name): Constify.
3629         (version_flag, g_switch_value, g_switch_set, exit_after_options):
3630         Remove.
3631         (independent_decode_option): Move some handlers to opts.c.
3632         * toplev.h (aux_info_file_name, aux_base_name, asm_file_name,
3633         exit_after_options, version_flag, display_help, display_target_options,
3634         print_version, decode_d_option): New.
3635
3636 2003-06-15  Kazu Hirata  <kazu@cs.umass.edu>
3637
3638         * config/alpha/alpha.md: Follow spelling conventions.
3639         * config/arm/arm.c: Likewise.
3640         * config/arm/arm.h: Likewise.
3641         * config/arm/arm.md: Likewise.
3642         * config/arm/crtn.asm: Likewise.
3643         * config/m32r/m32r.c: Likewise.
3644         * config/m32r/m32r.md: Likewise.
3645         * config/rs6000/rs6000.c: Likewise.
3646
3647 2003-06-15  Richard Henderson  <rth@redhat.com>
3648
3649         * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Call
3650         insn_locators_initialize.
3651         * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
3652         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
3653         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
3654         * config/sh/sh.c (sh_output_mi_thunk): Do it later.
3655
3656 2003-06-15  Kazu Hirata  <kazu@cs.umass.edu>
3657
3658         * builtins.c (expand_builtin_expect_jump): Remove redundant
3659         tests that are also in any_condjump_p().
3660
3661 2003-06-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3662
3663         * libgcc2.c: Delete sysV68 L_trampoline section.
3664         * config/m68k/mot3300-crt0.S: Delete file.
3665         * config/m68k/mot3300Mcrt0.S: Likewise.
3666
3667 2003-06-15  Nathanael Nerode  <neroden@gcc.gnu.org>
3668
3669         * config/aoutos.h: Remove.
3670         * config.gcc: Remove reference to aoutos.h.
3671         * config/m68k/m68k-aout.h: Remove reference to aoutos.h.
3672
3673 2003-06-14  Kazu Hirata  <kazu@cs.umass.edu>
3674
3675         * doc/install.texi: Follow spelling conventions.
3676         * doc/tm.texi: Likewise.
3677         * config/fp-bit.c: Likewise.
3678         * config/arm/arm.c: Likewise.
3679         * config/frv/frv.c: Likewise.
3680         * config/ns32k/NOTES: Likewise.
3681         * config/ns32k/STATUS: Likewise.
3682
3683 2003-06-14  Roger Sayle  <roger@eyesopen.com>
3684             Zack Weinberg  <zack@codesourcery.com>
3685
3686         * rtl.h (STORE_FLAG_VALUE): Remove default definition from here.
3687         * defaults.h (STORE_FLAG_VALUE): Move default definition to here.
3688         * doc/tm.texi (STORE_FLAG_VALUE): Document the default value.
3689
3690         * config/alpha/alpha.h (STORE_FLAG_VALUE): Remove definition.
3691         * config/arc/arc.h (STORE_FLAG_VALUE): Likewise.
3692         * config/arm/arm.h (STORE_FLAG_VALUE): Likewise.
3693         * config/cris/cris.h (STORE_FLAG_VALUE): Likewise.
3694         * config/i370/i370.h (STORE_FLAG_VALUE): Likewise.
3695         * config/i386/i386.h (STORE_FLAG_VALUE): Likewise.
3696         * config/i960/i960.h (STORE_FLAG_VALUE): Likewise.
3697         * config/ia64/ia64.h (STORE_FLAG_VALUE): Likewise.
3698         * config/ip2k/ip2k.h (STORE_FLAG_VALUE): Likewise.
3699         * config/m32r/m32r.h (STORE_FLAG_VALUE): Likewise.
3700         * config/mcore/mcore.h (STORE_FLAG_VALUE): Likewise.
3701         * config/mips/mips.h (STORE_FLAG_VALUE): Likewise.
3702         * config/mmix/mmix.h (STORE_FLAG_VALUE): Likewise.
3703         * config/ns32k/ns32k.h (STORE_FLAG_VALUE): Likewise.
3704         * config/pa/pa.h (STORE_FLAG_VALUE): Likewise.
3705         * config/pdp11/pdp11.h (STORE_FLAG_VALUE): Likewise.
3706         * config/sh/sh.h (STORE_FLAG_VALUE): Likewise.
3707         * config/sparc/sparc.h (STORE_FLAG_VALUE): Likewise.
3708         * config/v850/v850.h (STORE_FLAG_VALUE): Likewise.
3709         * config/xtensa/xtensa.h (STORE_FLAG_VALUE): Likewise.
3710
3711 2003-06-14  Nathan Sidwell  <nathan@codesourcery.com>
3712
3713         * opts.sh (POSIXLY_CORRECT): Unset it.
3714
3715         * tree.h (init_function_start): Remove filename and line paramters.
3716         * function.c (init_function_start): Remove filename and line
3717         parameters. Use DECL_SOURCE_LOCATION.
3718         * c-decl.c (store_parm_decls): Adjust init_function_start call.
3719         (c_expand_body_1): Likewise.
3720         * coverage.c (create_coverage): Likewise.
3721         * objc/objc-act.c (build_tmp_function_decl): Set line number to
3722         zero.
3723         (hack_method_prototype): Adjust init_function_start call.
3724
3725 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
3726
3727         PR target/3724
3728         * arm/linux-elf.h (PROFILE_HOOK): Define.
3729
3730 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
3731
3732         PR target/11183
3733         * arm.h (CANNOT_CHANGE_MODE_CLASS): Define.
3734
3735 2003-06-14  Roger Sayle  <roger@eyesopen.com>
3736
3737         * opts.sh: Work around a mysterious feature in cygwin's gawk
3738         where specifying the input files explicitly has a different
3739         behavior to piping them via stdin.
3740
3741 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
3742
3743         * doc/sourcebuild.texi: Update.
3744
3745 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
3746
3747         PR target/11183
3748         * arm.c (output_move_double): Pass SImode to adjust_address.
3749
3750 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
3751
3752         * Makefile.in: Update to use common.opt and lang_opt_files.
3753         (c-options.c, c-options.h): Remove.
3754         (options.c, options.h): Add.
3755         * c-opts.c: Include options.h not c-options.h.
3756         * common.opt: New file.
3757         * configure, configure.in: Add lang_opt_files.
3758         * opts.c: Include flags.h and diagnostic.h.
3759         (common_handle_option): New.
3760         (handle_option): Update to recognize common options and all
3761         language-dependent options.
3762         * opts.h (CL_F77, CL_JAVA, CL_ADA, CL_COMMON, CL_TREELANG): New.
3763         (struct cl_option): Make flags of type int.
3764         * opts.h: Flag option with front ends to which it applies.
3765         Handle duplicate options.
3766         * toplev.c (filename): Remove.
3767         (independent_decode_option): Don't handle filenames and -quiet.
3768         (process_options, do_compile): Update.
3769
3770 2003-06-14  Nick Clifton  <nickc@redhat.com>
3771
3772         * doc/install.texi (Specific): Add description of different
3773         ARM supported file format targets.
3774
3775 Sat Jun 14 11:12:04 CEST 2003  Jan Hubicka  <jh@suse.cz>
3776
3777         * reorg.c (emit_delay_sequence, dbr_schedule): Clear insn locators
3778         inside delay slots.
3779
3780 2003-06-13  Matt Kraai  <kraai@alumni.cmu.edu>
3781
3782         * unwind-c.c: Define NO_SIZE_OF_ENCODED_VALUE.
3783         * unwind-pe.h (size_of_encoded_value): Do not define if
3784         NO_SIZE_OF_ENCODED_VALUE is defined.
3785
3786 2003-06-13  Roger Sayle  <roger@eyesopen.com>
3787
3788         * expr.c (expand_expr <COMPLEX_CST>): Handle the case of
3789         expanding a complex constant into a CONCAT target.
3790
3791 2003-06-13  Zack Weinberg  <zack@codesourcery.com>
3792
3793         * config/svr3.h (ASM_FILE_START): Don't use ASM_FILE_START_1.
3794         (ASM_FILE_START_1): Delete.
3795         * config/i386/att.h, config/i386/sco5.h,
3796         config/i386/sysv3.h
3797         (ASM_FILE_START_1): Delete.
3798
3799 2003-06-13  Kelley Cook  <kelleycook@wideopenwest.com>
3800
3801         * config/i386/bsd.h: Remove ASM_FILE_START.
3802         * config/i386/djgpp.h: Likewise.
3803         * config/i386/gas.h (ASM_FILE_START): Output .file before .intel_syntax.
3804
3805         * config/i386/djgpp.h: Move included unix.h, bsd.h, gas.h to ...
3806         * config.gcc (i[34567]86-pc-msdosdjgpp): ... here.
3807
3808 2003-06-13  Vladimir Makarov  <vmakarov@redhat.com>
3809
3810         PR bootstrap/10835
3811         * haifa-sched.c (max_lookahead_tries,
3812         cached_first_cycle_multipass_dfa_lookahead,
3813         cached_issue_rate): New variables.
3814         (max_issue): Check the number of tries.
3815         (choose_ready): Calculate max_lookahead_tries.
3816         (sched_init): Check cached_issue_rate.
3817
3818 2003-06-13  Richard Henderson  <rth@redhat.com>
3819
3820         * cfgbuild.c (make_edges): Set ABNORMAL with SIBCALL.
3821         * cfgrtl.c (purge_dead_edges): Expect it too.
3822
3823 2003-06-13  Jim Wilson  <wilson@tuliptree.org>
3824             Eric Botcazou  <ebotcazou@libertysurf.fr>
3825
3826         PR bootstrap/10983
3827         * combine.c (make_extraction): Use gen_lowpart_for_combine
3828         when extracting from a REG and not in the destination of a SET.
3829
3830 2003-06-13  Doug Evans  <dje@sebabeach.org>
3831
3832         * tsystem.h (abort): Declare in inhibit_libc case to remove build
3833         warnings for addvsi3, et.al.
3834
3835 2003-06-13  Aldy Hernandez  <aldyh@redhat.com>
3836
3837         * c-common.c (handle_mode_attribute): Use VECTOR_MODE_P macro.
3838
3839         * simplify-rtx.c (simplify_subreg): Same.
3840
3841         * emit-rtl.c (gen_lowpart_common): Same.
3842
3843 2003-06-13  Kazu Hirata  <kazu@cs.umass.edu>
3844
3845         * builtins.c: Fix comment typos.
3846         * fold-const.c: Likewise.
3847
3848 2003-06-13  Doug Evans  <dje@sebabeach.org>
3849             Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
3850
3851         * config/m32r/m32r-protos.h (m32r_pass_by_reference): Declare.
3852         * config/m32r/m32r.c (m32r_pass_by_reference): New fn.
3853         (m32r_va_arg): Use it.
3854         * config/m32r/m32r.h (FUNCTION_ARG_PASS_BY_REFERENCE): Ditto.
3855         (RETURN_IN_MEMORY): Ditto.
3856
3857 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
3858
3859         * c-typeck.c: Remove #if 0 clauses.
3860
3861         PR other/1494
3862         * config/alpha/openbsd.h, config/i386/openbsd.h,
3863         config/m68k/openbsd.h, config/sparc/openbsd.h: Remove
3864         residual reference to EGCS.
3865
3866 2003-06-13  Richard Earnshaw  <rearnsha@arm.com>
3867
3868         * arm.c (output_call_mem): If the address references the link-register
3869         use an instruction sequence that avoids early-clobbering IP.
3870         (eliminate_lr2ip): Delete.
3871
3872 2003-06-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3873
3874         * c-format.c (format_types_orig): Disallow '*' width/precision in
3875         asm_fprintf format checks.
3876
3877 2003-06-13  Ulrich Weigand  <uweigand@de.ibm.com>
3878
3879         * config/s390/s390.c (s390_va_arg): Fix alignment when retrieving
3880         non-integral types from integer register save area slots.
3881
3882 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
3883
3884         * config/i386/svr3dbx.h: GNU CC -> GCC; Intel 385 -> Intel 386.
3885
3886 2003-06-13  Florian Weimer  <fw@deneb.enyo.de>
3887
3888         * doc/invoke.texi (SPARC Options): Document ``-mimpure-text''.
3889
3890 2003-06-13  Kaz Kojima  <kkojima@gcc.gnu.org>
3891
3892         * config/sh/linux.h (TARGET_ASM_FILE_END): Set TARGET_ASM_FILE_END
3893         to file_end_indicate_exec_stack.
3894
3895 2003-06-12  Richard Henderson  <rth@redhat.com>
3896
3897         PR target/11089
3898         * config/i386/i386.md (sse_movaps): Use an expander to force
3899         one operand to be a register.
3900         (sse_movups): Likewise.
3901
3902 2003-06-13  Doug Evans  <dje@sebabeach.org>
3903
3904         Remove some build warnings.
3905         * config/m32r/initfini.c (__CTOR_LIST__,__DTOR_LIST__): Attribute used.
3906         (__do_global_ctors,__do_global_dtors): Ditto.
3907
3908 2003-06-12  Richard Henderson  <rth@redhat.com>
3909
3910         PR middle-end/10557
3911         * rtlanal.c (subreg_offset_representable_p): Relax subreg check.
3912
3913 2003-06-13  Kazu Hirata  <kazu@cs.umass.edu>
3914
3915         * config/m32r/m32r.md: Fix a comment typo.
3916
3917 2003-06-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
3918             Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
3919
3920         PR target/10142
3921         * config/sparc/sparc.c (function_arg_record_value_parms): Add
3922         new 'stack' field.
3923         (function_arg_record_value_1): Set 'stack' to 1 if we run out of
3924         integer slots for an integer field.
3925         (function_arg_record_value_3): Shift vector index.
3926         (function_arg_record_value_2): Likewise.
3927         (function_arg_record_value): Initialize 'stack' to 0.
3928         Set 'stack' to 1 if we run out of integer slots for an integer field.
3929         Generate (parallel [(expr_list (nil) ...) ...]) if 'stack' is set to 1.
3930
3931 2003-06-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
3932
3933         PR optimization/10955
3934         * unroll.c (unroll_loop): Fix off-by-one bug.
3935
3936 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
3937
3938         * config/rs6000/rs6000.c (function_arg): Remove typo.
3939
3940 2003-06-12  Richard Henderson  <rth@redhat.com>
3941
3942         * config/i386/i386.c (legitimate_constant_p): Handle UNSPEC_NTPOFF
3943         and UNSPEC_DTPOFF.
3944
3945 2003-06-12  Richard Henderson  <rth@redhat.com>
3946
3947         PR middle-end/10475
3948         * expmed.c (emit_store_flag): Use simplify_gen_subreg directly
3949         for extracting sub-words.
3950
3951 2003-06-12  Richard Henderson  <rth@redhat.com>
3952
3953         PR target/7594
3954         * config/m68k/m68k.md (zero_extendhisi2): Use gen_lowpart_SUBREG.
3955         (zero_extendqihi2, zero_extendqisi2): Likewise.
3956
3957 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
3958
3959         * config/rs6000/rs6000.c (function_arg): Always split vectors for
3960         e500 if it's a stdarg function.
3961         (function_arg_advance): Advance 2 registers for vectors in a
3962         stdarg function.
3963         (init_cumulative_args): Initialize stdarg.
3964         (rs6000_spe_function_arg): New.
3965
3966         * config/rs6000/rs6000.h (rs6000_args): Add stdarg.
3967
3968 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
3969
3970         * config/rs6000/rs6000.h (MODES_TIEABLE_P): Add SPE vectors.
3971
3972 2003-06-12  Roger Sayle  <roger@eyesopen.com>
3973
3974         PR middle-end/168
3975         * fold-const.c (tree_expr_nonnegative_p):  Handle addition
3976         and multiplication of zero extensions, floating point division,
3977         and integer<->fp, fp<->fp and zero extension conversions.
3978         The built-in ceil and floor functions preserve signedness.
3979
3980 2003-06-12  Kazu Hirata  <kazu@cs.umass.edu>
3981
3982         * ChangeLog: Follow spelling conventions.
3983         * ChangeLog.2: Likewise.
3984         * c-decl.c: Likewise.
3985         * cfgloop.h: Likewise.
3986         * cgraph.c: Likewise.
3987         * coverage.c: Likewise.
3988         * cppcharset.c: Likewise.
3989         * cpphash.h: Likewise.
3990         * cpplex.c: Likewise.
3991         * cpplib.c: Likewise.
3992         * dbxout.c: Likewise.
3993         * df.c: Likewise.
3994         * dwarf2out.c: Likewise.
3995         * dwarfout.c: Likewise.
3996         * emit-rtl.c: Likewise.
3997         * explow.c: Likewise.
3998         * gcov-io.c: Likewise.
3999         * gcov-io.h: Likewise.
4000         * gcov.c: Likewise.
4001         * gengtype.c: Likewise.
4002         * ggc.h: Likewise.
4003         * opts.c: Likewise.
4004         * real.c: Likewise.
4005         * reload.c: Likewise.
4006         * stmt.c: Likewise.
4007
4008 2003-06-12  Janis Johnson  <janis187@us.ibm.com>
4009
4010         * doc/install.texi (m32r-*-elf): Change company to Renesas.
4011
4012 Thu Jun 12 20:00:55 CEST 2003  Jan Hubicka  <jh@suse.cz>
4013
4014         * basic-block.h (flow_delete_block_noexpunge): Kill.
4015         * cfgrtl.c (flow_delete_block_noexpunge): Merge to
4016         rtl_delete_block.
4017
4018 2003-06-10  Richard Henderson  <rth@redhat.com>
4019
4020         PR inline-asm/4823
4021         * reg-stack.c (any_malformed_asm): New.
4022         (check_asm_stack_operands): Set it.
4023         (convert_regs_1): Check it before aborting.
4024
4025 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
4026
4027         * config/rs6000/spe.md: Change all clobbers of the accumulator to sets.
4028
4029 2003-06-12  Jakub Jelinek  <jakub@redhat.com>
4030
4031         * c-opts.c (complain_wrong_lang): Add on argument.
4032         Print no- switch if on is false.
4033         (c_common_decode_option): Adjust caller.
4034
4035 2003-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
4036
4037         * config/s390/s390.c (s390_emit_prologue): Use LA instead of AR
4038         to initialize GOT register.
4039
4040 2003-06-12  Roger Sayle  <roger@eyesopen.com>
4041
4042         * fold-const.c (tree_expr_nonnegative_p): Add support for
4043         floating point constants, addition and multiplication.
4044
4045 2003-06-12  J"orn Rennecke <joern.rennecke@superh.com>
4046
4047         * sh.md (adddi3_compact, subdi3_compact): Add earlyclobber
4048         constraint modifier for operand 0.
4049
4050 2003-06-12  Hans-Peter Nilsson  <hp@axis.com>
4051
4052         Don't warn on dollars in builtin macro definitions,
4053         e.g. __REGISTER_PREFIX__.
4054         * cpphash.h (struct cpp_reader): Move member warn_dollars...
4055         * cpplib.h (struct cpp_options): ...to here.  Change type to
4056         unsigned char.
4057         * cppinit.c (cpp_create_reader): Set it to 1 here.
4058         (post_options): Don't set it here.
4059         * c-opts.c (c_common_init_options): Reset it to 0 here.
4060         (finish_options): Set it here.
4061         * cpplex.c (forms_identifier_p): Tweak for new location of
4062         warn_dollars.
4063
4064         * configure.in (assembler dwarf2 debug_line support): Define insn
4065         for cris-*-* and mmix-*-*.
4066         * configure: Regenerate.
4067
4068 2003-06-11  Uwe Stieber  <uwe@kaos-group.de>
4069
4070         * config.gcc (arm*-*-kaos*, i[34567]86-*-kaos*, powerpc-*-kaos*,
4071         powerpcle-*-kaos*, strongarm-*-kaos*): New targets.
4072         (sh-*-elf*): Add sh*-*-kaos* support.
4073         * config/kaos.h, config/arm/kaos-strongarm.h, config/arm/kaos-arm.h,
4074         config/i386/kaos-i386.h, config/rs6000/kaos-ppc.h,
4075         config/sh/kaos-sh.h: New files.
4076
4077 2003-06-12  Kazu Hirata  <kazu@cs.umass.edu>
4078
4079         * gcse.c (fis_get_condition): Make it a global function.
4080         * reload1.c (reload_cse_move2add): Detect implicit sets.
4081         * rtl.h: Add a prototype for fis_get_condition.
4082
4083 2003-06-11  Richard Henderson  <rth@redhat.com>
4084
4085         * stmt.c (expand_asm_operands): Don't warn for memories with
4086         queued addresses.
4087
4088 2003-06-11  Kaz Kojima  <kkojima@gcc.gnu.org>
4089
4090         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC): Rewrite without
4091         brackets.
4092
4093 2003-06-11  Neil Booth  <neil@daikokuya.co.uk>
4094
4095         * hooks.c (hook_int_size_t_constcharptr_int_0): New.
4096         * hooks.h (hook_int_size_t_constcharptr_int_0): New.
4097         * langhooks-def.h (lhd_decode_option, LANG_HOOKS_DECODE_OPTION): Die.
4098         (LANG_HOOKS_HANDLE_OPTION, LANG_HOOKS_INITIALIZER): Update.
4099         * langhooks.c (lhd_decode_option): Remove.
4100         * langhooks.h (struct lang_hooks): Remove decode_option.
4101         * opts.c (handle_option): No longer use decode_option.
4102
4103 2003-06-11  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4104
4105         * cfgloopanal.c (variable_initial_value): Update the set of altered
4106         registers correctly.
4107
4108 2003-06-11  Roger Sayle  <roger@eyesopen.com>
4109             Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4110
4111         * config/d30v/d30v.h: Delete reference to ASM_FINAL_SPEC.
4112         * config/i386/netbsd-elf.h: Likewise.
4113         * config/m32r/m32r.h: Likewise.
4114         * config/mn10300/mn10300.h: Likewise.
4115         * config/stormy16/stormy16.h: Likewise.
4116         * config/v850/v850.h: Likewise.
4117         * config/vax/netbsd-elf.h: Likewise.
4118         * config/xtensa/elf.h: Likewise.
4119         * config/xtensa/linux.h: Likewise.
4120
4121 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4122
4123         * config/mips/iris5gas.h (MDEBUG_ASM_SPEC): Override to match
4124         DWARF 2 default.
4125
4126         * config/mips/dbxmdebug.h: New file.
4127         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): Use it with
4128         gas and --with-stabs.
4129
4130 2003-06-11  Ulrich Weigand  <uweigand@de.ibm.com>
4131
4132         * expr.c (can_move_by_pieces): align argument may be unused.
4133
4134 2003-06-11  J"orn Rennecke <joern.rennecke@superh.com>
4135
4136         * expr.c (convert_move): Handle moves between two CONCATs.
4137
4138 2003-06-11  Kazu Hirata  <kazu@cs.umass.edu>
4139
4140         * config/h8300/h8300.h (RETURN_IN_MEMORY): Accept DImode if
4141         !TARGET_H8300.
4142
4143 2003-06-11  Kazu Hirata  <kazu@cs.umass.edu>
4144
4145         * config/h8300/h8300.c (final_prescan_insn): Don't dump rtl.
4146         * config/h8300/h8300.h (MASK_RTL_DUMP): Remove.
4147         (TARGET_RTL_DUMP): Likewise.
4148         (TARGET_SWITHCES): Remove -mrtl-dump.
4149
4150 2003-06-10  Richard Henderson  <rth@redhat.com>
4151
4152         * optabs.c (gen_cond_trap): Fix prepare_operand typo.
4153
4154 2003-06-10  Richard Henderson  <rth@redhat.com>
4155
4156         * config/ia64/ia64.md (call_gp): Fix memory mode.
4157
4158 2003-06-10  James E Wilson  <wilson@tuliptree.org>
4159
4160         PR target/8812
4161         * reload1.c (choose_reload_regs): For equiv reg, add loop over all
4162         hard regs for reload_reg_used_at_all and reg_class_contents checks.
4163
4164 2003-06-10  Kazu Hirata  <kazu@cs.umass.edu>
4165
4166         * config/h8300/h8300.c (print_operand): Remove support for
4167         operand character 'b'.
4168         Add the AND case to operand character 'c'.
4169         * config/h8300/h8300.md (two anonymous patterns): Replace
4170         operand character 'b' with 'c'.
4171
4172 2003-06-10  Kazu Hirata  <kazu@cs.umass.edu>
4173
4174         * config/h8300/h8300.c (print_operand): Remove support for
4175         operand character 'u'.
4176
4177 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
4178
4179         * configure.in: Fix typo.
4180         * configure: Regenerate.
4181
4182 2003-06-10  Loren James Rittle  <ljrittle@acm.org>
4183
4184         * config/alpha/alpha.c (unicosmk_file_end): Add conditional
4185         compilation guard.
4186
4187 2003-06-10  J"orn Rennecke <joern.rennecke@superh.com>
4188
4189         * sh-protos.h (function_symbol): Declare.
4190         * sh.c (expand_block_move, expand_ashiftrt): Use it.
4191         (sh_expand_prologue, sh_expand_epilogue): Likewise.
4192         (sh_initialize_trampoline): Likewise.
4193         (function_symbol): New function.
4194         * sh.md (udivsi3, divsi3, mulsi3, ic_invalidate_line): Use it.
4195         (initialize_trampoline, call, call_pop, call_value, sibcall): Likewise.
4196         (call_value_pop, shcompact_return_tramp): Likewise.
4197
4198         * sh.h (OVERRIDE_OPTIONS): Don't suppress --profile-arc-flag.
4199
4200         * sh.md (GOTaddr2picreg): Use gen_lowpart to get lowpart of
4201         target register.
4202
4203 2003-06-10  DJ Delorie  <dj@redhat.com>
4204
4205         * doc/md.texi (Machine Constraints): Document stormy's Z
4206         constraint.
4207
4208 2003-06-10  Geoffrey Keating  <geoffk@apple.com>
4209
4210         * except.c (call_site_base): Mark with GTY.
4211
4212 2003-06-10  Richard Earnshaw  <rearnsha@arm.com>
4213
4214         * arm-proto.h: Convert to ISO C90 prototypes.
4215         * arm.c: Likewise.
4216
4217 2003-06-10  J"orn Rennecke <joern.rennecke@superh.com>
4218
4219         * sh.c (sh_output_mi_thunk): Call insn_locators_initialize.
4220
4221 2003-06-10  Steve Ellcey  <sje@cup.hp.com>
4222
4223         * calls.c (expand_call): Convert structure_value_addr to Pmode if
4224         necessary.
4225
4226 2003-06-10  Andrew Haley  <aph@redhat.com>
4227
4228         * langhooks-def.h (LANG_HOOKS_DECL_OK_FOR_SIBCALL): New.
4229         (LANG_HOOKS_DECLS): Add LANG_HOOKS_DECL_OK_FOR_SIBCALL.
4230         (lhd_decl_ok_for_sibcall): New.
4231         * langhooks.c (lhd_decl_ok_for_sibcall): New.
4232         * langhooks.h (lang_hooks_for_decls.ok_for_sibcall): New field.
4233         * calls.c (expand_call): Check lang_hook before generating a
4234         sibcall.
4235
4236 2003-06-10  DJ Delorie  <dj@redhat.com>
4237
4238         * config/stormy16/stormy16.c (xstormy16_extra_constraint_p): Add Z,
4239         which matches (const_int 0) for addhi3.
4240         * config/stormy16/stormy16.md: Document known constraints.
4241         (addhi3): Handle adding zero.
4242
4243 2003-06-10  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
4244
4245         * config/m32r/m32r.h (HARD_REGNO_RENAME_OK): New.
4246         * config/m32r/m32r.c (m32r_hard_regno_rename_ok): New.
4247         * config/m32r/m32r-protos.h: Prototype it.
4248
4249 2003-06-10  Janis Johnson  <janis187@us.ibm.com>
4250
4251         * config/rs6000/eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins
4252         common to rs6000 sysv targets.
4253         * config/rs6000/eabisim.h (TARGET_OS_CPP_BUILTINS): Ditto.
4254         * config/rs6000/rtems.h (TARGET_OS_CPP_BUILTINS): Ditto.
4255
4256 2003-06-10  Nick Clifton  <nickc@redhat.com>
4257
4258         * config.gcc: Add arm-wince-pe target.
4259         * config/arm/pe.h (MULTILIB_DEFAULTS): Define.
4260         Add comment about default apcs26 support.
4261         * config/arm/t-pe (MULTILIB_OPTIONS): Add an -mapcs-32
4262         multilib.
4263         (MULTILIB_DIRNAMES): Add 'apcs32'.
4264         * config/arm/t-wince-pe: New makefile fragment.
4265         * config/arm/wince-pe.h: New file.  Overrides a few definitions
4266         in arm/pe.h
4267
4268 2003-06-10  Roger Sayle  <roger@eyesopen.com>
4269
4270         * builtins.c (fold_builtin): Optimize cos(-x) as cos(x).
4271         * fold-const.c (fold <NEGATE_EXPR>): Convert -f(x) into f(-x)
4272         when x is easily negated and f is sin, tan or atan.
4273         (fold <MULT_EXPR>): Optimize tan(x)*cos(x) and cos(x)*tan(x) as
4274         sin(x) with flag_unsafe_math_optimizations.
4275         (fold <RDIV_EXPR>): With flag_unsafe_math_optimizations fold
4276         sin(x)/cos(x) as tan(x) and cos(x)/sin(x) as 1.0/tan(x).
4277
4278 2003-06-10  Roger Sayle  <roger@eyesopen.com>
4279
4280         * fold-const.c (fold <EQ_EXPR>):  Don't fold x == x only if x
4281         is a floating point type *and* we currently honor NaNs.
4282         (fold <NE_EXPR>): Likewise.
4283
4284 2003-06-10  Mark Mitchell  <mark@codesourcery.com>
4285
4286         PR c++/11131
4287         * tree-inline.c (inlinable_function_p): Call the language-specific
4288         hook early.
4289
4290 2003-06-09  David Taylor  <dtaylor@emc.com>
4291
4292         * config/rs6000/rs6000.c (rs6000_va_start, rs6000_va_arg):  Skip over
4293         the f_res field.
4294
4295 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
4296
4297         * configure.in: Remove references to host_truncate_target.
4298         * configure: Regenerate.
4299         * config.gcc: Remove references to truncate_target,
4300         host_truncate_target.
4301
4302         * Makefile.in, configure.in, config/m68hc11/t-m68hc11-gas:
4303         Replace "build_canonical" with build, "host_canonical" with host.
4304         * configure.in: Use GCC_TOPLEV_SUBDIRS.
4305         * aclocal.m4: Include ../config/acx.m4.
4306         * configure: Regenerate.
4307
4308 2003-06-09  David Taylor  <dtaylor@emc.com>
4309
4310         * config/rs6000/rs6000.c (rs6000_build_va_list): Give the two
4311         bytes of padding in the __va_list_tag structure a name (reserved).
4312
4313 2003-06-09  Jason Merrill  <jason@redhat.com>
4314
4315         * fold-const.c (operand_equal_p): Handle ADDR_EXPR and TRUTH_NOT_EXPR.
4316
4317 2003-06-09  Osku Salerma  <osku@iki.fi>
4318
4319         * c-format.c (check_format_string, get_constant): New.
4320         (handle_format_attribute, handle_format_arg_attribute,
4321         decode_format_attr): Change to use above functions.
4322
4323 2003-06-09  Richard Henderson  <rth@redhat.com>
4324
4325         * stmt.c (expand_asm_operands): Re-word warning.
4326
4327 2003-06-08  Andrew Pinski  <pinskia@physics.uc.edu>
4328
4329         PR target/8787
4330         * config/i386/djgpp.h (ASM_FILE_START): emit `.intel_syntax'
4331         if -masm=intel.
4332
4333 2003-06-09  James E Wilson  <wilson@tuliptree.org>
4334
4335         * config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
4336         config/frv/frvbegin.c, config/frv/frvend.c, config/frv/lib1funcs.asm:
4337         Add libgcc exception.
4338
4339 2003-06-09  David Edelsohn  <edelsohn@gnu.org>
4340             Ayal Zaks  <gcchaifa@us.ibm.com>
4341
4342         * config/rs6000/rs6000.md (define_attr "type"): Add insert_word.
4343         (insvsi*): Add insert_word attribute.
4344         * config/rs6000/rs6000.c (rs6000_variable_issue): Add TYPE_INSERT_WORD.
4345         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
4346         power4.md,rios1.md,rios2.md,rs64.md}: Add insert_word.
4347
4348 2003-06-09  Kazu Hirata  <kazu@cs.umass.edu>
4349
4350         * fold-const.c (fold): Fix a comment typo.
4351
4352 2003-06-09  Nathan Sidwell  <nathan@codesourcery.com>
4353
4354         * tree-inline.c (expand_call_inline): DECL_SOURCE_LINE_FIRST is
4355         removed.
4356
4357 2003-06-09  J"orn Rennecke <joern.rennecke@superh.com>
4358
4359         * sh.c (gen_block_redirect): Use locators.
4360
4361 2003-06-09  Richard Earnshaw  <rearnsha@arm.com>
4362
4363         * arm.h (THUMB_PRINT_OPERAND_ADDRESS): Use %wd in format and remove
4364         cast to int.
4365
4366 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
4367
4368         * configure.in: Assume gas 2.14 and above can handle MIPS relocation
4369         operators.
4370         * configure: Regenerated.
4371
4372 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
4373             Alexandre Oliva  <aoliva@redhat.com>
4374
4375         * config/mips/mips.h (GLOBAL_POINTER_REGNUM): New macro.
4376         (PIC_OFFSET_TABLE_REGNUM): Look at pic_offset_table_rtx after reload.
4377         (STARTING_FRAME_OFFSET): Don't allocate a cprestore slot for
4378         n32/64 PIC.
4379         (MUST_SAVE_REGISTERS): Delete.
4380         * config/mips/mips.c (mips_frame_info): Remove extra_size field.
4381         (machine_function): Add global_pointer field.
4382         (mips_classify_constant): Check for (const $gp) using pointer equality
4383         with pic_offset_table_rtx.
4384         (mips_classify_constant): Handle RELOC_LOADGP_HI and RELOC_LOADGP_LO.
4385         (mips_restore_gp): Use current_function_outgoing_args_size.
4386         (print_operand): Use PIC_OFFSET_TABLE_REGNUM instead of
4387         GP_REG_FIRST + 28.  Handle relocation strings that have
4388         more than one '('.
4389         (mips_reloc_string): Handle RELOC_LOADGP_HI and RELOC_LOADGP_LO.
4390         (mips_global_pointer): New function.
4391         (mips_save_reg_p): New function, mostly split out from...
4392         (compute_frame_size): ...here.  Remove handling of extra_size.
4393         Reclaim args_size if no variables depend on it.  Don't treat gp
4394         as a special case: handle it in the main GPR loop.
4395         (mips_initial_elimination_offset): Fix comment.
4396         (save_restore_insns): Save every register in the GPR mask,
4397         removing distinction between mask and real_mask.
4398         (mips_output_function_prologue): Update .frame psuedo-op after
4399         the removal of extra_size.  Move the SVR4 PIC stack allocation
4400         and cprestore instructions to mips_expand_prologue.
4401         (mips_gp_insn): New function.
4402         (mips_expand_prologue): Set REGNO (pic_offset_table_rtx) to
4403         the chosen global pointer.  Handle SVR4 PIC stack allocation
4404         in the same way as other ABIs.  Adjust varargs code accordingly.
4405         Emit a cprestore insn after allocating the stack.  Use mips_gp_insn
4406         to emit the loadgp sequence.  Follow it with a loadgp_blockage
4407         if not using explicit relocs.
4408         (mips_output_function_epilogue): Reinstate the default gp register.
4409         (mips16_gp_pseudo_reg): Use pic_offset_table_rtx.
4410         (mips16_optimize_gp): Likewise.
4411         * config/mips/mips.md (UNSPEC_LOADGP): Remove.
4412         (UNSPEC_SETJMP, UNSPEC_LONGJMP): Remove.
4413         (UNSPEC_CPRESTORE, RELOC_LOADGP_HI, RELOC_LOADGP_LO): New.
4414         (loadgp): Remove.
4415         (loadgp_blockage, cprestore): New instructions.
4416         (builtin_setjmp_setup): Implement using emit_move_insn.  Use
4417         pic_offset_table_rtx.
4418         (builtin_setjmp_setup_32, builtin_setjmp_setup_64): Remove.
4419         (builtin_longjmp): Use gen_raw_REG to force use of $28.
4420
4421 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
4422
4423         * config/mips/mips-protos.h (mips_output_division): Declare.
4424         * config/mips/mips.h (MASK_CHECK_RANGE_DIV): Remove.
4425         (MASK_BRANCHLIKELY): Use MASK_CHECK_RANGE_DIV's old number.
4426         (TARGET_NO_CHECK_ZERO_DIV, TARGET_CHECK_RANGE_DIV): Remove.
4427         (TARGET_CHECK_ZERO_DIV): New macro.
4428         (TARGET_SWITCHES): Remove -mcheck-range-div & -mno-check-range-div.
4429         * config/mips/mips.c (mips_output_division): New function.
4430         * config/mips/mips.md (length): Take TARGET_CHECK_ZERO_DIV into
4431         account when calculating the default length of a division.
4432         (divmodsi4, divmoddi4, udivmodsi4, udivmoddi4): Turn into define_insns.
4433         Enable regardless of optimization level.  Use mips_output_division.
4434         (divmodsi4_internal, divmoddi4_internal, udivmodsi4_internal,
4435         udivmoddi4_internal, div_trap, div_trap_normal, div_trap_mips16,
4436         divsi3, divsi3_internal, divdi3, divdi3_internal, modsi3,
4437         modsi3_internal, moddi3, moddi3_internal, udivsi3, udivsi3_internal,
4438         udivdi3, udivdi3_internal, umodsi3, umodsi3_internal, umoddi3,
4439         umoddi3_internal): Remove.
4440
4441 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
4442
4443         * config/mips/mips.c (mips_reg_names): Change hilo entry to "".
4444         (mips_sw_reg_names): Likewise.
4445         (mips_regno_to_class): Change hilo entry to NO_REGS.
4446         (hilo_operand): Use MD_REG_P.
4447         (extend_operator): New predicate.
4448         (override_options): Remove 'a' constraint.
4449         (mips_secondary_reload_class): Remove hilo handling.  Also remove
4450         handling of (plus sp reg) reloads for mips16.
4451         (mips_register_move_cost): Remove hilo handling.
4452         * config/mips/mips.h (FIXED_REGISTERS): Make hilo entry fixed.
4453         (MD_REG_LAST): Remove hilo from range.
4454         (HILO_REGNUM): Delete.
4455         (reg_class): Remove HILO_REG and HILO_AND_GR_REGS.
4456         (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
4457         (PREDICATE_CODES): Add entry for extend_operator.
4458         (DEBUG_REGISTER_NAMES): Change hilo entry to "".
4459         * config/mips/mips.md: Remove hilo clobbers wherever they occur.
4460         Remove constraints from multiplication define_expands.  Remove
4461         clobbers from "decorative" define_expand patterns.
4462         (UNSPEC_HILO_DELAY): Delete.
4463         (*mul_acc_si, *mul_sub_si): Add early-clobber to operand 6.
4464         (mulsidi3, umulsidi3): Change pattern to match the TARGET_64BIT case.
4465         Adjust C code to just emit insns for !TARGET_64BIT.
4466         (mulsidi3_internal): Rename to mulsidi3_32bit.
4467         (mulsidi3_64bit): Use a "d" constraint for the destination.
4468         Use extend_operator so that the pattern can handle umulsidi3 as well.
4469         Split the instruction after reload.
4470         (*mulsidi3_64bit_parts): New pattern, generated by mulsidi3_64bit.
4471         (umulsidi3_internal): Rename to umulsidi3_32bit.
4472         (umulsidi3_64bit): Remove.
4473         (*smsac_di, *umsac_di): Line-wrap fixes.
4474         (udivsi3_internal): Don't allow operand 2 to be constant.
4475         (udivdi3_internal, umodsi3_internal, umoddi3_internal): Likewise.
4476         (movdi_internal2, movsi_internal): Remove hilo alternatives.
4477         (reload_in[sd]i, reload_out[sd]i, hilo_delay): Remove.
4478
4479 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
4480
4481         PR target/10913
4482         * config/mips/mips.h (TARGET_FILE_SWITCHING, NO_DBX_FUNCTION_END,
4483         PUT_SDB_SCL, PUT_SDB_INT_VAL, PUT_SDB_VAL, PUT_SDB_ENDEF,
4484         PUT_SDB_TYPE, PUT_SDB_SIZE, PUT_SDB_DIM, PUT_SDB_START_DIM,
4485         PUT_SDB_NEXT_DIM, PUT_SDB_LAST_DIM, PUT_SDB_TAG, PUT_SDB_SRC_FILE,
4486         SDB_GENERATE_FAKE, TEXT_SECTION): Delete.
4487         (PUT_SDB_DEF, PUT_SDB_PLAIN_DEF, PUT_SDB_BLOCK_START,
4488         PUT_SDB_BLOCK_END, PUT_SDB_FUNCTION_END): Replace use of
4489         asm_out_text_file with asm_out_file.
4490         * config/mips/iris5gas.h (PUT_SDB_SIZE, PUT_SDB_TYPE): Likewise.
4491         * config/mips/elf.h (TEXT_SECTION): Undefine.
4492         * config/mips/elf64.h (TEXT_SECION): Undefine.
4493         * config/mips/openbsd.h (TEXT_SECION): Undefine.
4494         * config/mips/mips.c (asm_out_text_file, asm_out_data_file): Delete.
4495         (override_options): Disable small-data optimizations unless using
4496         gas or explicit relocations.
4497         (mips_asm_file_start, mips_asm_file_end, mips_output_function_epilogue,
4498         iris6_asm_named_section, iris6_asm_file_start): Remove code for
4499         handling TARGET_FILE_SWITCHING.
4500         (copy_file_data): Move into TARGET_IRIX6 block.
4501
4502 2003-06-08  Richard Henderson  <rth@redhat.com>
4503
4504         * expr.h (EXPAND_MEMORY): New.
4505         * expr.c (expand_expr): Check it.
4506         * stmt.c (expand_asm_operands): Provide it when the constraint
4507         requires a memory.  Warn for memory input constraints without
4508         a memory operand.
4509
4510 2003-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4511
4512         * varasm.c: Don't include c-tree.h.
4513
4514 2003-06-08  Andreas Jaeger  <aj@suse.de>
4515
4516         * predict.h: Convert to ISO C90 prototypes.
4517         * predict.c: Likewise.
4518         * tree-dump.h: Likewise.
4519         * tree-dump.c: Likewise.
4520         * diagnostic.h: Likewise.
4521         * diagnostic.c: Likewise.
4522         * combine.c: Likewise.
4523
4524         * rtl.h: Convert prototypes of combine.c to ISO C90.
4525
4526 Sun Jun  8 21:27:41 CEST 2003  Jan Hubicka  <jh@suse.cz>
4527
4528         * cfglayout.c (insn_scope): New static function
4529         (block_locators_*, line_locators*, file_locators*): New static varrays.
4530         (scope_to_insns_initialize): Use them.
4531         (insn_line, insn_file): New functions.
4532         (scope_to_insns_finalize): Use insn_scope.
4533         (prologue_locator, epilogue_locator): New global variables.
4534         * emit-rt.c (try_split, make_insn_raw, make_jump_insn_raw,
4535         make_call_insn_raw, emit_copy_of_insn_after): Use locators.
4536         (emit_insn_after_scope, emit_insn_before_scope
4537         emit_jump_insn_after_scope, emit_jump_insn_before_scope
4538         emit_call_insn_after_scope, emit_call_insn_before_scope): Rename to...
4539         (emit_insn_after_setloc, emit_insn_before_setloc
4540         emit_jump_insn_after_setloc, emit_jump_insn_before_setloc
4541         emit_call_insn_after_setloc, emit_call_insn_before_setloc): ... these;
4542         use locators.
4543         * final.c (notice_source_line): Use locators.
4544         (final_start_function): Set initial source file and line.
4545         (final_scan_insn): Use locators.
4546         * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
4547         noce_try_addcc, noce_try_store_flag_mask, noce_try_cmove,
4548         noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
4549         noce_process_if_block, find_cond_trap): Likewise.
4550         * integrate.c (copy_insn_list): Likewise.
4551         * jump.c (duplicate_loop_exit_test): LIkewise.
4552         * print-rtl.c (print_rtx): Print locators.
4553         * recog.c (peephole2_optimize): Likewise.
4554         * rtl.h (INSN_SCOPE): Remove.
4555         (emit_insn_after_scope, emit_insn_before_scope
4556         emit_jump_insn_after_scope, emit_jump_insn_before_scope
4557         emit_call_insn_after_scope, emit_call_insn_before_scope): Rename to...
4558         (emit_insn_after_setloc, emit_insn_before_setloc
4559         emit_jump_insn_after_setloc, emit_jump_insn_before_setloc
4560         emit_call_insn_after_setloc, emit_call_insn_before_setloc): ... these;
4561         (insn_file, insn_line, prologue_locator, epilogue_locator): Declare.
4562         * unroll.c (copy_loop_body): Use locators.
4563         * function.c (set_insn_locators): New function.
4564         (thread_prologue_and_epilogue_insns): Set the locators accordingly.
4565
4566 2003-06-08  Kazu Hirata  <kazu@cs.umass.edu>
4567
4568         * config/h8300/h8300.h (LONG_LONG_TYPE_SIZE): Set to 64.
4569         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _floatdisf
4570         _fixsfdi _fixunssfdi.
4571         (LIB2FUNCS_EXTRA): Add entries for clzhi2, ctzhi2, parityhi2,
4572         popcounthi2.
4573         (TARGET_LIBGCC2_CFLAGS): Remove -DDI=SI.
4574         * config/h8300/clzhi2.c: New.
4575         * config/h8300/ctzhi2.c: Likewise.
4576         * config/h8300/parityhi2.c: Likewise.
4577         * config/h8300/popcounthi2.c: Likewise.
4578
4579 Sun Jun  8 15:52:17 CEST 2003  Jan Hubicka  <jh@suse.cz>
4580
4581         * i386.md (subsi_3_zext, sse2_nandv2di3): Fix predicates.
4582         * i386.c (k8_avoid_jump_misspredicts): Fix debug output.
4583
4584         * cfg.c (verify_flow_info): Move IL independent checks from cfgrtl here.
4585         (dump_bb): New based on old dump_bb in cfgrtl.c
4586         (debug_bb, debug_bb_n): Move the functions from cfgrtl.c here.
4587         * cfghooks.h (cfgh_verify_flow_info): Return status.
4588         * cfglayout.c (cfg_layout_finalize): Verify CFG correctness.
4589         * cfgrtl.c (debug_bb, debug_bb_n): Move to cfg.c
4590         (dump_bb): Remove generic parts.
4591         (rtl_verify_flow_info_1): Break out from rtl_verify_flow_info.
4592         (rtl_verify_flow_info): Only check things dependeing on linearized RTL.
4593
4594 2003-06-08  Neil Booth  <neil@daikokuya.co.uk>
4595
4596         * Makefile.in: Rename options.c and options.h to c-options.c and
4597         c-options.h.
4598         (OBJS): Remove options.o.
4599         * c-opts.c: Don'tInclude c-options.h instead of options.h.
4600         * opts.c: Don't include options.h.
4601         (find_opt): Can't use enum opt_code or N_OPTS.
4602         * opts.h (struct cl_option, cl_options, cl_options_count): Move from...
4603         * opts.sh: ... here.
4604
4605 2003-06-07  Eric Botcazou  <ebotcazou@libertysurf.fr>
4606             Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
4607
4608         PR pch/9830
4609         * ggc-common.c (HAVE_MMAP_FILE): Include sys/types.h
4610         if HAVE_MINCORE is defined.
4611         (MAP_FAILED): Define if not defined.
4612         (gt_pch_save): Test against MAP_FAILED.
4613         (gt_pch_restore): If HAVE_MINCORE, use MAP_FIXED to force
4614         the mapping address to the preferred base after checking it
4615         is possible to do so. Test against MAP_FAILED.
4616         * configure.in: Test for the presence of mincore in libc.
4617         * config.in: Regenerate.
4618         * configure: Regenerate.
4619
4620 2003-06-07  Richard Henderson  <rth@redhat.com>
4621
4622         * config/alpha/alpha.c (alpha_setup_incoming_varargs): Fix
4623         conditional compilation guard.
4624
4625 2003-06-08  Kazu Hirata  <kazu@cs.umass.edu>
4626
4627         * optabs.c (expand_abs): Set result_unsignedp to 1 if
4628         flag_trav is zero.
4629
4630 2003-06-07  Richard Henderson  <rth@redhat.com>
4631
4632         * c-cppbuiltin.c (c_cpp_builtins): Define __EXCEPTIONS for C also.
4633
4634 2003-06-07  Richard Henderson  <rth@redhat.com>
4635
4636         * basic-block.h (EDGE_SIBCALL): New.
4637         (EDGE_ALL_FLAGS): Update.
4638         * cfg.c (dump_edge_info): Add sibcall name.
4639         * cfgbuild.c (make_edges): Use EDGE_SIBCALL.
4640         * cfgrtl.c (purge_dead_edges): Handle sibcalls.
4641
4642 2003-06-07  Andreas Jaeger  <aj@suse.de>
4643
4644         * mklibgcc.in (lib2funcs): Remove _exit.
4645         * libgcc2.c: Remove L_exit.
4646         * gbl-ctors.h: Remove declarations dependend on NEED_ATEXIT.
4647
4648         * system.h: Poison NEED_ATEXIT, ON_EXIT, EXIT_BODY.
4649
4650         * doc/tm.texi (Misc): Remove NEED_ATEXIT, ON_EXIT, EXIT_BODY.
4651
4652         * ggc.h: Convert to ISO C90 prototypes.
4653         * ggc-none.c: Likewise.
4654         * ggc-common.c: Likewise.
4655         * ggc-page.c: Likewise.
4656         * ggc-simple.c: Likewise.
4657
4658         * crtstuff.c: Remove undefined usage of INIT_SECTION_PREAMBLE.
4659
4660         * system.h: Poison INIT_SECTION_PREAMBLE.
4661
4662 2003-06-07  Zack Weinberg  <zack@codesourcery.com>
4663
4664         * config.gcc (with_cpu handling): Translate sparc64 in
4665         $machine to --with-cpu=v9.
4666         * config/alpha/alpha.c
4667         (TARGET_ASM_GLOBALIZE_LABEL [TARGET_ABI_UNICOSMK]): Correct definition.
4668         (alpha_setup_incoming_varargs): #ifdef out when TARGET_ABI_UNICOSMK.
4669
4670         * target.h: New hook asm_out.file_end.
4671         * target.h: Update to match.  New hook macro TARGET_ASM_FILE_END.
4672         * toplev.c (compile_file): Use targetm.asm_out.file_end.
4673         * system.h: Poison ASM_FILE_END.
4674         * varasm.c (file_end_indicate_exec_stack): New.
4675         * output.h: Prototype it.
4676         * doc/tm.texi: Document TARGET_ASM_FILE_END and
4677         file_end_indicate_exec_stack.  Delete references to attasm.h.
4678
4679         * config/darwin.h (TARGET_ASM_FILE_END): Reset to darwin_file_end.
4680         (ASM_FILE_END): Delete; move code...
4681         * config/darwin.c (darwin_file_end): Here; new function.
4682         * config/darwin-protos.h: Prototype it.
4683         * config/alpha/alpha.c (unicosmk_asm_file_end): Make static,
4684         rename unicosmk_file_end.
4685         * config/arm/aof.h (ASM_FILE_END): Delete; move code...
4686         * config/arm/arm.c (aof_file_end): ... here; new static function.
4687         Set TARGET_ASM_FILE_END to aof_file_end if AOF_ASSEMBLER.
4688         Make aof_dump_imports and aof_dump_pic_table static.
4689         * config/avr/avr.c (asm_file_end): Rename avr_file_end, make static.
4690         Set TARGET_ASM_FILE_END to avr_file_end.
4691         * config/c4x/c4x.c (c4x_file_end): Make static.  Take no arguments.
4692         Set TARGET_ASM_FILE_END to c4x_file_end.
4693         * config/h8300/h8300.c (asm_file_end): Rename h8300_file_end,
4694         make static. Take no arguments.  Set TARGET_ASM_FILE_END to
4695         h8300_file_end.
4696         * config/i370/i370.h (ASM_FILE_END): Delete; move code...
4697         * config/i370/i370.c (i370_file_end): ... here; new static function.
4698         Set TARGET_ASM_FILE_END to i370_file_end.
4699          * config/i386/i386.c (ix86_asm_file_end): Rename ix86_file_end.
4700          Take no arguments.  Call file_end_indicate_exec_stack if
4701          NEED_INDICATE_EXEC_STACK; don't use SUBTARGET_FILE_END.
4702         * config/i386/i386.h: Set TARGET_ASM_FILE_END, not ASM_FILE_END.
4703         Define NEED_INDICATE_EXEC_STACK to 0.
4704         * config/i386/linux.h, config/i386/linux64.h: Redefine
4705         NEED_INDICATE_EXEC_STACK to 1 instead of setting SUBTARGET_FILE_END.
4706         * config/i386/winnt.c (i386_pe_asm_file_end): Rename to
4707         i386_pe_file_end.  Take no arguments.  Use ix86_file_end.
4708         * config/ia64/ia64.c (ia64_hpux_asm_file_end): Rename to
4709         ia64_hpux_file_end, make static.  Take no arguments.
4710         * config/ip2k/ip2k.c (asm_file_start, asm_file_end,
4711         commands_in_prologues, commands_in_epilogues): Delete.
4712         (function_epilogue): Update to match.
4713         * config/mips/mips.c (mips_asm_file_end): Rename mips_file_end,
4714         make static.  Take no arguments.
4715         (iris6_asm_file_end): Rename iris6_file_end, make static, use
4716         mips_file_end, take no arguments.
4717         Set TARGET_ASM_FILE_END to iris6_file_end or mips_file_end as
4718         appropriate.
4719         * config/mmix/mmix.c (mmix_asm_file_end): Rename mmix_file_end,
4720         make static, take no arguments. Set TARGET_ASM_FILE_END to
4721         mmix_file_end.
4722         * config/pa/pa.c (output_deferred_plabels): Make static, take
4723         no arguments.  Set TARGET_ASM_FILE_END to output_deferred_plabels.
4724         * config/rs6000/xcoff.h (TARGET_ASM_FILE_END): Set it.
4725         (ASM_FILE_END): Delete; move code...
4726         * config/rs6000/rs6000.c (rs6000_xcoff_file_end): ... here;
4727         new static function.
4728
4729         * config/avr/avr.h, config/cris/cris.h, config/h8300/h8300.h
4730         * config/mmix/mmix.h, config/mips/iris6.h, config/mips/mips.h:
4731         Don't set ASM_FILE_END.
4732         * config/alpha/linux-elf.h, config/m68k/linux.h, config/rs6000/linux.h
4733         * config/rs6000/linux64.h, config/s390/linux.h, config/sparc/linux.h
4734         * config/sparc/linux64.h: Set TARGET_ASM_FILE_END to
4735         file_end_indicate_exec_stack; don't set ASM_FILE_END.
4736         * config/alpha/unicosmk.h, config/i386/cygming.h
4737         * config/ia64/hpux.h: Set TARGET_ASM_FILE_END, not ASM_FILE_END.
4738         * config/arm/arm-protos.h, config/alpha/alpha-protos.h
4739         * config/avr/avr-protos.h, config/c4x/c4x-protos.h
4740         * config/h8300/h8300-protos.h, config/ia64/ia64-protos.h
4741         * config/ip2k/ip2k-protos.h, config/mips/mips-protos.h
4742         * config/mmix/mmix-protos.h, config/pa/pa-protos.h: Update.
4743
4744 Sat Jun  7 18:32:13 CEST 2003  Jan Hubicka  <jh@suse.cz>
4745
4746         * i386.h (OPTION_DEFAULT_SPECS): Avoid -mcpu default when -march is
4747         specified.
4748
4749 Sat Jun  7 15:20:01 CEST 2003  Jan Hubicka  <jh@suse.cz>
4750
4751         * Makefile.in (stageprofile_build): Kill redundant target.
4752         * i386.c (mdep_reorg): Don't pad jumps for Athlon.
4753
4754 2003-06-07  Andreas Jaeger  <aj@suse.de>
4755
4756         * doc/tm.texi (Costs): Remove DONT_REDUCE_ADDR documentation.
4757
4758         * config/avr/avr.h: Remove comment regarding DONT_REDUCE_ADDR.
4759         * config/dsp16xx/dsp16xx.h: Likewise.
4760         * config/i386/i386.h: Likewise.
4761         * config/ip2k/ip2k.h: Likewise.
4762
4763 2003-06-07  Neil Booth  <neil@daikokuya.co.uk>
4764
4765         * Makefile.in (OJBS, c-opts.o): Update.
4766         (c-options.c, c-options.h): Rename options.h and options.c.
4767         (options.h): Rename options_.h.
4768         (opts.o): New.
4769         * c-common.h (c_common_handle_option): Replace c_common_decode_option.
4770         (c_common_init_options): Update prototype.
4771         * c-lang.c (c_init_options): Update prototype.
4772         (LANG_HOOKS_HANDLE_OPTION): Override.
4773         (LANG_HOOKS_DECODE_OPTION): Drop.
4774         * c-opts.c: Include opts.h and options.h instead of c-options.h
4775         and c-options.c.
4776         (lang_flags): Move to file scope.
4777         (find_opt, c_common_decode_option): Remove.
4778         (CL_C, CL_OBJC, CL_CXX, CL_OBJCXX, CL_JOINED, CL_SEPARATE,
4779         CL_REJECT_NEGATIVE): Move to opts.h.
4780         (missing_arg): Update prototype.
4781         (c_common_init_options): Update for new prototype.
4782         (c_common_handle_options): Filenames are passed as N_OPTS.
4783         * hooks.c (hook_int_void_0): New.
4784         * hooks.h (hook_int_void_0): New.
4785         * langhooks-def.h (LANG_HOOKS_INIT_OPTIONS): New default.
4786         (LANG_HOOKS_HANDLE_OPTION): Default to NULL for now.
4787         (LANG_HOOKS_INITIALIZER): Update.
4788         * langhooks.h (init_options): Update.
4789         (handle_option): New.
4790         * opts.c, opts.h: New files.
4791         * opts.sh: Update c file to include opts.h and options.h.
4792         * toplev.c: Include opts.h; change options.h to options_.h.
4793         (parse_options_and_default_flags): Get lang_mask, use
4794         handle_option for language-specific handling.
4795         * objc/objc-lang.c (LANG_HOOKS_DECODE_OPTON): Drop.
4796         (LANG_HOOKS_HANDLE_OPTION): Override.
4797         (objc_init_options): Update.
4798
4799 2003-06-07  Magnus Kreth <magnus.kreth@gmx.de>
4800             Thibaud Gaillard <thibaud.gaillard@nto.atmel.com>
4801
4802         PR other/7031
4803         * Makefile.in (install-common): Remove GCOV_INSTALL_NAME instead of
4804         gcov.
4805
4806 2003-06-07  Kelley Cook  <kelleycook@wideopenwest.com>
4807
4808         * configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Remove quotes in
4809         section names.
4810         * configure: Regenerate.
4811
4812 2003-06-07  Alan Modra  <amodra@bigpond.net.au>
4813
4814         * config/rs6000/linux64.h (CRT_CALL_STATIC_FUNCTION): Define.
4815
4816 2003-06-06  James E Wilson  <wilson@tuliptree.org>
4817
4818         PR inline-asm/10890
4819         * reload1.c (merge_assigned_reloads): Abort only if two reloads have
4820         different in fields.
4821
4822 2003-06-06  Nathanael Nerode  <neroden@gcc.gnu.org>
4823
4824         * configure.in: Make $(target_subdir) correspond with top level usage.
4825         * Makefile.in: Likewise.
4826         * configure: Regenerate.
4827
4828 2003-06-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4829
4830         * pa.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_ALIGNED_COMMON,
4831         ASM_OUTPUT_ALIGNED_LOCAL): Cast `SIZE' and `ALIGNED' parameters to
4832         unsigned HOST_WIDE_INT.
4833         * pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMOM, ASM_OUTPUT_ALIGNED_LOCAL):
4834         Likewise.
4835         * pa64-hpux.h (ASM_OUTPUT_ALIGNED_COMMON, ASM_OUTPUT_ALIGNED_LOCAL):
4836         Likewise.
4837
4838 2003-06-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4839
4840         * doc/install.texi (Prerequisites): New section documenting
4841         tools and packages necessary prior to building and/or
4842         modifying GCC.
4843         * doc/install.texi2html: Also generate prerequisites.html.
4844
4845 2003-06-06  Richard Earnshaw  <rearnsha@arm.com>
4846
4847         PR target/11052
4848         * ifcvt.c (noce_process_if_block): Fail if the destination has
4849         side-effects.
4850
4851 2003-06-06  Jason Merrill  <jason@redhat.com>
4852
4853         * stmt.c (resolve_asm_operand_names): Rename from
4854         resolve_operand_names.  No longer static.  Avoid needless copying.
4855         Don't build array of constraints.
4856         (expand_asm_operands): Build it here.
4857         * tree.h: Declare resolve_asm_operand_names.
4858
4859         * stmt.c (expand_decl): Put artificial vars into registers even
4860         when not optimizing, and don't mark the regs as user vars.
4861
4862 2003-06-06  J"orn Rennecke <joern.rennecke@superh.com>
4863
4864         * sh.h (FUNCTION_ARG_1): Consistently use NEW_MODE for the mode
4865         of the generated register.
4866
4867 2003-06-06  Daniel Jacobowitz  <drow@mvista.com>
4868
4869         * config.gcc: Add a missing sparc64 case.
4870
4871 2003-06-06  Jakub Jelinek  <jakub@redhat.com>
4872
4873         * mklibgcc.in: Propagate .note.GNU-stack section if needed into
4874         the .hidden assembly stubs.
4875
4876 2003-06-06  H.J. Lu <hongjiu.lu@intel.com>
4877
4878         * config.gcc (extra_headers): Add emmintrin.h for i[34567]86-*-*
4879         and x86_64-*-*.
4880
4881         * config/i386/mmintrin.h: Update version and add alternate
4882         intrinsic names.
4883         * config/i386/xmmintrin.h: Likewise.
4884
4885         * config/i386/xmmintrin.h: Include <emmintrin.h>. Move SSE2
4886         intrinsics to ...
4887         * config/i386/emmintrin.h: Here. New file.
4888
4889 2003-06-06  Roger Sayle  <roger@eyesopen.com>
4890
4891         * fold-const.c (fold <ABS_EXPR>):  Re-fold the result of folding
4892         fabs(-x) into fabs(x).  Use tree_expr_nonnegative_p to determine
4893         when the ABS_EXPR (fabs or abs) is not required.
4894         (tree_expr_nonnegative_p): Move the logic that sqrt and exp are
4895         always nonnegative from fold to here.  Additionally, cabs and fabs
4896         are always non-negative, and pow and atan are non-negative if
4897         their first argument is non-negative.
4898
4899         * builtins.c (fold_builtin_cabs): New function to fold cabs{,f,l}.
4900         Evaluate cabs of a constant at compile-time.  Convert cabs of a
4901         non-complex argument into fabs.  Convert cabs(z) into
4902         sqrt(z.r*z.r + z.i*z.i) at the tree-level with -ffast-math or
4903         -funsafe-math-optimizations or -ffast-math.
4904         (fold_builtin): Convert BUILT_IN_FABS{,F,L} into an ABS_EXPR.
4905         Fold BUILT_IN_CABS{,F,L} using fold_builtin_cabs.
4906
4907 Thu Jun  5 20:51:09 CEST 2003  Jan Hubicka  <jh@suse.cz>
4908
4909         * sourcebuild.texi (Front End Directory): Document new hooks.
4910
4911 Fri Jun  6 11:02:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
4912
4913         * function.c (FLOOR_ROUND, CEIL_ROUND): Fix.
4914         * i386.md (gen_pro_epilogue_adjust_stack): Deal with gigantic
4915         stack frames.
4916         (pro_epilogue_adjust_stack_rex64_2): New pattern
4917
4918 Fri Jun  6 11:03:14 CEST 2003  Jan Hubicka  <jh@suse.cz>
4919                                Pop Sebastian
4920                                Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4921
4922         * cfghooks.h, cfghooks.c: New files.
4923         * Makefile.in (BASIC_BLOCK_H): Depends on cfghooks.h.
4924         (OBJS): Add cfghooks.o.
4925         (cfghooks.o): New rule.
4926         * basic-block.h (split_edge): Rename to rtl_split_edge.
4927         (verify_flow_info): Rename to rtl_verify_flow_info.
4928         (cfghooks.h): Included here.
4929         * cfgrtl.c (split_edge): Renamed rtl_split_edge.
4930         (verify_flow_info): Renamed rtl_verify_flow_info.
4931         * toplev.c (rest_of_compilation): Call rtl_register_cfg_hooks.
4932
4933         * basic-block.h (split_block, split_edge, flow_delete_block,
4934         redirect_edge_and_branch, redirect_edge_and_branch_force): Delete.
4935         (flow_delete_block_noexpunge):  Return void.
4936         * cfg.c (verify_flow_info): New function.
4937         * cfgcleanup.c (try_simplify_condjump, outgoing_edges_match,
4938         try_crossjump_to_edge, try_optimize_cfg, delete_unreachable_blocks):
4939         Use delete_block.
4940         * cfglayout.c (function_footer): Rename to...
4941         (cfg_layout_function_footer): ... this variable
4942         (unlink_insn_chain): Make global.
4943         (fixup_reorder_chain, record_effective_endpoints): Update.
4944         (cleanup_unconditional_jumps): Use delete_block.
4945         (cfg_layout_redirect_edge, cfg_layout_split_block): Move to cfgrtl.c
4946         (cfg_layout_duplicate_bb): Use redirect_edge_and_branch_force.
4947         (cfg_layout_initialize, cfg_layout_finalize): Update hooks.
4948         * cfglayout.h (cfg_layout_redirect_edge, cfg_layout_split_block):  Delete.
4949         (cfg_layout_function_footer): Declare.
4950         * cfgloopmanip (split_loop_bb): Do not update RBI.
4951         (remove_bbs): Use delete_block.
4952         (loop_reidrect_edge, loop_delete_branch_edge): Use
4953         redirect_edge_and_branch.
4954         (create_preheader): Use split_block and redirect_edge_and_branch_force.
4955         (split_edge_with): Likewise.
4956         * cfgrtl.c: Include cfglayout.h
4957         (split_edge): Rename to ...
4958         (rtl_split_edge) ... this one; make local.
4959         (redirect_edge_and_branch): Rename to ...
4960         (rtl_redirect_edge_and_branch) ... this one; make local.
4961         (redirect_edge_and_branch_force): Rename to ...
4962         (rtl_redirect_edge_and_branch_force) ... this one; make local.
4963         (cfg_layout_delete_block, cfg_layout_delete_edge_and_branch_force): New.
4964         (cfg_layout_redirect_edge_and_branch, cfg_layout_split_block): Move here from
4965         cfglayout.c; update to directly call RTL counterparts.
4966         (rtl_cfg_hooks, cfg_layout_rtl_cfg_hooks): New functions.
4967         * ifcvt.c (find_cond_trap): Use delete_block.
4968         (find_if_case_1): Use delete_block.
4969         (find_if_case_2): Use delete_block.
4970         * rtl.h (unlink_insn_chain): Declare.
4971         * toplev.c (rtl_reigster_cfg_hooks): New.
4972
4973 2003-06-05  Richard Henderson  <rth@redhat.com>
4974
4975         * recog.c (peephole2_optimize): Revert last change.
4976
4977 2003-06-05  Richard Henderson  <rth@redhat.com>
4978
4979         * recog.c (peephole2_optimize): Don't split block unless
4980         can_throw_internal.
4981
4982 2003-06-06  Kazu Hirata  <kazu@cs.umass.edu>
4983
4984         * config/h8300/h8300.c (get_shift_alg): Correct the syntax of rotxl.
4985         * config/h8300/h8300.md (*addsi3_lshiftrt_16_zexthi): Likewise.
4986
4987 2003-06-05  Kelley Cook  <kelleycook@wideopenwest.com>
4988
4989         PR optimization/4490
4990         * config/i386/i386.md: Don't use XFMode if TARGET_128BIT_LONG_DOUBLE.
4991         * doc/invoke.texi (m96bit-long-double, m128bit-long-double):  Reword
4992         documentation to accurately reflect what these options do.
4993
4994 2003-06-06  Kaz Kojima  <kkojima@gcc.gnu.org>
4995
4996         * config/sh/linux.h (STARTFILE_SPEC): Handle -pie.  Simplify.
4997         (ENDFILE_SPEC): Redefine to handle -pie.
4998
4999 2003-06-05  Phil Edwards <phil@jaj.com>
5000
5001         * Makefile.in (qmtest-g++): Use target_alias, not target.
5002
5003 2003-06-05  Per Bothner  <pbothner@apple.com>
5004
5005         * toplev.c (push_srcloc):  Simplify behavior to save current location
5006         and set current location to parameters.
5007         (pop_srcloc):  Simplify semantics.
5008         (lang_dependent_init):  Remove now-useless initial push_srcloc.
5009
5010 2003-05-06  Richard Henderson  <rth@redhat.com>
5011
5012         * dwarf2out.c (loc_descriptor_from_tree): Return 0 for
5013         language-specific tree codes.
5014
5015 2003-06-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5016
5017         PR middle-end/9986
5018         * pa.c (pa_init_builtins): Also set implicit_built_in_decls for
5019         BUILT_IN_FPUTC_UNLOCKED to NULL_TREE.
5020
5021 Thu Jun  5 18:32:46 CEST 2003  Jan Hubicka  <jh@suse.cz>
5022
5023         * install.tex: Document profiledbootstrap.
5024
5025         * configure.in:  Add support for lang.stageprofile and
5026         lang.stagefeedback
5027         * Makefile.in (clean, distclean): Kill new stages
5028         (POSTSTAGE1_FLAGS_TO_PASS): Break from ...
5029         (STAGE2_FLAGS_TO_PASS): ... this one.
5030         (STAGEPROFILE_FLAGS_TO_PASS, STAGEFEEDBACK_FLAGS_TO_PASS): New.
5031         (stage[2-4]_build): Add POSTSTAGE1_FLAGS_TO_PASS.
5032         (stageprofile_build, stageprofile_copy, stagefeedback_build,
5033         stagefeedback_copy): New.
5034         (restageprofile, restagefeedback, stageprofile-start,
5035         stageprofile, stagefeedback-start): Likewise.
5036
5037 2003-06-05  David Miller  <davem@redhat.com>
5038             Richard Henderson  <rth@redhat.com>
5039
5040         * optabs.c (HAVE_conditional_trap): Provide default.
5041         (gen_conditional_trap): Likewise.
5042         (init_optabs): Merge init_traps.
5043         (gen_cond_trap): Use prepare_operand.  Restructure and avoid ifdef.
5044
5045 Thu Jun  5 14:59:44 CEST 2003  Jan Hubicka  <jh@suse.cz>
5046
5047         * combine.c (simplify_if_then_else): (IF_THEN_ELSE (NE REG 0) (0) (8))
5048         is REG for nonzero_bits (REG) == 8.
5049
5050 Thu Jun  5 13:23:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
5051
5052         * i386.md (align): Fix warning; clarify what to do when no p2align
5053         is available.
5054
5055 2003-06-05  Nick Clifton  <nickc@redhat.com>
5056
5057         * config.gcc (m32r-elf): Revert previous delta.
5058         * config/m32r/t-m32r (crtinit.o): Fix rule to work with
5059         multilibs.  Remove m32rx specific version.
5060         (crtfini.o): Likewise.
5061         (EXTRA_MULTILIB_PARTS): Define.
5062
5063 2003-06-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
5064
5065         * doc/md.texi (Machine Constraints): Correct the meaning of
5066         constraints related to floating-point registers on SPARC.
5067
5068 2003-06-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
5069             Paolo Bonzini  <bonzini@gnu.org>
5070
5071         PR target/10663
5072         * configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Redirect
5073         assembler and linker output to /dev/null.
5074         Use a 'sed' construct instead of 'grep -A1'.
5075         * configure: Regenerate.
5076
5077 2003-06-04  Richard Henderson  <rth@redhat.com>
5078
5079         * config/i386/i386.c (struct ix86_address): Add seg.
5080         (no_seg_address_operand): New.
5081         (ix86_decompose_address): Restructure PLUS loop.  Accept one
5082         UNSPEC_TP if TARGET_TLS_DIRECT_SEG_REFS.  Adjust ESP swap test
5083         to test for a regnum, not stack_pointer_rtx.
5084         (ix86_address_cost): Reduce cost if non-default segment.
5085         (legitimate_address_p): Remove UNSPEC_TP check.
5086         (get_thread_pointer): Add to_reg argument.  Don't represent
5087         the thread pointer as a memory load.
5088         (legitimize_tls_address): Split out of ...
5089         (legitimize_address): ... here.
5090         (print_operand_address): Handle parts.seg.
5091         (ix86_expand_move): Use legitimize_tls_address.
5092         (ix86_rtx_costs): Handle UNSPEC_TP.
5093         * config/i386/i386.h (MASK_TLS_DIRECT_SEG_REFS): New.
5094         (TARGET_TLS_DIRECT_SEG_REFS): New.
5095         (TARGET_SWITCHES): Add tls-direct-seg-refs.
5096         (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): Default.
5097         (PREDICATE_CODES): Add no_seg_address_operand.
5098         * config/i386/i386.md (lea_1): Use it.
5099         (lea_1_rex64, lea_1_zext, lea_2_rex64): Likewise.
5100         (load_tp_si, add_tp_si, load_tp_di, add_tp_di): New.
5101         * config/i386/linux.h (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): New.
5102         * config/i386/linux64.h (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): New.
5103         * doc/invoke.texi: Add -mtls-direct-seg-refs.
5104
5105 2003-06-04  Mark Mitchell  <mark@codesourcery.com>
5106
5107         * Makefile.in (QMTESTRUNFLAGS): Set for DejaGNU emulation.
5108         (QMTEST_GPP_TESTS): Use "g++" by default.
5109         (stamp-qmtest): Tweak database creation.
5110         (QMTEST_DIR/context): Update context file format.
5111         (qmtest-g++): Tweak command-line.
5112
5113 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5114
5115         * Makefile.in (varasm.o): Don't set -Wno-error.
5116         * rs6000/t-rs6000 (varasm.o, out_object_file): Don't clear.
5117
5118 2003-06-04  Zack Weinberg  <zack@codesourcery.com>
5119
5120         PR bootstrap/3163
5121         * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE, AC_FUNC_MMAP_FILE): Delete.
5122         (gcc_AC_FUNC_MMAP_BLACKLIST): New.
5123         * configure.in: Check for sys/mman.h and mmap in AC_CHECK_HEADERS
5124         and AC_CHECK_FUNCS lists, respectively.  Use
5125         gcc_AC_FUNC_MMAP_BLACKLIST, not AC_FUNC_MMAP_ANYWHERE nor
5126         AC_FUNC_MMAP_FILE.
5127         * configure, config.in: Regenerate.
5128
5129 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5130
5131         * arm/aout.h (ASM_OUTPUT_SKIP): Fix cast for format specifier warning.
5132         * arm.c (arm_output_function_prologue): Fix format specifiers.
5133         * arm.h (ARM_PRINT_OPERAND_ADDRESS): Likewise.
5134         * m68k.c (m68k_output_mi_thunk): Use more readable %wd instead of
5135         HOST_WIDE_INT_PRINT_DEC.
5136         * vax.c (vax_output_function_prologue): Fix format specifiers.
5137
5138 2003-06-04  Richard Henderson  <rth@redhat.com>
5139
5140         * cse.c (find_best_addr): Consider binary operators even if second
5141         argument is not CONST_INT.
5142
5143 2003-06-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5144
5145         * doc/invoke.texi (max-cse-path-length): Document.
5146
5147 2003-06-04  Richard Henderson  <rth@redhat.com>
5148
5149         * config/i386/i386.md (align): Use ASM_OUTPUT_*ALIGN macros.
5150
5151 2003-06-04  Andrew Pinski <pinskia@physics.uc.edu>
5152
5153         * config/rs6000/darwin.h (RS6000_OUTPUT_BASENAME):
5154         Remove semi-colon at the end of the expression.
5155
5156 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5157
5158         * i370.c (mvs_function_name_length): Fix signed/unsigned warnings.
5159         * i370.h (mvs_function_name_length): Likewise.
5160         * i960.h (CONSTANT_ALIGNMENT): Likewise.
5161         * mips/linux.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
5162         * pa/pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5163         * pa.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5164         * rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Delete unused
5165         variable.
5166
5167 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
5168
5169         * config.gcc: Reorganize --with-cpu logic.  Set
5170         configure_default_options according to the default CPU, --with-cpu,
5171         --with-arch, --with-tune, --with-schedule, --with-abi, and
5172         --with-float.  Check for legal values of various options.
5173         * configure.in: Define configure_default_options in configargs.h.
5174         * configure: Regenerated.
5175         * config/mips/mips.h (TARGET_DEFAULT_ARCH_P)
5176         (TARGET_DEFAULT_FLOAT_P): New macros.
5177         * gcc.c (do_option_spec): New function.
5178         (struct default_spec, option_default_specs): New.
5179         (main): Call do_option_spec.
5180         * config/alpha/alpha.h, config/arm/arm.h, config/i386/i386.h,
5181         config/mips/mips.h, config/pa/pa.h, config/rs6000/rs6000.h,
5182         config/sparc/sparc.h (OPTION_DEFAULT_SPECS): Define.
5183
5184         * doc/install.texi: Update --with-cpu documentation.  Mention
5185         --with-arch, --with-schedule, --with-tune, --with-abi, and
5186         --with-float.
5187         * doc/tm.texi (Driver): Document OPTION_DEFAULT_SPECS.
5188
5189 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
5190
5191         * config.gcc: Only process --with-cpu logic in the third pass.
5192
5193 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
5194
5195         * config.gcc: Reorganize --with-cpu section.  Remove an
5196         obsolete comment about the default CPU for x86-64.  Fix
5197         a typo for the ep9312.  Update the list of supported PowerPC
5198         CPUs.  Support a limited set of new --with-cpu options
5199         for i386.
5200
5201 2003-06-04  Aldy Hernandez  <aldyh@redhat.com>
5202
5203         * config/rs6000/rs6000.c (rs6000_complex_function_value): Unpack
5204         complex numbers <= 32 bits into two registers.
5205
5206 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5207
5208         * alpha.c (print_operand_address): Fix format specifier warnings.
5209         * alpha/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5210         * alpha/vms.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5211         * arm/aof.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
5212         * arm/pe.h (ASM_OUTPUT_COMMON): Likewise.
5213         * avr.h (ASM_OUTPUT_COMMON, ASM_GENERATE_INTERNAL_LABEL,
5214         ASM_OUTPUT_SKIP): Likewise.
5215         * c4x.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5216         * dsp16xx.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5217         * h8300.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_COMMON):
5218         Likewise.
5219         * i370.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5220         * i386/cygming.h (ASM_OUTPUT_COMMON): Likewise.
5221         * i386/darwin.h (ASM_OUTPUT_COMMON): Likewise.
5222         * i960.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5223         * m68k/hp320.h (PRINT_OPERAND_ADDRESS): Likewise.
5224         * mcore.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5225         * pdp11.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5226         * ptx4.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
5227         * sparc/freebsd.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
5228         * svr3.h (ASM_OUTPUT_COMMON): Likewise.
5229
5230 2003-06-04  J"orn Rennecke <joern.rennecke@superh.com>
5231
5232         * c-decl.c (c_init_decl_processing): Clear input_file_name
5233         while building common nodes.
5234         * dwarf2out.c (gen_compile_unit_die, dwarf2out_finish):
5235         Don't add working directory for strings like <built-in> .
5236
5237 2003-06-04  David Edelsohn  <edelsohn@gnu.org>
5238
5239         * doc/install.texi (*-ibm-aix*): Native as and ld required
5240         to bootstrap on AIX 5L.
5241
5242 2003-06-04  Richard Henderson  <rth@redhat.com>
5243
5244         * c-common.c (handle_cleanup_attribute): New.
5245         (c_common_attributes): Add it.
5246         * c-decl.c (finish_decl): Honor the cleanup attribute.
5247         * doc/extend.texi (Variable Attributes): Document it.
5248
5249         * unwind-c.c: New file.
5250         * Makefile.in (LIB2ADDEH): Add it.
5251         * config/t-darwin, config/t-linux, config/t-linux-gnulibc1,
5252         config/ia64/t-ia64: Likewise.
5253
5254 2003-06-04  Jakub Jelinek  <jakub@redhat.com>
5255
5256         * function.c (trampolines_created): New variable.
5257         (expand_function_end): Set it when doing INITIALIZE_TRAMPOLINE.
5258         * function.h (trampolines_created): Add.
5259         * config/s390/linux.h (ASM_FILE_END): Define.
5260         * config/alpha/linux-elf.h (ASM_FILE_END): Define.
5261         * config/m68k/linux.h (ASM_FILE_END): Define.
5262         * config/rs6000/linux.h (ASM_FILE_END): Define.
5263         * config/rs6000/linux64.h (ASM_FILE_END): Define.
5264         * config/rs6000/ppc-asm.h: Add .note.GNU-stack on powerpc-linux.
5265         * config/sparc/linux.h (ASM_FILE_END): Define.
5266         * config/sparc/linux64.h (ASM_FILE_END): Define.
5267         * config/i386/i386.c (ix86_asm_file_end): Use SUBTARGET_FILE_END.
5268         * config/i386/linux.h (SUBTARGET_FILE_END): Define.
5269         * config/i386/linux64.h (SUBTARGET_FILE_END): Define.
5270
5271 Wed Jun  4 18:39:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
5272
5273         * i386.c (min_insn_size, k8_avoid_jump_misspredicts): New functions
5274         (ix86_reorg): Use it.
5275         * i386.md (align): New insn pattern.
5276
5277 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5278
5279         * toplev.c (rest_of_type_compilation): Fix typo.
5280
5281 2003-06-04  Jakub Jelinek  <jakub@redhat.com>
5282             Alan Modra  <amodra@bigpond.net.au>
5283
5284         * config/i386/linux.h (NO_PROFILE_COUNTERS): Define to 1.
5285         * config/i386/freebsd.h (NO_PROFILE_COUNTERS): Likewise.
5286         * config/i386/netbsd-elf.h (NO_PROFILE_COUNTERS): Likewise.
5287         * config/xtensa/xtensa.h (NO_PROFILE_COUTNERS): Likewise.
5288         * config/darwin.h (NO_PROFILE_COUNTERS): Likewise.
5289         * final.c (NO_PROFILE_COUNTERS): Define to 0 if not defined.
5290         (profile_function): Allow NO_PROFILE_COUNTERS to be non-constant.
5291         * config/rs6000/rs6000.c (output_profile_hook): Likewise.
5292
5293         * configure.in (powerpc*-*, s390*-*): Set tls_as_opt.
5294         Pass it to $gcc_cv_as.
5295         * configure: Rebuilt.
5296
5297         * config/rs6000/rs6000.c (rs6000_abi_name): Remove initializer.
5298         (print_operand): Allow TARGET_AIX to be non-constant.
5299         (rs6000_aix_emit_builtin_unwind_init, rs6000_emit_eh_toc_restore):
5300         Define unconditionally.
5301         (rs6000_elf_declare_function_name): New function.
5302         * config/rs6000/rs6000.md (eh_return): Allow TARGET_AIX to be
5303         non-constant.
5304         * config/rs6000/linux64.h [!RS6000_BI_ARCH] (TARGET_64BIT): Define
5305         to 1.
5306         (DEFAULT_ARCH64_P, RS6000_BI_ARCH_P): Define.
5307         [IN_LIBGCC2] (TARGET_64BIT): Define based on whether __powerpc64__
5308         is defined.
5309         (TARGET_AIX): Define to 1 if TARGET_64BIT.
5310         (PROCESSOR_DEFAULT): Remove.
5311         (TARGET_RELOCATABLE, RS6000_ABI_NAME, INVALID_64BIT,
5312         INVALID_32BIT, SUBSUBTARGET_OVERRIDE_OPTIONS): Define.
5313         [RS6000_BI_ARCH] (OVERRIDE_OPTIONS, ASM_FILE_START): Define.
5314         (ASM_DEFAULT_SPEC, ASM_SPEC, LINK_OS_LINUX_SPEC): Define for both
5315         -m32 and -m64.
5316         (MULTILIB_DEFAULTS): Define.
5317         (SUBSUBTARGET_EXTRA_SPECS): Define.
5318         (ASM_SPEC32, ASM_SPEC64, ASM_SPEC_COMMON): Define.
5319         (TARGET_TOC): Define only if !RS6000_BI_ARCH.
5320         (TARGET_NO_TOC): Remove.
5321         [!RS6000_BI_ARCH] (TARGET_RELOCATABLE, TARGET_EABI,
5322         TARGET_PROTOTYPE): Define to 0.
5323         (NO_PROFILE_COUNTERS): Define to TARGET_64BIT.
5324         (PROFILE_HOOK): Only call output_profile_hook if TARGET_64BIT.
5325         (ADJUST_FIELD_ALIGN, ROUND_TYPE_ALIGN): Adjust to work properly
5326         if !TARGET_64BIT.
5327         (USER_LABEL_PREFIX): Remove.
5328         (JUMP_TABLES_IN_TEXT_SECTION): Define to TARGET_64BIT.
5329         (SETUP_FRAME_ADDRESSES): Only call rs6000_aix_emit_builtin_unwind_init
5330         if TARGET_64BIT.
5331         (TARGET_OS_CPP_BUILTINS): Handle both -m32 and -m64.
5332         (LINK_OS_LINUX_SPEC32, LINK_OS_LINUX_SPEC64): Define.
5333         (STARTFILE_LINUX_SPEC, ENDFILE_LINUX_SPEC): Remove.
5334         (TOC_SECTION_ASM_OP): Define depending on TARGET_64BIT.
5335         (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
5336         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Define depending on
5337         TARGET_64BIT.
5338         (RS6000_CALL_GLUE): Likewise.
5339         (SAVE_FP_PREFIX, SAVE_FP_SUFFIX, RESTORE_FP_PREFIX,
5340         RESTORE_FP_SUFFIX): Likewise.
5341         (ASM_DECLARE_FUNCTION_NAME): Remove.
5342         (ASM_DECLARE_FUNCTION_SIZE, ASM_OUTPUT_SOURCE_LINE,
5343         DBX_OUTPUT_BRAC, DBX_OUTPUT_NFUN): Only output dot before function
5344         name if TARGET_64BIT.
5345         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Handle both TARGET_64BIT and
5346         !TARGET_64BIT.
5347         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Remove undefs.
5348         (ASM_PREFERRED_EH_DATA_FORMAT): Take TARGET_64BIT into account.
5349         (DRAFT_V4_STRUCT_RET): Define.
5350         (SIGNAL_FRAMESIZE): New enum value.
5351         (MD_FALLBACK_FRAME_STATE_FOR): Define.
5352         * config/rs6000/default64.h: New file.
5353         * config/rs6000/sysv4.h (SUBTARGET_SWITCHES): Add -m32 and -m64
5354         options.
5355         (SUBTARGET_OVERRIDE_OPTIONS): If rs6000_abi_name is NULL, set it
5356         to RS6000_ABI_NAME.  Only disallow mixing of -fPIC with -mcall-aixdesc
5357         if !TARGET_64BIT.
5358         [!RS6000_BI_ARCH] (SUBSUBTARGET_OVERRIDE_OPTIONS): Define.
5359         (ASM_DECLARE_FUNCTION_NAME): Use rs6000_elf_declare_function_name
5360         function.
5361         (TARGET_OS_SYSV_CPP_BUILTINS): Define.
5362         (TARGET_OS_CPP_BUILTINS): Use it.
5363         (CPP_SYSV_SPEC): Remove.
5364         (CPP_SPEC): Remove cpp_sysv.
5365         (SUBTARGET_EXTRA_SPECS): Remove cpp_sysv.
5366         Add SUBSUBTARGET_EXTRA_SPECS.
5367         (SUBSUBTARGET_EXTRA_SPECS): Define.
5368         * config/rs6000/biarch64.h: New file.
5369         * config/rs6000/rs6000-protos.h (rs6000_elf_declare_function_name):
5370         New prototype.
5371         * config/rs6000/x-linux64: New file.
5372         * config/rs6000/t-linux64: Build -m64, -m32 and -m32 -msoft-float
5373         multilibs.
5374         * config/rs6000/eabi-ci.asm: Protect with #ifndef __powerpc64__.
5375         * config/rs6000/eabi-cn.asm: Likewise.
5376         * config/rs6000/tramp.asm: Likewise.
5377         * config/rs6000/sol-ci.asm: Likewise.
5378         * config/rs6000/sol-cn.asm: Likewise.
5379         * config/rs6000/linux.h (TARGET_64BIT): Define to 0.
5380         (TARGET_OS_CPP_BUILTINS): Use TARGET_OS_SYSV_CPP_BUILTINS.
5381         * config/rs6000/ppc-asm.h: Move __powerpc64__ section before
5382         _CALL_AIXDESC section.
5383         * config.gcc (powerpc64-*-linux*): Configure a bi-arch compiler,
5384         defaulting to -m64 unless --with-cpu= is one of the 32-bit CPUs
5385         or default32.
5386
5387 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
5388
5389         * config.gcc: Revert accidentally committed ARM changes.
5390
5391 2003-06-04  Roger Sayle  <roger@eyesopen.com>
5392
5393         * builtins.c (dconstpi, dconste): New mathematical constants.
5394         (init_builtin_dconsts): New function to initialize dconstpi
5395         and dconste.
5396         (fold_builtin): Optimize exp(1.0) = e.  Evaluate exp(x) at
5397         compile time with -ffast-math when x is an integer constant.
5398         Optimize tan(0.0) = 0.0.  Optimize atan(0.0) = 0.0,
5399         atan(1.0) = pi/4 and tan(atan(x)) = x with -ffast-math.
5400
5401 2003-06-04  Roger Sayle  <roger@eyesopen.com>
5402
5403         * calls.c (expand_call): Avoid calling pure or const functions
5404         when the result is ignored (or void) and none of the arguments
5405         are volatile.  Move warning diagnostic earlier in function.
5406
5407 2003-06-04  Andreas Jaeger  <aj@suse.de>
5408
5409         * system.h: Do not poison TDESC_SECTION_ASM_OP,
5410         RDATA_SECTION_ASM_OP and SUBTARGET_PROLOGUE.
5411
5412 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5413
5414         * final.c (asm_fprintf): Update comments, accept "-+ #0" flags,
5415         optimize '%' case, handle %c, don't accept %p, %e, %f or %g,
5416         handle %ll, optimize regular character case.
5417
5418 2003-06-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5419
5420         * Makefile.in (cse.o): Add params.h dependency.
5421         * cse.c: Include params.h.
5422         (PATHLENGTH): Removed.
5423         (struct cse_basic_block_data): Make path array dynamic.
5424         (cse_end_of_basic_block): Use PARAM_MAX_CSE_PATH_LENGTH instead
5425         of PATHLENGTH.
5426         (cse_main, cse_basic_block): Allocate path array.
5427         * params.def (PARAM_MAX_CSE_PATH_LENGTH): New.
5428
5429 Wed Jun  4 09:49:21 CEST 2003  Jan Hubicka  <jh@suse.cz>
5430
5431         * i386.c (ix86_reorg): Replace the jump instead of adding nop.
5432         * i386.md (UNSPEC_REP): New constant.
5433         (return_internal_long): New pattern.
5434
5435 2003-06-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5436
5437         PR optimization/11018
5438         * config/sparc/sparc.c (sparc_v8plus_shift): Use which_alternative
5439         consistently to decide whether the scratch register is really
5440         required.
5441
5442 2003-06-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5443
5444         PR optimization/10876
5445         * config/sparc/sparc.h (CONST_OK_FOR_LETTER): Add
5446         new 'O' constraint for constant 4096.
5447         (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
5448         * config/sparc/sparc.md (adddi3 expander): Canonicalize pattern.
5449         Do not transform into MINUS insn for constant 4096.
5450         (*adddi3_sp64 insn): Canonicalize pattern. Add new alternative
5451         for constant 4096 as third operand.
5452         (addsi3 expander): Remove.
5453         (*addsi3 insn): Rename into 'addsi3'. Canonicalize pattern. Add
5454         new alternative for constant 4096 as third operand.
5455         (subdi3 expander): Do not transform into PLUS insn for constant 4096.
5456         (*subdi3_sp64 insn): Add new alternative for constant 4096 as third
5457         operand.
5458         (subsi3 expander): Remove.
5459         (*subsi3 insn): Rename into 'subsi3'. Add new alternative for
5460         constant 4096 as third operand.
5461         * doc/md.texi (Machine Constraints): Document new 'O' constraint for
5462         the SPARC port.
5463
5464 2003-06-03  Chris Demetriou  <cgd@broadcom.com>
5465
5466         * config/mips/t-linux64 (CRTSTUFF_T_CFLAGS_S): Define.
5467
5468 2003-06-04  Andreas Jaeger  <aj@suse.de>
5469
5470         * config/i386/uwin.h: Remove SUBTARGET_PROLOGUE.
5471
5472         * config/i386/i386.c (ix86_expand_prologue): Do not use
5473         SUBTARGET_PROLOGUE.
5474
5475         * system.h: Poision SUBTARGET_PROLOGUE.
5476
5477         * config/arm/arm-protos.h: Remove unused rdate_section prototype.
5478
5479         * output.h: Remove TDESC_SECTION_ASM_OP and RDATA_SECTION_ASM_OP
5480         dependend code.
5481
5482         * system.h: Poison TDESC_SECTION_ASM_OP and RDATA_SECTION_ASM_OP.
5483
5484         * system.h: Poison INSN_CACHE_DEPTH, INSN_CACHE_SIZE and
5485         INSN_CACHE_LINE_WIDTH.
5486
5487         * libgcc2.c (INSN_CACHE_PLANE_SIZE): Removed.
5488         (__clear_cache): Remove code dependend on INSN_CACHE_DEPTH,
5489         INSN_CACHE_SIZE and INSN_CACHE_LINE_WIDTH.
5490
5491         * doc/tm.texi (Trampolines): Remove INSN_CACHE_DEPTH,
5492         INSN_CACHE_SIZE and INSN_CACHE_LINE_WIDTH.
5493
5494         * dbxout.c (dbxout_type): Remove usage of DBX_OUTPUT_ENUM.
5495         (dbxout_symbol): Remove usage of DBX_OUTPUT_CONSTANT_SYMBOL.
5496         (dbxout_block): Remove usage of DBX_OUTPUT_CATCH.
5497         (dbxout_block): Remove usage of DBX_LBRAC_FIRST.
5498         (dbxout_source_file): Remove usage of DBX_OUTPUT_SOURCE_FILENAME.
5499         (dbxout_init): Remove test for DBX_WORKING_DIRECTORY.
5500
5501         * doc/tm.texi (DBX Options): Do not document DBX_LBRAC_FIRST,
5502         DBX_OUTPUT_SOURCE_FILENAME and DBX_OUTPUT_ENUM and
5503         DBX_WORKING_DIRECTORY.
5504
5505         * system.h: Poison DBX_LBRAC_FIRST, DBX_OUTPUT_ENUM,
5506         DBX_OUTPUT_SOURCE_FILENAME and DBX_WORKING_DIRECTORY.
5507
5508         * config/frv/frv-protos.h: Remove unused const_section
5509         declaration.
5510         * config/vax/vax-protos.h: Likewise.
5511
5512         * output.h: Remove CONST_SECTION_ASM_OP usage.
5513
5514         * system.h: Poison CONST_SECTION_ASM_OP.
5515
5516         * crtstuff.c (__do_global_dtors_aux): Remove usage of
5517         CRT_GET_RFIB_TEXT.
5518         (frame_dummy): Likewise.
5519         * unwind-dw2-fde-glibc.c (_Unwind_IteratePhdrCallback): Likewise.
5520         * system.h: Poison CRT_GET_RFIB_TEXT.
5521
5522         * collect2.c (is_ctor_dtor): Remove CFRONT_LOSSAGE dependend code.
5523
5524         * fix-header.c: Remove ADD_MISSING_EXTERN_C dependend variables.
5525         (write_lbrac): Remove ADD_MISSING_EXTERN_C dependend code.
5526         (recognized_function): Likewise.
5527         (read_scan_file): Likewise.
5528
5529 2003-06-03  Roger Sayle  <roger@eyesopen.com>
5530
5531         * optabs.c (expand_binop): Optimize complex multiplication for
5532         the case of squaring a complex argument.
5533
5534 2003-06-03  Roger Sayle  <roger@eyesopen.com>
5535
5536         * optabs.c (expand_binop): Attempt to reuse pseudos for duplicate
5537         non-volatile operands of binary operations.
5538         (prepare_cmp_insn): Likewise.
5539
5540 2003-06-03  Roger Sayle  <roger@eyesopen.com>
5541
5542         * varasm.c (force_const_mem): Handle alignment of constants not
5543         representable as a type in the front-end language.
5544
5545 2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
5546
5547         * flow.c (initialize_uninitialized_subregs): Use
5548         emit_move_insn instead of emitting a hardcoded move.
5549
5550 2003-06-03  Richard Henderson  <rth@redhat.com>
5551
5552         * optabs.c (expand_abs_nojump): Split out from ...
5553         (expand_abs): ... here.
5554         * optabs.h (expand_abs_nojump): Declare.
5555         * ifcvt.c: (noce_try_abs): Use expand_abs_nojump.
5556         * Makefile.in (ifcvt.o): Depend on optabs.h.
5557
5558 2003-06-03  Alan Modra  <amodra@bigpond.net.au>
5559
5560         * dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Heed flag_merge_constants.
5561
5562 2003-06-03  Jason Thorpe  <thorpej@wasabisystems.com>
5563
5564         * config.gcc (default_use_cxa_atexit): New variable, defaults to no.
5565         (*-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*): Set default_use_cxa_atexit
5566         to yes.
5567         * configure.in: Allow default_use_cxa_atexit to determine the
5568         value of DEFAULT_USE_CXA_ATEXIT if not explicitly enabled or
5569         disabled.
5570         * configure: Regenerate.
5571
5572 2003-06-03  Douglas B Rupp  <rupp@gnat.com>
5573
5574         * Makefile.in (TEXI_GCC_FILES): Remove vms.texi entry.
5575         * doc/gcc.texi: Remove vms.texi section.
5576         * doc/vms.texi: Remove obsolete file.
5577
5578 2003-05-23  J"orn Rennecke <joern.rennecke@superh.com>
5579
5580         * configure.in (inhibit_libc): Don't define when configuring
5581         with --with-newlib --with-headers.
5582         * configure: Regenerate.
5583
5584         * t-sh: Remove LIB2FUNCS_EXTRA and embed-bb.c rules.
5585
5586 2003-06-03  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5587
5588         * configure.in (gcc_cv_as_hidden): Disable .hidden completely on
5589         IRIX 6 without GNU ld.
5590         * configure: Regenerate.
5591
5592 2003-06-03  Roger Sayle  <roger@eyesopen.com>
5593
5594         * expr.c (emit_move_insn_1): Use emit_move_insn to move the parts
5595         of a complex number rather than invoke mov_optab directly.
5596
5597 2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
5598
5599         * combine.c (simplify_set): Don't move a subreg in SET_SRC to
5600         SET_DEST if WORD_REGISTER_OPERATIONS is not defined.
5601
5602 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
5603
5604         * config/i386/x86-64.h: Remove two target-independent comments;
5605          replace "GNU CC" with "GCC".
5606
5607 2003-06-03  Anthony Green  <green@redhat.com>
5608
5609         * config/frv/t-frv (EXTRA_HEADERS): Remove media.h
5610
5611 2003-06-03  Roger Sayle  <roger@eyesopen.com>
5612
5613         * builtins.def (BUILT_IN_CABS, BUILT_IN_CABSF, BUILT_IN_CABSL):
5614         New builtins representing ISO C99's cabs, cabsf and cabsl.
5615         * builtins.c (expand_builtin_fabs): New function.
5616         (expand_builtin_cabs): New function.
5617         (expand_builtin): Expand BUILT_IN_FABS{,F,L} and BUILT_IN_CABS{,F,L}
5618         using expand_builtin_fabs and expand_builtin_cabs respectively.
5619
5620         * doc/extend.texi: Document new cabs, cabsf and cabsl builtins.
5621
5622 2003-06-03  Aldy Hernandez  <aldyh@redhat.com>
5623
5624         * function.c (assign_parms): Split complex arguments.
5625
5626         * doc/tm.texi (SPLIT_COMPLEX_ARGS): Document.
5627
5628         * expr.h (SPLIT_COMPLEX_ARGS): Define.
5629         (split_complex_types): Protoize.
5630         (split_complex_values): Protoize.
5631
5632         * calls.c (expand_call): Split complex arguments on architectures
5633         that require it.
5634         (split_complex_values): New.
5635         (split_complex_types): New.
5636
5637         * config/rs6000/rs6000.c (rs6000_libcall_value): New.
5638         (rs6000_function_value): Handle complex values on AIX.
5639         (rs6000_complex_function_value): New.
5640
5641         * config/rs6000/rs6000-protos.h (rs6000_libcall_value): Protoize.
5642
5643         * config/rs6000/rs6000.h (LIBCALL_VALUE): Call function.
5644         (SPLIT_COMPLEX_ARGS): New.
5645
5646 2003-06-03  Jakub Jelinek  <jakub@redhat.com>
5647
5648         * configure.in (HAVE_LD_PIE): Check for ld -pie.
5649         * config.in: Rebuilt.
5650         * configure: Rebuilt.
5651         * toplev.c (flag_pie, flag_shlib): New variables.
5652         (f_options): Add -fpie and -fPIE.
5653         (parse_options_and_default_flags): Set flag_pic if -fpie/-fPIE.
5654         Set flag_shlib if flag_pic and not -fpie/-fPIE.
5655         * flags.h (flag_pic, flag_shlib): Add.
5656         * varasm.c (default_binds_local_p): Use flag_shlib instead of
5657         flag_pic.
5658         * gcc.c (LINK_PIE_SPEC): Define.
5659         (LINK_COMMAND_SPEC): Use LINK_PIE_SPEC.
5660         (option_map): Add --pie -> -pie mapping.
5661         * config/sol2.h (ASM_SPEC): Handle -fpie the same way as -fpic
5662         and -fPIE the same way as -fPIC.
5663         * config/openbsd.h (ASM_SPEC): Likewise.
5664         * config/frv/frv.h (ASM_SPEC): Likewise.
5665         * config/arm/linux-gas.h (SUBTARGET_CPP_SPEC): Likewise.
5666         * config/arm/semi.h (ASM_SPEC): Likewise.
5667         * config/arm/netbsd-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Likewise.
5668         * config/freebsd-spec.h (FBSD_CPP_SPEC): Likewise.
5669         * config/i386/beos-elf.h (CC1_SPEC): Likewise.
5670         * config/i386/freebsd-aout.h (ASM_SPEC): Likewise.
5671         * config/m68k/linux.h (CPP_SPEC): Likewise.
5672         * config/m68k/netbsd.h (ASM_SPEC): Likewise.
5673         * config/m68k/openbsd.h (ASM_SPEC): Likewise.
5674         * config/m68k/netbsd-elf.h (ASM_SPEC): Likewise.
5675         * config/mips/linux.h (SUBTARGET_CPP_SPEC): Likewise.
5676         * config/mips/openbsd.h (SUBTARGET_ASM_SPEC): Likewise.
5677         * config/pa/pa-linux.h (CPP_SPEC): Likewise.
5678         * config/netbsd-aout.h (ASM_SPEC): Likewise.
5679         * config/rs6000/sysv4.h (ASM_SPEC, CPP_SYSV_SPEC): Likewise.
5680         * config/rs6000/vxworks.h (CPP_SPEC): Likewise.
5681         * config/sparc/linux.h (CPP_SUBTARGET_SPEC, ASM_SPEC): Likewise.
5682         * config/sparc/linux64.h (CPP_SUBTARGET_SPEC, ASM_SPEC): Likewise.
5683         * config/sparc/sparc.h (ASM_SPEC): Likewise.
5684         * config/sparc/sp64-elf.h (ASM_SPEC): Likewise.
5685         * config/sparc/sysv4.h (ASM_SPEC): Likewise.
5686         * config/sparc/netbsd-elf.h (ASM_SPEC): Likewise.
5687         * config/sparc/openbsd64.h (ASM_SPEC): Likewise.
5688         * config/cris/linux.h (CRIS_ASM_SUBTARGET_SPEC): Likewise.
5689         * config/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Handle -pie.
5690         Simplify.
5691         * config/alpha/elf.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5692         * config/i386/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5693         * config/ia64/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5694         * config/rs6000/sysv4.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5695         * config/rs6000/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5696         * config/sparc/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5697         * config/sparc/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5698         * doc/invoke.texi: Document -pie, -fpie and -fPIE options.
5699
5700 2003-06-03  Jakub Jelinek  <jakub@redhat.com>
5701
5702         * builtins.c (expand_builtin_memcpy): Remove endp argument and endp
5703         != 0 handling.  Pass 0 to store_by_pieces.
5704         (expand_builtin_mempcpy): Add endp argument.  Don't call
5705         expand_builtin_memcpy, call store_by_pieces resp. move_by_pieces
5706         directly.  If ignoring result, only do expand_call.
5707         (expand_builtin_stpcpy): Likewise.  Call expand_builtin_mempcpy
5708         otherwise.
5709         (expand_builtin_strncpy, expand_builtin_memset): Adjust
5710         store_by_pices callers.
5711         (expand_builtin): Adjust expand_builtin_memcpy and
5712         expand_builtin_mempcpy callers.
5713         * expr.c (can_move_by_pieces): New function.
5714         (move_by_pieces): Add endp argument, return to resp. memory at end
5715         or one byte earlier depending on endp.
5716         (store_by_pieces): Likewise.
5717         (emit_block_move): Adjust call to move_by_pieces.
5718         (emit_push_insn): Adjust move_by_pieces caller.
5719         * expr.h (can_move_by_pieces): New prototype.
5720         (store_by_pieces): Adjust prototypes.
5721         * rtl.h (move_by_pieces): Adjust prototype.
5722         * config/mips/mips.c (expand_block_move): Adjust move_by_pieces
5723         caller.
5724
5725 2003-06-03  Ben Elliston  <bje@wasabisystems.com>
5726
5727         * doc/md.texi (Processor pipeline description): Improve wording.
5728
5729 2003-06-03  Neil Booth  <neil@daikokuya.co.uk>
5730
5731         * c-opts.c (c_common_handle_option): New, pulled out of
5732         c_common_decode_option.  Substitute uses of argv.
5733         (c_common_decode_option): Broken into two.
5734
5735 2003-06-02  Roger Sayle  <roger@eyesopen.com>
5736             Zack Weinberg  <zack@codesourcery.com>
5737
5738         * emit-rtl.c (gen_complex_constant_part):  Remove unnecessary
5739         test of TREE_CONSTANT_POOL_ADDRESS_P.
5740
5741 2003-06-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5742
5743         * mips.c: Don't include output.h twice.
5744         * stormy16.c: Likewise.
5745         * xtensa.c: Likewise.
5746         * output.h: Protect against multiple inclusion.
5747
5748 2003-06-02  J"orn Rennecke <joern.rennecke@superh.com>
5749
5750         * sh.h (OLD_ARG_MODE): New macro.
5751         (FUNCTION_ARG_ADVANCE, FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
5752         (FUNCTION_ARG_1): Break out of:
5753         (FUNCTION_ARG).  Use OLD_ARG_MODE.
5754
5755 2003-06-02  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
5756
5757         * gcc/config.gcc Add support multilib parts for m32rx processor.
5758
5759 2003-06-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5760
5761         * Makefile.in (c-options.c): Pass in $(AWK) to opts.sh.
5762         (mostlyclean): Delete c-options.c and c-options.h.
5763
5764 2003-06-02  Neil Booth  <neil@daikokuya.co.uk>
5765
5766         * c-opts.c (CL_REJECT_NEGATIVE): New.
5767         (c_common_decode_option): Update to use it.
5768         * c.opt: Update documentation; use RejectNegative.
5769         * opts.sh: Handle RejectNegative.
5770
5771 2003-06-01  Zack Weinberg  <zack@codesourcery.com>
5772
5773         * ggc-page.c (init_ggc): Give better diagnostics on failure to
5774         open /dev/zero.
5775         * toplev.c (crash_signal): Reset handling for received signal
5776         to SIG_DFL.
5777
5778 2003-06-02  Ben Elliston  <bje@wasabisystems.com>
5779
5780         * config/arm/arm.c (arm_use_dfa_pipeline_interface): Declare.
5781         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define if not already.
5782         (arm_use_dfa_pipeline_interface): Implement.
5783         * config/arm/arm.md (arm): New automaton.
5784         (write_buf): Remove function units; new cpu unit.
5785         (write_blockage): Remove function units; new cpu unit.
5786         (core): Remove function units; new cpu unit.
5787         (r_mem_f_wbuf): New instruction reservation.
5788         (store1_wbuf, store2_wbuf, store3_wbuf, store4_wbuf): Likewise.
5789         (store1_ldsched, store2, store3, store4): Likewise.
5790         (load_ldsched, load_ldsched_xscale, load_or_store): Likewise.
5791         (mult, mult_ldsched, mult_ldsched_strongarm): Likewise.
5792         (multi_cycle, single_cycle): Likewise.
5793         * config/arm/fpa.md (armfp): New automaton.
5794         (fpa): Remove function units; new cpu unit.
5795         (fpa_mem): Remove function unit; new cpu unit.
5796         (fdivx, fdivd, fdivs, fmul, ffmul, farith, ffarith): New reservations.
5797         (r_2_f, f_2_r, f_load, f_store, r_mem_f, f_mem_r): Likewise.
5798
5799 2003-06-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5800
5801         * builtin-attrs.def (ATTR_ASM_FPRINTF): New.
5802         * c-format.c (enum format_type): Add asm_fprintf_format_type.
5803         (NOARGUMENTS, asm_fprintf_length_specs, asm_fprintf_flag_specs,
5804         asm_fprintf_flag_pairs, asm_fprintf_char_table): New.
5805         (format_types_orig): Renamed from format_types.  Add new data.
5806         (format_types): Declare as pointer.
5807         (handle_format_attribute): Move later in file so we have all
5808         necessary declarations.  Add section to capture HOST_WIDE_INT.
5809         * output.h (ATTRIBUTE_ASM_FPRINTF, __gcc_host_wide_int__): New.
5810         (asm_fprintf): Mark with ATTRIBUTE_ASM_FPRINTF.
5811
5812 2003-06-01  Andreas Jaeger  <aj@suse.de>
5813
5814         * doc/tm.texi (Storage Layout): Remove ROUND_TYPE_SIZE and
5815         ROUND_TYPE_SIZE_UNIT.
5816
5817         * stor-layout.c (finalize_record_size): Remove usages of
5818         ROUND_TYPE_SIZE and ROUND_TYPE_SIZE_UNIT.
5819         (finalize_type_size): Likewise.
5820         (layout_type): Likewise.
5821
5822         * system.h: Poison ROUND_TYPE_SIZE and ROUND_TYPE_SIZE_UNIT.
5823
5824         * loop.c (check_insn_for_givs): Remove DONT_REDUCE_ADDR macro.
5825
5826         * config/d30v/d30v.h: Remove text copied from the manual.
5827
5828 2003-06-01  Roger Sayle  <roger@eyesopen.com>
5829             John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5830             Geoffrey Keating  <geoffk@apple.com>
5831
5832         * emit-rtl.c (gen_lowpart_common): Handle interpreting integer
5833         constants as condition code values.
5834
5835 2003-06-01  DJ Delorie  <dj@redhat.com>
5836
5837         * cppmacro.c (warn_of_redefinition): Handle cases where the two
5838         definitions have different numbers of tokens.
5839
5840 2003-06-01  Andreas Jaeger  <aj@suse.de>
5841
5842         * gen-protos.c (main): Readd unused attribute for argc.
5843
5844 2003-06-01  Neil Booth  <neil@daikokuya.co.uk>
5845
5846         * Makefile.in (c-options.c, c-options.h): Parallel make safe.
5847         * c.opt: End in blank line.
5848         * opts.sh: Take AWK from environment if available; use C locale.
5849
5850 2003-06-01  Andreas Schwab  <schwab@suse.de>
5851
5852         * config/m68k/linux.h: Remove code protected by USE_GNULIBC_1.
5853
5854 2003-06-01  Andreas Jaeger  <aj@suse.de>
5855
5856         * gen-protos.c (main): Revert patch to check for argument.
5857
5858 2003-06-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
5859
5860         PR target/11044
5861         * config/i386/i386.md (length attribute): Set length to 4
5862         for instructions of type "fcmp".
5863
5864 2003-06-01  Andreas Jaeger  <aj@suse.de>
5865
5866         * toplev.c: Use ISO C90 prototypes.
5867
5868         * toplev.h: Use ISO C90 prototypes.
5869
5870         * genrecog.c: Use ISO C90 prototypes.
5871         (nodes_identical): Correct declaration to match prototype.
5872         (maybe_both_true): Likewise.
5873         (merge_trees): Likewise.
5874
5875         * genpeep.c (gen_peephole): Remove #if 0 code.
5876         Use ISO C90 prototypes.
5877
5878         * genattrtab.c (copy_rtx_unchanging): Remove #if 0'ed code.
5879         Remove #if 0'ed function simplify_by_alternatives.
5880         (optimize_attrs): Remove #if 0'ed code.
5881         Remove ^L.
5882         Use ISO C90 prototypes.
5883         (make_canonical): Remove #if 0'ed code.
5884         (convert_const_symbol_ref): Remove #if 0'ed function.
5885
5886         * gen-protos.c (main): Check for argument.
5887
5888         * rtl.h: Use ISO C90 prototypes for functions from lists.c.
5889
5890         * params.h: Use ISO C90 prototypes.
5891         * params.c: Likewise.
5892         * intl.c: Likewise.
5893         * intl.h: Likewise.
5894         * lists.c: Likewise.
5895         * errors.c: Likewise.
5896         * errors.h: Likewise.
5897         * gencodes.c: Likewise.
5898         * genpreds.c: Likewise.
5899         * genattr.c: Likewise.
5900         * gen-protos.c: Likewise.
5901         * genflags.c: Likewise
5902         * genconditions.c: Likewise.
5903         * genautomata.c: Likewise.
5904         * gencheck.c: Likewise.
5905         * genconfig.c: Likewise.
5906         * genconstants.c: Likewise.
5907         * genemit.c: Likewise.
5908         * genextract.c: Likewise.
5909         * gengenrtl.c: Likewise.
5910         * gengtype.c: Likewise.
5911         * gengtype.h: Likewise.
5912         * genopinit.c: Likewise.
5913         * genoutput.c: Likewise.
5914         * gensupport.c: Likewise.
5915         * gensupport.h: Likewise.
5916
5917         * sdbout.h: Use ISO C90 prototypes.
5918
5919         * sdbout.c (CONTIN): Removed empty macro.
5920         (sdbout_one_type): Remove CONTIN usages.
5921         Remove ^Ls.
5922         (tag_of_ru_type): Remove #if 0'ed function.
5923         (sdbout_symbol): Remove #if 0'ed code.
5924         (sdbout_one_type): Remove a #if 1.
5925         (sdbout_one_type): Remove #if 0'ed code.
5926         (sdbout_init): Remove RMS_QUICK_HACK_1 code.
5927         Remove PARAMS, use ISO C90 prototypes for all functions.
5928
5929 2003-06-01  Josef Zlomek  <zlomekj@suse.cz>
5930
5931         * rtl.def (CONST_DOUBLE): Update comment.
5932
5933 2003-06-01  Neil Booth  <neil@daikokuya.co.uk>
5934
5935         * opts.sh: Remove path from sort.
5936
5937 2003-06-01  Aldy Hernandez  <aldyh@redhat.com>
5938
5939         PR/9680
5940         * config/rs6000/rs6000.h (CANNOT_CHANGE_MODE_CLASS): Require
5941         TARGET_SPE for SPE_VECTOR_MODE.
5942
5943 2003-05-31  Aldy Hernandez  <aldyh@redhat.com>
5944
5945         * toplev.c (botch): Remove.
5946         (do_abort): Remove.
5947         (set_Wunused): Comment.
5948         (set_Wextra): Comment.
5949         Remove ^L's.
5950         (rest_of_compilation): Factor out common code into functions.
5951         (rest_of_handle_inlining): New.
5952         (rest_of_handle_ssa): New.
5953         (rest_of_handle_cse): New.
5954         (rest_of_handle_gcse): New.
5955         (rest_of_handle_loop_optimize): New.
5956         (rest_of_handle_jump_bypass): New.
5957         (rest_of_handle_sibling_calls): New.
5958         (rest_of_handle_null_pointer): New.
5959         (rest_of_handle_addresof): New.
5960         (rest_of_handle_flow): New.
5961         (rest_of_handle_branch_prob): New.
5962         (rest_of_handle_if_conversion): New.
5963         (rest_of_handle_tracer): New.
5964         (rest_of_handle_loop2): New.
5965         (rest_of_handle_cse2): New.
5966         (rest_of_handle_life): New.
5967         (rest_of_handle_combine): New.
5968         (rest_of_handle_if_after_combine): New.
5969         (rest_of_handle_regmove): New.
5970         (rest_of_handle_sched): New.
5971         (rest_of_handle_old_regalloc): New.
5972         (rest_of_handle_new_regalloc): New.
5973         (rest_of_handle_regrename): New.
5974         (rest_of_handle_reorder_blocks): New.
5975         (rest_of_handle_sched2): New.
5976         (rest_of_handle_new_regalloc): New.
5977         (rest_of_handle_old_regalloc): New.
5978         (rest_of_handle_regrename): New.
5979         (rest_of_handle_reorder_blocks): New.
5980         (rest_of_handle_stack_regs): New.
5981         (rest_of_handle_machine_reorg): New.
5982         (rest_of_handle_delay_slots): New.
5983         (rest_of_handle_final): New.
5984
5985         * toplev.h (botch): Remove prototype.
5986         (do_abort): Same.
5987
5988 2003-05-31  Neil Booth  <neil@daikokuya.co.uk>
5989
5990         * Makefile.in (c-opts.o, c-options.h): Update dependencies.
5991         * c-opts.c: Include c-options.h and c-options.c.
5992         (CL_C_ONLY, CL_OBJC_ONLY, CL_CXX_ONLY, CL_OBJCXX_ONLY):
5993         Rename CL_C, CL_OBJC, CL_CXX, CL_OBJCXX.
5994         (CL_ARG, CL_ALL, COMMAND_LINE_OPTIONS, struct cl_option,
5995         OPT, opt_comp): Remove.
5996         (missing_arg, c_common_init_options, c_common_decode_option,
5997         write_langs): Update for macro redefinitions and enumeration
5998         name changes.
5999         * c.opt, opts.sh: New files.
6000         * doc/passes.texi: Update.
6001
6002 2003-05-31  Andreas Jaeger  <aj@suse.de>
6003
6004         * function.c (trampoline_address): Remove ALLOCATE_TRAMPOLINE
6005         usage.
6006
6007         * doc/tm.texi (Trampolines): Remove ALLOCATE_TRAMPOLINE.
6008
6009         * config/d30v/d30v.h: Remove traces of ALLOCATE_TRAMPOLINE.
6010
6011         * system.h: Poison ALLOCATE_TRAMPOLINE.
6012
6013         * doc/tm.texi (Misc): Remove HANDLE_PRAGMA.
6014         * system.h: Poison HANDLE_PRAGMA.
6015
6016 2003-05-31  Kazu Hirata  <kazu@cs.umass.edu>
6017
6018         * doc/invoke.texi: Update dump file names.
6019
6020 2003-05-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6021
6022         * c-format.c (format_length_info, format_char_info,
6023         format_flag_spec, format_flag_pair, format_kind_info):
6024         De-const-ify structure members.
6025
6026 2003-05-31  Roger Sayle  <roger@eyesopen.com>
6027
6028         * flags.h (flag_wrapv): New flag controlling overflow semantics.
6029         * toplev.c (flag_wrapv): Declare the variable with default false.
6030         (lang_independent_options): New option "-fwrapv" to set the above.
6031
6032         * fold-const.c (extract_muldiv_1): Disable optimization of (2*x)/2
6033         as x, when signed arithmetic overflow wraps around.
6034         (fold): Optimize "-A - B" as "-B - A" if overflow wraps around.
6035         * loop.c (basic_induction_var): Ignore BIVs that rely on undefined
6036         overflow when flag_wrapv is true.
6037
6038         * doc/invoke.texi: Document new -fwrapv command line option.
6039         * doc/c-tree.texi: Mention that the overflow semantics of
6040         NEGATE_EXPR, PLUS_EXPR, MINUS_EXPR and MULT_EXPR is dependent
6041         upon both flag_wrapv and flag_trapv.
6042
6043 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
6044
6045         * doc/install.texi (mips-sgi-irix5): Add missing
6046         HTML <hr> marker.
6047
6048 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
6049
6050         * doc/md.texi (Machine Constraints): Document
6051         missing SPARC constraints.
6052
6053 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
6054
6055         * doc/md.texi (Automaton pipeline description): Use
6056         "type" instead of "cpu" as the attribute in the examples.
6057
6058 2003-05-30  Stan Shebs  <shebs@apple.com>
6059
6060         * system.h: Poison OBJC_PROLOGUE.
6061
6062 2003-05-30  Roger Sayle  <roger@eyesopen.com>
6063
6064         * emit-rtl.c (gen_complex_constant_part): New function for getting
6065         the constant real or imaginary part of a complex constant.
6066         (gen_realpart): Use it.
6067         (gen_imagpart): Likewise.
6068
6069 2003-05-30  Kazu Hirata  <kazu@cs.umass.edu>
6070
6071         * doc/invoke.texi: Fix typos.
6072         * doc/rtl.texi: Likewise.
6073
6074 2003-05-30  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
6075
6076         * config/h8300/crti.asm: Use .h8300hn and .h8300sn for normal
6077         mode.
6078         * config/h8300/crtn.asm: Likewise.
6079         * config/h8300/lib1funcs.asm: Likewise.
6080         * config/h8300/h8300.c (asm_file_start): Likewise.
6081         * config/h8300/elf.h (LINK_SPEC): Use h8300hnelf and
6082         h8300snelf emulations for normal mode.
6083         * config/h8300/h8300.h (LINK_SPEC): Use h8300hn and h8300sn
6084         emulations for normal mode.
6085
6086 2003-05-30  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
6087
6088         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Return
6089         true if TARGET_NORMAL_MODE.
6090
6091 2003-05-30  Roger Sayle  <roger@eyesopen.com>
6092
6093         * cse.c (cse_insn): Simplify REG_EQUAL note on libcalls when
6094         making a substitution.
6095         (dead_libcall_p): If directly replacing a libcall with a
6096         constant value produces an invalid instruction, also try forcing
6097         the constant into the constant pool.
6098         * expr.c (emit_move_insn): Add a REG_EQUAL note when it is not
6099         obvious that the source is a constant.
6100         (compress_float_constant): Use set_unique_reg_note to place
6101         REG_EQUAL notes on instructions.
6102
6103 2003-05-30  Eric Christopher  <echristo@redhat.com>
6104
6105         * config/mips/mips.c (extern_list): Add GTY marker.
6106         (extern_head): Separate out definition. Add marker.
6107         (mips_output_external): Use ggc_alloc for extern_list
6108         allocation.
6109         (mips_output_external_libcall): Ditto.
6110
6111 2003-05-30  Florian Weimer  <fw@deneb.enyo.de>
6112
6113         * doc/install.texi: Ada-enabled bootstrap requires GNAT 3.14 or
6114         later.
6115
6116 2003-05-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6117
6118         * vax.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier
6119         warnings.
6120         (PRINT_OPERAND): Likewise.
6121
6122 2003-05-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6123
6124         * config/mips/mips.h (SUBTARGET_ASM_DEBUGGING_SPEC): Move
6125         -mdebug/-no-mdebug switches ...
6126         (MDEBUG_ASM_SPEC): ... here.
6127         Use only with gas.
6128         (EXTRA_SPECS): Initialize mdebug_asm_spec.
6129
6130 2003-05-29  Matt Kraai  <kraai@alumni.cmu.edu>
6131
6132         * gthr-gnat.c: Remove #undef UNUSED.
6133         (__gnat_default_lock, __gnat_default_unlock): Prototype.
6134         (__gnat_task_lock, __gnat_task_unlock): Make declarations
6135         prototypes.
6136         (__gnat_install_locks): Convert declaration to ISO C90, make
6137         parameter declarations prototypes, and remove blank line.
6138         * gthr-gnat.h (__gnat_install_locks): Make parameter
6139         declarations prototypes.
6140
6141 2003-05-29  Jason Merrill  <jason@redhat.com>
6142
6143         * Makefile.in (unstrap): Remove stage_last after make unstage1.
6144
6145 2003-05-29  Roger Sayle  <roger@eyesopen.com>
6146
6147         * mips-tfile.c (PAGE_SIZE): Increase page size to 32K.
6148
6149 2003-05-29  Roger Sayle  <roger@eyesopen.com>
6150             Kaveh Ghazi  <ghazi@caip.rutgers.edu>
6151
6152         PR bootstrap/10169
6153         * mips-tfile.c (main): Use getopt_long instead of getopt.
6154         Add new command line option --version to display version.
6155         Treat --verbose like -v to report a single line version.
6156         (options): New global variable for getopt_long.
6157         * mips-tdump.c (main): Use getopt_long instead of getopt.
6158         New command line options -v, --version and -verbose to display
6159         the program version number (to match mips-tfile's behavior).
6160         (options): New global variable for getopt_long.
6161
6162         * gcov.c (options): Zero-terminate getopt_long array.
6163         * gcov-dump.c (options): Likewise.
6164
6165         * Makefile.in (mips-tdump.o): Add dependency on version.h.
6166
6167 2003-05-29  Stan Shebs  <shebs@apple.com>
6168
6169         Remove OBJC_PROLOGUE everywhere.
6170         * objc/objc-act.c (finish_objc): Remove use of OBJC_PROLOGUE.
6171         * config/avr/avr.h: Remove no-op ref to OBJC_PROLOGUE.
6172         * config/d30v/d30v.h: Similarly.
6173         * config/ip2k/ip2k.h: Similarly.
6174         * doc/tm.texi: Remove doc of OBJC_PROLOGUE.
6175
6176 2003-05-29  Roger Sayle  <roger@eyesopen.com>
6177
6178         * c-semantics.c (genrtl_do_stmt_1): New function split out from...
6179         (gen_rtl_do_stmt): ... here.  Call genrtl_do_stmt_1.
6180         (expand_unreachable_stmt): Expand unreachable while statements
6181         using genrtl_do_stmt_1.
6182
6183 2003-05-29  Richard Sandiford  <rsandifo@redhat.com>
6184
6185         * config/mips/mips-protos.h (mips_output_load_label): Declare.
6186         * config/mips/mips.c (mips_output_load_label): New function.
6187         (mips_output_conditional_branch): Use it.
6188         * config/mips/mips.md (jump): And here.
6189
6190 2003-05-28  Bob Wilson  <bob.wilson@acm.org>
6191
6192         * config/xtensa/xtensa-protos.h (smalloffset_double_mem_p): Delete.
6193         (xtensa_split_operand_pair): New proto.
6194         * config/xtensa/xtensa.c (move_operand): Handle DFmode and DImode.
6195         (smalloffset_double_mem_p): Delete.
6196         (gen_float_relational, printx, print_operand, xtensa_va_arg):
6197         Fix whitespace.
6198         (xtensa_split_operand_pair): New.
6199         (xtensa_dbx_register_number): Fix formatting.
6200         * config/xtensa/xtensa.h (EXTRA_CONSTRAINT): Remove 'S' constraint.
6201         * config/xtensa/xtensa.md (movdi, movdf): Force constants to memory
6202         instead of splitting them into single-word moves.  Remove unnecessary
6203         checks for reload_in_progress and reload_completed.
6204         (movdi_internal, movdf_internal): Change to post-reload split patterns.
6205         Add constraints to allow constant operands.
6206         (movsf_internal): Allow CONST_INT operands.
6207
6208 2003-05-27  Danny Smith   <dannysmith@users.sourceforge.net>
6209
6210         * config.gcc (i[34567]86-*-mingw32*): Add host makefile
6211         fragment i386/x-mingw32.
6212         * config/i386/x-mingw32: New file. Make local_includedir
6213         relative to EXEC_PREFIX.
6214
6215 2003-05-27  Aaron W. LaFramboise  <awlaframboise@aol.com>
6216
6217         * config/i386/mingw32.h (STANDARD_INCLUDE_DIR): Update.
6218         (MD_STARTFILE_PREFIX): Define.
6219
6220 2003-05-27  Denis Chertykov  <denisc@overta.ru>
6221
6222         * cselib.c (cselib_invalidate_regno): Abort if hardreg have a
6223         VOIDmode.
6224         * cselib.c (cselib_process_insn): Pass reg_raw_mode for hardreg in
6225         call of cselib_invalidate_regno.
6226
6227 2003-05-28  Daniel Jacobowitz  <drow@mvista.com>
6228
6229         * config/mips/linux.h (LIB_SPEC): Add missing -lc and correct
6230         -lthread to -lpthread.
6231
6232 2003-05-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
6233             Bruce Korb  <bkorb@gnu.org>
6234             Arno Klaassen  <arno@heho.snv.jussieu.fr>
6235
6236         * fixinc/inclhack.def: Add missing declaration of getpagesize()
6237         to unistd.h on Solaris 2.5.1.
6238         Fix prototype of recv() and send() in sys/socket.h on
6239         Solaris 2.5.1 and 2.6.
6240         * fixinc/tests/base/unistd.h: Add solaris_unistd fix test.
6241         * fixinc/tests/base/sys/socket.h: Add solaris_socket test.
6242         * fixinc/check.tpl: Use 'diff -c', not 'diff -u'.
6243         * fixinc/fixincl.x: Regenerate.
6244
6245 2003-05-27  Jason Merrill  <jason@redhat.com>
6246
6247         * tree.c (expr_first, expr_length): New fns.
6248         * tree.h: Declare them.
6249
6250         * tree.c (iterative_hash_expr): Hash commutative expressions
6251         consistently.
6252
6253 2003-05-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6254
6255         * tree.h (contains_placeholder_p): Now returns bool.
6256         (CONTAINS_PLACEHOLDER_P): New macro.
6257         (type_contains_placeholder_p): New function.
6258         * tree.c (save_expr): Remove code avoiding folding COMPONENT_REF.
6259         (contains_placeholder_p): Now returns bool.
6260         Rework to use CONTAINS_PLACEHOLDER_P macro.
6261         (type_contains_placeholder_p): New function.
6262         * fold-const.c (fold, case COMPONENT_REF): Don't fold if
6263         type_contains_placeholder_p.
6264         (fold_range_test, fold_mathfn_compare, fold_inf_compare, fold):
6265         Use CONTAINS_PLACEHOLDER_P macro.
6266         * builtins.c (fold_builtin): Likewise.
6267         * calls.c (initialize_argument_information): Likewise.
6268         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
6269         * explow.c (expr_size): Likewise.
6270         * expr.c (store_constructor, get_inner_reference): Likewise.
6271         * function.c (assign_parms): Likewise.
6272         * stor-layout.c (variable_size): Likewise.
6273
6274 2003-05-25  Gabriel Dos Reis <gdr@integrable-solutions.net>
6275
6276         * diagnostic.h (output_verbatim, verbatim):  Remove  printf
6277         attribute.
6278
6279 2003-05-25  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
6280
6281         * doc/contrib.texi (Contributors): Update Kean Johnston.
6282
6283 2003-05-24  David Edelsohn  <edelsohn@gnu.org>
6284
6285         * config/rs6000/rs6000.md (save_fpregs_{si,di}): Add length attribute.
6286
6287 2003-05-24  Nathanael Nerode  <neroden@gcc.gnu.org>
6288
6289         * config/rs6000/440.md, config/stormy16/stormy16protos.h,
6290         config/stormy16/stormy16.c, config/stormy16/stormy16.md:
6291         Replace "GNU CC" with "GCC".
6292
6293 2003-05-24  Matt Kraai  <kraai@alumni.cmu.edu>
6294
6295         * builtins.c (expand_builtin_memcpy): Use mode of dest_addr for
6296         intermediate computation.
6297
6298 2003-05-23  Eric Christopher  <echristo@redhat.com>
6299
6300         * config/mips/mips.md (clzsi, clzdi): New patterns.
6301
6302 2003-05-23  Geoffrey Keating  <geoffk@apple.com>
6303
6304         * gcc.c (default_compilers): Use -o to specify preprocessor's output
6305         file.  Make -no-integrated-cpp work when building PCH files.
6306         * objc/lang-specs.h: Likewise.
6307
6308 2003-05-23  Nathanael Nerode  <neroden@gcc.gnu.org>
6309
6310         * fixinc/Makefile.in: Correct description.
6311         * fixinc/Makefile.in, fixinc/fixfixes.c, fixinc/fixincl.c,
6312         fixinc/fixlib.c, fixinc/fixlib.h, fixinc/fixtests.c,
6313         fixinc/genfixes: Replace "GNU CC" with "GCC".
6314
6315 2003-05-23  Roger Sayle  <roger@eyesopen.com>
6316
6317         * builtins.def: Define atan, atanf, atanl, tan, tanf and tanl
6318         builtin functions (and their __builtin_* variants).
6319         * builtins.c (mathfn_built_in): Handle tan{,f,l} and atan{,f,l}.
6320         (expand_builtin): Don't expand tan{,f,l} or atan{,f,l} when not
6321         optimizing.
6322
6323         * doc/extend.texi: Document new tan and atan builtins, and
6324         their float and long double variants.
6325
6326 2003-05-23  Jason Thorpe  <thorpej@wasabisystems.com>
6327
6328         * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define
6329         __sparcv9 in the TARGET_ARCH64 case.
6330
6331 Fri May 23 22:17:32 CEST 2003  Jan Hubicka  <jh@suse.cz>
6332
6333         * i386.c (ix86_reorg): Calls are also jumps.
6334
6335 2003-05-23  J"orn Rennecke <joern.rennecke@superh.com>
6336
6337         * cse.c (count_reg_usage): When processing an INSNs REG_EQUAL
6338         note containing an EXPR_LIST, process all the arguments.
6339
6340 Fri May 23 21:19:31 CEST 2003  Jan Hubicka  <jh@suse.cz>
6341                                Andreas Jaeger  <aj@suse.de>
6342
6343         * i386.h (TARGET_CPU_CPP_BUILTINS): Define __amd64 and __amd64__;
6344         do not use assertion.
6345
6346 2003-05-23  Mike Stump  <mrs@apple.com>
6347
6348         * tlink.c (scan_linker_output): Add support for darwin linker, as it
6349         emits unresolved symbols one per line, consuming the entire line.
6350
6351 2003-05-23  Larin Hennessy <larin@science.oregonstate.edu>
6352             Zack Weinberg <zack@codesourcery.com>
6353
6354         * explow.c (allocate_dynamic_stack_space): Remove call to gen_probe.
6355         * config/m68k/m68k.c (m68k_output_function_prologue):
6356         Remove code under #if NEED_PROBE.
6357         * config/m68k/m68k.h: Don't define NEED_PROBE.
6358         * config/m68k/m68k.md: Remove "probe" insn.
6359         * doc/md.texi: Remove documentation of "probe" pattern.
6360
6361 2003-05-23  Dorit Naishlos  <gcchaifa@il.ibm.com>
6362
6363         * config/rs6000/rs6000.md (save_fpregs_{si,di}): Add branch attribute.
6364
6365 2003-05-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
6366
6367         * doc/install.texi: Remove sparc64-*-*. Add sparc64-*-solaris2*.
6368         Document sparcv9-*-solaris2* as a synonym for sparc64-*-solaris2*.
6369
6370 2003-05-22  Roger Sayle  <roger@eyesopen.com>
6371
6372         * real.c (real_maxval): New function to return the largest finite
6373         value representable in a given mode (i.e. FLT_MAX and DBL_MAX).
6374         * real.h (real_maxval): Prototype here.
6375         * fold-const.c (fold_inf_compare): Transform comparisons against
6376         +-Infinity into comparisons against DBL_MAX (or equivalent).
6377
6378 2003-05-22  Mike Stump  <mrs@apple.com>
6379
6380         * config.gcc (*-*-darwin*): Remove use_collect2=no, as it is the
6381         default.
6382
6383 2003-05-22  DJ Delorie  <dj@redhat.com>
6384
6385         * calls.c (expand_call): If the arg block is going to grow
6386         downward, we need argblock to point to the top of the block,
6387         not the bottom.
6388
6389 2003-05-22  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6390
6391         * c-decl.c (duplicate_decls): Test DECL for ERROR_MARK.
6392
6393         * expr.c (expand_expr, case CONSTRUCTOR): Put into memory if
6394         constant and EXPAND_CONST_ADDRESS, not just EXPAND_INITIALIZER.
6395
6396 2003-05-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6397
6398         * m68hc11.c: Don't use the `0' flag for asm_fprintf specifiers.
6399         * m68k.c: Likewise.
6400         * m68k.h: Likewise.
6401
6402 2003-05-22  Zack Weinberg  <zack@codesourcery.com>
6403
6404         PR other/2873
6405         * fixinc/inclhack.def (avoid_wchar_t_type): Add bypass
6406         expressions to prevent triggering on recent curses.h,
6407         linux/nls.h, or X11/Xlib.h.
6408         (stdio_va_list): Add _G_va_list to bypass pattern.
6409         (strict_ansi_not): Add bypass pattern for __SCO_VERSION__.
6410         * fixinc/fixincl.x: Regenerate.
6411
6412 2003-05-22 Rekha Bhintade <rekhad@kpitcummins.com>
6413
6414         * gcc/config/sh/sh.h (TARGET_SWITCHES): Display all the target
6415         switches when --target-help option is specified.
6416
6417 2003-05-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
6418
6419         PR bootstrap/10805
6420         * doc/install.texi (sparc-sun-solaris2.7): Document bootstrap
6421         failure with Sun assembler 5.0 Alpha 03/27/98.
6422
6423 2003-05-21  Loren James Rittle  <ljrittle@acm.org>
6424
6425         * config/sparc/freebsd.h (CPP_CPU64_DEFAULT_SPEC): Add -D__sparcv9
6426         to match system compiler convention.
6427
6428 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
6429
6430         * gthr-win32.h (__GTHREAD_HIDE_WIN32API): Test for nonzero
6431         value, not just if defined.
6432         Update copyright year.
6433
6434 2003-05-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6435
6436         PR target/6428
6437         * pa-hpux10.h (LINK_SPEC, LIB_SPEC): Move -L options for profiling
6438         directories from LIB_SPEC to LINK_SPEC.  Emit warning if `-p' or `-pg'
6439         option is used without `-static'.
6440         * pa-hpux11.h (LINK_SPEC, LIB_SPEC): Likewise.
6441         * pa64-hpux.h (LINK_SPEC, LIB_SPEC): Likewise.
6442
6443 2003-05-21  Bob Wilson  <bob.wilson@acm.org>
6444
6445         * config/xtensa/xtensa.h (MASK_SERIALIZE_VOLATILE,
6446         TARGET_SERIALIZE_VOLATILE): Delete.
6447         (MASK_CONST16, MASK_ABS, MASK_ADDX): Renumber flag bits.
6448         (TARGET_DEFAULT): Remove MASK_SERIALIZE_VOLATILE.
6449         (TARGET_SWITCHES): Remove "-mserialize-volatile" and
6450         "-mno-serialize-volatile".
6451         * config/xtensa/xtensa.c (print_operand): Remove checks of
6452         TARGET_SERIALIZE_VOLATILE.
6453         * config/xtensa/xtensa.md (*lsiu, *ssiu): Likewise.
6454         * doc/invoke.texi (Option Summary, Xtensa Options): Remove
6455         "-mserialize-volatile" and "-mno-serialize-volatile" options.
6456
6457 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
6458
6459         * c-parse.in (fndef): Set DECL_SOURCE_LINE and FILE earlier.
6460         (nested_function): Likewise.
6461         (notype_nested_function): Likewise.
6462
6463 2003-05-21  Nick Clifton  <nickc@redhat.com>
6464
6465         * config/stormy16/stormy-abi: Update overflow type for
6466         R_XSTORMY16_16 reloc.
6467
6468 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
6469
6470         * c-common.h (enum rid): Remove RID_BOUNDED, RID_UNBOUNDED.
6471         * c-parse.in (reswords): Remove __bounded__ and __unbounded__.
6472         (rid_to_yy): Remove RID_BOUNDED, RID_UNBOUNDED slots.
6473         * print-tree.c (print_node): Remove ambient-boundedness.
6474         * tree.h (tree_common): Remove bounded_flag.
6475         (BOUNDED_INDIRECT_YPE_P, BOUNDED_POINTER_TYPE_P,
6476         BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
6477         MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
6478         TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
6479         TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED, TYPE_QUAL_BOUNDED):
6480         Remove.
6481         (TYPE_QUALS): Remove BOUNDED.
6482         (TREE_EXPR_QUALS, TREE_FUNC_QUALS): Remove.
6483         (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
6484         TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
6485         TYPE_AMBIENT_BOUNDEDNESS, MAX_POINTER_DEPT,
6486         VA_LIST_POINTER_DEPTH): Remove.
6487         (struct tree_type): Remove pointer_depth.
6488
6489 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6490
6491         * c-pretty-print.c (pp_c_integer_literal): Use
6492         HOST_WIDE_INT_PRINT_DOUBLE_HEX.
6493
6494 2003-05-20  Roger Sayle  <roger@eyesopen.com>
6495             Kazu Hirata  <kazu@cs.umass.edu>
6496             Joern Rennecke  <joern.rennecke@superh.com>
6497
6498         * gcse.c (cprop_jump):  Make use of REG_EQUAL notes on both
6499         setcc and jump, if they exist.  If substituted instruction
6500         fails to validate, store current effort in a REG_EQUAL note.
6501         (cprop_insn): Don't attempt further substitutions if the
6502         current instruction has been deleted.
6503         (local_cprop_pass): Likewise.
6504
6505         * jump.c (redirect_jump):  Also update REG_EQUAL note, if
6506         one is attached to the jump instruction.
6507         (invert_jump): Delete REG_EQUAL note on jump, if one exists.
6508
6509 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
6510
6511         PR c++/9738
6512         * config/i386/winnt.c (i386_pe_encode_section_info): Enable
6513         even if not first.
6514
6515 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6516
6517         * genautomata.c (output_description, output_automaton_units,
6518         output_state_arcs): Add missing specifiers.
6519
6520 2003-05-20  Bob Wilson  <bob.wilson@acm.org>
6521
6522         * config/xtensa/lib1funcs.asm: Avoid use of .Lfe* in .size directives.
6523         (do_abs, do_addx2, do_addx4, do_addx8): New assembler macros.
6524         (__mulsi3): Use do_addx* instead of ADDX* instructions.  Formatting.
6525         (nsau): Rename to do_nsau.  Provide alternate version for use when
6526         the NSAU instruction is available.
6527         (__udivsi3, __divsi3, __umodsi3, __modsi3): Use do_nsau macro.
6528         (__divsi3, __modsi3): Use do_abs macro instead of ABS instruction.
6529         * config/xtensa/xtensa-config.h: Update comments to match binutils.
6530         (XCHAL_HAVE_ABS, XCHAL_HAVE_ADDX): Define.
6531         * config/xtensa/xtensa.h (MASK_ABS, MASK_ADDX): Define.
6532         (TARGET_ABS, TARGET_ADDX): Define.
6533         (TARGET_DEFAULT): Conditionally add MASK_ABS and MASK_ADDX.
6534         (TARGET_SWITCHES): Add "abs", "no-abs", "addx", and "no-addx".
6535         * config/xtensa/xtensa.md (*addx2, *addx4, *addx8, *subx2, *subx4,
6536         *subx8): Set predicate condition to TARGET_ADDX.
6537         (abssi2): Set predicate condition to TARGET_ABS.
6538         * doc/invoke.texi (Option Summary): Document new "-mabs", "-mno-abs",
6539         "-maddx", and "-mno-addx" options.
6540         (Xtensa Options): Likewise.  Also tag some opcode names with @code.
6541
6542 2003-05-20  Kevin Ryde <user42@zip.com.au>
6543             Wolfgang Bangerth <bangerth@dealii.org>
6544
6545         PR/10355
6546         * doc/extend.texi: Put a warning into the documentation
6547         of attribute regparm.
6548
6549 2003-05-20  Jason Merrill  <jason@redhat.com>
6550
6551         * tree.c (expr_last): New fn.
6552         * tree.h: Declare it.
6553         * objc/objc-act (expr_last): Rename to objc_expr_last.
6554
6555 2003-05-20  J"orn Rennecke <joern.rennecke@superh.com>
6556
6557         * sh.c (sh_register_move_cost): Add clase for moving between
6558         FP registers and MAC registers.
6559
6560 2003-05-19  John David Anglin  <dave.anglin@nrc-gnrc.gc.ca>
6561
6562         * pa/milli64.S ($$mulI): Fix typo.
6563
6564 2003-05-19  Matt Kraai  <kraai@alumni.cmu.edu>
6565
6566         * alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
6567         (nonlocal_set_p): Remove initial blank line.
6568         * dwarf2out.c (simple_type_size_in_bits): Likewise.
6569         * et-forest.c (et_forest_create): Likewise.
6570         * explow.c (stabilize): Likewise.
6571         * fix-header.c (write_lbrac): Likewise.
6572         * graph.c (start_fct, node_data): Likewise.
6573         * jump.c (only_sets_cc0_p, sets_cc0_p): Likewise.
6574         * rtlanal.c (global_reg_mentioned_p): Likewise.
6575         * tree.c (bit_position): Likewise.
6576
6577 2003-05-19  Alexandre Oliva  <aoliva@redhat.com>
6578
6579         * config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct
6580         -lthread to -lpthread.
6581
6582 2003-05-19  Neil Booth  <neil@daikokuya.co.uk>
6583
6584         * c-opts.c (c_common_decode_option): Don't accept dollars
6585         as identifier characters in assembly.
6586         * doc/cpp.texi: Document this.
6587
6588 2003-05-19  Seth Arnold  <sarnold@wirex.com>
6589             Aldy Hernandez  <aldyh@redhat.com>
6590
6591         * config/rs6000/rs6000.c (rs6000_stack_info): Do not add
6592         vrsave_size twice.
6593
6594 2003-05-19  Aldy Hernandez  <aldyh@redhat.com>
6595
6596         * doc/tm.texi (function_arg): Fix typo.
6597
6598 2003-05-19  Matt Austern  <austern@apple.com>
6599
6600         * c-opts.c (COMMAND_LINE_OPTIONS): Add -Winvalid-offsetof option.
6601         * c-common.h (warn_invalid_offsetof): Declare.
6602         * c-common.c (warn_invalid_offsetof): Define.
6603         * doc/invoke.texi: Document -Winvalid-offsetof.
6604         * testsuite/g++.dg/other/offsetof3.C: New.
6605         * testsuite/g++.dg/other/offsetof4.C: New.
6606
6607 2003-05-19  Kevin B. Hendricks  <kevin.hendricks@sympatico.ca>
6608             David Edelsohn  <edelsohn@gnu.org>
6609
6610         * config/rs6000/rs6000.c (rs6000_alignment_string,
6611         rs6000_alignment_flags): New variables.
6612         (rs6000_parse_alignment_option): New function.
6613         (rs6000_override_options): Call it.
6614         * config/rs6000/rs6000.h (TARGET_OPTIONS): Add -malign-XXX option.
6615         (MASK_ALIGN_POWER, MASK_ALIGN_NATURAL, TARGET_ALIGN_NATURAL): New
6616         macros.
6617         * config/rs6000/aix.h (ADJUST_FIELD_ALIGN): Always use COMPUTED
6618         natural alignment if TARGET_NATURAL_ALIGNMENT
6619         (ROUND_TYPE_ALIGN): Always use default record alignment if
6620         TAGET_NATURAL_ALIGNMENT.
6621         * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Same
6622         (ROUND_TYPE_ALIGN): Same.
6623         * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Same
6624         (ROUND_TYPE_ALIGN): Same.
6625         * doc/invoke.texi (Option Summary, PowerPC Options): Document
6626         new options.
6627
6628 2003-05-19  J"orn Rennecke <joern.rennecke@superh.com>
6629
6630         * c-decl.c (finish_decl): When setting the DECL_ASSEMBLER_NAME
6631         of a function using ASMSPEC, prepend a star.
6632
6633 2003-05-19  Jason Merrill  <jason@redhat.com>
6634
6635         * tree-inline.c (copy_body_r): Avoid generating &* during inline
6636         substitution.
6637
6638 2003-05-19  Andrew Macleod  <amacleod@redhat.com>
6639
6640         * config/stormy16/stormy16.c (xstormy16_expand_prologue): Do
6641         not mark assignments to the hard frame pointer as being stack
6642         frame related.
6643         (xstormy16_expand_epilogue): Mark adjustments to the stack
6644         pointer as being stack frame related.
6645
6646 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
6647
6648         * config/mips/mips.h (ISA_HAS_LOAD_DELAY, ISA_HAS_XFER_DELAY,
6649         ISA_HAS_FCMP_DELAY, ISA_HAS_HILO_INTERLOCKS): New macros.
6650         (PREDICATE_CODES): Add hilo_operand.
6651         * config/mips/mips.c (hilo_operand): New predicate.
6652         (mips_adjust_insn_length): Account for the number nops that might
6653         be needed to avoid hardware hazards.
6654         * config/mips/mips.md (dslot): Remove attribute.
6655         (hazard): New attribute.
6656         (can_delay): Use it.  Check for calls, branches & jumps.
6657         (muldi3): Use the standard dmult pattern for mips16 code.
6658         (muldi3_internal, muldi3_internal2): Adjust conditions accordingly.
6659
6660 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
6661
6662         * config/mips/mips-protos.h (final_prescan_insn,
6663         mips_count_memory_refs, mips_fill_delay_slot): Remove.
6664         * config/mips/mips.h (delay_type, dslots_load_total,
6665         dslots_load_filled, dslots_jump_total, dslots_jump_filled,
6666         dslots_number_nops, num_refs, mips_load_reg, mips_load_reg2,
6667         mips_load_reg3, mips_load_reg4): Remove.
6668         (MASK_STATS): Remove.
6669         (MASK_EXPLICIT_RELOCS): Reuse its value.
6670         (TARGET_STATS): Remove.
6671         (TARGET_SWITCHES): Turn -mstats and -mno-stats into no-ops.
6672         Warn that -mstats is now ignored.
6673         (FINAL_PRESCAN_INSN): Undefine.
6674         (DBR_OUTPUT_SEQEND): Remove handling of dslot statistics.
6675         (ASM_OUTPUT_REG_POP): Likewise.
6676         * config/mips/mips.c (dslots_load_total, dslots_load_filled,
6677         dslots_jump_total, dslots_jump_filled, dslots_number_nops, num_refs,
6678         mips_load_reg, mips_load_reg2, mips_load_reg3, mips_load_reg4,
6679         mips_fill_delay_slot, mips_count_memory_refs,
6680         final_prescan_insn): Remove.
6681         (output_block_move): Remove calls to mips_count_memory_refs.
6682         (print_operand): Remove printing of #nop for TARGET_STATS.
6683         (mips_output_function_epilogue): Remove TARGET_STATS code.
6684         Reorganize setting of fnnmae.
6685         * config/mips/mips.md: Remove handling of dslot statistics
6686         throughout file.  Change all fcmp patterns into normal asm
6687         templates, removing calls to mips_fill_delay_slot.
6688         * doc/invoke.texi: Remove documentation of -mstats.
6689
6690 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
6691
6692         * config/mips/mips.c (mips_class_max_nregs): Return the number of
6693         words in the mode.
6694
6695 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
6696
6697         * config/mips/mips.c (override_options): Disable explicit
6698         relocs for old ABIs unless using gas.
6699
6700 2003-05-18  Eric Christopher  <echristo@redhat.com>
6701
6702         * config/mips/mips.h: Remove definition of g_switch_value.
6703
6704 2003-05-18  Matt Kraai  <kraai@alumni.cmu.edu>
6705
6706         * flags.h (g_switch_value): Change to an unsigned
6707         HOST_WIDE_INT.
6708         * toplev.c (g_switch_value): Likewise.
6709
6710         * config/alpha/alpha.c (small_symbolic_operand): Remove
6711         g_switch_value cast.
6712         (alpha_in_small_data_p): Cast size to an unsigned
6713         HOST_WIDE_INT.
6714
6715         * config/frv/frv.c (frv_in_small_data_p): Cast size to an
6716         unsigned HOST_WIDE_INT.
6717         * config/frv/frv.h (g_switch_value, g_switch_set): Remove.
6718         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Declare g_switch_set.
6719
6720         * config/m32r/m32r.c (m32r_in_small_data_p): Cast size to an
6721         unsigned HOST_WIDE_INT.
6722         (m32r_asm_file_start): Use HOST_WIDE_INT_PRINT_UNSIGNED.
6723         * config/m32r/m32r.h (g_switch_value, g_switch_set): Remove.
6724         (ASM_OUTPUT_ALIGNED_COMMON): Declare g_switch_value.
6725
6726         * config/rs6000/rs6000.c (rs6000_file_start): Use
6727         HOST_WIDE_INT_PRINT_UNSIGNED.
6728         (small_data_operand): Cast summand to unsigned HOST_WIDE_INT.
6729         (rs6000_elf_in_small_data_p): Cast size to unsigned
6730         HOST_WIDE_INT.
6731         * config/rs6000/sysv4.h (g_switch_value, g_switch_set):
6732         Remove.
6733         (SUBTARGET_OVERRIDE_OPTIONS): Declare g_switch_value and
6734         g_switch_set.
6735         (ASM_OUTPUT_ALIGNED_LOCAL): Declare g_switch_value and remove
6736         g_switch_value cast.
6737
6738 2003-05-18  Roger Sayle  <roger@eyesopen.com>
6739             Zack Weinberg  <zack@codesourcery.com>
6740
6741         PR middle-end/10472
6742         * builtins.c (expand_builtin_memcpy):  Call force_operand on
6743         expressions and use simplify_gen_binary to create the addition.
6744
6745 2003-05-18  Andreas Schwab  <schwab@suse.de>
6746
6747         * config/m68k/m68k.md: Use define_constants for unspec numbers.
6748
6749 2003-05-18  Neil Booth  <neil@daikokuya.co.uk>
6750
6751         * config/sparc/sparc.h: Define sparc for now.
6752
6753 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
6754
6755         * config.gcc: Clear xm_file, md_file at the beginning of each pass.
6756
6757         * config/stormy16/stormy16.h: Remove about 3000 lines of
6758         target-independent comments.  Update copyright notice.
6759
6760         * doc/collect2.texi: GNU CC -> GCC.
6761         * doc/headerdirs.texi: GNU CC -> GCC.
6762
6763 2003-05-18  Gabriel Dos Reis <gdr@integrable-solutions.net>
6764
6765         * hashtable.h (struct ht_identifier): Add data member "hash_value".
6766         * hashtable.c (ht_lookup): Use it when searching, remember.
6767         (ht_expand): Do not recompute.
6768         * tree.h (IDENTIFIER_HASH_VALUE): New macro.
6769
6770 2003-05-18  Nathan Sidwell  <nathan@codesourcery.com>
6771
6772         * gcov-io.c (gcov_read_bytes): Fix fread thinko.
6773
6774 2003-05-18  Neil Booth  <neil@daikokuya.co.uk>
6775
6776         * c-cppbuiltin.c (TARGET_OS_CPP_BUILTINS, TARGET_OBJFMT_CPP_BUILTINS):
6777         Default here.
6778         (c_cpp_builtins): Invoke TARGET_OBJFMT_CPP_BUILTINS().
6779         * defaults.h: Don't default TARGET_OS_CPP_BUILTINS here.
6780         * config/elfos.h (TARGET_OBJFMT_CPP_BUILTINS): Define __ELF__.
6781         * config/freebsd-spec.h, config/netbsd-elf.h, config/alpha/gnu.h,
6782         config/arm/linux-elf.h, config/arm/rtems-elf.h,
6783         config/arm/unknown-elf.h, config/cris/cris.h, config/cris/linux.h,
6784         config/h8300/elf.h, config/i370/linux.h, config/i386/beos-elf.h,
6785         config/i386/gnu.h, config/i386/linux.h, config/i386/linux64.h,
6786         config/i386/moss.h, config/i386/rtemself.h, config/ia64/ia64.h,
6787         config/m68k/rtemself.h, config/mcore/mcore-elf.h, config/mips/linux.h,
6788         config/pa/pa-linux.h, config/rs6000/linux.h, config/rs6000/linux64.h,
6789         config/rs6000/sysv4.h, config/rs6000/vxworks.h, config/s390/linux.h,
6790         config/sh/coff.h, config/sh/elf.h, config/sh/rtemself.h,
6791         config/sh/sh.h, config/sparc/linux.h, config/sparc/linux64.h,
6792         config/sparc/openbsd64.h, config/sparc/sp64-elf.h,
6793         config/sparc/sp86x-elf.h, config/xtensa/elf.h, config/xtensa/linux.h:
6794         Don't define __ELF__.
6795         * config/alpha.h, config/m68k/linux.h (TARGET_OBJFMT_CPP_BUILTINS):
6796         Define __ELF__.
6797         * doc/cpp.texi: Document __ELF__.
6798         * doc/tm.texi: Document TARGET_OBJFMT_CPP_BUILTINS.     *
6799
6800 2003-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6801
6802         * builtins.c (validate_arglist): Eliminate libiberty VA_ macros,
6803         always use stdarg.
6804         * c-errors.c (pedwarn_c99): Likewise.
6805         * c-format.c (status_warning): Likewise.
6806         * c-semantics.c (build_stmt): Likewise.
6807         * calls.c (emit_library_call, emit_library_call_value): Likewise.
6808         * collect2.c (notice, fatal_perror, fatal, error): Likewise.
6809         * cpperror.c (cpp_error, cpp_error_with_line): Likewise.
6810         * diagnostic.c (build_message_string, output_printf,
6811         output_verbatim, verbatim, inform, warning, pedwarn, error, sorry,
6812         fatal_error, internal_error, warning_with_decl, pedwarn_with_decl,
6813         error_with_decl, fnotice): Likewise.
6814         * dwarf2asm.c (dw2_asm_output_data, dw2_asm_output_delta,
6815         dw2_asm_output_offset, dw2_asm_output_pcrel, dw2_asm_output_addr,
6816         dw2_asm_output_addr_rtx, dw2_asm_output_nstring,
6817         dw2_asm_output_data_uleb128, dw2_asm_output_data_sleb128,
6818         dw2_asm_output_delta_uleb128, dw2_asm_output_delta_sleb128,
6819         dw2_asm_output_encoded_addr_rtx): Likewise.
6820         * emit-rtl.c (gen_rtx, gen_rtvec): Likewise.
6821         * errors.c (warning, error, fatal, internal_error): Likewise.
6822         * final.c (output_operand_lossage, asm_fprintf): Likewise.
6823         * fix-header.c (fatal): Likewise.
6824         * gcc.c (fatal, error, notice): Likewise.
6825         * gcov.c (fnotice): Likewise.
6826         * genattrtab.c (attr_rtx, attr_printf): Likewise.
6827         * gengtype.c (error_at_line, xasprintf, oprintf): Likewise.
6828         * gensupport.c (message_with_line): Likewise.
6829         * mips-tfile.c (fatal, error): Likewise.
6830         * protoize.c (notice): Likewise.
6831         * ra-debug.c (ra_debug_msg): Likewise.
6832         * read-rtl.c (fatal_with_file_and_line): Likewise.
6833         * rtl-error.c (error_for_asm, warning_for_asm): Likewise.
6834         * tree.c (build, build_nt, build_function_type_list): Likewise.
6835
6836 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6837
6838         * defaults.h (TARGET_CPU_CPP_BUILTINS, CPP_PREDEFINES): Remove.
6839         * gcc.c (cpp_predefines): Remove.
6840         (cpp_unique_options, do_spec_1): Remove handling of CPP_PREDEFINES.
6841         (static_specs): Remove predefines.
6842         * system.h: Poison CPP_PREDEFINES.
6843         * config/freebsd.h, config/openbsd.h, config/ptx4.h, config/svr3.h,
6844         config/svr4.h, doc/tm.texi: Remove references to CPP_PREDEFINES.
6845
6846 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6847
6848         * config/m68k/hp320.h, config/m68k/linux.h, config/m68k/m68k-none.h,
6849         config/m68k/m68k.h, config/m68k/m68kemb.h, config/m68k/m68kv4.h,
6850         config/m68k/openbsd.h, config/m68k/rtemself.h: Remove CPP_PREDEFINES,
6851         use TARGET_OS_CPP_BUILTINS and TARGET_CPU_CPP_BUILTINS instead.
6852
6853 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6854
6855         PR c/9209
6856         * c-common.c, c-common.h (dollars_in_ident): Remove.
6857         * c-opts.c (DOLLARS_IN_IDENTIFIERS): Default to true.
6858         (c_common_init_options, c_common_decode_option): Set dollars_in_ident.
6859         * cpphash.h (warned_dollar): Rename warn_dollars.
6860         * cppinit.c (struct lang_flags, lang_defaults, cpp_set_lang)
6861         Permit dollars regardless of -std=.
6862         (post_options): Set warn_dollars.
6863         * cpplex.c (forms_identifier_p): Use warn_dollars.
6864         * config/darwin.h, config/alpha/vms.h, config/m68hc11/m68hc11.h:
6865         Remove redundant definitions of DOLLARS_IN_IDENTIFIERS.
6866         * doc/cpp.texi, doc/cppopts.texi, doc/invoke.texi, doc/tm.texi:
6867         Update documentation.
6868
6869 2003-05-17  Andreas Schwab  <schwab@suse.de>
6870
6871         * config/m68k/m68k.c (m68k_output_function_prologue): Use
6872         HOST_WIDE_INT_PRINT_DEC for fprintf and %wd for asm_fprintf when
6873         formatting a HOST_WIDE_INT.
6874         (m68k_output_function_epilogue): Likewise.
6875
6876 2003-05-17  Zack Weinberg  <zack@codesourcery.com>
6877
6878         * doc/install.texi: Remove information about desupported targets.
6879
6880 2003-05-17  Andreas Schwab  <schwab@suse.de>
6881
6882         * config/m68k/coff.h: Remove support for Sun FPA and Sun SKY board.
6883         * config/m68k/linux.h: Likewise.
6884         * config/m68k/m68k-none.h: Likewise.
6885         * config/m68k/netbsd-elf.h: Likewise.
6886         * config/m68k/sgs.h: Likewise.
6887         * config/m68k/m68k.h: Likewise.
6888         * config/m68k/m68k.md: Likewise.
6889         * config/m68k/m68k.c: Likewise.
6890         * doc/md.texi (Machine Constraints): Remove Sun FPA specific
6891         constraints.
6892         * doc/invoke.texi (Option Summary): Remove -mfpa.
6893         (M680x0 Options): Likewise.
6894
6895 2003-05-17  David Edelsohn  <edelsohn@gnu.org>
6896
6897         * rs6000.c (rs6000_function_value): Simplify REAL_TYPE logic.
6898
6899 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6900
6901         * config/sol2.h: Add TARGET_SUB_OS_CPP_BUILTINS.
6902         * config/sparc/liteelf.h, config/sparc/openbsd64.h,
6903         config/sparc/rtemself.h, config/sparc/sol2-64.h,
6904         config/sparc/sp64-elf.h, config/sparc/sp86x-elf.h:
6905         Update for use of TARGET_SUB_OS_CPP_BUILTINS.
6906
6907 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6908
6909         * i960/i960.h, i960/rtems.h: Use TARGET_OS_CPP_BUILTINS and
6910         TARGET_CPU_CPP_BUILTINS in preference to CPP_PREDEFINES.
6911
6912 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
6913
6914         * config.gcc (sparc-*-sysv4*): Add sparc/sysv4-only.h.
6915         * sparc/aout.h, sparc/elf.h, sparc/freebsd.h, sparc/linux.h,
6916         sparc/linux64.h, sparc/lite.h, sparc/litecoff.h, sparc/liteelf.h,
6917         sparc/netbsd-elf.h, sparc/openbsd.h, sparc/openbsd64.h,
6918         sparc/pbd.h, sparc/rtemself.h, sparc/sol2-64.h, sparc/sol2-bi.h,
6919         sparc/sol2.h, sparc/sp64-elf.h, sparc/sp86-elf.h, sparc/sparc.h,
6920         sparc/sysv4.h,
6921         * sparc/sysv4-only.h: New.
6922
6923 2003-05-17  Alan Modra  <amodra@bigpond.net.au>
6924
6925         * function.c (assign_parms): Check for zero size args.
6926
6927 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6928
6929         * cfgloopanal.c (test_for_iteration): Use string concatentation on
6930         HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
6931         function calls into one.
6932         * dbxout.c (dbxout_symbol): Likewise.
6933         * defaults.h (ASM_OUTPUT_SIZE_DIRECTIVE): Likewise.
6934         * dwarf2asm.c (dw2_asm_output_data_uleb128,
6935         dw2_asm_output_data_sleb128): Likewise.
6936         * genrecog.c (debug_decision_2): Likewise.
6937         * loop.c (emit_prefetch_instructions): Likewise.
6938         * print-rtl.c (print_rtx): Likewise.
6939         * print-tree.c (print_node_brief, print_node): Likewise.
6940         * ra-debug.c (dump_igraph, dump_graph_cost,
6941         dump_static_insn_cost): Likewise.
6942         * ra-rewrite.c (dump_cost): Likewise.
6943         * sdbout.c (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
6944         * sreal.c (dump_sreal): Likewise.
6945         * unroll.c (unroll_loop, precondition_loop_p): Likewise.
6946         * varasm.c (assemble_vtable_entry): Likewise.
6947
6948         * avr.c (avr_output_function_prologue,
6949         avr_output_function_epilogue, print_operand): Fix format specifier
6950         warnings.
6951         (init_cumulative_args): Mark parameter with ATTRIBUTE_UNUSED.
6952         * avr.h (FUNCTION_VALUE_REGNO_P): Fix signed/unsigned warnings.
6953
6954 2003-05-16  Geoffrey Keating  <geoffk@apple.com>
6955
6956         * config/rs6000/rs6000.c (expand_block_move): Unify the TARGET_STRING
6957         and ! TARGET_STRING cases.
6958
6959         * doc/cppopts.texi (-undef): Fix texinfo warning.
6960
6961         * doc/cppopts.texi (-H): Document that -H works for PCH files too.
6962         * cppfiles.c (validate_pch): When -H is used, print some information
6963         about PCH files found.
6964
6965 2003-05-16  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6966
6967         * config/mips/t-elf: Remove obsolete rules adding dependencies on tm.h.
6968         * config/mips/t-isa3264, config/mips/t-r3900: Likewise.
6969         * config/mips/t-sr71k: Likewise.
6970
6971 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6972
6973         * arc.c (arc_output_function_prologue,
6974         arc_output_function_epilogue): Fix format specifier warnings.
6975         * arc.h (LARGE_INT): Fix signed/unsigned warnings.
6976
6977         * v850.c (print_operand): Fix format specifier warnings.
6978
6979         * ns32k.c (ADJSP, ns32k_output_function_prologue): Fix format
6980         specifier warnings.
6981
6982         * mcore.c (mcore_print_operand_address, mcore_print_operand): Fix
6983         format specifier warnings.
6984
6985         * ip2k.c (function_prologue, function_epilogue, print_operand):
6986         Fix format specifier warnings.
6987         * ip2k.md: Likewise.
6988
6989         * i960.c (i960_output_function_prologue, i960_print_operand,
6990         i960_print_operand_addr): Fix format specifier warnings.
6991
6992         * i370.c (ascebc, ebcasc): Wrap in macros controlling usage.
6993         (i370_output_function_prologue): Fix format specifier warnings.
6994         * i370.h (PRINT_OPERAND): Likewise.
6995
6996         * fr30.c (fr30_print_operand): Fix format specifier warnings.
6997
6998         * dsp16xx.c (print_operand_address): Fix format specifier warning.
6999         * dsp16xx.h (INCLUDE_DEFAULTS): Add missing initializers.
7000
7001         * c4x.c (c4x_print_operand, c4x_print_operand_address): Fix format
7002         specifier warnings.
7003
7004         * alpha.c (print_operand_address, alpha_start_function,
7005         unicosmk_output_ssib): Use string concatentation on
7006         HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
7007         function calls into one.
7008         * arm.c (arm_print_operand): Likewise.
7009         * cris.c (cris_asm_output_mi_thunk): Likewise.
7010         * frv.c (frv_asm_output_mi_thunk): Likewise.
7011         * ia64.c (ia64_print_operand, process_set): Likewise.
7012         * m68k.c (m68k_output_function_epilogue, m68k_output_mi_thunk):
7013         Likewise.
7014         * mips/iris5gas.h (PUT_SDB_SIZE): Likewise.
7015         * mips.h (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
7016         * pa.c (output_div_insn, pa_asm_output_mi_thunk): Likewise.
7017         * pa.h (PRINT_OPERAND_ADDRESS): Likewise.
7018         * rs6000.c (rs6000_va_start, print_operand_address): Likewise.
7019         * s390.c (s390_assemble_integer): Likewise.
7020         * sparc.c (sparc_flat_function_prologue,
7021         sparc_flat_function_epilogue): Likewise.
7022         * stormy16.c (xstormy16_print_operand_address, xstormy16_print_operand): Likewise.
7023         * vax.c (vax_output_mi_thunk): Likewise.
7024
7025         * frv.c (frv_print_operand_memory_reference): Fix format specifier
7026         warning.
7027         (frv_rtx_costs): Mark parameter with ATTRIBUTE_UNUSED.
7028
7029         * m68k.c (m68k_output_function_epilogue): Fix format specifier
7030         warnings.
7031
7032         * stormy16-protos.h (xs_hi_general_operand,
7033         xs_hi_nonmemory_operand): Prototype.
7034         * stormy16.c (xstormy16_output_shift): Fix format specifier
7035         warnings.
7036
7037         * cris.c: Fix format specifier warnings.
7038
7039 2003-05-16  Nick Clifton  <nickc@redhat.com>
7040
7041         * config/arm/lib1funcs.asm: Fix typo: LSM instead of LSYM.
7042
7043 2003-05-16  Wolfgang Bangerth <bangerth@dealii.org>
7044
7045         * doc/bugreport.texi: Remove most of the of the preface of the
7046         bugs section.
7047
7048 2003-05-16  Jakub Jelinek  <jakub@redhat.com>
7049
7050         * config/ia64/unwind-ia64.c (uw_update_reg_address): Handle
7051         .save XX, r0.
7052
7053 2003-05-15  Roger Sayle  <roger@eyesopen.com>
7054
7055         * config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo.
7056
7057 2003-05-15  Eric Christopher  <echristo@redhat.com>
7058
7059         * cfgcleanup.c (merge_blocks): Fix return value.
7060
7061 2003-05-15 Eric Christopher <echristo@redhat.com>
7062
7063         * combine.c (expand_compound_operation): Make sure
7064         that zero_extend operation is profitable.
7065
7066 2003-05-15  Richard Henderson  <rth@redhat.com>
7067
7068         * config/alpha/linux.h, config/alpha/linux-elf.h: Remove
7069         code protected by USE_GNULIBC_1.
7070
7071 2003-05-15  Zack Weinberg  <zack@codesourcery.com>
7072
7073         * config.gcc: Purge all targets obsoleted in GCC 3.3.  Also
7074         remove hppa*-*-mpeix* which could not be built, and prune
7075         files from tmake_file= or tm_file= lists that don't exist.
7076
7077         * config/alpha/alpha-interix.h, config/alpha/alpha32.h
7078         * config/alpha/t-interix, config/arm/conix-elf.h
7079         * config/arm/t-arm-aout, config/arm/t-strongarm-coff
7080         * config/arm/unknown-elf-oabi.h, config/i386/win32.h
7081         * config/m68k/3b1.h, config/m68k/3b1g.h, config/m68k/amix.h
7082         * config/m68k/atari.h, config/m68k/ccur-GAS.h, config/m68k/crds.h
7083         * config/m68k/hp2bsd.h, config/m68k/hp3bsd.h
7084         * config/m68k/hp3bsd44.h, config/m68k/linux-aout.h
7085         * config/m68k/m68k-psos.h, config/m68k/mot3300.h
7086         * config/m68k/pbb.h, config/m68k/plexus.h, config/m68k/sun2.h
7087         * config/m68k/sun2o4.h, config/m68k/sun3.h, config/m68k/sun3mach.h
7088         * config/m68k/sun3n.h, config/m68k/sun3n3.h, config/m68k/sun3o3.h
7089         * config/m68k/t-mot3300, config/m68k/t-mot3300-gald
7090         * config/m68k/t-mot3300-gas, config/m68k/t-mot3300-gld
7091         * config/m68k/tower-as.h, config/m68k/tower.h
7092         * config/m88k/aout-dbx.h, config/m88k/m88k-aout.h
7093         * config/m88k/m88k-modes.def, config/m88k/m88k-move.sh
7094         * config/m88k/m88k-protos.h, config/m88k/m88k.c
7095         * config/m88k/m88k.h, config/m88k/m88k.md, config/m88k/openbsd.h
7096         * config/m88k/sysv4.h, config/m88k/t-luna, config/m88k/t-luna-gas
7097         * config/m88k/t-m88k, config/m88k/t-sysv4, config/mcore/gfloat.h
7098         * config/mips/rtems64.h, config/mips/sni-gas.h
7099         * config/mips/sni-svr4.h, config/mips/t-ecoff
7100         * config/mn10200/lib1funcs.asm, config/mn10200/mn10200-protos.h
7101         * config/mn10200/mn10200.c, config/mn10200/mn10200.h
7102         * config/mn10200/mn10200.md, config/mn10200/t-mn10200
7103         * config/pa/pa-hiux.h, config/pa/pa-hpux7.h, config/pa/pa-hpux9.h
7104         * config/pa/pa-oldas.h, config/pa/t-mpeix, config/psos.h
7105         * config/romp/romp-protos.h, config/romp/romp.c
7106         * config/romp/romp.h, config/romp/romp.md, config/rs6000/aix31.h
7107         * config/rs6000/aix3newas.h, config/rs6000/mach.h
7108         * config/sparc/bsd.h, config/sparc/hal.h
7109         * config/sparc/linux-aout.h, config/sparc/lynx-ng.h
7110         * config/sparc/lynx.h, config/sparc/netbsd.h
7111         * config/sparc/sp86x-aout.h, config/sparc/splet.h
7112         * config/sparc/sun4gas.h, config/sparc/sun4o3.h
7113         * config/sparc/sunos4.h, config/sparc/t-chorus-elf
7114         * config/sparc/t-halos, config/sparc/t-sparcbare
7115         * config/sparc/t-splet, config/sparc/t-sunos41
7116         * config/v850/rtems.h: Delete file.
7117
7118 2003-05-15  Aldy Hernandez  <aldyh@redhat.com>
7119
7120         * config/rs6000/rs6000-protos.h (function_value): Protoize.
7121
7122         * config/rs6000/rs6000.h (FUNCTION_VALUE): Call function.
7123
7124         * config/rs6000/rs6000.c (rs6000_function_value): New.
7125
7126 2003-05-15  Philip Blundell  <philb@gnu.org>
7127
7128         * config/arm/arm.c (arm_is_xscale): Rename to arm_arch_xscale.
7129         All uses updated.
7130         (arm_tune_xscale): New variable.
7131         (arm_override_options): Set it.
7132         (arm_adjust_cost): Use it in place of arm_arch_xscale.
7133         (arm_gen_load_multiple): Likewise.
7134         (arm_gen_store_multiple): Likewise.
7135         * config/arm/arm.md (is_xscale): Likewise.
7136         * config/arm/arm.h (arm_tune_xscale): Declare.
7137
7138 2003-05-15  Philip Blundell  <philb@gnu.org>
7139
7140         PR target/10730
7141         * config/arm/arm.c (adjacent_mem_locations): Reject offsets
7142         involving invalid constants.
7143
7144 2003-05-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7145
7146         * pa.c (hppa_expand_prologue): Remove blockage.
7147
7148 2003-05-15  Wolfgang Bangerth <bangerth@dealii.org>
7149
7150         * doc/bugreport.texi: Remove most of the bug reporting
7151         instructions and merge them into bugs.html.
7152
7153 2003-05-14  Matt Kraai  <kraai@alumni.cmu.edu>
7154
7155         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Cast
7156         g_switch_value to unsigned HOST_WIDE_INT.
7157
7158 2003-05-14  Eric Christopher  <echristo@redhat.com>
7159
7160         * combine.c: Fix header comments.
7161         (distribute_notes): Remove usage of elim_i1, elim_i2. Propagate
7162         to all calls and prototype.
7163
7164 2003-05-14  Roger Sayle  <roger@eyesopen.com>
7165
7166         PR optimization/10764
7167         * config/i386/i386.md (atan2df3, atan2sf3, atan2xf3, atan2tf3):
7168         Add an explicit clobber to show that UNSPEC_FPATAN clobbers st(1).
7169         (*fyl2x_sfxf3, *fyl2x_dfxf3, *fyl2x_xf3, *fyl2x_tfxf3):  Likewise,
7170         add an explicit clobber to show that UNSPEC_FYL2X clobbers st(1).
7171         (logsf2, logdf2, logxf2, logtf2): Update expander patterns to match
7172         the corresponding *fyl2x_?fxf3 instructions.
7173
7174 2003-05-14  Bob Wilson  <bob.wilson@acm.org>
7175
7176         * config/xtensa/lib2funcs.S (TRAMPOLINE_SIZE): Change from 49 to 59.
7177         * config/xtensa/xtensa-config.h (XCHAL_HAVE_CONST16,
7178         XCHAL_HAVE_L32R): New.
7179         * config/xtensa/xtensa-protos.h (non_const_move_operand,
7180         xtensa_load_constant, xtensa_function_prologue,
7181         xtensa_function_epilogue): Delete prototypes.
7182         (xtensa_expand_prologue): New.
7183         * config/xtensa/xtensa.c (frame_size_const,
7184         TARGET_ASM_FUNCTION_PROLOGUE, TARGET_MACHINE_DEPENDENT_REORG,
7185         non_const_move_operand, xtensa_load_constant, xtensa_reorg,
7186         xtensa_function_prologue): Delete.
7187         (add_operand, xtensa_mem_offset): Formatting.
7188         (move_operand): If the const16 option is available, allow any SFmode
7189         and SImode constants.
7190         (xtensa_emit_move_sequence): Inline the former contents of
7191         xtensa_load_constant with modifications to handle the const16 option.
7192         (override_options): Add xtensa_char_to_class['W'] and set it to
7193         the general register class only if the const16 option is enabled.
7194         Fix formatting.  Disallow PIC when using the const16 option.
7195         (print_operand): Reorganize to switch on "letter" instead of the
7196         RTL code.  Add output_operand_lossage calls for invalid cases.
7197         Add support for 't' and 'b' letters.
7198         (xtensa_expand_prologue): New function to replace
7199         xtensa_function_prologue and xtensa_reorg.
7200         (xtensa_function_epilogue): Declare this as static.  Delete code
7201         to print the retw.n or retw instruction.
7202         (xtensa_return_addr): Use A0_REG instead of 0.
7203         (xtensa_rtx_costs): Add costs for using the const16 option.
7204         * config/xtensa/xtensa.h (MASK_CONST16, TARGET_CONST16): New.
7205         (TARGET_DEFAULT): Add CONST16 if L32R instructions not available.
7206         (TARGET_SWITCHES): Add "const16" and "no-const16".
7207         (REG_CLASS_FROM_LETTER): Add comment about new 'W' letter.
7208         (EXTRA_CONSTRAINT): Change 'T' constraint to only apply when not
7209         using the const16 option.
7210         (TRAMPOLINE_TEMPLATE): Rewrite to avoid hardwired use of l32r insn.
7211         (TRAMPOLINE_SIZE): Change from 49 to 59.
7212         (INITIALIZE_TRAMPOLINE): Adjust offsets to match new trampoline.
7213         (GO_IF_LEGITIMATE_ADDRESS): Do not allow constant pool addresses
7214         when using the const16 option.
7215         (PREDICATE_CODES): Delete non_const_move_operand.
7216         * config/xtensa/xtensa.md (define_constants): Add A1_REG, A8_REG, and
7217         UNSPECV_ENTRY.
7218         (movdi, movdf): If the source is a constant, always expand to a
7219         sequence of movsi insns.
7220         (movdi_internal, movdf_internal): Remove alternative using l32r insns.
7221         (movsi_internal, movsf_internal): Add alternative using const16 insns.
7222         (movsf): Add const16 support.
7223         (entry, prologue, epilogue): New.
7224         (set_frame_ptr): Add missing mode for unspec_volatile operation.
7225         Likewise for subsequent split pattern.
7226         * doc/invoke.texi (Option Summary, Xtensa Options): Document new
7227         "-mconst16" and "-mno-const16" options.
7228
7229 2003-05-14  Richard Henderson  <rth@redhat.com>
7230
7231         * config/ia64/ia64.c (ia64_expand_load_address): Force destination
7232         to be DImode register.  Merge load_symptr.
7233         * config/ia64/ia64.md (load_symptr): Remove.
7234
7235 2003-05-14  Richard Henderson  <rth@redhat.com>
7236
7237         * rtl.h (TREE_CONSTANT_POOL_ADDRESS_P): Rename from
7238         DEFERRED_CONSTANT_P.
7239         * integrate.c (copy_rtx_and_substitute): Update use.
7240         * varasm.c (build_constant_desc): Set SYMBOL_REF_DECL
7241         to the copy generated.
7242         (maybe_output_constant_def_contents): Examine TREE_ASM_WRITTEN
7243         of the constant to see if we should emit.
7244         (mark_constant): Similarly.
7245         (output_constant_def_contents): Set TREE_ASM_WRITTEN.
7246
7247 2003-05-14  David Edelsohn  <edelsohn@gnu.org>
7248
7249         * config/rs6000/rs6000.md (movsi_internal2): Use compare for self
7250         move record condition.
7251         (movdi_internal2): Same.
7252
7253 2003-05-14  Nathan Sidwell  <nathan@codesourcery.com>
7254
7255         * gcov-io.h (gcov_write_bytes, gcov_read_bytes): Remove here.
7256         (GCOV_TAG_*) Force type to gcov_unsigned_t.
7257         (GCOV_CHECK, GCOV_CHECK_READING, GCOV_CHECK_WRITING): New.
7258         (struct gcov_var): Remove modified. Add start, length, offset,
7259         overread. Have buffer array for libgcov.
7260         (gcov_sync, gcov_seek): Definitions moved to gcov-io.c.
7261         (gcov_position, gcov_rewrite, gcov_is_eof): Adjust.
7262         * gcov-io.c (gcov_open): Set mode, do not read anything.
7263         (gcov_close): Write final block.
7264          (gcov_write_block, gcov_allocate): New.
7265         (gcov_write_bytes): Make static. Write or allocate buffer.
7266         (gcov_write_unsigned, gcov_write_counter): Buffer can never be
7267         null.
7268         (gcov_write_string): Adjust.
7269         (gcov_write_tag)
7270         (gcov_write_length): Adjust. Flush the block.
7271         (gcov_write_tag_length): Buffer can never be null.
7272         (gcov_read_bytes): Make static. Read in block.
7273         (gcov_sync): Moved here. Adjust.
7274         (gcov_seek): Moved here. Adjust.
7275         * coverage.c (read_counts_file): Adjust.
7276         * gcov-dump.c (print_prefix): Add position parameter.
7277         (flag_dump_positions): New flag.
7278         (options, main, print_usage): Add it.
7279         (dump_file, tag_blocks, tag_arcs, tag_lines, tag_counters,
7280         tag_summary): Adjust.
7281         * gcov.c (read_graph_file, read_count_file): Adjust.
7282         * libgcov.c (gcov_exit): Adjust.
7283
7284         * Makefile.in (LIBGCC_DEPS): Use $(srcdir) on gcov files
7285         (libgcov.a): Depend on libgcc.a.
7286         (gcov.o, gcov-dump.o): Add gcov-io.c.
7287         * mklibgcc.in (libgcov_c_dep): Use $(srcdir).
7288
7289         * loop.c (check_dbra_loop): Factor common test.
7290
7291 2003-05-14  Ben Elliston  <bje@wasabisystems.com>
7292
7293         * doc/md.texi (Automaton pipeline description): Grammar fixes.
7294
7295 2003-05-14  Richard Sandiford  <rsandifo@redhat.com>
7296
7297         * target-def.h (TARGET_MACHINE_DEPENDENT_REORG): Define.
7298         (TARGET_INITIALIZER): Include it.
7299         * target.h (struct gcc_target): Add machine_dependent_reorg field.
7300         * toplev.c (rest_of_compilation): Use targetm.machine_dependent_reorg.
7301         * system.h: Poison MACHINE_DEPENDENT_REORG.
7302
7303         * config/alpha/alpha-protos.h (alpha_reorg): Remove declaration.
7304         * config/alpha/alpha.h (MACHINE_DEPENDENT_REORG): Remove.
7305         * config/alpha/alpha.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7306         (alpha_handle_trap_shadows): Remove "first insn" parameter.
7307         (alpha_align_insns): Likewise.
7308         (alpha_reorg): Likewise.  Make static.  Update calls to above
7309         functions.
7310
7311         * config/arm/arm-protos.h (arm_reorg): Remove declaration.
7312         * config/arm/arm.h (MACHINE_DEPENDENT_REORG): Remove.
7313         * config/arm/arm.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7314         (arm_reorg): Remove parameter.  Make static.
7315
7316         * config/avr/avr-protos.h (machine_dependent_reorg): Remove.
7317         * config/avr/avr.h (MACHINE_DEPENDENT_REORG): Remove.
7318         * config/avr/avr.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7319         (avr_reorg): Renamed from machine_dependent_reorg.  Make static.
7320         Remove parameter.
7321
7322         * config/c4x/c4x-protos.h (c4x_process_after_reload): Remove.
7323         * config/c4x/c4x.h (MACHINE_DEPENDENT_REORG): Remove.
7324         * config/c4x/c4x.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7325         (c4x_reorg): Renamed from c4x_process_after_reload.  Make static.
7326         Remove parameter.
7327
7328         * config/d30v/d30v-protos.h (d30v_machine_dependent_reorg): Remove.
7329         * config/d30v/d30v.h (MACHINE_DEPENDENT_REORG): Remove.
7330         * config/d30v/d30v.c (d30v_machine_dependent_reorg): Remove.
7331
7332         * config/frv/frv-protos.h (frv_machine_dependent_reorg): Remove.
7333         * config/frv/frv.c: Remove orphaned comment.
7334
7335         * config/i386/i386-protos.h (x86_machine_dependent_reorg): Remove.
7336         * config/i386/i386.h (MACHINE_DEPENDENT_REORG): Remove.
7337         * config/i386/i386.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7338         (ix86_reorg): Renamed from x86_machine_dependent_reorg.  Make static.
7339         Remove parameter.
7340
7341         * config/ia64/ia64-protos.h (ia64_reorg): Remove declaration.
7342         * config/ia64/ia64.h (MACHINE_DEPENDENT_REORG): Remove.
7343         * config/ia64/ia64.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7344         (emit_insn_group_barriers): Remove "first insn" parameter.
7345         (emit_all_insn_group_barriers): Likewise.
7346         (ia64_reorg): Likewise.  Make static.  Update calls to above functions.
7347         (ia64_output_mi_thunk): Update call to emit_all_insn_group_barriers.
7348
7349         * config/ip2k/ip2k-protos.h (machine_dependent_reorg): Remove.
7350         * config/ip2k/ip2k.h (MACHINE_DEPENDENT_REORG): Remove.
7351         * config/ip2k/ip2k.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7352         (ip2k_reorg): Renamed from machine_dependent_reorg.  Make static.
7353         Remove parameter.
7354
7355         * config/m68hc11/m68hc11-protos.h (m68hc11_reorg): Remove declaration.
7356         * config/m68hc11/m68hc11.h (MACHINE_DEPENDENT_REORG): Remove.
7357         * config/m68hc11/m68hc11.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7358         (m68hc11_reorg): Make static.  Remove parameter.
7359
7360         * config/mcore/mcore-protos.h (mcore_dependent_reorg): Remove.
7361         * config/mcore/mcore.h (MACHINE_DEPENDENT_REORG): Remove.
7362         * config/mcore/mcore.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7363         (conditionalize_optimization): Remove parameter.
7364         (mcore_reorg): Renamed from mcore_dependent_reorg.  Remove parameter.
7365         Make static.  Update call to conditionalize_optimization.
7366
7367         * config/mips/mips-protos.h (machine_dependent_reorg): Remove.
7368         * config/mips/mips.h (MACHINE_DEPENDENT_REORG): Remove.
7369         * config/mips/mips.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7370         (mips_reorg): Renamed from machine_dependent_reorg.  Remove parameter.
7371         Make static.
7372
7373         * config/mmix/mmix-protos.h (mmix_machine_dependent_reorg): Remove.
7374         * config/mmix/mmix.h (MACHINE_DEPENDENT_REORG): Remove.
7375         * config/mmix/mmix.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7376         (mmix_reorg): Renamed from mmix_machine_dependent_reorg.  Make static.
7377         Remove parameter.
7378
7379         * config/pa/pa-protos.h (pa_reorg): Remove declaration.
7380         * config/pa/pa.h (MACHINE_DEPENDENT_REORG): Remove.
7381         * config/pa/pa.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7382         (pa_combine_instructions): Remove "first insn" parameter.
7383         (remove_useless_addtr_insns): Likewise.
7384         (pa_reorg): Likewise.  Make static.  Update calls to above functions.
7385
7386         * config/rs6000/rs6000.h (MACHINE_DEPENDENT_REORG): Remove
7387         commented-out definition.
7388
7389         * config/s390/s390-protos.h (s390_machine_dependent_reorg): Remove.
7390         * config/s390/s390.h (MACHINE_DEPENDENT_REORG): Remove.
7391         * config/s390/s390.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7392         (s390_reorg): Renamed from s390_machine_dependent_reorg.  Make static.
7393         Remove parameter.
7394
7395         * config/sh/sh-protos.h (machine_dependent_reorg): Remove.
7396         * config/sh/sh.h (MACHINE_DEPENDENT_REORG): Remove.
7397         * config/sh/sh.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7398         (sh_reorg): Renamed from machine_dependent_reorg.  Make static.
7399         Remove parameter.
7400         (sh_output_mi_thunk): Call sh_reorg directly.
7401         * config/sh/sh.md: Update comment.
7402
7403         * config/stormy16/stormy16.h (MACHINE_DEPENDENT_REORG): Remove
7404         commented-out definition.
7405
7406         * config/v850/v850-protos.h (v850_reorg): Remove declaration.
7407         * config/v850/v850.h (MACHINE_DEPENDENT_REORG): Remove.
7408         * config/v850/v850.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7409         (v850_reorg): Make static.  Remove parameter.
7410
7411         * config/xtensa/xtensa-protos.h (xtensa_reorg): Remove declaration.
7412         * config/xtensa/xtensa.h (MACHINE_DEPENDENT_REORG): Remove.
7413         * config/xtensa/xtensa.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
7414         (xtensa_reorg): Make static.  Remove parameter.
7415
7416         * doc/tm.texi (MACHINE_DEPENDENT_REORG): Remove.
7417         (TARGET_MACHINE_DEPENDENT_REORG): Document.
7418
7419 2003-05-13  Richard Henderson  <rth@redhat.com>
7420
7421         * c-decl.c (duplicate_decls): Re-invoke make_decl_rtl if
7422         the old decl had instantiated DECL_RTL.
7423
7424 2003-05-13  Mike Stump  <mrs@apple.com>
7425
7426         * doc/invoke.texi (Option Summary): Kill off documentation for -$.
7427
7428 2003-05-13  Janis Johnson  <janis187@us.ibm.com>
7429
7430         * config/rs6000/sysv4.h (OUTPUT_ASM_ALIGNED_LOCAL): Expect
7431         HOST_WIDE_INT argument.
7432
7433 2003-05-13  Jason Merrill  <jason@redhat.com>
7434
7435         * tree.h (STRIP_MAIN_TYPE_NOPS): New macro.
7436
7437         * tree.c (iterative_hash_expr): New fn.
7438
7439         * c-semantics.c (emit_local_var): Don't mess with temp slots if
7440         there's no initializer.
7441
7442 2003-05-13  Richard Sandiford  <rsandifo@redhat.com>
7443
7444         * final.c (final_scan_insn): Apply the effects of frame-related
7445         delay slot insns before emitting a delayed branch.
7446
7447 2003-05-13  Nick Clifton  <nickc@redhat.com>
7448
7449         * config/mcore/mcore.md (jump): Use emit_jump_insn.
7450
7451 2003-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
7452
7453         * config/s390/s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second
7454         parameter of ASM_OUTPUT_SKIP must have type unsigned HOST_WIDE_INT.
7455
7456 2003-05-12  DJ Delorie  <dj@redhat.com>
7457
7458         * expr.c (move_by_pieces): Honor the alignment of TO and FROM.
7459         (emit_push_insn): Don't use push when the source alignment is less
7460         than the stack's push rounding.
7461
7462 2003-05-13  Zack Weinberg  <zack@codesourcery.com>
7463
7464         * diagnostic.c (output_format): Add support for %m.
7465         (output_printf, output_verbatim, diagnostic_set_info,
7466         verbatim): Set err_no field of the text_info structure being
7467         initialized.
7468         (fatal_io_error): Delete function.
7469         * diagnostic.h (text_info): Add err_no field.
7470         * toplev.h (fatal_io_error): Delete prototype.
7471
7472         * c-opts.c, c-pch.c, dwarfout.c, ggc-common.c, ggc-page.c, graph.c
7473         * toplev.c, config/mips/mips.c, config/rs6000/host-darwin.c
7474         * objc/objc-act.c: Replace all calls to fatal_io_error with
7475         calls to fatal_error; add ": %m" to the end of all the affected
7476         error messages.
7477
7478 2003-05-13  Zack Weinberg  <zack@codesourcery.com>
7479
7480         * varasm.c (notice_rtl_inlining_of_deferred_constant): New function.
7481         * rtl.h: Prototype it.
7482         * integrate.c (copy_rtx_and_substitute <SYMBOL_REF>): Call it
7483         when appropriate.
7484
7485 2003-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
7486
7487         * config/s390/s390.md ("*iordi3_oi"): Do not mark commutative.
7488         ("*iorsi3_oi"): Likewise.
7489
7490 2003-05-13  Richard Earnshaw  <rearnsha@arm.com>
7491
7492         * arm.md (compare_scc): Use shorter sequence for EQ case.
7493         (ior_scc_scc_cmp, and_scc_scc_cmp): New insn-and-split patterns.
7494         (and_scc_scc): Ensure split only applies when there is a dominance
7495         of the comparisons.
7496         (and_scc_scc_nodom): New insn-and-split pattern.
7497
7498 2003-05-13  Richard Sandiford  <rsandifo@redhat.com>
7499
7500         * unwind-dw2.c (uw_init_context_1): Don't pass &outer_cfa directly
7501         to _Unwind_SetGRPtr().
7502
7503 2003-05-13  Michael Eager <eager@mvista.com>
7504
7505         * Makefile.in: Initialize program_transform_cross_name from
7506         @program_transform_name@ instead of target_alias.
7507
7508 2003-05-12  Janis Johnson  <janis187@us.ibm.com>
7509             Alan Modra  <amodra@bigpond.net.au>
7510             Jakub Jelinek  <jakub@redhat.com>
7511
7512         * configure.in (HAVE_AS_TLS): Add powerpc and powerpc64 tests.
7513         * configure: Rebuild.
7514         * config/rs6000/rs6000-protos.h: Update.
7515         * config/rs6000/rs6000.c (rs6000_tls_size): New.
7516         (rs6000_tls_size_string): New.
7517         (rs6000_parse_tls_size_option): New.
7518         (rs6000_legitimize_tls_address): New.
7519         (rs6000_tls_get_addr): New.
7520         (rs6000_got_sym): New.
7521         (rs6000_tls_symbol_ref): New.
7522         (rs6000_tls_symbol_ref_1): New.
7523         (rs6000_get_some_local_dynamic_name): New.
7524         (rs6000_get_some_local_dynamic_name_1): New.
7525         (TARGET_HAVE_TLS): New.
7526         (TARGET_CANNOT_FORCE_CONST_MEM): New.
7527         (rs6000_override_options): Handle -mtls-size option.
7528         (constant_pool_expr_1): Handle TLS symbols.
7529         (rs6000_legitimize_address): Handle TLS symbols.
7530         (rs6000_tls_referenced_p): New.
7531         (rs6000_legitimate_address): Handle TLS symbols.
7532         (rs6000_emit_move): Handle TLS symbols.
7533         (print_operand): Handle TLS symbols.
7534         (uses_TOC): Handle TLS symbols.
7535         (rs6000_emit_prologue): Use symbol for unspec constant.
7536         * config/rs6000/rs6000.h (HAVE_AS_TLS): New.
7537         (some_ld_name): New.
7538         (LEGITIMATE_CONSTANT_P): Handle TLS symbols.
7539         (PRINT_OPERAND_PUNCT_VALID_P): Handle TLS symbols.
7540         (PREDICATE_CODES): Add rs6000_tls_symbol_ref.
7541         * config/rs6000/rs6000.md (load_toc_v4_PIC_1, load_toc_v4_PIC_1b):
7542         Support TLS.
7543         (tls_gd_32, tls_gd_64, tls_ld_32, tls_ld_64, tls_dtprel_32,
7544         tls_dtprel_64, tls_dtprel_ha_32, tls_dtprel_ha_64, tls_dtprel_lo_32,
7545         tls_dtprel_lo_64, tls_got_dtprel_32, tls_got_dtprel_64, tls_tprel_32,
7546         tls_tprel_64, tls_tprel_ha_32, tls_tprel_ha_64, tls_tprel_lo_32,
7547         tls_tprel_lo_64, tls_got_tprel_32, tls_got_tprel_64, tls_tls_32,
7548         tls_tls_64): New.
7549         * config/rs6000/sysv4.h (SUBTARGET_OPTIONS): Add tls_size.
7550
7551 2003-05-12  Neil Booth  <neil@cat.daikokuya.co.uk>
7552
7553         * Makefile.in (stage2_build, stage3_build, stage4_build):
7554         Set BUILD_CC to the same as CC.
7555
7556 2003-05-12  Neil Booth  <neil@daikokuya.co.uk>
7557
7558         * alloc-pool.c (last_id): Put in ENABLE_CHECKING guards.
7559
7560 2003-05-12  Andreas Schwab  <schwab@suse.de>
7561
7562         * config/ia64/ia64.c (ia64_function_ok_for_sibcall): Mark 'exp'
7563         as unused.
7564         (bundling): Initialize 'pos'.
7565         (ia64_expand_builtin): Initialize 'rmode'.
7566
7567 2003-05-12  David Edelsohn  <edelsohn@gnu.org>
7568
7569         * config/rs6000/xcoff.h (ASM_OUTPUT_SKIP): Accept HOST_WIDE_INT.
7570         (ASM_OUTPUT_ALIGNED_COMMON): Same.
7571         (ASM_OUTPUT_LOCAL): Same.
7572
7573 Mon May 12 21:53:29 CEST 2003  Jan Hubicka  <jh@suse.cz>
7574
7575         * varasm.c (output_constant):  Fix underflow.
7576
7577 2003-05-12  Mark Mitchell  <mark@codesourcery.com>
7578
7579         PR other/10745
7580         * configure.in: Correct detection of GNU ld version number.
7581         * configure: Regenerated.
7582
7583 2003-05-12  Zack Weinberg  <zack@codesourcery.com>
7584
7585         * diagnostic.c (diagnostic_for_decl): Take a
7586         diagnostic_context argument.  Restructure to be consistent
7587         with diagnostic_report_diagnostic.
7588         (diagnostic_count_diagnostic): Now static.  Take a
7589         diagnostic_info argument, not just a diagnostic_t.  Some code
7590         moved here from internal_error.  Move a case label for
7591         clarity.
7592         (diagnostic_action_after_output): New function.  Code moved
7593         here from internal_error and fatal_error.
7594         (bug_report_request): New #define so that this text appears in
7595         only one place.
7596         (diagnostic_report_diagnostic): Update to match changes to
7597         diagnostic_count_diagnostic.  Call diagnostic_action_after_output.
7598         (diagnostic_set_info): Call gettext here.
7599
7600         (pedwarn): Update comment.  Don't call gettext here.
7601         (sorry): Use report_diagnostic.  Don't call gettext here.
7602         (fatal_error): Remove final fnotice and exit, but call
7603         real_abort to prevent warnings about noreturn function returning.
7604         (internal_error): Likewise.  Don't do ICE suppression here nor
7605         call context->internal_error.
7606         (warning_with_decl): Suppress for decls in system headers.
7607         Adjust call to diagnostic_for_decl.
7608         (pedwarn_with_decl): Likewise.
7609         (error_with_decl): Adjust call to diagnostic_for_decl.
7610         (error_recursion): Use bug_report_request.
7611
7612         * diagnostic.h: Remove prototype of diagnostic_count_diagnostic.
7613         * objc/objc-act.c (error_with_ivar, warn_with_method): Don't call
7614         diagnostic_count_diagnostic.
7615
7616 2003-05-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7617
7618         * pa64-hpux.h (ASM_OUTPUT_ALIGNED_COMMON): Correct last patch.
7619
7620 Mon May 12 15:57:54 CEST 2003  Jan Hubicka  <jh@suse.cz>
7621
7622         * rs6000/darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT
7623         * mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
7624         * mips/mips.h (ASM_OUTPUT_SKIP):  Fix typo in the previous patch.
7625
7626 2003-05-12  Roger Sayle  <roger@eyesopen.com>
7627
7628         * doc/rtl.texi: Document zero_extract as a valid destination
7629         of a set insn.
7630
7631 2003-05-12  Richard Earnshaw  <rearnsha@arm.com>
7632
7633         * arm/lib1funcs.asm (LSYM): Define -- on ELF prefix a local symbol with
7634         '.'.  Change all local symbol definitions and references to use LSYM.
7635
7636 Mon May 12 11:32:53 CEST 2003  Jan Hubicka  <jh@suse.cz>
7637
7638         * expr.h (assemble_static_space): Update prototype.
7639         * output.h (assemble_zeros, output_constant): Likewise.
7640         * elfos.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON): Make it 64bit clean
7641         * alpha.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASK_OUTPUT_LOCAL): Make
7642         it 64bit clean.
7643         * elf.h (ASM_OTUPUT_SKIP): Likewise.
7644         * unicosmk.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMM): Likewise.
7645         * arm.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7646         Expect HOST_WIDE_INT operand.
7647         * aout.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7648         Expect HOST_WIDE_INT operand.
7649         * unknown-elf.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7650         Expect HOST_WIDE_INT operand.
7651         * avr.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_SKIP): Expect
7652         HOST_WIDE_INT operand.
7653         * c4x.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP,
7654         ASM_OUTPUT_BSS): Expect HOST_WIDE_INT operand.
7655         * aout.h (ASM_OTUPUT_SKIP): Likewise.
7656         * cris.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
7657         * darwin.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON): Likewise.
7658         * dsp16xx.h (ASM_OTUPUT_SKIP): Likewise.
7659         * frv.h (ASM_OTUPUT_SKIP): Likewise.
7660         * h8300.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_LOCAL): Likewise.
7661         * 370.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
7662         Make it 64bit
7663         clean.
7664         * att.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT operand.
7665         * bsd.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
7666         Make it 64bit clean.
7667         * darwin.h (ASM_OUTPUT_SKIP): Make it 64bit clean..
7668         * sco5.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Expect
7669         HOST_WIDE_INT operand
7670         * svr3gas.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
7671         Expect HOST_WIDE_INT operand
7672         * sysv3.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT operand
7673         * i960.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON,
7674         ASM_OUTPUT_ALIGNED_LOCAL): Expect HOST_WIDE_INT operand
7675         * ip2k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7676         Likewise.
7677         * m32r.h (ASM_OUTPUT_COMMON): Likewise.
7678         * 3b1.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7679         Likewise.
7680         * amix.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
7681         * crds.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
7682         * hp320.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
7683         ASM_OUTPUT_SKIP): Likewise.
7684         * m68k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
7685         Likewise.
7686         * m68kelf.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
7687         ASM_OUTPUT_SKIP): Likewise.
7688         * m68kv4.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
7689         ASM_OUTPUT_SKIP): Likewise.
7690         * mot3300.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP): Likewise.
7691         * netbsd-elf.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON,
7692         ASM_OUTPUT_SKIP): Likewise.
7693         * sgs.h (ASM_OUTPUT_SKIP): Likewise.
7694         * tower-as.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON,
7695         ASM_OUTPUT_SKIP): Likewise.
7696         * m88k.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON, ASM_OUTPUT_SKIP):
7697         Likewise.
7698         * mcore.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_BSS, ASM_OUTPUT_SKIP): Likewise.
7699         * iris.h (ASM_OUTPUT_LOCAL): Likewise.
7700         * mips.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP): Likewise.
7701         * ns32k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
7702         ASM_OUTPUT_SKIP): Make it 64bit clean.
7703         * pa-pro-end.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL):
7704         Make it 64bit clean.
7705         * pa.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL,
7706         ASM_OUTPUT_SKIP): Make it 64bit clean.
7707         * hpux.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL): Make it
7708         64bit clean.
7709         * romp.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Expect
7710         HOST_WIDE_INT argument
7711         * s390.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT argument.
7712         * sh.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Expect
7713         HOST_WIDE_INT argument
7714         * sol2.h (ASM_OUTPUT_SKIP): HOST_WIDE_INT argument
7715         * sparc.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON): HOST_WIDE_INT argument
7716         * svr3.h (ASM_OUTPUT_SKIP): HOST_WIDE_INT argument
7717         * vax.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
7718         HOST_WIDE_INT argument
7719         * vaxv.h (ASM_OUTPUT_LOCAL): HOST_WIDE_INT argument
7720         * xtensa.h (ASM_OUTPUT_LOCAL): HOST_WIDE_INT argument
7721         * varasm.c (asm_output_bss, asm_output_aligned_bss,
7722         asm_emit_uninitialized, assemble_zeros, assemble_static_space):
7723         HOST_WIDE_INT argument
7724
7725 2003-05-10  Steven Bosscher  <steven@gcc.gnu.org>
7726
7727         * cgraphunit.c (cgraph_create_edges): Drop walk_tree in
7728         favor of walk_tree_without_duplicates.  Add comments.
7729
7730 2003-05-12  Josef Zlomek  <zlomekj@suse.cz>
7731
7732         * alloc-pool.h (ALLOC_POOL_ID_TYPE): New type.
7733         (struct alloc_pool_def): New element 'id'.
7734         * alloc-pool.c (fancy_abort): Extern function prototype.
7735         (abort): Macro which uses fancy_abort.
7736         (struct allocation_object_def): New structure.
7737         (ALLOCATION_OBJECT_PTR_FROM_USER_PTR): New macro.
7738         (USER_PTR_FROM_ALLOCATION_OBJECT_PTR): New macro.
7739         (last_id): New variable.
7740         (create_alloc_pool): Add the offset of u.data to size of element,
7741         increase and use last_id.
7742         (free_alloc_pool): Do the checking only when ENABLE_CHECKING.
7743         (pool_alloc): Likewise. Set ID for elements.
7744         (pool_free): Check whether the PTR was allocated from POOL.
7745
7746 2003-05-11  Richard Henderson  <rth@redhat.com>
7747
7748         PR c/10675
7749         * c-decl.c: Include hashtab.h.
7750         (detect_field_duplicates): New.
7751         (finish_struct): Use it.
7752         * Makefile.in (c-decl.o): Update.
7753         * c-parse.in (structsp_attr): Nreverse component_decl_list results.
7754         (component_decl_list, component_decl_list2,
7755         components, components_notype): Build list in reverse order.
7756         (enumlist): Clarify docs.  Use TREE_CHAIN not chainon.
7757
7758         * tree.c (chainon): Special case op2 null as well.
7759         Reorg for clarity.
7760
7761 2003-05-11  Roger Sayle  <roger@eyesopen.com>
7762
7763         * config/i386/i386.md (logsf2, logdf2, logxf2, logdf2): New patterns
7764         to implement log, logf and logl built-ins as inline x87 intrinsics.
7765         (UNSPEC_FYL2X): New unspec to represent x87's "fyl2x" instruction.
7766         (*fyl2x_sfxf3, *fyl2x_dfxf3, *fyl2x_xf3, *fyl2x_tfxf3): New insn
7767         patterns for x87's "fyl2x" instruction, used by log?f2 patterns.
7768
7769         * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_FYL2X like
7770         UNSPEC_FPATAN, i.e. replaces two stack operands with single result.
7771
7772 2003-05-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7773
7774         * Makefile.in (out_object_file): Don't set -Wno-error for ${cpu}.o.
7775
7776         * sparc.c (print_operand): Fix uninitialized warning.
7777
7778 2003-05-12  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
7779
7780         * cfgloopanal.c (num_loop_insns, average_num_loop_insns): Count only
7781         real insns.
7782         * loop-unroll.c (unroll_loop_runtime_iterations): Remove superfluous
7783         condition.
7784
7785 2003-05-11  Neil Booth  <neil@cat.daikokuya.co.uk>
7786
7787         * doc/cpp.texi: Fix typos.
7788
7789 2003-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
7790
7791         * config/s390/s390.c (s390_function_arg_float): New function.
7792         (s390_function_arg_pass_by_reference): Use it.
7793         (s390_function_arg_advance): Likewise.
7794         (s390_function_arg): Likewise.
7795         (s390_va_arg): Likewise
7796
7797 2003-05-11  Nathan Sidwell  <nathan@codesourcery.com>
7798
7799         * coverage.h (coverage_counter_alloc): New function.
7800         * function.h (struct function): Remove arc_profile flag.
7801         * coverage.c (fn_ident): Remove.
7802         (fn_b_ctrs, no_coverage): New.
7803         (get_coverage_counts): Use current_function_funcdef_no.
7804         (coverage_counter_alloc): New.
7805         (coverage_counter_ref): Adjust.
7806         (coverage_begin_output): Check no_coverage. Use
7807         current_function_funcdef_no.
7808         (coverage_end_function): Likewise.
7809         (create_coverage): Set no_coverage. Set DECL_UNINLINEABLE rather
7810         than clearing flag_inline_functions. Do not clear arc_profile
7811         flag.
7812         * function.c (prepare_function_start): Do not set arc_profile
7813         flag.
7814         * profile.c (instrument_edges): Return number of instrumented
7815         edges. Use a for loop.
7816         (branch_prob): Call coverage_counter_alloc. Make BB_TO_GCOV_INDEX
7817         local to here and simplify. Use profile_arc_flag not arc_profile
7818         flag.
7819         (find_spanning_tree): Reformat.
7820         * toplev.c (rest_of_compilation): Use profile_arc_flags and
7821         flag_test_coverage rather than arc_profile flag.
7822
7823 2003-05-11  Gabriel Dos Reis <gdr@integrable-solutions.net>
7824
7825         * doc/invoke.texi (Wctor-dtor-privacy): Update documentation.
7826
7827 2003-05-11  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7828
7829         * varasm.c (copy_constant, case VIEW_CONVERT_EXPR): New case.
7830
7831 2003-05-11  Bruno Haible  <bruno@clisp.org>
7832
7833         * cppfiles.c (find_or_create_entry): Preserve errno.
7834
7835 2003-05-11  Neil Booth  <neil@cat.daikokuya.co.uk>
7836
7837         * c-cppbuiltin.c (c_cpp_builtins): Move __STDC_HOSTED__ into
7838         cpplib as it's a Standard Predefined Macro.
7839         * c-opts.c (finish_options): Pass flag_hosted to cpp_init_builtins.
7840         * cppinit.c (_cpp_init_builtins): Take HOSTED.  Define
7841         __STDC_HOSTED__ appropriately.
7842         * cpplib.h (_cpp_init_builtins): Update.
7843         * fix-header.c (read_scan_file): Update.
7844         * doc/cpp.texi, doc/cppopts.texi: Update documentation.
7845
7846 2003-05-11  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7847
7848         PR C++/689
7849         PR C++/9257
7850         * c-opts.c (c_common_decode_option): Don't set
7851         warn_ctor_dtor_privacy wen -Wall.
7852         * c-common.c (warn_ctor_dtor_privacy): Don't turn on by default.
7853
7854 2003-05-10  Alexandre Oliva  <aoliva@redhat.com>
7855
7856         * reload1.c (reload_cse_move2add): Revert part of my 2003-05-09's
7857         patch.
7858
7859 2003-05-10  Zack Weinberg  <zack@codesourcery.com>
7860
7861         * diagnostic.c: Reorder functions for clarity, putting all the
7862         functions in the "error" family next to each other, and
7863         likewise all the functions in the "error_with_decl" family.
7864         Some other routines were moved too.  Add comments.
7865         (vbuild_message_string): Fold into sole caller.
7866
7867
7868 2003-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
7869
7870         * except.c (EH_RETURN_STACKADJ_RTX): Do not define.
7871         (EH_RETURN_HANDLER_RTX): Likewise.
7872         (expand_builtin_eh_return): Do not copy stack adjustment
7873         if EH_RETURN_STACKADJ_RTX is not defined.
7874         (expand_eh_return): Likewise.  Also, do not pass stack
7875         adjustment as argument to the eh_return pattern.
7876         * except.h (MUST_USE_SJLJ_EXCEPTIONS): Do not define just
7877         because EH_RETURN_STACKADJ_RTX is not defined.
7878         * unwind-dw.c (uw_update_context_1): If EH_RETURN_STACKADJ_RTX
7879         is not defined, treat stack pointer like a regular register.
7880         (uw_init_context_1): Set up fake initial stack pointer register.
7881         (uw_install_context_1): Do not compute stack adjustment if
7882         EH_RETURN_STACKADJ_RTX is not defined.
7883
7884         * config/i386/i386.md ("eh_return"): Remove first argument.
7885         * config/mips/mips.md ("eh_return"): Likewise.
7886         * config/rs6000/rs6000.md ("eh_return"): Likewise.
7887         * config/sh/sh.md ("eh_return"): Likewise.
7888
7889         * config/s390/s390.h (EH_RETURN_STACKADJ_RTX): Remove.
7890
7891 2003-05-10  Alexander Aganichev  <aaganichev@yandex.ru>
7892
7893         * config/i386/i386.h (MODES_TIEABLE_P): Fix typo.
7894
7895 2003-05-10  Nathan Sidwell  <nathan@codesourcery.com>
7896
7897         * defaults.h (GCOV_TYPE_SIZE): Remove.
7898         * gcov-io.h (gcov_type): Set to specific mode int on target.
7899         (gcov_unsigned_t, gcov_position_t): New.
7900         (GCOV_TYPE_NODE): New.
7901         (GCOV_TAG_SUMMARY_LENGTH): Adjust.
7902         (GCOV_COUNTERS_SUMMABLE): New.
7903         (gcov_ctr_summary, gcov_sumary, gcov_fn_info, gcov_merge_fn,
7904         gcov_ctr_info, gcov_info): Adjust types.
7905         (gcov_var): Adjust types.
7906         (gcov_write_unsigned, gcov_write_tag,
7907         gcov_write_length, gcov_write_tag_length, gcov_write_summary,
7908         gcov_read_unsigned, gcov_read_summary): Adjust gcov types.
7909         (gcov_position, gcov_sync, gcov_seek): Adjust gcov types.
7910         * gcov-io.c (gcov_write_unsigned, gcov_write_tag,
7911         gcov_write_length, gcov_write_tag_length, gcov_write_summary,
7912         gcov_read_unsigned, gcov_read_summary): Adjust gcov types.
7913         * libgcov.c (gcov_crc32, gcov_version_mismatch, gcov_exit,
7914         __gcov_init, __gcov_merge_add): Adjust gcov types.
7915         * coverage.c (ctr_merge_functions): Constify.
7916         (ctr_names): New.
7917         (read_counts_file): Adjust gcov types. Only summarize & merge
7918         summable counters.
7919         (coverage_counter_ref): Use GCOV_TYPE_NODE.
7920         (build_fn_info_type, build_fn_info_value, build_ctr_info_type,
7921         build_ctr_info_value, build_gcov_info): Adjust types.
7922         * profile.c (branch_prob): Adjust gcov types.
7923         * gcov_dump (dump_file): Adjust gcov types.
7924
7925 2003-05-10  Richard Earnshaw  <rearnsha@arm.com>
7926
7927         * arm.md (DOM_CC_X_AND_Y, DOM_CC_NX_OR_Y, DOM_CC_X_OR_Y): New
7928         constants.
7929         (ior_scc_scc, and_scc_scc): New insn_and_split patterns.
7930         * arm.c (arm_select_dominance_cc_mode): Renamed from
7931         select_dominance_cc_mode, no-longer static.  Use DOM_CC... constants.
7932         Callers updated.
7933         * arm-protos.h (arm_select_dominance_cc_mode): Add prototype.
7934
7935 2003-05-09  Roger Sayle  <roger@eyesopen.com>
7936
7937         * config/alpha/alpha.c (alpha_start_function): Declare frame_size
7938         as unsigned to avoid signed/unsigned comparison warnings.
7939
7940 2003-05-09  Bob Wilson  <bob.wilson@acm.org>
7941
7942         * config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
7943         instruction if the Xtensa density option is enabled.
7944
7945 2003-05-09  Matt Kraai <kraai@alumni.cmu.edu>
7946
7947        * mklibgcc.in: Remove extra quotes.
7948
7949 2003-05-09  Mark Mitchell  <mark@codesourcery.com>
7950
7951         * config/rs6000/rs6000.c (spe_init_builtins): Fix typo in creation
7952         of int_ftype_void.
7953
7954 2003-05-09  Alexandre Oliva  <aoliva@redhat.com>
7955
7956         * reload1.c (reload_cse_move2add): Don't turn an implicit
7957         truncation into a self-set in the narrow mode.
7958
7959 2003-05-09  Richard Earnshaw  <rearnsha@arm.com>
7960
7961         * arm.md (clzsi2): The CLZ instruction is predicable.
7962
7963 2003-05-09  Bob Wilson  <bob.wilson@acm.org>
7964
7965         * config/xtensa/xtensa.c: Formatting.
7966
7967 2003-05-09  Diego Novillo  <dnovillo@redhat.com>
7968
7969         * tree-dump.c (dequeue_and_dump): Use CONSTRUCTOR_ELTS,
7970         instead of TREE_OPERAND to access the operand of a
7971         CONSTRUCTOR node.
7972
7973 2003-05-09  Diego Novillo  <dnovillo@redhat.com>
7974
7975         * tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only
7976         one operand.
7977
7978 2003-05-09  Gabriel Dos Reis <gdr@integrable-solutions.net>
7979
7980         * toplev.h (warning_with_file_and_line): Don't declare.
7981         (error_with_file_and_line): Likewise.
7982         * diagnostic.c (error_with_file_and_line): Remove.
7983         (warning_with_file_and_line): Likewise.
7984
7985 2003-05-09  Gabriel Dos Reis <gdr@integrable-solutions.net>
7986
7987         * c-parse.in (if_stmt_locus): New object.
7988         (if_prefix rule): Use it.  Don't use warning_with_file_and_line.
7989         (select_or_iter_stmt rule): Likewise.
7990         (if_stmt_file): Remove.
7991         (if_stmt_line): Likewise.
7992         * jump.c: include "diagnostic.h"
7993         (never_reached_warning): Don't use warning_with_file_and_line.
7994         * Makefile.in (jump.o): Add dependce on diagnostic.h
7995
7996 2003-05-09  Alan Modra  <amodra@bigpond.net.au>
7997
7998         * expr.c (move_block_from_reg): Remove "size" parm.  Localize vars.
7999         Move code handling pieces not larger than a word to..
8000         * function.c (assign_parms): ..here, but use change_address instead
8001         of adjust_address and operand_subword, and expand_binop instead of
8002         expand_shift.  Adjust calls to move_block_from_reg.
8003         * expr.h (move_block_from_reg): Update declaration.
8004         (copy_blkmode_from_reg): Formatting.
8005         * Makefile.in (function.o): Add $(OPTABS_H) to deps.
8006         * config/alpha/alpha.c (alpha_setup_incoming_varargs): Adjust
8007         move_block_from_reg calls.
8008         * config/arc/arc.c (arc_setup_incoming_varargs): Likewise.
8009         * config/i960/i960.c (i960_setup_incoming_varargs): Likewise.
8010         * config/m32r/m32r.c (m32r_setup_incoming_varargs): Likewise.
8011         * config/m88k/m88k.c (m88k_builtin_saveregsk): Likewise.
8012         * config/mips/mips.c (mips_setup_incoming_varargs): Likewise.
8013         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
8014         * config/romp/romp.h (SETUP_INCOMING_VARARGS): Likewise.
8015         * config/rs6000/rs6000.c (setup_incoming_varargs): Likewise.
8016         * config/sh/sh.c (sh_builtin_saveregs): Likewise.
8017
8018 2003-05-08  DJ Delorie  <dj@redhat.com>
8019
8020         * config/stormy16/stormy16.c (xstormy16_expand_builtin_va_arg): Fix
8021         to handle arguments for which MUST_PASS_IN_STACK is true (e.g.,
8022         variable-sized types).
8023         (xstormy16_function_arg): New.  Pass them that way too.
8024         * config/stormy16/stormy16-protos.h (xstormy16_function_arg): New.
8025         * config/stormy16/stormy16.h (FUNCTION_ARG): Call it.
8026
8027 2003-05-08  Aldy Hernandez  <aldyh@redhat.com>
8028
8029         * mklibgcc.in: Use mkinstalldirs when installing multilib
8030         directories.
8031
8032 2003-05-08  J"orn Rennecke <joern.rennecke@superh.com>
8033
8034         * sh.c (gen_block_redirect, split_branches): Use CODE_FOR_jump_compact
8035         instead of CODE_FOR_jump
8036
8037 2003-05-08  Gabriel Dos Reis <gdr@integrable-solutions.net>
8038
8039         * objc/objc-act.c (error_with_ivar): Don't use
8040         error_with_file_and_line.
8041         (warn_with_method): Don't use warning_with_file_and_line.
8042
8043 2003-05-08  Gabriel Dos Reis  <gdr@integrable-solutions.net>
8044
8045         * stmt.c (emit_locus): New macro.
8046         (emit_filename): Remove.
8047         (emit_lineno): Likewise.
8048         (struct stmt_status): Replace members x_emit_filename and
8049         x_emit_lineno with x_emit_locus.
8050         (set_file_and_line_for_stmt): Adjust.
8051         (expand_expr_stmt_value): Don't use warning_with_file_and_line.
8052         (warn_if_unused_value): Likewise.
8053         (check_seenlabel): Likewise.
8054
8055 2003-05-08  Gabriel Dos Reis  <gdr@integrable-solutions.net>
8056
8057         * c-decl.c (define_label): Tidy.  Don't use any of
8058         error_with_file_and_line or warning_with_file_and_file.
8059         (pending_xref_error): Likewise.
8060         (store_parm_decls): Likewise.
8061         (current_function_prototype_locus): New object.  Package from
8062         current_function_prototype_file and current_function_prototype_line.
8063         (start_function): Use it.
8064         (current_function_prototype_file): Remove.
8065         (current_function_prototype_line): Remove;
8066
8067 2003-05-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8068
8069         * builtins.c (readonly_data_expr): New function.
8070         (expand_builtin_memmove): Optimize any rodata source, not just
8071         strings.
8072
8073 2003-05-07  David Mosberger <davidm@hpl.hp.com>
8074
8075         * unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
8076
8077 2003-05-07  Richard Henderson  <rth@redhat.com>
8078
8079         * config/i386/i386.c (ix86_split_long_move): Fix base register
8080         mode for XFmode splits for TARGET_64BIT.
8081
8082 2003-05-07  Richard Henderson  <rth@redhat.com>
8083
8084         * sched-ebb.c (schedule_ebb): Supply the correct starting
8085         block number to save_line_notes.
8086
8087 2003-05-07  Richard Henderson  <rth@redhat.com>
8088
8089         * toplev.c (enum dump_file_index): Swap DFI_ce3, DFI_bbro.
8090         (dump_file): Likewise.
8091
8092 2003-05-07  David Mosberger <davidm@hpl.hp.com>
8093
8094         * config/ia64/crtbegin.asm (__do_jv_register_classes): Don't
8095         forget to preserve gp.
8096         * config/ia64/crtend.asm (__do_global_ctors_au): Ditto.
8097
8098         * config/ia64/crtbegin.asm (__do_jv_register_classes): Add missing
8099         .prologue directive.
8100         Use .skip instead of data8 for .bss section to make Intel
8101         Assembler (ias) happy.  Minor whitespace fixups.  Make "nop 0"
8102         explicit in the .mib bundles and remove the unnecessary stop
8103         bits.  Replace local labels with normal labels, to make ias
8104         happy.  Don't register __do_global_ctors_aux here, do it in
8105         crtend.asm instead.
8106
8107         * config/ia64/crtend.asm [HAVE_INIT_FINI_ARRAY]: Register
8108         __do_global_ctors_aux in .init_array section instead of
8109         declaring it as a hidden global.  Replace local labels with
8110         ordinary labels to make ias happy.
8111
8112 2003-05-07  Richard Henderson  <rth@redhat.com>
8113
8114         PR c++/10570
8115         * except.c: Revert 04-01 and 04-02 forced-unwind changes.
8116         * flags.h, toplev.c, doc/invoke.texi: Likewise.
8117
8118         * unwind-dw2.c (_Unwind_GetCFA): Fix ptr->int conversion warning.
8119         * unwind.inc (_Unwind_DeleteException): Check for null
8120         exception_cleanup.
8121
8122         * unwind-sjlj.c (_Unwind_SjLj_Resume_or_Rethrow): New.
8123         * unwind.inc (_Unwind_Resume_or_Rethrow): New.
8124         * unwind.h: Declare them.
8125         * libgcc-std.ver (GCC_3.3): Export them.
8126
8127 2003-05-07  Richard Henderson  <rth@redhat.com>
8128
8129         * unwind-dw2.c (_Unwind_GetCFA): Cast pointer to _Unwind_Ptr,
8130         not _Unwind_Word.
8131
8132 2003-05-07  Zack Weinberg  <zack@codesourcery.com>
8133
8134         * stmt.c (force_label_rtx): New function, based on logic
8135         formerly found in expand_expr.
8136         * expr.h: Prototype it.
8137         * expr.c (expand_expr <LABEL_DECL>): Use force_label_rtx if
8138         appropriate.
8139         * varasm.c (decode_addr_const <LABEL_DECL>): Use force_label_rtx.
8140
8141         * print-tree.c (debug_tree): Free the table after we're done
8142         with it.  Use putc.
8143
8144 2003-05-07  Aldy Hernandez  <aldyh@redhat.com>
8145
8146         * config/rs6000/spe.h: Reverse arguments for __ev_subfw.
8147         Unreverse arguments for __ev_subw.
8148
8149         * config/rs6000/spe.md (evsubfw): Reverse arguments of assembly.
8150
8151 2003-05-07  Nick Clifton  <nickc@redhat.com>
8152
8153         * config/stormy16/stormy-abi: Update to include
8154         R_XSTORMY16_FPTR16, R_XSTORMY16_LO16, R_XSTORMY16_HI16 and
8155         R_XSTORMY16_12 relocs.
8156
8157 2003-05-07  Alan Modra  <amodra@bigpond.net.au>
8158
8159         * function.c (assign_parms): Correct reversed reg_parm_stack_space
8160         test.  Add partial in-regs size to stack_args_size.
8161
8162 2003-05-07  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8163
8164         * doc/invoke.texi (Warning Options): Mark -Wmissing-declarations
8165         as a C only option.
8166
8167 2003-05-07  Nathan Sidwell  <nathan@codesourcery.com>
8168
8169         * gcov-io.h (GCOV_LOCKED): New #define.
8170         (GCOV_LINKAGE): Make sure it is #defined.
8171         (gcov_write_string, gcov_write_tag, gcov_write_length,
8172         gcov_read_string, gcov_time): Poison in libgcov.
8173         (gcov_seek_end): Remove.
8174         (gcov_write_tag_length, gcov_sync, gcov_rewrite): New.
8175         (GCOV_TAG_FUNCTION_LENGTH, GCOV_TAG_BLOCKS_LENGTH,
8176         GCOV_TAG_ARCS_LENGTH, GCOV_TAG_COUNTER_LENGTH,
8177         GCOV_TAG_SUMMARY_LENGTH): New #defines.
8178         (gcov_write_tag, gcov_write_length): Not in libgcov.
8179         * gcov-io.c (gcov_open): Use GCOV_LOCKED.
8180         (gcov_write_tag, gcov_write_length): Not in libgcov.
8181         (gcov_write_tag_length): New.
8182         (gcov_write_summary): Use gcov_write_tag_length.
8183         * libgcov.c: Always #include gcov-io.h.
8184         (IN_LIBGCOV): -1 for inhibit_libc, +1 otherwise.
8185         (GCOV_LINKAGE): Define to nothing for L_gcov.
8186         (gcov_exit): Replace gcov_write_tag, gcov_write_length with
8187         gcov_write_tag_length. Use gcov_rewrite & gcov_seek.
8188         * gcov.c (read_graph_file): Replace gcov_seek by gcov_sync.
8189         (read_count_file): Likewise.
8190         * gcov-dump.c (dump_file): Likewise.
8191         * coverag.c (read_counts_file): Likewise.
8192
8193 2003-05-06  Mark Mitchell  <mark@codesourcery.com>
8194
8195         PR other/10658
8196         * gcc.c (process_command): Update copyright date.
8197
8198 2003-05-06  Phil Edwards  <pme@gcc.gnu.org>
8199
8200         * doc/install.texi (mips-*-*):  Add note about libstdc++.
8201
8202 2003-05-06  DJ Delorie  <dj@redhat.com>
8203
8204         * config/stormy16/stormy16.c (xstormy16_function_profiler): New.
8205         * config/stormy16/stormy16.h (FUNCTION_PROFILER): Call it.
8206         * config/stormy16/stormy16-protos.h (xstormy16_function_profiler): New.
8207
8208 2003-05-06    <neil@cat.daikokuya.co.uk>
8209
8210         * c-opts.c (COMMAND_LINE_OPTIONS): Reject -Wmissing-prototypes
8211         and -Wstrict-prototypes if C++.
8212
8213 2003-05-06  Aldy Hernandez  <aldyh@redhat.com>
8214
8215         * config/rs6000/linuxspe.h: New file.
8216
8217         * config.gcc: Add powerpc-*-linux-gnuspe* target.
8218
8219 2003-05-06  Richard Henderson  <rth@redhat.com>
8220
8221         * unwind-dw2.c (uw_update_context_1): Only set cfa as sp if
8222         previous frame didn't save sp.  Clear sp for next frame.
8223         (uw_install_context_1): Honor saved sp from frame.
8224
8225 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
8226
8227         * config/mips/mips-protos.h (mips_subword, mips_output_move): Declare.
8228         (mips_move_1word, mips_move_2words): Remove declaration.
8229         (mips_split_64bit_move_p, mips_split_64bit_move): Declare.
8230         (mips_restore_gp): Remove insn argument.
8231         * config/mips/mips.h (FP_REG_RTX_P): New macro.
8232         * config/mips/mips.c (volatile_buffer): Remove.
8233         (mips_subword, mips_split_64bit_move_p, mips_split_64bit_move): New.
8234         (mips_move_1word, mips_move_2words): Remove, replacing with...
8235         (mips_output_move): ...this new function.
8236         (mips_restore_gp): Remove insn argument.  Adjust for above changes.
8237         (print_operand): Make '%h' print %hi(op) for HIGH operands.  Remove
8238         handling of floating-point constants.  Handle zero CONST_DOUBLE
8239         arguments.
8240         (mips_annotate_frame_insn): Replace with...
8241         (mips_set_frame_expr): ...this, which just takes one argument.
8242         (mips_frame_set): Change the register argument to an rtx.
8243         (mips_emit_frame_related_store): Use mips_split_64bit_move_p to
8244         check whether moves should be split.  Use mips_split_64bit_move
8245         to split them.  Use mips_subword to generate the high and low
8246         parts of a paired FPR.  Adjust calls to frame_set and
8247         mips_set_frame_expr.
8248         (mips_expand_prologue): Simplify due to above changes.
8249         * config/mips/mips.md:  Add splitters for 64-bit moves on 32-bit
8250         targets, replacing xisting register-only versions.
8251         (UNSPEC_STORE_DF_HIGH): New unspec.
8252         (UNSPEC_LOAD_DF_LOW, UNSPEC_LOAD_DF_HIGH): New unspecs.
8253         (mulsi3_r4000, muldi3_internal2): Avoid use of mips_move_1word.
8254         (*paradoxical_extendhidi2): Remove.
8255         (movdi_internal, movdi_internal2): Use mips_output_move.
8256         (*movdi_internal2_mips16, movsi_internal, movcc): Likewise.
8257         (movsf_internal1, movsf_internal2): Likewise.
8258         (movdf_internal1a): Likewise.  Fix length and type of f <- G case.
8259         (movdf_internal1b): Use mips_output_move.  Fix type of f <- G case.
8260         (movdf_internal2): Use mips_output_move.  Fix lengths of FPR moves.
8261         Add m <- G alternative.
8262         (load_df_low, load_df_high, store_df_low): New patterns.
8263         (movhi_internal): Use @ template instead of calling a function.
8264         Remove unnecessary 'z' alternatives.
8265         (movqi_internal): Likewise.
8266         (exception_receiver): Update call to mips_restore_gp.
8267
8268 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
8269
8270         * config/mips/mips-protos.h (mips_simplify_dwarf_addr): Remove.
8271         (mips_delegitimize_address): Declare.
8272         * config/mips/mips.h (ASM_SIMPLIFY_DWARF_ADDR): Undefine.
8273         (FIND_BASE_TERM): Define.
8274         * config/mips/mips.c (TARGET_DELEGITIMIZE_ADDRESS): Define.
8275         (mips_delegitimize_address): Renamed from mips_simplify_dwarf_addr.
8276         Handle small-data addresses.
8277
8278 2003-05-05  Roger Sayle  <roger@eyesopen.com>
8279
8280         * real.c (real_powi): New function to calculate the value of
8281         a real raised to an integer power, i.e. pow(x,n) for int n.
8282         (real_sqrt): Convert to using the faster do_add, do_multiply
8283         and do_divide API for consistency with the rest of real.c.
8284         * real.h (real_powi): Prototype here.
8285         * builtins.c (fold_builtin):  Avoid local variable mode when
8286         evaluating sqrt at compile time.  Attempt to evaluate pow at
8287         compile-time, by checking for an integral exponent.
8288
8289 2003-05-05  Richard Henderson  <rth@redhat.com>
8290
8291         * doc/extend.texi (Variable Attributes): Re-sort table and tidy.
8292
8293 2003-05-05  David O'Brien  <obrien@FreeBSD.org>
8294
8295         * config/rs6000/sysv4.h (CPP_OS_FREEBSD_SPEC): Add __ELF__ to mirror
8296         other FreeBSD ports.
8297         (LINK_OS_FREEBSD_SPEC): Mirror conventions on other FreeBSD ports.
8298         (_LITTLE_ENDIAN): Use __LITTLE_ENDIAN__ instead.
8299
8300 2003-05-05  Janis Johnson  <janis187@us.ibm.com>
8301
8302         * Makefile.in: (site.exp): Add ALT_CC_UNDER_TEST, add quotes around
8303         expanded variables.
8304         * doc/sourcebuild.texi (C tests): Describe gcc.dg/compat tests.
8305
8306 2003-05-05  Zack Weinberg  <zack@codesourcery.com>
8307
8308         * rtl.h (STRING_POOL_ADDRESS_P): Rename to DEFERRED_CONSTANT_P.
8309         * varasm.c (struct varasm_status): Add deferred_constants field.
8310         (n_deferred_strings): Delete variable.
8311         (n_deferred_constants): New #define.
8312         (struct constant_descriptor_tree): Kill next and label fields.
8313         (const_hash_table, MAX_HASH_TABLE): Delete.
8314         (const_desc_htab): New static variable.
8315         (const_hash): Rename const_desc_hash, and make it fit the
8316         hashtab.h interface.
8317         (const_desc_eq): New.
8318         (const_hash_1, compare_constant): Const-ify arguments.
8319         (build_constant_desc): Set DEFERRED_CONSTANT_P on all new
8320         SYMBOL_REFs.  Clarify comments.  Don't set desc->label.
8321         (output_constant_def): Do the lookup/insert using the
8322         hashtab.h interface.  Don't muck with n_deferred_constants or
8323         DEFERRED_CONSTANT_P here.
8324         Always call maybe_output_constant_def_contents.
8325         (maybe_output_constant_def_contents): Take a pointer to the
8326         descriptor, not the EXP and RTL separately.  Return
8327         immediately if this constant is not deferred.  Defer output of
8328         everything, except writable string constants.  Update
8329         n_deferred_constants here.
8330         (output_constant_def_contents): Now takes just one argument,
8331         an rtx.  Clear DEFERRED_CONSTANT_P here.
8332         (mark_constant_pool): Update for rename of n_deferred_strings.
8333         (mark_constant): Don't clear DEFERRED_CONSTANT_P here.
8334
8335         (init_varasm_status): Clear p->deferred_constants.
8336         (init_varasm_once): Call htab_create_ggc for const_desc_htab.
8337
8338 2003-05-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8339
8340         * builtins.c (expand_builtin_stpcpy): Only expand when the length
8341         of the source string can be evaluated at compile-time.
8342
8343 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
8344
8345         * testsuite/gcc.c-torture/compile/simd-6.c: New.
8346
8347         * c-typeck.c (digest_init): Handle arrays of vector constants.
8348
8349 2003-05-05  Jakub Jelinek  <jakub@redhat.com>
8350
8351         * builtins.c (expand_builtin_mempcpy): New function.
8352         (expand_builtin_stpcpy): Optimize stpcpy whose return value is
8353         ignored into strcpy no matter what arguments it has.
8354         (expand_builtin) <case BUILT_IN_MEMPCPY>: Call
8355         expand_builtin_mempcpy.
8356
8357 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
8358
8359         * testsuite/gcc.dg/20030505.c: New.
8360
8361         * c-typeck.c (convert_for_assignment): Opaque pointers can
8362         interconvert.
8363
8364         * config/rs6000/rs6000.c: New global opaque_p_V2SI_type_node.
8365         (rs6000_init_builtins): Initialize opaque_p_V2SI_type_node.
8366         (spe_init_builtins): Rename all pv2si_type_node to
8367         opaque_p_V2SI_type_node.
8368         Remove declaration of pv2si_type_node.
8369         (is_ev64_opaque_type): Accept opaque pointers.
8370
8371 2003-05-05  Geoffrey Keating  <geoffk@apple.com>
8372
8373         * config/rs6000/rs6000.c (validate_condition_mode): Use
8374         flag_finite_math_only.
8375         (rs6000_reverse_condition): Never return UNKNOWN; use
8376         flag_finite_math_only.
8377         (rs6000_generate_compare): Use flag_finite_math_only.
8378         (rs6000_emit_cmove): Handle UNLE.  Support UNEQ under -ffast-math.
8379         Use HONOR_* rather than flag_unsafe_math_optimizations.  Correct
8380         UNGE and GT cases.  Handle UNEQ and LTGT when ! HONOR_NANS.
8381
8382         * toplev.c (check_global_declarations): Suppress not-used warning
8383         for volatile variables.
8384
8385 2003-05-05  Olivier Hainque  <hainque@act-europe.fr>
8386
8387         * expr.c (expand_expr, case BIT_FIELD_REF): Refine the test forcing
8388         usage of bitfield instructions for mode1 != BLKmode, only ignoring
8389         SLOW_UNALIGNED_ACCESS if the field is not byte aligned.
8390         (store_field): Likewise.
8391
8392 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
8393
8394         * config/rs6000/rs6000.c (rs6000_expand_binop_builtin): Add
8395         evsubifw to builtins accepting 5-bit unsigned constants.
8396         (easy_vector_constant): Return if V1DImode.  Fix typo.
8397
8398 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
8399
8400         * config/rs6000/spe.h: Revert licensing change from last patch.
8401
8402 2003-05-05  DJ Delorie  <dj@redhat.com>
8403
8404         * config/stormy16/stormy16.md (negsi2): Allocate the pseudos
8405         before reload, but defer the split until after.
8406         * config/stormy16/stormy16.c (xstormy16_expand_arith): Modify
8407         to match.
8408
8409 2003-05-05  David Edelsohn  <edelsohn@gnu.org>
8410
8411         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add 440 support.
8412         * config/rs6000/vxworks.h (CC1_SPEC): Use -mcpu=440 for t440.
8413
8414 2003-05-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
8415
8416         * libgcov.c (__gcov_merge_add): Do not use gcov_type when inhibit_libc
8417         is defined.
8418
8419 2003-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8420
8421         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_1,
8422         ATTR_NOTHROW_NONNULL_2, ATTR_NOTHROW_NONNULL_3): Renamed from
8423         ATTR_NONNULL_1, ATTR_NONNULL_2 and ATTR_NONNULL_3.
8424
8425         (ATTR_NOTHROW_NONNULL_1_2, ATTR_NOTHROW_NONNULL_1_4,
8426         ATTR_CONST_NOTHROW_NONNULL_1, ATTR_PURE_NOTHROW_NONNULL_1,
8427         ATTR_PURE_NOTHROW_NONNULL_1_2, ATTR_MALLOC_NOTHROW_NONNULL_1):
8428         New.
8429
8430         * builtins.def (DEF_EXT_FALLBACK_BUILTIN): Accept ATTRS argument.
8431         (BUILT_IN_BZERO, BUILT_IN_BCOPY, BUILT_IN_BCMP): Update comment
8432
8433         (BUILT_IN_INDEX, BUILT_IN_RINDEX, BUILT_IN_MEMCPY,
8434         BUILT_IN_MEMMOVE, BUILT_IN_MEMCMP, BUILT_IN_MEMSET,
8435         BUILT_IN_MEMPCPY, BUILT_IN_STRCAT, BUILT_IN_STRNCAT,
8436         BUILT_IN_STPCPY, BUILT_IN_STRCPY, BUILT_IN_STRNCPY,
8437         BUILT_IN_STRCMP, BUILT_IN_STRNCMP, BUILT_IN_STRLEN,
8438         BUILT_IN_STRSTR, BUILT_IN_STRPBRK, BUILT_IN_STRSPN,
8439         BUILT_IN_STRCSPN, BUILT_IN_STRCHR, BUILT_IN_STRRCHR, BUILT_IN_NAN,
8440         BUILT_IN_NANF, BUILT_IN_NANL, BUILT_IN_NANS, BUILT_IN_NANSF,
8441         BUILT_IN_NANSL, BUILT_IN_PUTS, BUILT_IN_FPUTC, BUILT_IN_FPUTS,
8442         BUILT_IN_FWRITE, BUILT_IN_PUTS_UNLOCKED, BUILT_IN_FPUTC_UNLOCKED,
8443         BUILT_IN_FPUTS_UNLOCKED, BUILT_IN_FWRITE_UNLOCKED,
8444         BUILT_IN_STRDUP): Add "nonnull" attribute.
8445
8446 2003-05-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8447
8448         * expr.c (store_field): Don't clobber TEMP in shift: it might be
8449         a variable.
8450         (get_inner_reference): Don't go through a VIEW_CONVERT_EXPR
8451         whose purpose is to step up the alignment.
8452         (expand_expr, case ADDR_EXPR): Force LO_SUM into memory, just like REG.
8453
8454         * stor-layout.c (compute_record_mode): Relax restriction
8455         on fields crossing word boundaries forcing BLKmode.
8456
8457 2003-05-04  Neil Booth  <neil@daikokuya.co.uk>
8458
8459         * cppinit.c (cpp_create_reader, post_options): Warn about
8460         trigraphs unless explicity set or -trigraphs.
8461         * cpplex.c (warn_in_comment): New.
8462         (_cpp_process_line_notes): Better handling of -Wtrigraphs.
8463         (_cpp_skip_block_comment): Add call to _cpp_process_line_notes.
8464         * doc/cppopts.texi, doc/cpp.texi: Update.
8465
8466 2003-05-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
8467
8468         * Makefile.in (LIBGCOV): Add _gcov_merge_add.
8469         * gcov-io.h: Make GCOV_LINKAGE extern in libgcov and prevent resulting
8470         namespace clash.
8471         (GCOV_MERGE_FUNCTIONS): New.
8472         (gcov_merge_fn): Declare.
8473         (struct gcov_ctr_info): New field "merge".
8474         (__gcov_merge_add): Declare.
8475         * coverage.c (ctr_merge_functions): New.
8476         (build_ctr_info_type, build_ctr_info_value): Initialize merge field
8477         of gcov_ctr_info type.
8478         * libgcov.c (__gcov_merge_add): New.
8479         (gcov_exit): Call a hook to merge values of counters.
8480
8481 2003-05-04  Gabriel Dos Reis <gdr@integrable-solutions.net>
8482
8483         * toplev.h (pedwarn_with_file_and_line): Don't declare.
8484         * diagnostic.c (pedwarn_with_file_and_line): Remove.
8485
8486 2003-05-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
8487
8488         * varasm.c (assemble_variable): Don't use error_with_file_and_line.
8489
8490 2003-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8491
8492         * builtins.c (expand_builtin_constant_p, expand_builtin_strlen,
8493         expand_builtin_frame_address): Update prototypes.
8494         (expand_builtin_constant_p, expand_builtin_strlen,
8495         expand_builtin_strcpy, expand_builtin_memset,
8496         expand_builtin_bzero, expand_builtin_args_info,
8497         expand_builtin_frame_address): Pass in just the argument(s)
8498         needed, not the entire expression `exp'.
8499         (expand_builtin): Update all calls to these functions.
8500
8501 2003-05-03  Richard Henderson  <rth@redhat.com>
8502
8503         * builtins.c (expand_builtin) <BUILT_IN_DWARF_FP_REGNUM>: Remove.
8504         <BUILT_IN_DWARF_SP_COLUMN>: New.
8505         * builtins.def (BUILT_IN_DWARF_FP_REGNUM): Remove.
8506         (BUILT_IN_DWARF_SP_COLUMN): New.
8507         * dwarf2out.c (expand_builtin_dwarf_fp_regnum): Remove.
8508         (expand_builtin_dwarf_sp_column): New.
8509         * except.h: Update to match.
8510         * unwind-dw2.c (execute_stack_op): Correct stack push typo.
8511         (execute_cfa_program): Record location expression address
8512         before extracting length.
8513         (uw_update_context_1): Install old CFA into stack pointer column.
8514         (uw_init_context_1): Set cfa_reg to stack pointer column.
8515
8516 2003-05-03  Richard Henderson  <rth@redhat.com>
8517
8518         * config/rs6000/rs6000.c (constant_pool_expr_p): Make static and
8519         return bool.
8520         (toc_relative_expr_p): Likewise.
8521         (SPE_CONST_OFFSET_OK): Move from rs6000.h.
8522         (legitimate_constant_pool_address_p): Move from rs6000.h, change
8523         into a function, downcase all users.
8524         (legitimate_small_data_p): Likewise.
8525         (legitimate_offset_address_p): Likewise.
8526         (legitimate_indexed_address_p): Likewise.
8527         (legitimate_indirect_address_p): Likewise.
8528         (legitimate_lo_sum_address_p): Likewise.
8529         (rs6000_mode_dependent_address): Likewise.
8530         * rs6000.h (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): Remove.
8531         (SPE_CONST_OFFSET_OK, LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
8532         LEGITIMATE_SMALL_DATA_P, LEGITIMATE_OFFSET_ADDRESS_P,
8533         LEGITIMATE_INDEXED_ADDRESS_P, LEGITIMATE_INDIRECT_ADDRESS_P,
8534         LEGITIMATE_LO_SUM_ADDRESS_P): Move into rs6000.c.
8535         (LEGITIMATE_ADDRESS_INTEGER_P): Remove.
8536         (GO_IF_MODE_DEPENDENT_ADDRESS): Use rs6000_mode_dependent_address.
8537         * config/rs6000/rs6000-protos.h: Update.
8538
8539 2003-05-03  Geoffrey Keating  <geoffk@apple.com>
8540
8541         * config/rs6000/rs6000.h (REVERSIBLE_CC_MODE): Define.
8542         (REVERSE_CONDITION): Define.
8543
8544         * config/rs6000/rs6000.c (scc_comparison_operator): Make equivalent
8545         to branch_positive_comparison_operator.
8546         (ccr_bit): Check that sCOND conditions are actually a positive bit.
8547         (print_operand): Remove %D substitution.
8548         (rs6000_emit_sCOND): Generate complement operation to ensure that
8549         sCOND input is a positive bit.
8550         * config/rs6000/rs6000.md: Rearrange sCOND templates to be in the
8551         same order as bCOND, and add the missing ones.  Remove the %D
8552         substitutions from the scc patterns.
8553
8554         * simplify-rtx.c (simplify_relational_operation): Add case for
8555         ! (fabs(x) < 0.0).
8556
8557 2003-05-03  Bruce Korb  <bkorb@gnu.org>
8558
8559         * gcc/fixinc/fixincl.tpl(dne): restore this to force merge conflicts
8560         in fixincl.x
8561         * gcc/fixinc/inclhack.def(bsd_stdio_attrs_conflict): fix placement
8562
8563 2003-05-03  Aldy Hernandez  <aldyh@redhat.com>
8564
8565         * config/rs6000/spe.h: Remove unecessary casts.  Misc cleanups.
8566
8567 2003-05-03  Zack Weinberg  <zack@codesourcery.com>
8568
8569         PR c/10604
8570         * c-common.c (warn_sign_compare): Initialize to -1.
8571         * c-opts.c (c_common_init_options): Don't set warn_sign_compare here.
8572         (c_common_decode_option <OPT_Wall>): Set warn_sign_compare
8573         for C++ only.
8574         (c_common_post_options): Set warn_sign_compare from extra_warnings
8575         if it's still -1 at this point.
8576
8577         * toplev.c (maybe_warn_unused_parameter): New static variable.
8578         (set_Wextra): New static function.
8579         (W_options): Remove "extra".
8580         (decode_W_option): Call set_Wextra.
8581         (independent_decode_option): Likewise.
8582         (set_Wunused): Cooperate with set_Wextra in setting
8583         warn_unused_parameter.
8584         (rest_of_compilation): No need to check extra_warnings as
8585         well as warn_uninitialized.
8586
8587         * c-typeck.c (build_binary_op, build_conditional_expr):
8588         No need to check extra_warnings as well as warn_sign_compare.
8589         (internal_build_compound_expr): No need to check extra_warnings
8590         as well as warn_unused_value.
8591         * function.c (expand_function_end): No need to check extra_warnings
8592         as well as warn_unused_parameter.
8593         * stmt.c (expand_expr_stmt_value): No need to check extra_warnings
8594         as well as warn_unused_value.
8595
8596         * doc/invoke.texi: Clarify documentation of -Wsign-compare.
8597
8598         * Makefile.in: Disable -Werror for gengtype-lex.o.
8599
8600 2003-05-03  Olivier Hainque  <hainque@act-europe.fr>
8601
8602         * emit-rtl.c (last_call_insn, add_function_usage_to): New functions.
8603         * rtl.h (last_call_insn, add_function_usage_to): New prototypes.
8604         * builtins.c (expand_builtin_apply): Use the new emit-rtl functions.
8605         * calls.c (emit_call_1): Likewise.
8606         (expand_call): For calls initializing constant memory, replace
8607         emission of standalone mem /u clobber with function usage entry.
8608         * expr.c (emit_block_move_via_libcall): Likewise.
8609         * cse.c (count_reg_usage, case EXPR_LIST): New case.
8610         * flow.c (propagate_one_insn): Pass entire operand of
8611         CALL_INSN_FUNCTION_USAGE to mark_used_regs.
8612         * integrate.c (try_constants): For CALL_INSNs, substitute constants
8613         within the FUNCTION_USAGE also.
8614         * loop.c (prescan_loop): Note clobbers of const mem mentioned in
8615         FUNCTION_USAGE lists.
8616         * reload1.c (replace_pseudos_in): Renamed.
8617         (reload): Use it for clobbers surviving until the end of the reload.
8618
8619 2003-05-03  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8620
8621         * expr.c (expand_expr, case VIEW_CONVERT_EXPR): Don't use
8622         gen_lowpart on non-integer modes.
8623
8624         * stor-layout.c (place_field): When adjusting offset_align, use
8625         desired_align, not DECL_ALIGN.
8626
8627 2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>
8628
8629         * c-decl.c (pending_invalid_xref_file): Remove.
8630         (pending_invalid_xref_line): Remove.
8631         (pending_invalid_xref_location): New.
8632         (lookup_label): Use location_t and input_location directly.
8633         (lookup_tag): Likewise.
8634         (pending_xref_error): Likewise.
8635         (c_expand_body_1): Likewise.
8636         * c-common.c (x_expand_start_cond): Likewise.
8637         * c-semantics.c (genrtl_for_stmt): Likewise.
8638         (find_reachable_label): Likewise.
8639         * expr.c (expand_expr): Likewise.
8640         * integrate.c (output_inline_function): Likewise.
8641         * tree-inline.c (find_alloca_call): Likewise.
8642         (find_builtin_longjmp_call): Likewise.
8643         * gcc.c (input_filename): Make static.
8644
8645 2003-05-03  Richard Sandiford  <rsandifo@redhat.com>
8646
8647         * config/mips/mips.md: Fix comment typo.
8648
8649         * config/mips/mips.c (mips_integer_op): New structure.
8650         (MIPS_MAX_INTEGER_OPS): Define.
8651         (mips_const_insns): Use mips_build_integer to determine the number
8652         of instructions needed to load a CONST_INT.
8653         (move_operand): Reject compound CONST_INTs.
8654         (mips_build_shift, mips_build_lower, mips_build_integer): New fns.
8655         (mips_move_integer): New fn.
8656         (mips_legitimize_const_move): Pass CONST_INTs to mips_move_integer.
8657         (mips_legitimize_move): Only legitimize constants when moving
8658         word or subword values.
8659
8660 2003-05-02  Matt Kraai  <kraai@alumni.cmu.edu>
8661
8662         * Makefile.in (gcov-iov.h): Use move-if-change and a stamp.
8663
8664 2003-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8665
8666         * builtins.c (expand_builtin_stpcpy): Copy `arglist' before
8667         modifying it.
8668
8669 2003-05-03  Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
8670             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8671
8672         * doc/contrib.texi (Contributors): Add Zdenek Dvorak, Aldy
8673         Hernandez, and Kazu Hirata.  Update Richard Henderson.
8674
8675 2003-05-02  Geoffrey Keating  <geoffk@apple.com>
8676
8677         * config/rs6000/rs6000.c (rs6000_attribute_table): Add 'extern'
8678         to tentative declaration.
8679
8680         * config/rs6000/sysv4.h (SYMBOL_FLAG_SMALL_V4): Delete.
8681         (SYMBOL_FLAG_SMALL_V4): Delete.
8682         * config/rs6000/rs6000.c (small_data_operand): Use SYMBOL_REF_SMALL_P.
8683         (rs6000_elf_encode_section_info): Don't set SYMBOL_FLAG_SMALL_V4.
8684         (rs6000_elf_in_small_data_p): Add extra section names.  Add
8685         comment about TREE_PUBLIC test.
8686
8687         * c-semantics.c (genrtl_switch_stmt, genrtl_if_stmt): Call
8688         expand_stmt on result of expand_unreachable_stmt.
8689
8690 2003-05-02  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8691
8692         * doc/contrib.texi (Contributors): Add Daniel Berlin.
8693
8694 2003-05-02  David Edelsohn  <edelsohn@gnu.org>
8695
8696         * config/rs6000/{603.md,6xx.md,7450.md,7xx.md,rs64.md}: Decrease
8697         number of automata.
8698
8699         * config/rs6000/rs6000.c (symbol_ref_operand): Check
8700         SYMBOL_REF_FUNCTION_P on AIX.
8701         (current_file_function_operand): Same.
8702         * config/rs6000/rs6000.md (call,call_value): Force non-function
8703         symbol_ref into register on AIX.
8704
8705 2003-05-02  Alan Modra  <amodra@bigpond.net.au>
8706
8707         * calls.c (struct arg_data): Move offset, slot_offset, size and
8708         alignment_pad to struct locate_and_pad_arg_data.  Update all refs.
8709         (initialize_argument_information): Adjust call to locate_and_pad_parm.
8710         Delete alignment_pad var.  Don't calculate slot_offset here.
8711         (emit_library_call_value_1): Delete alignment_pad, offset and size
8712         vars.  Use struct locate_and_pad_arg_data instead.  Adjust refs.
8713         Adjust call to locate_and_pad_parm.  Don't tweak arg size for
8714         partial in-regs here.  Formatting fixes.
8715         * expr.h (struct locate_and_pad_arg_data): New struct.
8716         (locate_and_pad_parm): Adjust declaration.
8717         * function.c (assign_parms): Localize vars.  Use "locate" instead of
8718         other arg location vars.  Don't invoke FUNCTION_ARG or
8719         FUNCTION_INCOMING_ARG unless pretend_named is different from
8720         named_arg.  Heed MUST_PASS_IN_STACK and set up "partial" before
8721         calling locate_and_pad_parm.  Adjust locate_and_pad_parm call.
8722         Use slot_offset for stack home of reg parms.  Correct test for
8723         parm passed in memory.  Formatting fixes.
8724         (locate_and_pad_parm): Add "partial" to params.  Replace offset_ptr
8725         arg_size_ptr and alignment pad with "locate".  Set slot_offset here.
8726         Correct initial_offset_ptr handling.  Localize vars.  Always pad
8727         locate->offset even when in_regs.
8728
8729 2003-05-02  Nathan Sidwell  <nathan@codesourcery.com>
8730
8731         * Makefile.in (TREE_H): Replace location.h with input.h.
8732         (GTFILES) Remove location.h
8733         (gt-lists.h): Replace gt-location.h with gt-input.h
8734         * input.h (input_filename, input_line): Remove variables.
8735         (location_s, location_t): Move from location.h.
8736         (input_location): New.
8737         (input_filename, input_line): New #defines.
8738         * location.h: Remove.
8739         * tree.h: Replace location.h with input.h.
8740         (input_filename, input_line): Remove.
8741         * diagnostic.h: Replace location.h with input.h.
8742         * gcc.h (input_filename, input_filename_length): Remove declarations.
8743         * toplev.c (input_filename, input_line): Remove.
8744         (input_location): Define.
8745         (push_srcloc, pop_srcloc): Adjust.
8746         * diagnostic.c (diagnostic_report_current_module): Adjust.
8747
8748 2003-05-02  Nick Clifton  <nickc@redhat.com>
8749
8750         * configure.in: Add xstormy16 to list of targets that has a nop
8751         instruction and hence which can be tested to see if the
8752         assembler supports the --gdwarf2 switch.
8753         * configure: Regenerate.
8754
8755 2003-05-01  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
8756
8757         PR target/8257
8758         * config/alpha/alpha.c (alpha_sa_mask, alpha_expand_prologue,
8759         alpha_start_function, alpha_expand_epilogue, unicosmk_gen_dsib):
8760         Avoid undefined shifts by making the shift operand unsigned.
8761
8762 2003-05-01  DJ Delorie  <dj@redhat.com>
8763
8764         * reload.c (find_reloads): Also check that all of a multi-reg
8765         value is in the class.
8766
8767 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
8768
8769         * scan.h (lineno): Revert the rename here.
8770
8771 2003-05-01  Stan Shebs  <shebs@apple.com>
8772
8773         * config/darwin.c (darwin_encode_section_info): Call
8774         default_encode_section_info.
8775
8776 2003-05-01  David Edelsohn  <edelsohn@gnu.org>
8777
8778         * config/rs6000/rs6000.md (define_attr "type"): Add mfjmpr.
8779         (movsi_internal1): Use new mfjmpr attribute.
8780         (movhi_internal): Same.
8781         (movqi_internal): Same.
8782         (movcc_internal1): Same.
8783         (movdi_internal64): Same.
8784         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
8785         power4.md,rios1.md,rios2.md,rs64.md}: Add mfjmpr.
8786         * config/rs6000/40x.md: Add fpu_405.
8787         * config/rs6000/power4.md: Merge power4lsu and power4disp automata
8788         into power4misc automata.  Remove extraneous parentheses.
8789         * config/rs6000/440.md: New file.
8790         * config/rs6000/rs6000.c (processor_target_table): Add 440,
8791         440fp.  Rename 405f to 405fp.
8792         (function_arg_padding): Correct formatting.
8793         (rs6000_rtx_costs): Add PROCESSOR_PPC440 cases.
8794
8795 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
8796
8797         * input.h (lineno): Rename to ...
8798         (input_line): ... here.
8799         * tree.h (lineno): Rename to ...
8800         (input_line): ... here.
8801         * scan.h (lineno): Rename to ...
8802         (input_line): ... here.
8803         * toplev.c (lineno): Rename to ...
8804         (input_line): ... here.
8805         (push_srcloc, pop_srcloc):  Rename lineno to input_line.
8806         * c-common.c (c_expand_start_cond, fname_decl): Likewise.
8807         * c-decl.c (poplevel, pop_label_level, lookup_label, lookup_tag,
8808         store_parm_decls, c_expand_body_1): Likewise.
8809         * c-errors.c (pedwarn_c99): Likewise.
8810         * c-format.c (status_warning): Likewise.
8811         * c-lex.c (fe_file_change, cb_def_pragma, c_lex): Likewise.
8812         * c-opts.c (c_common_post_options, c_common_parse_file): Likewise.
8813         * c-parse.in (save_filename, maybe_type_qual, ifc): Likwise.
8814         * c-semantics.c (finish_stmt_tree, build_stmt, emit_local_var,
8815         gentrtl_goto_stmt, genrtl_expr_stmt_value, genrtl_decl_stmt,
8816         genrtl_if_stmt, genrtl_while_stmt, genrtl_do_stmt,
8817         genrtl_return_stmt, genrtl_for_stmt, build_break_stmt,
8818         build_continue_stmt, genrtl_switch_stmt, genrtl_asm_stmt,
8819         prep_stmt, find_reachable_label, expand_unreachable_stmt): Likewise.
8820         * coverage.c (create_coverage): Likewise.
8821         * diagnostic.c (pedwarn, sorry, error, fatal_error,
8822         internal_error, warning, diagnostic_report_current_module,
8823         inform): Likewise.
8824         * expr.c (expand_expr): Likewise.
8825         * integrate.c (expand_inline_function,
8826         output_inline_function): Likewise.
8827         * rtl-error.c (file_and_line_for_asm): Likewise.
8828         * tree-inline.c (find_alloca_call, find_builtin_longjmp_call,
8829         walk_tree): Likewise.
8830         * tree.c (make_node): Likewise.
8831         * ada, cp, f, java, objc, treelang: Likewise.
8832         * objc/objc-act.c (objc_init): Rename lineno to input_line.
8833         (build_module_descriptor, build_selector_translation_table,
8834         build_protocol_template, build_method_prototype_list_template,
8835         build_category_template, build_selector_table,
8836         build_class_template, build_super_template, build_ivar_template,
8837         build_ivar_list_template, build_method_list_template,
8838         build_method_template, add_instance_variable): Likewise.
8839
8840         * dwarf2out.c (dwarf2out_init, dwarf2out_finish): Change parameter
8841         name from input_filename.
8842
8843 2003-04-30  Eric Christopher  <echristo@redhat.com>
8844             Richard Sandiford <rsandifo@redhat.com>
8845
8846         * configure: Regenerate from patches below.
8847         * combine.c (gen_lowpart_for_combine): Fix comment and add tests
8848         for all symbolic operands.
8849         * config/mips/mips.c: Migrate RTX_COSTS and CONST_COSTS
8850         to function.
8851         * config/mips/linux.h: Fix typo.
8852         * Merge from mips-3_4-rewrite branch:
8853
8854         2003-04-07  Richard Sandiford  <rsandifo@redhat.com>
8855
8856                 * config/mips/mips.c (mips_classify_symbol): Add catch-all case for
8857                 handling local labels when TARGET_ABICALLS.
8858
8859         2003-04-04  Richard Sandiford  <rsandifo@redhat.com>
8860
8861                 * config/mips/mips-protos.h (mips_expand_epilogue): Add an
8862                 integer argument.
8863                 (mips_expand_call): Likewise.
8864                 * config/mips/mips.h (TARGET_SIBCALLS): New macro.
8865                 (FIXED_REGISTERS): Clear $31 entry.
8866                 (CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTER): Likewise.
8867                 (EPILOGUE_USES): Define.
8868                 * config/mips/mips.c (mips_function_ok_for_sibcall): New function.
8869                 (TARGET_FUNCTION_OK_FOR_SIBCALL): Use it.
8870                 (override_options): Add a 'j' register class.
8871                 (mips_expand_call): Handle sibcalls
8872                 (mips_expand_epilogue): Handle epilogues for sibcalls.
8873                 * config/mips/mips.md (epilogue): Adjust call to mips_expand_epilogue.
8874                 (sibcall_epilogue): New pattern.
8875                 (call, call_value): Adjust calls to mips_expand_call.
8876                 (sibcall, sibcall_value): New expanders.
8877                 (sibcall_internal, sibcall_value_internal): New patterns.
8878                 (sibcall_value_multiple_internal): New pattern.
8879
8880         2003-03-25  Richard Sandiford  <rsandifo@redhat.com>
8881
8882                 * config/mips/mips.md (extended_mips16): New attribute.
8883                 (define_attr length): Default to 8 if extended_mips16 == yes.
8884                 (truncdisi2): Set extended_mips16 to yes for the sll alternative.
8885                 (truncdihi2, truncdiqi2, *extendsidi2): Likewise.
8886                 (call_internal): Set extended_mips16 to yes for direct jumps.
8887                 Remove redundant mode attribute.
8888                 (call_value_internal, call_value_multiple_internal): Likewise.
8889                 (call_split): Remove redundant mode attribute.
8890                 (call_value_split, call_value_multiple_split): Likewise.
8891
8892                 * config/mips/mips.c (mips_symbol_insns): Rework.  Fix handling
8893                 of unaligned offsets.
8894
8895                 * config/mips/mips.c (mips_splittable_symbol_p): Fix handling
8896                 of SYMBOL_GENERAL.
8897
8898         2003-03-22  Richard Sandiford  <rsandifo@redhat.com>
8899
8900                 * config/mips/mips.h (TARGET_EXPLICIT_RELOCS): Add commentary.
8901                 * config/mips/mips.c (override_options): Disable -mexplicit-relocs
8902                 for mips16 code.
8903
8904         2003-03-22  Richard Sandiford  <rsandifo@redhat.com>
8905
8906                 * config/mips/mips.h (ADDRESS_COST): Define.
8907
8908         2003-03-20  Richard Sandiford  <rsandifo@redhat.com>
8909
8910                 * config/mips/mips.h (EXTRA_CONSTRAINT): Give existing meaning of
8911                 'R' to 'U'.  Make 'R' mean a single-instruction memory reference.
8912                 * config/mips/mips.md: Replace 'R' constraints with 'U'.
8913
8914         2003-03-18  Richard Sandiford  <rsandifo@redhat.com>
8915
8916                 * config/mips/mips.md (truncdisi2): Add commentary.  Use sll instead
8917                 of a two-instruction sequence.  Add register->memory alternative.
8918                 (truncdihi2, truncdiqi2): Likewise.
8919                 Rework shift/truncate instructions so that they only handle right
8920                 shifts of 32 (or more, in the case of arithmetic shifts).
8921                 Add patterns for truncate/sign-extend.
8922
8923         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8924
8925                 * configure.in (mips*-*-*): Check for explicit relocation support.
8926                 * configure: Regenerate.
8927
8928         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8929
8930                 * config/mips/mips.h (TARGET_SWITCHES): Add -mexplicit-relocs
8931                 and -mno-explicit-relocs.
8932                 (MASK_EXPLICIT_RELOCS): Define.
8933                 (TARGET_EXPLICIT_RELOCS): Use it.
8934                 (mips_split_addresses): Remove declaration.
8935                 * config/mips/mips.c (override_options): Update comment for
8936                 mips_split_addresses.  Clear MASK_EXPLICIT_RELOCS for non-PIC n64.
8937
8938         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8939
8940                 * combine.c (gen_lowpart_for_combine): Treat the lowpart Pmode of
8941                 a CONST as identity.  Check the return value of gen_lowpart_common.
8942
8943         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8944
8945                 * config/mips/mips.c (mips_legitimize_symbol): Handle small data
8946                 references for TARGET_EXPLICIT_RELOCS.
8947                 (mips_reloc_string): Return "%gp_rel(" for RELOC_GPREL16 if
8948                 !TARGET_MIPS16.
8949
8950         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8951
8952                 * config/mips/mips.md: Replace 'IQ' mips16 constraints with just 'Q'.
8953                 (addsi3): Remove redundant constraints.
8954                 (addsi3_internal): Use separate register & constant alternatives.
8955                 Use a 'Q' constraint and "addiu" insn for the latter.
8956                 (adddi3_internal_3, addsi3_internal_2): Likewise.
8957
8958         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
8959
8960                 * config/mips/mips-protos.h (mips_expand_unaligned_load): Declare.
8961                 (mips_expand_unaligned_store): Declare.
8962                 * config/mips/mips.c (mips_get_unaligned_mem): New fn.
8963                 (mips_expand_unaligned_load, mips_expand_unaligned_store): New fns.
8964                 * config/mips/mips.md (UNSPEC_ULW, UNSPEC_USW): Remove.
8965                 (UNSPEC_ULD, UNSPEC_USD): Remove.
8966                 (UNSPEC_LWL, UNSPEC_LWR, UNSPEC_SWL, UNSPEC_SWR): New.
8967                 (UNSPEC_LDL, UNSPEC_LDR, UNSPEC_SDL, UNSPEC_SDR): New.
8968                 (extv, extzv): Use mips_expand_unaligned_load.
8969                 (insv): Use mips_expand_unaligned_store.  Use a reg_or_0_operand
8970                 predicate for operand 3.
8971                 (movsi_ulw, movsi_usw): Replace with...
8972                 (mov_lwl, mov_lwr, mov_swl, move_swr): ...these new insns.
8973                 (movdi_uld, movdi_usd): Likewise replace with...
8974                 (mov_ldl, mov_ldr, mov_sdl, move_sdr): ...these insns.
8975
8976         2003-02-26  Richard Sandiford  <rsandifo@redhat.com>
8977
8978                 * config/mips/mips-protos.h (mips_global_pic_constant_p): Declare.
8979                 * config/mips/mips.h (LEA_REGS): New register class.
8980                 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add entries for it.
8981                 (GR_REG_CLASS_P): Include LEA_REGS.
8982                 (DANGEROUS_FOR_LA25_P): New macro.
8983                 (EXTRA_CONSTRAINT): Add !DANGEROUS_FOR_LA25_P to R's condition.
8984                 Add a T constraint for the DANGEROUS_FOR_LA25_P case.
8985                 * config/mips/mips.c (mips_regno_to_class): Change GR_REGS
8986                 entries to LEA_REGS.
8987                 (mips_global_pic_constant_p): New function.
8988                 (override_options): Add 'e' register constraint.
8989                 (mips_secondary_reload_class): Return LEA_REGS when reloading
8990                 a dangerous constant into a class containing $25.
8991                 * config/mips/mips.md (movdi_internal2): Add an e <- T alternative.
8992                 (movsi_internal): Likewise.
8993
8994         2003-02-23  Richard Sandiford  <rsandifo@redhat.com>
8995
8996                 * config/mips/mips.h (TARGET_SPLIT_CALLS): New macro.
8997                 * config/mips/mips.md (call_split): New insn.
8998                 (call_value_split, call_value_multiple_split): New insns.
8999                 (call_internal): Turn into a define_insn_and_split.  Split the
9000                 instruction into a call and $gp load if TARGET_SPLIT_CALLS.
9001                 (call_value_internal, call_value_multiple_internal): Likewise.
9002
9003         2003-02-23  Richard Sandiford  <rsandifo@redhat.com>
9004
9005                 * config/mips/mips.c (mips_reloc_string): Return "%got(" for
9006                 RELOC_GOT_PAGE and RELOC_GOT_DISP if !TARGET_NEWABI.
9007                 (mips_encode_section_info): Don't take symbol visibility into
9008                 account if TARGET_ABICALLS.  Add more commentary.
9009                 * config/mips/mips.md: Add commentary above reloc constants.
9010
9011         2003-02-12  Richard Sandiford  <rsandifo@redhat.com>
9012
9013                 * config/mips/mips.c (mips_legitimize_const_move): New, extracted
9014                 from mips_legitimize_move.  Legitimize constant pool references.
9015                 (mips_legitimize_move): Call mips_legitimize_const_move.  Attach
9016                 a REG_EQUAL note to the last instruction.
9017
9018         2003-02-11  Richard Sandiford  <rsandifo@redhat.com>
9019
9020                 * config/mips/mips-protos.h (mips_simplify_dwarf_addr): Declare.
9021                 * config/mips/mips.h (TARGET_EXPLICIT_RELOCS, TARGET_NEWABI): New.
9022                 (ASM_SIMPLIFY_DWARF_ADDR): Define to mips_simplify_dwarf_addr.
9023                 (EXTRA_CONSTRAINT): Allow symbolic call addresses for TARGET_ABICALLS.
9024                 * config/mips/mips.md (UNSPEC_HIGH): New constant.
9025                 (UNSPEC_RELOC_GPREL16): Rename to...
9026                 (RELOC_GPREL16): ...this.
9027                 (RELOC_GOT_HI, RELOC_GOT_LO, RELOC_GOT_PAGE, RELOC_GOT_DISP): New.
9028                 (RELOC_CALL16, RELOC_CALL_HI, RELOC_CALL_LO): New.
9029                 (macro_calls): New attribute.
9030                 (length): Use it to set the default length of calls.  Don't allow
9031                 calls to have delay slots if macro_calls is "yes".
9032                 (luisi, luidi): New patterns.
9033                 (lowsi, lowdi): Use '%R' to print the relocation.
9034                 (lowdi_extend): Remove.
9035                 (loadgp): Remove mode from operand 0.  Use '%0' instead of '%a0'.
9036                 (call_internal): Merge alternatives.  Always use "jal".
9037                 (call_value_internal, call_value_multiple_internal): Likewise.
9038                 (reloc_gprel16): Remove.
9039                 * config/mips/mips.c (mips_got_alias_set): New variable.
9040                 (mips_classify_constant): Handle the new relocation constants.
9041                 (mips_classify_symbol): Reverse the sense of SYMBOL_REF_FLAG for PIC.
9042                 (mips_symbolic_address_p): Return false if generating explicit relocs.
9043                 Otherwise allow local PIC symbols to have an offset.
9044                 (mips_splittable_symbol_p): New function.
9045                 (mips_classify_address): Use it to check whether a LO_SUM is valid.
9046                 (mips_const_insns): Always accept HIGH.
9047                 (call_insn_operand): Don't accept global symbols if using explicit
9048                 relocs.
9049                 (move_operand): Don't accept HIGH when generating PIC.
9050                 (mips_reloc, mips_lui_reloc): New functions.
9051                 (mips_force_temporary): Remove MODE argument.  Expect VALUE to
9052                 be a valid right-hand-side for a SET pattern.
9053                 (mips_load_got, mips_load_got16, mips_load_got32): New functions.
9054                 (mips_emit_high): New function.
9055                 (mips_legitimize_symbol): Use mips_reloc for the mips16 gp-relative
9056                 case.  Use mips_splittable_symbol_p to check whether a LO_SUM
9057                 address should be used.  Use mips_emit_high to generate the
9058                 high part of such an address.  Adjust the global symbol + offset
9059                 case to match the change to mips_force_temprorary.
9060                 (mips_legitimize_move): Shuffle call to mips_legitimize_symbol.
9061                 If generating explicit-reloc PIC, load the address of global
9062                 symbols from the GOT.  Use mips_emit_high to emit the high part
9063                 of an address.
9064                 (mips_simplify_dwarf_addr): New function.
9065                 (mips_move_1word): Use lwc1 instead of l.s and swc1 instead of s.s.
9066                 (mips_move_2words): Likewise ldc1/l.d and sdc1/s.d if TARGET_64BIT.
9067                 (mips_expand_call): Load the addresses of global functions using
9068                 %call* relocs if generating explicit-reloc PIC.  Don't generate
9069                 an exception_receiver pattern.
9070                 (override_options): Initialize mips_got_alias_set.
9071                 (print_relocation): Remove in favor of...
9072                 (mips_reloc_string): ...this new function.
9073                 (print_operand): Handle '%R'.  Use mips_reloc_string.
9074                 (print_operand_address): Use print_operand to print the symbolic
9075                 part of a LO_SUM address.
9076                 (mips_output_function_prologue): Use .cprestore, reverting last patch.
9077                 (mips_encode_section_info): Factor out DECL_RTL accesses.  Reverse
9078                 sense of SYMBOL_REF_FLAG for PIC, using binds_local_p to check
9079                 for local symbols.
9080
9081         2003-02-02  Eric Christopher  <echristo@redhat.com>
9082
9083                 * config/mips/mips.c (mips_sign_extend): Remove.
9084                 * config/mips/mips-protos.h: Ditto.
9085                 * config/mips/mips.md (movdi_internal2_extend): Remove.
9086                 (extendsidi2): Fix mode of convert_memory_address.
9087
9088         2003-01-24  Eric Christopher  <echristo@redhat.com>
9089
9090                 * config/mips/mips.md: Rewrite zero_extend* and extend*
9091                 patterns. Use explicit instructions and split after reload
9092                 for register extensions.
9093                 (ashlsi3_internal1_extend): New combiner pattern for
9094                 shift and extend combinations.
9095                 * config/mips/mips.h: Change Pmode back to ptr_mode
9096                 for performance enhancement.
9097                 * combine.c (expand_compound_operation): Make sure
9098                 that zero_extend operation is profitable.
9099
9100         2003-01-14  Richard Sandiford  <rsandifo@redhat.com>
9101
9102                 * config/mips/mips.h (TRAMPOLINE_TEMPLATE): Make size of stored
9103                 addresses depend on ptr_mode rather than Pmode.
9104                 (TRAMPOLINE_SIZE, TRAMPOLINE_ALIGNMENT): Update acoordingly.
9105                 (INITIALIZE_TRAMPOLINE): Rework to handle Pmode != ptr_mode.
9106                 (CASE_VECTOR_MODE): Use ptr_mode for !TARGET_MIPS16.
9107                 (ASM_OUTPUT_ADDR_VEC_ELT): Update accordingly.
9108                 * config/mips/mips.md (tablejump): Likewise.  Remove Pmode
9109                 condition for selecting cpaddsi or cpadddi: use cpadd instead.
9110                 (tablejump_internal1): Remove condition.
9111                 (tablejump_internal2): Change condition to TARGET_64BIT.
9112                 (cpaddsi): Rename to...
9113                 (cpadd): ...this.
9114                 (cpadddi): Remove.
9115
9116         2003-01-09  Richard Sandiford  <rsandifo@redhat.com>
9117
9118                 * config/mips/mips-protos.h (mips16_constant_after_function_p,
9119                 mips_address_cost, mips_check_split, double_memory_operand,
9120                 mips16_gp_offset, mips16_gp_offset_p, mips16_constant,
9121                 pic_address_needs_scratch, symbolic_operand): Remove declarations.
9122                 (mips_legitimate_address_p): Return bool.
9123                 (mips_address_insns, mips_fetch_insns, mips_const_insns,
9124                 mips_legitimize_address, mips_legitimize_move,
9125                 mips_expand_call): Declare.
9126                 (mips_return_addr): Move outside #ifdef RTX_CODE.
9127
9128                 * config/mips/mips.h (ABI_HAS_64BIT_SYMBOLS): New macro.
9129                 (PIC_FN_ADDR_REG): New reg_class.
9130                 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add corresponding entries.
9131                 (GR_REG_CLASS_P): True for PIC_FN_ADDR_REG.
9132                 (SMALL_OPERAND, SMALL_OPERAND_UNSIGNED, LUI_OPERAND,
9133                 CONST_HIGH_PART, CONST_LOW_PART, LUI_INT): New macros.
9134                 (SMALL_INT, SMALL_INT_UNSIGNED, CONST_OK_FOR_LETTER_P): Use new macros.
9135                 (EXTRA_CONSTRAINTS): Give new meanings to Q, R and S.
9136                 (CONSTANT_ADDRESS_P): Use mips_legitimate_address_p.
9137                 (LEGITIMATE_PIC_OPERAND): Undefine.
9138                 (LEGITIMATE_CONSTANT_P): Use mips_const_insns.
9139                 (LEGITIMIZE_ADDRESS): Use mips_legitimize_address.
9140                 (CONSTANT_AFTER_FUNCTION_P): Remove definition in #if 0 block.
9141                 (FUNCTION_MODE): Change to SImode.
9142                 (CONST_COSTS): Use mips_const_insns to calculate the cost of
9143                 most constants.  Treat const_artih_operands specially if they
9144                 occur in a PLUS or MINUS.
9145                 (CONSTANT_POOL_COST): New macro.
9146                 (RTX_COSTS): Use mips_address_insns for MEMs, with a base cost of 2.
9147                 Add LO_SUM handling.
9148                 (ADDRESS_COST): Undefine.
9149                 (PREDICATE_CODES): Add symbolic_operand and const_arith_operand.
9150                 Add CONST to the list of codes for arith_operand.  Add LABEL_REF
9151                 to call_insn_operand and remove CONST_INT.
9152
9153                 * config/mips/mips.c: Include integrate.h.
9154                 (SINGLE_WORD_MODE_P): New macro.
9155                 (mips_constant_type, mips_symbol_type, mips_address_type): New enums.
9156                 (mips_constant_info, mips_address_info): New structs.
9157                 (mips_regno_to_class): Map $25 to PIC_FN_ADDR_REG.
9158                 (mips_classify_constant, mips_classify_symbol,
9159                 mips_valid_base_register_p, mips_symbolic_address_p,
9160                 mips_classify_address, mips_symbol_insns,
9161                 mips16_unextended_reference_p, mips_address_insns, mips_const_insns,
9162                 mips_fetch_insns, mips_force_temporary, mips_add_offset,
9163                 mips_legitimize_symbol, mips_legitimize_address, mips_legitimize_move,
9164                 mips_print_relocation): New functions.
9165                 (const_arith_operand): New operand predicate.
9166                 (arith_operand): Use it.
9167                 (mips_const_double_ok, mips16_simple_memory_operand,
9168                 simple_memory_operand, double_memory_operand, mips_check_split,
9169                 mips_address_cost, pic_address_needs_scratch, mips16_gp_offset,
9170                 mips16_gp_offset_p, mips16_output_gp_offset,
9171                 mips16_constant_after_function_p, mips16_constant): Remove.
9172                 (call_insn_operand): Be more fussy about symbolic constants.
9173                 Use register_operand.
9174                 (move_operand): Use mips_symbolic_address_p to check symbolic
9175                 operands and general_operand to check the rest.
9176                 (symbolic_operand): Use mips_classify_constant.
9177                 (mips_legitimate_address_p): Use mips_classify_address.
9178                 (mips_move_1word): Combine handling of symbolic addresses.
9179                 Remove special treatment of gp-relative loads for TARGET_MIPS16.
9180                 (move_move_2words): Likewise.  Assume addresses are offsettable
9181                 if they need to refer to more than one word.  Add HIGH handling.
9182                 (mips_restore_gp): Use ptr_mode for the GP save slot.
9183                 (mips_expand_call): New function, combining the old mips.md
9184                 call and call_internal define_expands.  If the address isn't
9185                 a call_insn_operand, force it into a register.  For SVR4 PIC,
9186                 emit an exception_receiver instruction after the call.
9187                 (override_options): Only override flag_pic for TARGET_ABICALLS
9188                 if it is currently zero.  Allow mips_split_addresses when
9189                 Pmode == DImode too, except when ABI_HAS_64BIT_SYMBOLS.
9190                 Add new register class letter, 'c'.
9191                 (print_operand): Use mips_classify_constant for constant operands.
9192                 (print_operand_address): Use mips_classify_address.
9193                 (mips_output_function_prologue): Don't use .cprestore.
9194                 (mips_expand_epilogue): For TARGET_MIPS16, only adjust the stack
9195                 via the frame pointer if current_function_calls_eh_return.
9196                 (mips_encode_section_info): For TARGET_ABICALLS, use SYMBOL_REF_FLAG
9197                 to mark whether a symbol is local or global.
9198                 (build_mips16_call_stub): Expect the address of the function rather
9199                 than a MEM reference to it.  Update call generation sequences.
9200                 (mips16_optimize_gp): Remove Pmode checks.  Temporarily disable
9201                 small-data adjustments.
9202
9203                 * config/mips/mips.md: Remove 'R'/'m' memory distinction.  Use default
9204                 length for loads and stores.
9205                 (UNSPEC_CPADD, UNSPEC_RELOC_GPREL16): New constants.
9206                 (define_attr type): Add const and prefetch.
9207                 (define_attr length): Use mips_const_insns for const instructions.
9208                 Use mips_fetch_insns for load and store instructions.
9209                 (define_attr single_insn): New.
9210                 (define_attr can_delay): Use it.
9211                 (define_attr abicalls): Remove.
9212                 (define_delay): Use can_delay.  Always allow calls to have delay slots.
9213                 (addsi3_internal_2): Add 'Q' constraint.
9214                 (movsi_ulw, movsi_usw, movdi_uld, movdi_usd): Set length to 8.
9215                 (high): Remove.
9216                 (lowsi): Renamed from low.
9217                 (lowdi): New pattern.
9218                 (movdi, movsi): Use mips_legitimize_move.  Remove define_split.
9219                 (lwxc1, ldxc1, swxc1, sdxc1): Set length to 4.
9220                 (loadgp): Change operand 0 to an immediate_operand.
9221                 (tablejump): Use the same patterns for SVR4 PIC but emit a cpadd
9222                 beforehand.
9223                 (cpaddsi, cpadddi): New patterns.
9224                 (tablejump_internal3, tablejump_internal4): Remove define_expands
9225                 and associated define_splits.
9226                 (call, call_value): Use mips_expand_call.
9227                 (call_internal): New, replacing all existing call_internal* insns.
9228                 (call_value_internal): Likewise call_value_internal*.
9229                 (call_value_multiple_internal): Likewise call_value_multiple_internal*.
9230                 (untyped_call): Remove if (operands[0]) magic.
9231                 (prefetch_si_address, prefetch_si): Change type to "prefetch".
9232                 (prefetch_di_address, prefetch_di): Likewise.
9233                 (leasi, leadi): Remove.
9234                 (reloc_gprel16): New.
9235
9236                 * config/mips/5400.md (ir_vr54_hilo): Include const type.
9237                 * config/mips/5500.md (ir_vr55_hilo): Likewise.
9238                 * config/mips/sr71k.md (ir_sr70_hilo): Likewise.
9239
9240         2003-01-08  Eric Christopher  <echristo@redhat.com>
9241
9242                 * config.gcc (mipsisa32*): Change ABI_MEABI to ABI_EABI.
9243                 * config/mips/elf.h (STARTFILE_SPEC): Remove ABI_MEABI references and
9244                 configure check for libgloss.
9245                 * config/mips/elf64.h: Ditto.
9246                 * config/mips/mips.c: Remove ABI_MEABI.
9247                 * config/mips/mips.h: Ditto.
9248
9249         2002-11-05  Richard Sandiford  <rsandifo@redhat.com>
9250
9251                 Fix merge fallout.
9252                 * config/mips/mips.md (mul_acc_si): Reapply 2002-10-16 change.
9253                 (muldi3_internal): Remove outdated comment.
9254                 (*muls_di, *umuls_di): Fix comment and 64-bitness.
9255                 (*smsac_di, *umsac_di): Likewise.  Reformat.
9256                 (umulsi3_highpart): Minor formatting tweaks.
9257                 (umulsi3_highpart_internal): Use only if !ISA_HAS_MULHI.  Remove
9258                 redundant scratch operand.  Minor formatting tweak.
9259                 (umulsi3_highpart_mulhi_internal): Use for !TARGET_64BIT as well.
9260                 (umulsi3_highpart_neg_mulhi_internal): Likewise.  Fix asm template.
9261                 (smulsi3_highpart): As for the unsigned version.
9262                 (smulsi3_highpart_internal): Likewise.
9263                 (smulsi3_highpart_mulhi_internal): Likewise.
9264                 (smulsi3_highpart_neg_mulhi_internal): Likewise.
9265                 (smuldi3_highpart, umuldi3_highpart): Minor formatting tweaks.
9266                 (*smul_acc_di): Remove duplicated pattern.
9267                 (*umul_acc_di, *smul_acc_di): Reapply 2002-10-16 change.
9268                 (anddi3) [unnamed mips16 pattern]: Remove reintroduced length.
9269                 (zero_extendsidi2_internal2): Remove new, but commented-out pattern.
9270
9271         2002-10-22  Eric Christopher  <echristo@redhat.com>
9272
9273                 * config/mips/mips-protos.h (mips_return_addr): New.
9274                 * config/mips/mips.c (mips_return_addr): New.
9275                 (movdi_operand): Remove.
9276                 (se_register_operand): Ditto.
9277                 (se_reg_or_0_operand): Ditto.
9278                 (se_uns_arith_operand): Ditto.
9279                 (se_arith_operand): Ditto.
9280                 (se_nonmemory_operand): Ditto.
9281                 (extend_operator): Ditto.
9282                 (highpart_shift_operator): Ditto.
9283                 (mips_initial_elimination_offset): Remove return address pointer
9284                 elimination.
9285                 (mips_reg_names): Remove $ra.
9286                 (mips_regno_to_class): Ditto.
9287                 * config/mips/mips.h (POINTER_SIZE): Define based on TARGET_LONG64
9288                 and TARGET_64BIT.
9289                 (POINTER_BOUNDARY): Remove.
9290                 (POINTERS_EXTEND_UNSIGNED): Define to 0.
9291                 (PROMOTE_MODE): Promote to Pmode.
9292                 (SHORT_IMMEDIATES_SIGN_EXTEND): Define.
9293                 (Pmode): Define to TARGET_64BIT.
9294                 (FUNCTION_MODE): Define as Pmode.
9295                 (mips_args): Remove deleted functions.
9296                 (SIZE_TYPE): Depend on POINTER_SIZE.
9297                 (PTRDIFF_TYPE): Ditto.
9298                 (FIXED_REGISTERS): Fix extra registers.
9299                 (CALL_USED_REGISTERS): Ditto.
9300                 (CALL_REALLY_USED_REGISTERS): Ditto.
9301                 (RAP_REG_NUM): Remove.
9302                 (RETURN_ADDRESS_POINTER_REGNUM): Ditto.
9303                 (RETURN_ADDR_RTX): Define to mips_return_addr.
9304                 (ELIMINABLE_REGS): Remove RETURN_ADDRESS_POINTER_REGNUM.
9305                 (CAN_ELIMINATE): Ditto.
9306                 * config/mips/mips.md: For DImode patterns, take into account
9307                 deletions above. Split mulsidi patterns into sign_extend and
9308                 zero_extend.
9309
9310         2002-10-16  Richard Sandiford  <rsandifo@redhat.com>
9311                     Michael Meissner  <meissner@redhat.com>
9312
9313                 * config/mips/mips.h (ISA_HAS_MACC): True for normal-mode vr4120 code.
9314                 * config/mips/mips.md (mulsi3_mult3): Add a define_peephole2 to
9315                 mop up unnecessarly moves through LO.
9316                 (*mul_acc_si): Remove vr5400 and vr5500 handling from here.
9317                 (*macc): New pattern for ISA_HAS_MACC.  Add define_peephole2s to
9318                 change mtlo/macc sequences into mul/add sequences when a three-
9319                 address mul is available.
9320                 (*macc2): New pattern.  Add a define_peephole2 to generate it.
9321                 (*mul_sub_si): Fix contraint for operand 5.
9322                 (*muls): Use in 32-bit code as well.
9323                 (*msac): Likewise.  Use msub instead of msac in vr5500 code
9324                 if the destination is LO.  Remove duplicate define_split.
9325                 (*muls_di): Use only in 32-bit code.  Adjust rtl accordingly.
9326                 (*msac_di): Likewise.  Fix formatting.
9327                 (smulsi3_highpart, umulsi3_highpart): Use mulhi in 32-bit code too.
9328                 (*xmulsi3_highpart_internal): Use only if !ISA_HAS_MULHI.
9329                 (*xmulsi3_highpart_mulhi): Use even if !TARGET_64BIT.
9330                 (*xmulsi3_neg_highpart_mulhi): Likewise.
9331                 (*mul_acc_64bit_di): Remove.
9332                 (*mul_acc_di): Use only in 32-bit code.  Handle ISA_HAS_MACC as well.
9333
9334         2002-10-14  Richard Sandiford  <rsandifo@redhat.com>
9335
9336                 * config/mips/vr.h (DRIVER_SELF_SPECS): Define.
9337                 * config/mips/t-vr (MULTILIB_OPTIONS): Remove mlong32.
9338                 (MULTILIB_DIRNAMES): Remove long32.
9339                 (MULTILIB_EXCEPTIONS): Don't build -mabi=32 -mgp32 multilibs.
9340                 (MULTILIB_REDUNDANT_DIRS): Remove.
9341
9342         2002-10-14  Richard Sandiford  <rsandifo@redhat.com>
9343
9344                 * doc/tm.texi (DRIVER_SELF_SPECS): Document.
9345                 * gcc.c (driver_self_specs): New variable.
9346                 (do_self_spec): New function.
9347                 (main): Use it to process driver_self_specs.
9348
9349         2002-10-09  Richard Sandiford  <rsandifo@redhat.com>
9350
9351                 * config/mips/mips.md (one_cmpldi2): Use only if TARGET_64BIT.
9352                 Remove DImode define_split for !TARGET_64BIT.
9353                 (anddi3): Remove !TARGET_64BIT support from here as well.
9354                 Change operand 2's predicate to se_uns_arith_operand.
9355                 Add constant alternatives to define_insn.
9356                 (iordi3, xordi3, *nordi3): Likewise.
9357                 (anddi3_internal1, xordi3_immed): Remove.
9358
9359         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
9360
9361                 * config/mips/mips.h (PROCESSOR_R4121): Rename to PROCESSOR_R4120.
9362                 (TARGET_MIPS4121): Rename to TARGET_MIPS4120.
9363                 * config/mips/mips.c (mips_cpu_info): Rename vr4121 to vr4120.
9364                 * config/mips/mips.md: Apply same renaming here.
9365
9366         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
9367
9368                 * config/mips/mips.c (PROCESSOR_R4320, TARGET_MIPS4320): Remove.
9369                 (GENERATE_MULT3_SI): Remove use of TARGET_MIPS4320.
9370                 * config/mips/mips.c (mips_cpu_info): Remove vr4320 entry.
9371                 * config/mips/mips.md (define_attr cpu): Remove r4320.
9372                 Remove vr4320 scheduler and uses of TARGET_MIPS4320.
9373
9374         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
9375
9376                 * config/mips/mips.c (mips16_strings): New variable.
9377                 (mips_output_function_epilogue): Clear the SYMBOL_REF_FLAG of every
9378                 symbol in mips16_strings.  Free the list.
9379                 (mips_encode_section_info): Keep track of local strings.
9380
9381         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
9382
9383                 * config/mips/mips.md (bunge, bltgt, bungt): New define_expands.
9384                 (sordered_df, sordered_sf): Remove.
9385                 * config/mips/mips.c (get_float_compare_codes): New fn.
9386                 (gen_int_relational, gen_conditional_move): Use it.
9387
9388         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
9389
9390                 * config/mips/mips-protos.h (mips_emit_fcc_reload): Declare.
9391                 * config/mips/mips.h (PREDICATE_CODES): Add fcc_register_operand.
9392                 * config/mips/mips.c (fcc_register_operand): New function.
9393                 (mips_emit_fcc_reload): New function, extracted from reload_incc.
9394                 (override_options): Allow TFmode values in float registers
9395                 if ISA_HAS_8CC.
9396                 * cnfig/mips/mips.md (reload_incc): Change destination prediate
9397                 to fcc_register_operand.  Remove misleading source constraint.
9398                 Use mips_emit_fcc_reload.
9399                 (reload_outcc): Duplicate reload_incc.
9400
9401
9402 2003-04-30  Diego Novillo  <dnovillo@redhat.com>
9403
9404         * builtins.def (BUILTIN_CONSTANT_P): Mark as constant.
9405
9406 2003-04-30  Geoffrey Keating  <geoffk@apple.com>
9407
9408         * tree-inline.c (inlinable_function_p): Back out last change, it's
9409         unnecessary.
9410
9411 2003-04-30  Steven Bosscher  <steven@gcc.gnu.org>
9412
9413         * ggc-page.c (TREE_EXP_SIZE): Define.
9414         (extra_order_size_table): New entry for expr trees with
9415         two operands.
9416
9417 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
9418
9419         * c-common.c (if_elt): Use location_t in lieu of "file, line" pair.
9420         (c_expand_start_cond): Adjust.
9421         (c_expand_end_cond): Don't use warning_with_file_and_file.
9422         (shadow_warning): Likewise.
9423
9424 2003-04-30  Nathan Sidwell  <nathan@codesourcery.com>
9425
9426         * tree.h (DECL_POINTER_DEPTH): Remove.
9427         (struct tree_decl): Remove pointer_depth.
9428
9429 2003-04-30  Janis Johnson  <janis187@us.ibm.com>
9430
9431         * config/rs6000/linux64.h (ASM_OUTPUT_LABELREF): Remove.
9432         * config/rs6000/rs6000.c (rs6000_elf_strip_name_encoding): Remove.
9433         (rs6000_xcoff_encode_section_info): Remove.
9434         (current_file_function_operand): Use SYMBOL_REF_FLAGS; fix latent bug.
9435         (rs6000_output_mi_thunk): Remove dead code; use SYMBOL_REF_FLAGS.
9436         (small_data_operand, rs6000_emit_move, rs6000_elf_in_small_data_p,):
9437         Use SYMBOL_REF_FLAGS.
9438         (rs6000_elf_encode_section_info): Call default_encode_section_info for
9439         generic flags, use SYMBOL_REF_FLAGS; code cleanups.
9440         * sysv4.h (TARGET_STRIP_NAME_ENCODING, ASM_OUTPUT_LABELREF): Remove.
9441         (SYMBOL_FLAG_SMALL_V4, SYMBOL_REF_SMALL_V4_P): New.
9442         * xcoff.h (TARGET_ENCODE_SECTION_INFO): Remove.
9443         (ASM_DECLARE_FUNCTION_NAME): Remove setting of SYMBOL_REF_FLAG.
9444
9445 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
9446
9447         * diagnostic.c (output_pointer): Use HOST_PTR_PRINTF.
9448
9449 2003-04-30  Andreas Schwab  <schwab@suse.de>
9450
9451         * doc/extend.texi (Other Builtins): Enclose multiple word data
9452         type in braces for @deftypefn.
9453
9454 2003-04-30  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9455
9456         * stor-layout.c (mode_for_size_tree): Use BLKmode if SIZE overflows.
9457
9458         * doc/install.texi (--enable-threads): Document "gnat" option.
9459
9460 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
9461
9462         * diagnostic.h (output_formatted_scalar): Tweak.
9463         * diagnostic.c (output_long_decimal): Likewise.
9464         (output_unsigned_decimal): Likewise.
9465         (output_long_unsigned_decimal): Likewise.
9466         (output_octal): Likewise.
9467         (output_long_octal): Likewise.
9468         (output_hexadecimal): Likewise.
9469         (output_long_hexadecimal): Likewise.
9470         (output_pointer): New function.
9471         (output_format): Use it.  Recognize "%p" format specifier.
9472
9473 2003-04-30  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9474
9475         * function.c (purge_addressof_1): Postpone insn in fewer cases.
9476
9477 2003-04-29  Geoffrey Keating  <geoffk@apple.com>
9478
9479         * config/rs6000/host-darwin.c (segv_handler): When -dH is used,
9480         call abort() after running out of stack space.
9481
9482         * c-typeck.c (function_types_compatible_p): Ignore incompatible
9483         'volatile' qualifiers on a function's return type in GNU mode.
9484
9485 2003-04-29  Aldy Hernandez  <aldyh@redhat.com>
9486
9487         * expr.c (emit_group_load): Dump parallels of simd types to
9488         memory.
9489
9490 2003-04-29  Vladimir Makarov  <vmakarov@redhat.com>
9491
9492         * genautomata.c (add_vect): Check undefined value for range type
9493         too.
9494
9495 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
9496
9497         * configure.in:  More general test for cmp --ignore-initial.
9498         * configure:  Regenerate.
9499
9500 2003-04-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9501
9502         * stor-layout.c (mode_for_size_tree): Use tree_low_cst.
9503         (layout_decl, place_field): Likewise.
9504         Also make minor type and whitespace changes.
9505
9506         * tree.c (save_expr): Don't fold a COMPONENT_REF.
9507
9508 2003-04-29  Olivier Hainque <hainque@act-europe.fr>
9509
9510         * calls.c (expand_call): When modes of target and valreg match, force
9511         sibcall failure when target is a MEM.
9512
9513 2003-04-29  Geoffrey Keating  <geoffk@apple.com>
9514
9515         * tree-inline.c (inlinable_function_p): Don't support inlining
9516         functions using varargs.
9517
9518         * doc/invoke.texi (Overall Options): Mention -x objective-c-header.
9519
9520         * dwarf2out.c (output_call_frame_info): No need to output EH
9521         unwind information if all_throwers_are_sibcalls.
9522
9523         * c-semantics.c (expand_unreachable_stmt): Return a tree.
9524         (expand_stmt): Update for change to expand_unreachable_stmt.
9525         (expand_unreachable_if_stmt): Likewise.
9526
9527         * Makefile.in (quickstrap): Pass BOOT_CFLAGS to submake.
9528
9529 2003-04-29  Jason Merrill  <jason@redhat.com>
9530
9531         PR middle-end/10336
9532         * jump.c (never_reached_warning): Really stop looking if we reach
9533         the beginning of the function.
9534
9535 2003-04-29  Bob Wilson  <bob.wilson@acm.org>
9536
9537         * config/xtensa/elf.h (SIZE_TYPE, PTRDIFF_TYPE, USER_LABEL_PREFIX):
9538         Remove redundant macros.
9539         (WCHAR_TYPE, WCHAR_TYPE_SIZE): Change to "short unsigned int".
9540         (LOCAL_LABEL_PREFIX): Define unconditionally.
9541         (NO_DOT_IN_LABEL): Clarify comment.
9542         * config/xtensa/linux.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Add explicit
9543         definition to "long int".
9544
9545 2003-04-29  Alexander Kabaev  <kan@FreeBSD.ORG>
9546
9547         bootstrap/10452
9548         * gengtype-yacc.y: Improve portability.
9549
9550 2003-04-29  Zack Weinberg  <zack@codesourcery.com>
9551
9552         * config.gcc: Install obsolete target list for GCC 3.3.
9553         * doc/install.texi: Mention in specific-target instructions
9554         that certain configurations are deprecated.
9555
9556 2003-04-29  Zack Weinberg  <zack@codesourcery.com>
9557
9558         * tree.h: Delete no-checking definition of CST_OR_CONSTRUCTOR_CHECK.
9559
9560 2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
9561
9562         * c-pragma.c (maybe_apply_renaming_pragma): Fix typo.
9563         * gcc.c (display_help): Likewise.
9564         * toplev.c (f_options): Likewise.
9565         * params.def (PARAM_MAX_INLINE_SCOPE): Likewise.
9566         * config/c4x/c4x.h (TARGET_SWITCHES): Likewise.
9567         * config/mcore/mcore.h (TARGET_SWITCHES): Likewise.
9568         * config/s390/s390.h (TARGET_SWITCHES): Likewise.
9569         * config/v850/v850.h (TARGET_SWITCHES): Likewise.
9570
9571 2003-04-29  J"orn Rennecke <joern.rennecke@superh.com>
9572
9573         * varasm.c (default_assemble_visibility): Use assemble_name.
9574
9575 2003-04-29  David O'Brien  <obrien@FreeBSD.org>
9576
9577         * config/i386/freebsd64.h (LINK_SPEC): Mirror FreeBSD linker.
9578         * config/rs6000/freebsd.h (LINK_SHLIB_SPEC): New macro.
9579         (SIZE_TYPE): New macro.
9580         * config/i386/freebsd-aout.h (NO_PROFILE_COUNTERS): New macro.
9581         (SET_ASM_OP): New macro.
9582         (HANDLE_SYSV_PRAGMA): New macro.
9583         (ASM_WEAKEN_LABEL): New macro.
9584
9585 2003-04-28  Mark Mitchell  <mark@codesourcery.com>
9586
9587         PR c++/10180
9588         * tree-inline.c (expand_call_inline): Call push_srcloc when
9589         encountering EXPR_WITH_FILE_LOCATION.  Honor warn_inline.
9590
9591 2003-04-28  Mike Stump  <mrs@apple.com>
9592
9593         * gdbinit.in: Update to reflect new identifier structure.
9594
9595 2003-04-28  Zack Weinberg  <zack@codesourcery.com>
9596
9597         * tree.h (TREE_CST_RTL, CST_OR_CONSTRUCTOR_CHECK): Delete.
9598         (struct tree_int_cst, struct tree_real_cst, struct tree_string,
9599         struct tree_complex, struct tree_vector): Remove RTL field.
9600         (CONSTRUCTOR_ELTS): Use elt 0.
9601         * tree.def (CONSTRUCTOR): Delete first of its two operands.
9602         * varasm.c (output_constant_def): Remove early exit if
9603         TREE_CST_RTL is set.  Don't set TREE_CST_RTL.
9604         (decode_addr_const): Don't mention TREE_CST_RTL in comment.
9605         * target.h (select_section): Don't mention TREE_CST_RTL in comment.
9606         * doc/tm.texi (encode_section_info): Don't talk about TREE_CST_RTL.
9607
9608 2003-04-28  Jakub Jelinek  <jakub@redhat.com>
9609
9610         * c-decl.c (finish_decl): When prototype with asmspec is found
9611         for built-in, adjust built_in_decls as well as expr.c decls.
9612         * expr.c (init_block_move_fn, init_block_clear_fn): New functions.
9613         (emit_block_move_libcall_fn, clear_storage_libcall_fn): Use it.
9614         * expr.c (init_block_move_fn, init_block_clear_fn): New prototypes.
9615
9616 2003-04-28  Richard Henderson  <rth@redhat.com>
9617
9618         * config/sparc/sparc.c (print_operand): Add 's' to sign-extend.
9619         * config/sparc/sparc.md (const_mulsidi3_v8plus): Fix mode of
9620         integral constant mult operand.
9621         (const_mulsidi3_sp32, const_mulsidi3_sp64): Likewise.
9622         (const_smulsi3_highpart_v8plus): Likewise.
9623         (const_smulsi3_highpart): Likewise.
9624         (const_umulsidi3_sp32): Likewise; sign-extend it in the output.
9625         (const_umulsidi3_sp64, const_umulsidi3_v8plus): Likewise.
9626         (const_umulsi3_highpart_v8plus): Likewise.
9627         (const_umulsi3_highpart): Likewise.
9628
9629 2003-04-28  David O'Brien  <obrien@FreeBSD.org>
9630
9631         * config/i386/x86-64.h (NO_PROFILE_COUNTERS, HAVE_AS_DWARF2_DEBUG_LINE):
9632         Define as 1.
9633
9634 2003-04-28  David O'Brien  <obrien@FreeBSD.org>
9635
9636         * config/i386/i386.h (builtin_define): Add __amd64 and __amd64__.
9637
9638 2003-04-28  Jakub Jelinek  <jakub@redhat.com>
9639
9640         * builtins.def (BUILT_IN_BCOPY, BUILT_IN_MEMMOVE): New.
9641         * builtin-types.def (BT_FN_VOID_CONST_PTR_PTR_SIZE): New.
9642         * builtins.c (expand_builtin_memmove, expand_builtin_bcopy): New
9643         functions.
9644         (expand_builtin): Handle BUILT_IN_BCOPY and BUILT_IN_MEMMOVE.
9645
9646 2003-04-28  Nick Clifton  <nickc@redhat.com>
9647
9648         * config/arm/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Remove definition.
9649
9650 2003-04-27  Zack Weinberg  <zack@codesourcery.com>
9651
9652         * expr.c (expand_expr <COMPLEX_CST, STRING_CST>): Always call
9653         output_constant_def, use its result instead of TREE_CST_RTL (exp).
9654         Can assume it has the form (mem (symbol_ref ".LCxxx")).
9655         (expand_expr <COMPONENT_REF>): Can always just extract the
9656         relevant field of a CONSTRUCTOR.
9657         (expand_expr <ARRAY_REF, COMPONENT_REF, BIT_FIELD_REF,
9658         ARRAY_RANGE_REF>): Make control flow explicit.
9659         * varasm.c (output_constant_def): Can look at TREE_CST_RTL of
9660         an INTEGER_CST.
9661
9662 2003-04-27  Kazu Hirata  <kazu@cs.umass.edu>
9663
9664         * reload1.c (reg_set_luid): Fix a comment typo.
9665
9666 2003-04-27  Zack Weinberg  <zack@codesourcery.com>
9667
9668         * varasm.c (const_str_htab_hash, const_str_htab_eq, STRHASH,
9669         struct deferred_string, const_str_htab): Kill.
9670         (n_deferred_strings): New static variable.
9671         (build_constant_desc): Set SYMBOL_REF_DECL of the new
9672         symbol_ref to point to the constant.
9673         (output_constant_def): When a deferred string is forced out,
9674         just clear STRING_POOL_ADDRESS_P and decrement n_deferred_strings.
9675         (mark_constant): Likewise.
9676         (maybe_output_constant_def_contents): When deferring a string
9677         constant, just set STRING_POOL_ADDRESS_P and increment
9678         n_deferred_strings.
9679         (mark_constant_pool): Check n_deferred_strings, not the size
9680         of const_str_htab.
9681         (init_varasm_once): No need to create const_str_htab.
9682
9683         * rtl.def, rtl.h, doc/rtl.texi: Document possibility that
9684         SYMBOL_REF_DECL points to a constant.
9685
9686 2003-04-26  Zack Weinberg  <zack@codesourcery.com>
9687
9688         * varasm.c (output_constant_def): Split out two new static
9689         functions, build_constant_desc and maybe_output_constant_def_contents.
9690         Restructure for comprehensibility.  Don't call
9691         output_addressed_constants.  Treat defstr being non-NULL for
9692         STRING_POOL_ADDRESS_P constants as an invariant.
9693         (struct deferred_string): Remove labelno field.
9694         (output_constant_def_contents): Kill labelno argument. Call
9695         output_addressed_constants here.  Use ASM_OUTPUT_LABEL, not
9696         asm_out.internal_label.
9697         (mark_constant): Update call to output_constant_def_contents.
9698         Treat defstr being non-NULL for STRING_POOL_ADDRESS_P
9699         constants as an invariant.
9700
9701 2003-04-26  Richard Henderson  <rth@redhat.com>
9702
9703         * config/i386/i386.c (output_pic_addr_const): Use SYMBOL_REF_LOCAL_P.
9704         (ix86_expand_call, ix86_rtx_consts): Likewise.
9705
9706 2003-04-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9707
9708         * doc/md.texi (cmpstr): Document additional restrictions.
9709
9710 2003-04-26  Neil Booth  <neil@daikokuya.co.uk>
9711
9712         * flags.h (time_report): Remove.
9713         * timevar.c (timevar_enable): New.
9714         (TIMEVAR_ENABLE): Remove, use timevar_enable.
9715         (timevar_init): Rename from init_timevar.
9716         * timevar.h (timevar_init): Rename from init_timevar.
9717         * toplev.c (time_report): Make static.
9718         (do_compile): Conditionally call init_timevar first.
9719         (preprocess_options): Move some code to do_compile.
9720
9721 2003-04-26  Stephane Carrez  <stcarrez@nerim.fr>
9722
9723         * doc/install.texi (Binaries): Mention binaries for HC11/HC12.
9724
9725 2003-04-26  Neil Booth  <neil@daikokuya.co.uk>
9726
9727         * _cpp_lex_direct: Remove pointless code.
9728
9729 2003-04-26 Stephane Carrez <stcarrez@nerim.fr>
9730
9731         * doc/extend.texi (Function Attributes): Document "near" and "far"
9732         for 68HC11 and 68HC12.
9733
9734 2003-04-25  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9735
9736         * expr.c (store_field): When making temporary for store, don't
9737         make it TYPE_QUAL_CONST.
9738
9739 2003-04-25  Phil Edwards  <pme@gcc.gnu.org>
9740
9741         * toplev.c (read_integral_parameter):  Use "argument" in error
9742         message to distinguish it from actual invalid options.
9743
9744 2003-04-25  Bob Wilson  <bob.wilson@acm.org>
9745
9746         * config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Back out previous
9747         addition of __PIC__ and __pic__ macros.
9748         * config/xtensa/xtensa.h: Clean up indentation.
9749
9750 2003-04-25  Bob Wilson  <bob.wilson@acm.org>
9751
9752         * config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Remove definition of
9753         _GNU_SOURCE.  Add definitions of __PIC__ and __pic__.
9754         (SUBTARGET_CPP_SPEC): Define.
9755         (LIB_SPEC): Delete.
9756         * config/xtensa/xtensa-protos.h (xtensa_declare_object): Delete.
9757         * config/xtensa/xtensa.c (xtensa_declare_object): Delete.
9758         * config/xtensa/xtensa.h (CPP_SPEC, SUBTARGET_CPP_SPEC, EXTRA_SPECS):
9759         Define.
9760         (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Delete.
9761         (ASM_OUTPUT_ALIGNED_BSS, BSS_SECTION_ASM_OP): Define.
9762
9763 2003-04-25  H.J. Lu <hjl@gnu.org>
9764
9765         * config/ia64/ia64.c (ia64_expand_compare_and_swap): Add rmode
9766         for return mode.
9767         (ia64_expand_builtin): Set rmode to SImode for
9768         IA64_BUILTIN_BOOL_COMPARE_AND_SWAP_SI,
9769         IA64_BUILTIN_VAL_COMPARE_AND_SWAP_SI and
9770         IA64_BUILTIN_BOOL_COMPARE_AND_SWAP_DI. Set remode to DImode
9771         for IA64_BUILTIN_VAL_COMPARE_AND_SWAP_DI.
9772
9773 2003-04-25  Phil Edwards  <pme@gcc.gnu.org>
9774
9775         * configure.in (make_compare_target):  Test for GNU cmp and set this
9776         variable appropriately.
9777         * Makefile.in (compare, compare3, compare4, compare-lean, compare3-lean,
9778         compare4-lean): Rename actual targets to slowcompare*.  New compare*
9779         targets depend on names based on make_compare_target.
9780         * configure:  Regenerated.
9781
9782 2003-04-25  Richard Henderson  <rth@redhat.com>
9783
9784         * config/ia64/ia64.c (ia64_compute_frame_size): Allow inline asm
9785         to clobber ar.pfs and ar.unat.
9786         (ia64_expand_prologue): Force alloc instruction if ar.pfs saved;
9787         fix test for spilling ar.pfs to the stack.
9788
9789 2003-04-25  Richard Henderson  <rth@redhat.com>
9790
9791         PR opt/10315
9792         * config/rs6000/rs6000.c (rs6000_emit_move): Only elide proper
9793         checks during reload; use validize_mem instead of adjust_address.
9794
9795 2003-04-26  Ben Elliston  <bje@wasabisystems.com>
9796
9797         * config/arm/arm.c (arm_adjust_cost): Correct logic that tests the
9798         return values from recog_memoized().
9799
9800 2003-04-24  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9801
9802         PR opt/8705
9803         * gcse.c (try_replace_reg): On a successful substitution of a constant
9804         into a single set, try to simplify the source of the set.
9805         * loop.c (scan_loop): Don't try to optimize a MODE_CC set with a
9806         constant source.
9807
9808 2003-04-24  Neil Booth  <neil@daikokuya.co.uk>
9809
9810         * cpplex.c (cpp_token_len): Tighten up.
9811         (cpp_token_as_text): Need extra byte now.
9812         * cpplib.c (glue_header_name): Need extra 2 bytes.
9813         * cppmacro.c (cpp_macro_definition): Need extra byte.
9814
9815 2003-04-24  Alexander Kabaev <kan@FreeBSD.ORG>
9816
9817         * config/sparc/sparc.md (umulsidi3, mulsidi3): Avoid using
9818         const_umulsidi3_sp32 and const_mulsidi3_sp32 on 64bit targets
9819         where they might be not present. Use their _sp64 equivalent
9820         instead.
9821
9822 Thu Apr 24 20:42:12 CEST 2003  Jan Hubicka  <jh@suse.cz>
9823
9824         * i386.md (cvtsi2sdq): Fix typo in previous patch.
9825
9826 2003-04-24  Krister Walfridsson  <cato@df.lth.se>
9827
9828         * configure.in: Check whether mbstowcs works.
9829         * configure, config.in: Regenerate.
9830         * intl.c: Use HAVE_WORKING_MBSTOWCS.
9831
9832 2003-04-24  H.J. Lu <hjl@gnu.org>
9833
9834         * config/ia64/ia64.c (ia64_init_builtins): Add si_ftype_pdi_di_di
9835         for __sync_bool_compare_and_swap_di for int return type.
9836
9837         * config/ia64/ia64intrin.h (__sync_bool_compare_and_swap_di):
9838         Change return type to int.
9839         (__sync_bool_compare_and_swap): Likewise.
9840
9841 Thu Apr 24 16:55:26 CEST 2003  Jan Hubicka  <jh@suse.cz>
9842
9843         * cfgbuild.c (make_edges):  Do not use next_nonnote_insn when
9844         looking for fallthru edge.
9845
9846         * athlon.md (athlon-agu, athlon-store, athlon-fany, athlon-faddmul):
9847         Fix.
9848         (athlon-load2, athlon-store2, athlon-fpsched, athlon-fpload,
9849         athlon-fvector): New.
9850         (athlon_*): Revisit to match new optimization guide.
9851         * i386.c (ix86_adjust_cost):  Fix memory operand costs on Athlon/k8
9852         * i386.md (cvt??2?? patterns): Fix modes.
9853         (fistp patterns): Set modes.
9854
9855         Accidentaly commited with my earlier reload patch:
9856         PR c/10308
9857         * reload.c (find_reloads_address_1): Reload plus at the place of
9858         index register.
9859
9860 2003-04-24  Nathan Sidwell  <nathan@codesourcery.com>
9861
9862         New GCOV_TAG_FUNCTION layout
9863         * coverage.c (struct function_list): Replace name with ident.
9864         (struct counts_entry): Likewise.
9865         (fn_ident): New.
9866         (htab_counts_entry_hash, htab_counts_entry_eq,
9867         htab_counts_entry_del): Adjust.
9868         (reads_count_file, get_coverage_counts,
9869         coverage_begin_output, coverage_end_function): Adjust.
9870         (build_fn_info_type, build_fn_info_value): Likewise.
9871         * gcov-dump.c (tag_function): Adjust.
9872         * gcov-io.c (gcov_write_string, gcov_read_string): Not in LIBGCOV.
9873         * gcov-io.h (gcov_write_string, gcov_read_string): Not in LIBGCOV.
9874         * gcov.c (struct function_info): Add ident.
9875         (read_graph_file, read_count_file): Adjust.
9876         * libgcov.c (gcov_exit): Adjust.
9877
9878 2003-04-23  Richard Henderson  <rth@redhat.com>
9879
9880         PR opt/8300
9881         * toplev.c (rest_of_compilation): Delay no_new_pseudos until
9882         after initialize_uninitialized_subregs; update reg info assuming
9883         new pseudos were created.
9884
9885 2003-04-23  Neil Booth  <neil@daikokuya.co.uk>
9886
9887         * Makefile.in (c-lex.o, LIBCPP_OBJS, cpplex.o): Update.
9888         * c-lex.c (MULTIBYTE_CHARS): Remove conditionals.
9889         (lex_string): Take cpp_string with full spelling.
9890         (cb_ident): Update.
9891         (c_lex): Update diagnostics.
9892         * cpplex.c (SPELL_NUMBER, SPELL_STRING): Combine into SPELL_LITERAL.
9893         (create_literal): New.
9894         (lex_string): Unterminated literals have type CPP_OTHER.
9895         (_cpp_lex_direct): Update calls to lex_string.  Use create_literal
9896         for CPP_OTHER.
9897         (cpp_token_len, cpp_spell_token, cpp_output_token): Simplify.
9898         (_cpp_equiv_tokens, cpp_interpret_charconst): Update.
9899         * cpplib.c (parse_include, do_line, do_linemarker,
9900         destringize_and_run): Update for token storing full spelling.
9901         * cpplib.h: Update token spelling types.
9902         * cppmacro.c (stringify_arg, check_trad_stringification):
9903         Update for token storing full spelling.
9904
9905 2003-04-23  Ulrich Weigand  <uweigand@de.ibm.com>
9906
9907         * config/s390/s390.c (s390_expand_cmpstr): Disable CLC loop.
9908
9909 2003-04-23  Richard Earnshaw  <rearnsha@arm.com>
9910
9911         * arm.h (TARGET_OPTIONS): Add value field.
9912
9913 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
9914
9915         * doc/extend.texi: Remove duplicate 2003 copyright date.
9916
9917 2003-04-23  Nathan Sidwell  <nathan@codesourcery.com>
9918
9919         * Makefile.in (LIBGCC_DEPS): Add gcov headers.
9920         (libgcov.a): Depends on LIBGCC_DEPS.
9921         * basic-block.h (profile_info): Moved here from coverage.h. Made
9922         a pointer.
9923         * coverage.c (struct function_list): Fixed array of counter types.
9924         (struct counts_entry): Keyed by counter type, contains summary.
9925         (profile_info): Moved to profile.c.
9926         (prg_ctr_mask, prg_n_ctrs, fn_ctr_mask, fn_n_ctrs): New global
9927         vars.
9928         (profiler_label): Remove.
9929         (ctr_labels): New.
9930         (set_purpose, label_for_tag, build_counter_section_fields,
9931         build_counter_section_value, build_counter_section_data_fields,
9932         build_counter_section_data_values, build_function_info_fields,
9933         build_function_info_value, gcov_info_fields, gcov_info_value): Remove.
9934         (build_fn_info_type, build_fn_info_value, build_ctr_info_type,
9935         build_ctr_info_value, build_gcov_info): New.
9936         (htab_counts_entry_hash, htab_counts_entry_eq): Adjust.
9937         (reads_counts_file): Adjust.
9938         (get_coverage_counts): Takes counter number. Add summary
9939         parameter. Adjust.
9940         (coverage_counter_ref): Tkaes counter number. Adjust. Lazily
9941         create counter array labels.
9942         (coverage_end_function): Adjust.
9943         (create_coverage): Adjust.
9944         (find_counters_section): Remove.
9945         * coverage.h (MAX_COUNTER_SECTIONS): Remove.
9946         (struct section_info, struct profile_info): Remove.
9947         (profile_info): Moved to basic-block.h.
9948         (coverage_counter_ref): Takes a counter number.
9949         (get_coverage_counts): Takes a counter number. Added summary
9950         parameter.
9951         (find_counters_section): Remove.
9952         * gcov-dump.c (tag_arc_counts): Rename to ...
9953         (tag_counters): ... here. Adjust.
9954         (tag_table): Move tag_counters to 3rd entry. Remove
9955         PROGRAM_PLACEHOLDER and PROGRAM_INCORRECT entries.
9956         (dump_file): Check for counter tag values here.
9957         (tag_summary): Adjust.
9958         * gcov-io.c (gcov_write_summary, gcov_read_summary): Adjust.
9959         * gcov-io.h (GCOV_LOCKED): New.
9960         (GCOV_TAG_ARC_COUNTS): Rename to ...
9961         (GCOV_TAG_COUNTS_BASE): ... here.
9962         (GCOV_TAG_PLACEHOLDER_SUMMARY, GCOV_TAG_INCORRECT_SUMMARY):
9963         Remove.
9964         (GCOV_COUNTER_ARCS, GCOV_COUNTERS, GCOV_NAMES): New.
9965         (GCOV_TAG_FOR_COUNTER, GCOV_COUNTER_FOR_TAG,
9966         GCOV_TAG_IS_COUNTER): New.
9967         (struct gcov_ctr_summary): New.
9968         (struct gcov_summary): Adjust.
9969         (struct gcov_counter_section): Remove.
9970         struct gcov_counter_section_data): Remove.
9971         (struct gcov_function_info): Rename to ...
9972         (struct gcov_fn_info): ... here. Adjust.
9973         (struct gcov_ctr_info): New.
9974         (struct gcov_info): Adjust.
9975         * gcov.c (read_count_file): Adjust.
9976         (output_lines): Adjust.
9977         * libgcov.c (gcov_exit): Adjust.
9978         (__gcov_flush): Adjust.
9979         * mklibgcc.in (libgcc2_c_dep): Add gcov headers.
9980         * predict.c (maybe_hot_bb_p, probably_cold_bb_p,
9981         probably_never_executed_bb_p, compute_frequency_function): Adjust
9982         profile_info use.
9983         * profile.c (struct counts_entry): Remove.
9984         (profile_info): Define here.
9985         (get_exec_counts): Adjust get_coverage_counts call.
9986         (compute_branch_probablilities): Remove find_counters_section
9987         call.
9988         (gen_edge_profiler): Adjust coverage_counter_ref call.
9989         * tracer.c (tail_duplicate): Adjust profile_info use.
9990
9991 2003-04-23  Roger Sayle  <roger@eyesopen.com>
9992
9993         PR optimization/10339
9994         * builtins.c (expand_builtin_strcmp): Try to emit cmpstrsi insn
9995         directly instead of unsafely transforming call into a memcmp.
9996         (expand_builtin_strncmp): Likewise.
9997
9998 2003-04-22  Roger Sayle  <roger@eyesopen.com>
9999
10000         * alias.c (mark_constant_function):  Check for constancy and
10001         purity even of void functions.  Update both the function decl
10002         and the cgraph RTL info with the results.
10003
10004 2003-04-22  Roger Sayle  <roger@eyesopen.com>
10005
10006         * real.c (do_add): Change to return a bool indicating that the
10007         result of the operation may be inexact due to loss of precision.
10008         (do_multiply): Likewise.
10009         (do_divide): Likewise.
10010
10011 2003-04-22  Geoffrey Keating  <geoffk@apple.com>
10012             Loren James Rittle  <ljrittle@acm.org>
10013
10014         * dwarf2out.c (fde_table_allocated): Mark with GTY.
10015         (decl_die_table_allocated): Likewise.
10016         (abbrev_die_table_allocated): Likewise.
10017         (line_info_table_allocated): Likewise.
10018         (separate_line_info_table_allocated): Likewise.
10019         (pubname_table_allocated): Likewise.
10020         (arange_table_allocated): Likewise.
10021         (ranges_table_allocated): Likewise.
10022         (decl_die_table_in_use): Unconditionalize; mark with GTY.
10023         (abbrev_die_table_in_use): Likewise.
10024         (line_info_table_in_use): Likewise.
10025         (separate_line_info_table_in_use): Likewise.
10026         (pubname_table_in_use): Likewise.
10027         (arange_table_in_use): Likewise.
10028         (ranges_table_in_use): Likewise.
10029         (have_location_lists): Likewise.
10030         (emitcount): New GTY-marked static, moved...
10031         (maybe_emit_file): ...from here.
10032         (label_num): New GTY-marked static, moved...
10033         (gen_internal_sym): ...from here.
10034
10035 2003-04-22  Richard Henderson  <rth@redhat.com>
10036
10037         PR 8866
10038         * rtl.h (MEM_NOTRAP_P): New.
10039         (MEM_COPY_ATTRIBUTES): Copy it.
10040         * rtlanal.c (may_trap_p): Check it.
10041         * expr.c (do_tablejump): Set it.
10042         * doc/rtl.texi (Flags): Document it.
10043
10044         * cfgrtl.c (try_redirect_by_replacing_jump): Revert last three changes.
10045
10046 2003-04-22  Olivier Hainque  <hainque@act-europe.fr>
10047
10048         * config/alpha/alpha.c (alpha_expand_prologue [OPEN_VMS_ABI]): Don't
10049         set FRP on stack adjustment for outgoing args if frame_pointer_needed.
10050
10051 2003-04-22  Vincent Celier <celier@gnat.com>
10052
10053         * gthr-gnat.h, gthr-gnat.c: new sources for implementation of
10054         --enable-threads=gnat.
10055         * Makefile.in: Add gthr-gnat.c to LIB2ADDEH.
10056         * configure.in: Add gnat to the list of thread packages
10057         * configure: Rebuild.
10058         * config/t-linux: Add gthr-gnat.c to LIB2ADDEH and LIB2ADDEHDEP
10059
10060 2003-04-22  Neil Booth  <neil@daikokuya.co.uk>
10061
10062         * cpplex.c (_cpp_get_fresh_line): Pop the buffer if return_at_eof.
10063
10064 2003-04-22  Devang Patel  <dpatel@apple.com>
10065
10066         * cpptrad.c (_cpp_replacement_text_len): Add check for macro
10067         parameter count.
10068         (_cpp_copy_replacement_text): Same.
10069
10070 2003-04-22  Neil Booth  <neil@daikokuya.co.uk>
10071
10072         * c-lex.c (c_lex): Handle CPP_OTHER differently.
10073         * cppexp.c (_cpp_parse_expr): Similarly.
10074         * cpplex.c (SPELL_CHAR): Remove.
10075         (_cpp_lex_direct): Stray chars are saved as byte strings.
10076         (cpp_spell_token, cpp_output_token, _cpp_equiv_token): Don't
10077         handle SPELL_CHAR.
10078         (cpp_avoid_paste): Update handling of CPP_OTHER.
10079         * cpplib.h: Spell CPP_OTHER like a number.
10080         (struct cpp_token): Remove member c.
10081         * cppmacro.c (stringify_arg): Update handling of CPP_OTHER.
10082
10083 2003-04-22  David Turner <novalis@gnu.org>
10084
10085         * gbl-ctors.h: Add special license exception.
10086         * libgcc2.h: Likewise.
10087         * tsystem.h: Likewise.
10088         * gcov-io.h: Likewise.
10089
10090 2003-04-22  David Edelsohn  <edelsohn@gnu.org>
10091
10092         * fold-const.c (fold_range_test): Use RANGE_TEST_NON_SHORT_CIRCUIT
10093         macro defaulting to original BRANCH_COST heuristic.
10094         * doc/tm.texi (RANGE_TEST_NON_SHORT_CIRCUIT): Document.
10095
10096         * config/rs6000/rs6000.h (RANGE_TEST_NON_SHORT_CIRCUIT): Define.
10097
10098 2003-04-22  Aldy Hernandez  <aldyh@redhat.com>
10099
10100         * config/rs6000/t-spe: Merge in t-fprules into file.
10101
10102         * config.gcc: Add t-spe to powerpc-eabispe.
10103
10104 2003-04-22  Kean Johnston  <jkj@sco.com>
10105
10106         * tlink.c (recompile_files): Add missing '=' to putenv calls
10107
10108 2003-04-22  Nathan Sidwell  <nathan@codesourcery.com>
10109
10110         * ginclude/stddef.h: Provide C++ safe offsetof.
10111
10112 2003-04-22  J"orn Rennecke <joern.rennecke@superh.com>
10113
10114         * function.c (purge_addressof_1): In (mem (addressof (reg))) case
10115         for reg notes, if there are no substitutions, just use a SUBREG.
10116
10117 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
10118
10119         * Makefile.in (calls.o): Depend on except.h.
10120         * calls.c: Include except.h.
10121         (emit_call_1): Call note_eh_region_may_contain_throw if
10122         appropriate.
10123         * except.c (eh_region): Add may_contain_throw.
10124         (expand_eh_region_end_cleanup): Do not include handler code when
10125         it cannot be reached.
10126         (note_eh_region_may_contain_throw): New function.
10127         * except.h (note_eh_region_may_contain_throw): New function.
10128
10129 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
10130
10131         * config/i386/winnt.c (i386_pe_mark_dllimport): Revert previous
10132         changes.
10133
10134 2003-04-21  Aldy Hernandez  <aldyh@redhat.com>
10135
10136         * config/rs6000/rs6000.c (rs6000_override_options): No SPE means
10137         64-bit long doubles.
10138
10139 2003-04-21  Olivier Hainque  <hainque@act-europe.fr>
10140
10141         * fold-const.c (fold, case PLUS_EXPR and case MULT_EXPR): Restore
10142         a number of conversions required for type consistency and previously
10143         stripped off by STRIP_NOPS.
10144
10145         * calls.c (expand_call): Prevent sibcall optimization for calls to
10146         nested subprograms.
10147
10148         * expmed.c (extract_bit_field): Reverse operands of && condition to
10149         prevent a potential division by zero in the previously first branch.
10150         * config/pa/pa.md (extv, extzv): FAIL if the bitfield length is zero.
10151
10152 2003-04-21  Joel Brobecker  <brobecker@gnat.com>
10153
10154         * dwarf2out.c (is_ada, is_ada_subrange_type): New functions.
10155         (subrange_type_die): Likewise.
10156         (modified_type_die): Emit a subrange_type DIE for Ada subrange types.
10157         (is_c_family, is_cxx, is_java, is_fortran): Return bool and clean up.
10158
10159 2003-04-21  Nathan Sidwell  <nathan@codesourcery.com>
10160
10161         Break out coverage routines to new file.
10162         * Makefile.in (COVERAGE_H): New variable
10163         (C_OBJS): Add coverage.o
10164         (coverage.o): New target.
10165         (profile.o, loop-init.o, sched-ebb.o, predict.o, tracer.o): Adjust
10166         dependencies.
10167         (GTFILES): Adjust.
10168         (gt-coverage.h): New target.
10169         (gt-profile.h): Remove.
10170         * profile.h: Remove. Move to ...
10171         * coverage.h: ... here. New. #include gcov-io.h.
10172         * gcov-io.h: Move function definitions to ...
10173         * gcov-io.c: ... here. New.
10174         * profile.c: Move coverage routines to coverage.c.
10175         (instrument_edges, get_exec_counts, branch_prob, init_branch_prob,
10176         end_branch_prob): Adjust.
10177         * coverage.c: New. Coverage routines from profile.c
10178         (coverage_counter_ref, coverage_init, coverage_finish,
10179         coverage_end_function, coverage_begin_output,
10180         coverage_counter_ref, get_coverage_counts): Define.
10181         * gcov-dump.c, gcov.c: #include gcov-io.c.
10182         * libgcov.c: Likewise. Adjust.
10183         * loop-init.c: Don't #include profile.h
10184         * tracer.c, predict.c, sched-ebb.c: Adjust #includes.
10185         * rtl.h: Add coverage prototypes.
10186         * toplev.c (compile_file): Init coverage, not branch_prob.
10187         Always call coverage_finish.
10188         (rest_of_compilation): Call coverage_end_function.
10189
10190 2003-04-21  Matt Kraai  <kraai@alumni.cmu.edu>
10191
10192         * config/rs6000/rs6000.md (*movsf_softfloat): Add "h" <- "0" case.
10193
10194 2003-04-21  Neil Booth  <neil@daikokuya.co.uk>
10195
10196         * c-ppoutput.c (cb_include): Don't take a cpp_token.
10197         * cppfiles.c: Don't undef strcmp.
10198         (find_include_file): Don't take a cpp_token.  Check for empty
10199         file names.
10200         (_cpp_execute_include, _cpp_compare_file_date): Don't take a cpp_token.
10201         (cpp_push_include): Simplify.
10202         * cpphash.h (_cpp_execute_include, _cpp_compare_file_date): Update.
10203         * cpplib.c (glue_header_name): Return the file name, not a cpp_token.
10204         (parse_include): Similary.  Don't check for zero-length filenames.
10205         (do_include_common, do_pragma_dependency): Update accordingly.
10206         * cpplib.h (struct cpp_callbacks): Change prototype of include.
10207
10208 2003-04-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10209
10210         * doc/rtl.texi (RTX_UNCHANGING_P): Point to true_dependence for
10211         details of conflict handling.
10212
10213         * fold-const.c (extract_muldiv, case CONVERT_EXPR): Detect case
10214         when conversion overflows.
10215
10216         * stor-layout.c (layout_decl): Don't set DECL_SIZE_UNIT if already set.
10217
10218         * expr.c (store_constructor): Set RTX_UNCHANGING_P if readonly_field_p
10219         before clearing.
10220
10221 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
10222
10223         * config/i386/winnt.c (i386_pe_mark_dllimport): Make the new RTL
10224         have the same form as the old RTL.
10225
10226 2003-04-21  Andreas Jaeger  <aj@suse.de>
10227
10228         * cppcharset.c (_cpp_valid_ucn): Cast field precision to int.
10229
10230 2003-04-20  Chris Lattner  <sabre@nondot.org>
10231             Zack Weinberg  <zack@codesourcery.com>
10232
10233         * c-common.h, c-semantics.c: Rename genrtl_decl_cleanup to
10234         genrtl_cleanup_stmt.  Correct comment at head of
10235         genrtl_cleanup_stmt (no such thing as a DECL_CLEANUP).
10236
10237         * stmt.c (struct nesting): Kill n_function_calls.
10238         (expand_start_bindings): Don't set
10239         thisblock->data.block.n_function_calls.
10240         (expand_end_bindings): Compare function_call_count against 0.
10241         (expand_cleanups): Kill DONT_DO argument; all callers passed
10242         NULL_TREE. All callers updated to match.
10243
10244 2003-04-20  Zack Weinberg  <zack@codesourcery.com>
10245
10246         * varasm.c (struct deferred_constant, defer_addressed_constants_flag)
10247         (defer_addressed_constants, output_deferred_addressed_constants): Kill.
10248         (output_constant_def): Remove code predicated on
10249         defer_addressed_constants_flag.
10250
10251         * output.h: Remove prototypes of deleted functions.
10252         * c-typeck.c (constructor_subconstants_deferred): Kill.
10253         (struct initializer_stack): Remove 'deferred' field.
10254         (start_init): Remove all references to the above.
10255         (finish_init): Likewise. Also remove never-executed call to
10256         output_deferred_addressed_constants.  Pull assignment to
10257         defstr out of if expression.
10258
10259 2003-04-20  Neil Booth  <neil@daikokuya.co.uk>
10260
10261         * cpphash.h (NOTE_ESC_NL, NOTE_ESC_SPACE_NL, NOTE_TRIGRAPH,
10262         NOTE_NEWLINE): Remove.
10263         * cpplex.c (_cpp_clean_line, _cpp_process_line_notes): Update
10264         to handle new form of line note type.
10265
10266 2003-04-20  Zack Weinberg  <zack@codesourcery.com>
10267
10268         * target.h (encode_section_info): Add new argument carrying
10269         the RTL to be modified by the hook.
10270
10271         * varasm.c (make_decl_rtl, output_constant_def): Update calls
10272         to encode_section_info.
10273         (default_encode_section_info): Take and use RTL argument,
10274         don't use TREE_CST_RTL or DECL_RTL.
10275         * output.h: Update prototype of default_encode_section_info.
10276         * config/darwin.h (ASM_DECLARE_OBJECT_NAME)
10277         (ASM_DECLARE_FUNCTION_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL):
10278         Update calls to encode_section_info.
10279
10280         * config/darwin.c, config/arm/arm.c, config/arm/pe.c
10281         * config/h8300/h8300.c, config/i386/winnt.c, config/m32r/m32r.c
10282         * config/m68hc11/m68hc11.c, config/m88k/m88k.c, config/mcore/mcore.c
10283         * config/mips/mips.c, config/mmix/mmix.c, config/pa/pa.c
10284         * config/romp/romp.c, config/rs6000/rs6000.c, config/s390/s390.c
10285         * config/v850/v850.c (TARGET_ENCODE_SECTION_INFO definitions):
10286         Take and use RTL argument, don't use TREE_CST_RTL or DECL_RTL,
10287         except for PE dllimport/dllexport.  Update calls to
10288         default_encode_section_info.
10289
10290         * config/darwin-protos.h, config/arm/arm-protos.h, config/i386-protos.h:
10291         Update prototypes.
10292
10293         * doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update.
10294
10295 2003-04-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10296
10297         PR/8705
10298         * pa.md (movccfp): New expander.
10299         (setccfp0, setccfp1): Rename to movccfp0 and movccfp1, respectively.
10300         Reverse fcmp conditions.
10301
10302 2003-04-20  Marek Michalkiewicz  <marekm@amelek.gda.pl>
10303
10304         * config/avr/avr.md (*cmpqi_sign_extend): Handle negative values
10305         of operand 1 correctly.
10306
10307 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
10308
10309         * cpplex.c (_cpp_lex_direct): Set BOL for CPP_EOF tokens.
10310         * gcov.c (output_lines): Don't be so fussy about going past EOF.
10311
10312 2003-04-20  Neil Booth  <neil@daikokuya.co.uk>
10313
10314         * Makefile.in (LIBCPP_OBJS): Add cppcharset.o.
10315         (cppcharset.o): New target.
10316         * c-lex.c (is_extended_char): Move to cppcharset.c.
10317         (utf8_extend_token): Delete.
10318         * cppcharset.c: New file.
10319         * cpphash.h (_cpp_valid_ucn): New.
10320         * cpplex.c (lex_identifier): Update prototype.
10321         (continues_identifier_p): Rename forms_identifier_p.  Handle UCN
10322         escapes.
10323         (maybe_read_ucs): Rename maybe_read_ucn.  Update to use code
10324         in cppcharset.c.
10325         (lex_number, lex_identifier, cpp_parse_escape): Update.
10326         (_cpp_lex_direct): Update to handle UCNs.
10327         (cpp_avoid_paste): Don't paste to form a UCN.
10328
10329 2003-04-19  Roger Sayle  <roger@eyesopen.com>
10330
10331         * builtins.c (expand_builtin):  Don't expand a pure or const
10332         built-in function if the result will be ignored and none of
10333         its arguments are volatile.
10334
10335 2003-04-19  Kean Johnston  <jkj@sco.com>
10336
10337         * unwind-dw2.c (_Unwind_GetCFA): cast return to avoid warning
10338         * config.gcc: make SCO use dbxelf.h and elfos.h; only use one
10339         target fragment now: t-sco5; dont compile crti.o.
10340         * config/i386/sco5.h: major overhaul to remove all COFF remnants
10341         and to use elfos.h for most definitions.
10342         (BSS_SECTION_ASM_OP): set correct segment attributes.
10343         (PREFERED_DEBUGGING_TYPE): set to DWARF-2.
10344         (DWARF2_UNWIND_INFO): Always set to 1.
10345         (MD_STARTFILE_PREFIX): Make /usr/gnu/lib the default.
10346         (MD_STARTFILE_PREFIX_1): Define.
10347         (MD_EXEC_PREFIX): Adjust to /usr/gnu/bin if using GAS.
10348         (DEFAULT_LINKER): Define if not specified to configure.
10349         (CTORS_SECTION_ASM_OP): Remove COFF crud.
10350         (DTORS_SECTION_ASM_OP): Remove COFF crud.
10351         (WINT_TYPE): Define.
10352         (SDB_DEBUGGING_INFO): Remove.
10353         (EXTRA_SECTIONS): Likewise.
10354         (EXTRA_SECTION_FUNCTIONS): Likewise.
10355         (CTOR_LIST_BEGIN): Likewise.
10356         (CTOR_LIST_END): Likewise.
10357         (INIT_SECTION_FUNCTION): Likewise.
10358         (FINI_SECTION_FUNCTION): Likewise.
10359         (SUBTARGET_FRAME_POINTER_REQUIRED): Likewise.
10360         (LOCAL_LABEL_PREFIX): Likewise.
10361         (NON_SAVING_SETJMP): Likewise.
10362         (RETURN_POPS_ARGS): Likewise.
10363         (ASM_OUTPUT_SKIP): Likewise.
10364         (TARGET_ASM_NAMED_SECTION): Likewise.
10365         (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
10366         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
10367         (ASM_OUTPUT_IDENT): Likewise.
10368         (ASM_OUTPUT_CASE_LABEL): Likewise.
10369         (ASM_OUTPUT_ASCII): Likewise.
10370         (ASM_OUTPUT_LIMITED_STRING): Likewise.
10371         (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
10372         (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
10373         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
10374         (ASM_FINISH_DECLARE_OBJECT): Likewise.
10375         (ASM_DECLARE_OBJECT_NAME): Likewise.
10376         (ASM_DECLARE_FUNCTION_SIZE): Likewise.
10377         (ASM_DECLARE_FUNCTION_NAME): Likewise.
10378         (ASM_DECLARE_RESULT): Likewise.
10379         (ASM_WEAKEN_LABEL): Likewise.
10380         (SUPPORTS_WEAK): Likewise.
10381         (APPLY_RESULT_SIZE): Likewise.
10382         (LPREFIX): Likewise.
10383         (ALIGN_ASM_OP): Likewise.
10384         (ASCII_DATA_ASM_OP): Likewise.
10385         (IDENT_ASM_OP): Likewise.
10386         (ASM_SHORT): Likewise.
10387         (ASM_LONG): Likewise.
10388         (TYPE_ASM_OP): Likewise.
10389         (SIZE_ASM_OP): Likewise.
10390         (STRING_ASM_OP): Likewise.
10391         (SKIP_ASM_OP): Likewise.
10392         (EH_FRAME_SECTION_ASM_OP): Likewise.
10393         (READONLY_DATA_SECTION_ASM_OP): Likewise.
10394         (INIT_SECTION_ASM_OP): Likewise.
10395         (FINI_SECTION_ASM_OP): Likewise.
10396         (TEXT_SECTION_ASM_OP): Likewise.
10397         (DATA_SECTION_ASM_OP): Likewise.
10398         (TYPE_OPERANT_FORMAT): Likewise.
10399         (ASM_SPEC): Remove COFF code.
10400         (STARTFILE_SPEC): Likewise. Always use crti.o; add -p and -pp support;
10401         cause -pg to emit an error; use pcrt1elf.o with -pp
10402         (ENDFILE_SPEC): Likewise.
10403         (TARGET_OS_CPP_BUILTINS): Add _SCO_DS_LL.
10404         (CPP_SPEC): Remove COFF crud; always look in /usr/gnu/include first.
10405         (LINK_SPEC): Remove COFF crud; use -E for environment switch not -R;
10406         add -z alt_resolve to support weak symbols the way GCC wants them.
10407         (LIB_SPEC): Use the profiler libraries in -p or -pp mode.
10408         (LIBGCC_SPEC): Dont use -lgcc in -G mode.
10409         (ASM_PREFERED_EH_DATA_FORMAT): Remove.
10410         * config/i386/t-sco5 (TARGET_LIBGCC2_CFLAGS): Remove.
10411         (CRTSTUFF_T_CFLAGS_S): Define.
10412         (MULTILIB_OPTIONS): Likewise.
10413         (MULTILIB_DIRNAMES): Likewise.
10414         (MULTILIB_MATCHES): Likewise.
10415         (MULTILIB_EXTRA_OPTS): Likewise.
10416         (LIBGCC): Likewise.
10417         (INSTALL_LIBGCC): Likewise.
10418         (crti.o): Remove.
10419         * config/i386/t-sco5gas: Remove.
10420         * doc/install.texi: Updated for new OpenServer instructions.
10421         * testsuite/gcc.dg/nest.c: Allow failure on SCO (-pg not supported)
10422
10423 2003-04-19  Kean Johnston  <jkj@sco.com>
10424
10425         * fixinc/check.tpl: Allow user to over-ride diff program.
10426         * fixinc/inclhack.def: Removed extraneous #ifndef SVR5.
10427         (sco_math): Added test for SCO math header files.
10428         (sco_regset): Added check for conflicts with ieeefp.h.
10429         (svr4_disable_opt): Removed extraneous #ifdef SVR4.
10430         * fixinc/fixincl.x: Regenerated
10431         * fixinc/tests/base/math.h: Added sco_math tests.
10432         * fixinc/tests/base/string.h: New file.
10433         * fixinc/tests/base/sys/regset.h: New file.
10434
10435 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
10436
10437         * cpphash.h (struct cpp_buffer): Remove backup_to.
10438         * cpplex.c (BACKUP, get_effective_char): Die.
10439         (_cpp_skip_block_comment): Assume '*' is location on entry.
10440         (continues_identifier_p): Respect -fno-dollars-in-identifiers.
10441         (IF_NEXT_IS): Update.
10442         (_cpp_lex_direct): Don't use backup_to; look ahead directly.
10443
10444 2003-04-19  Matt Kraai  <kraai@alumni.cmu.edu>
10445
10446         * README.Portability: Move to a new section and obsolete K+R
10447         portability issues.
10448
10449 Sat Apr 19 14:56:17 CEST 2003  Jan Hubicka  <jh@suse.cz>
10450
10451         * rtlanal.c (subreg_offset_representable_p):  Fix call of
10452         subreg_lowpart.
10453
10454 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
10455
10456         * cpphash.h (struct cpp_reader): New member warned_dollar.
10457         * cpplex.c (continues_identifier_p): New function.
10458         (parse_identifier, parse_number, parse_string): Rename lex_identifer,
10459         lex_number and lex_string, and simplify.
10460         (parse_slow, unescaped_terminator_p): Die.
10461         (_cpp_lex_direct): Update.
10462
10463 2003-04-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10464
10465         * calls.c (expand_call): Provide init for old_stack_pointer_delta.
10466
10467 2003-04-19  Nathan Sidwell  <nathan@codesourcery.com>
10468
10469         * doc/invoke.texi (-fprofile-arcs): Mention -lgcov, locking and
10470         fork behavior.
10471
10472 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
10473
10474         * cppexp.c (eval_token): Permit true and false even if pedantic.
10475
10476 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
10477
10478         * cpplex.c (skip_whitespace): Rearrange to avoid stage1 ICE.
10479
10480 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
10481
10482         * cppfiles.c (ENABLE_VALGRIND_CHECKING, VALGRIND_DISCARD,
10483         MMAP_THRESHOLD, TEST_THRESHOLD, SHOULD_MMAP): Remove.
10484         (struct include_file): Remove fefcnt, mapped members.
10485         (open_file, stack_include_file, _cpp_pop_file_buffer): Disable caching.
10486         (read_include_file): Don't use mmap, terminate buffers in '\r'.
10487         (purge_cache): Don't use munmap.
10488         * cpphash.h (CPP_BUF_COLUMN): Update.
10489         (lexer_state): Remove lexing_comment.
10490         (struct _cpp_line_note): New.
10491         (struct cpp_buffer): New members cur_note, notes_used, notes_cap,
10492         next_line and need_line.  Remove col_adjust and saved_flags.
10493         (_cpp_process_line_notes, _cpp_clean_line, _cpp_get_fresh_line,
10494         _cpp_skip_block_comment, scan_out_logical_line): New.
10495         (_cpp_init_mbchar): Remove.
10496         * cppinit.c (init_library): Remove call to _cpp_init_mbchar.
10497         (cpp_read_main_file): Set line to 1 earlier.
10498         (post_options): -traditional-cpp doesn't want trigraphs.
10499         * cpplex.c (MULTIBYTE_CHARS): Remove code predicated on this.
10500         (add_line_note, _cpp_clean_line, _cpp_process_line_notes,
10501         _cpp_get_fresh_line): New.
10502         (handle_newline, skip_escaped_newlines, trigraph_p,
10503         continue_after_nul, _cpp_init_mbchar): Remove.
10504         (get_effective_char): Update.
10505         (_cpp_skip_block_comment): Rename from skip_block_comment, simplify.
10506         (skip_line_comment): Simplify.
10507         (skip_whitespace, parse_identifier, parse_slow, parse_number,
10508         parse_string): Update.
10509         (cpp_lex_direct): Use clean lines and process line notes.  Update.
10510         (cpp_interpret_charconst): No MULTIBYTE_CHARS.
10511         * cpplib.c (prepare_directive_trad): Call scan_out_logical_line
10512         directly.
10513         (_cpp_handle_directive): Don't set saved_flags.
10514         (run_directive, destringize_and_run, cpp_define, cpp_define_builtin,
10515         cpp_undef, handle_assertion, cpp_push_buffer): Update.
10516         (_cpp_pop_buffer): Free notes.
10517         * cppmacro.c (builtin_macro, paste_tokens): \n terminate buffer.
10518         * cpppch.c (cpp_read_state): \n terminate buffer.
10519         * cpptrad.c (skip_escaped_newlines, handle_newline): Remove.
10520         (copy_comment): Use _cpp_skip_block_comment.
10521         (skip_whitespace, lex_identifier, _cpp_read_logical_line_trad):
10522         Simplify.
10523         (_cpp_overlay_buffer, _cpp_remove_overlay, push_replacement_text,
10524         save_replacement_text): Update.
10525         (scan_out_logical_line): Update to use clean lines and process
10526         line notes.
10527         * fix-header.c (read_scan_file): Update.
10528
10529 2003-04-18  Douglas B Rupp  <rupp@gnat.com>
10530
10531         * unwind-dw2-fde.c (__register_frame_info_bases): Check for
10532         null begin parameter (as well as pointer to null).
10533         (__deregister_frame_info_bases): Likewise.
10534
10535 2003-04-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10536
10537         * function.c (purge_addressof_1): For ADDRESSOF, see if SUB is a
10538         hard or virtual register and copy into pseudo if replacement fails.
10539
10540         * cfgcleanup.c (flow_find_cross_jump): Use INSN_P, not active_insn_p.
10541
10542         * expmed.c (mask_rtx): Avoid undefined shifts for BITSIZE of 0.
10543
10544 2003-04-18  Olivier Hainque <hainque@act-europe.fr>
10545
10546         * calls.c (expand_call): Move special case for constructor calls
10547         to right place. Ensures constructor calls used to initialize
10548         arguments get a clean outgoing argument block for themselves.
10549         Move check for stack deallocation completeness until after last
10550         deallocation.  Add stack_pointer_delta to set of state
10551         variables saved and restored along with current stack_level.
10552
10553         * integrate.c (expand_inline_function): Ensure non-const actuals
10554         don't end up const in the caller's flow after conversion to possibly
10555         const formal type.
10556
10557 2003-04-18  Vincent Celier  <celier@gnat.com>
10558
10559         * dwarf2out.c (loc_descriptor_from_tree): Treat all *_MOD_EXPR
10560         and *_DIV_EXPR as TRUNC_*_EXPR.
10561
10562 2003-04-18  Mark Mitchell  <mark@codesourcery.com>
10563
10564         * cfgrtl.c (try_redirect_by_replacing_jump): Create a basic block
10565         for orphaned jump tables.
10566
10567 2003-04-18  Kazu Hirata  <kazu@cs.umass.edu>
10568
10569         * reload1.c: Revert my previous patch on 2002-04-17.
10570
10571 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
10572
10573         * doc/contrib.texi (Contributors): Prefer "bug fix" over "bugfix".
10574         Add Segher Boessenkool.
10575
10576 2003-04-18  Alexander Sotirov  <sluncho@mirizma.org>
10577
10578         PR c/9177
10579         * c-decl.c (c_expand_body): Don't garbage collect the function
10580         body if we are going to dump it later.
10581
10582 2003-04-18  Richard Henderson  <rth@redhat.com>
10583
10584         * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): Remove.
10585         (alpha_end_function): Don't set them.
10586         (decl_in_text_section): Remove.
10587         (alpha_encode_section_info): Remove.
10588         (samegp_function_operand): Use SYMBOL_REF LOCAL_P and EXTERNAL_P.
10589         (direct_call_operand): Use SYMBOL_REF_DECL and compare actual
10590         sections, rather than decl_in_text_section results.
10591
10592 2003-04-18  Roger Sayle  <roger@eyesopen.com>
10593
10594         * rtlanal.c (reg_overlap_mentioned_p): Handle ZERO_EXTRACT
10595         and SIGN_EXTRACT.
10596
10597 2003-04-18  Eric Botcazou  <ebotcazou@libertysurf.fr>
10598
10599         PR optimization/7675
10600         * c-typeck.c (build_external_ref): Set the DECL_NONLOCAL flag
10601         on VAR_DECL, PARM_DECL and FUNCTION_DECL from within
10602         nested functions if they refer to declarations from parent functions.
10603         * stmt.c (expand_decl): Don't put automatic variables in registers
10604         if the DECL_NONLOCAL flag is set.
10605
10606 2003-04-18  Hans-Peter Nilsson  <hp@bitrange.com>
10607
10608         * gcse.c (compute_ld_motion_mems): For MEM destinations, only
10609         consider those to be movable where the source matches
10610         want_to_gcse_p.
10611         (update_ld_motion_stores): In comment, refer to
10612         compute_ld_motion_mems for validity of replacement.
10613
10614 Fri Apr 18 01:28:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
10615
10616         * gcov-dump.c (tag_summary): Remove max_sum
10617         * gcov-io.h (gcov_summary, gcov_write_summary,
10618         gcov_read_summary): Kill max_sum.
10619         * libgcov.c (gcov_exit): Do one pass over the data.  Make error
10620         message more verbose.
10621
10622         * emit-rtl.c (subreg_hard_regno):  Check that register is
10623         representable.
10624
10625         * reload.c (reload_inner_reg_of_subreg):  When register is not
10626         representable, reload the whole thing.
10627         (find_reloads): Likewsie.
10628         * rtlanal.c (subreg_representable_p):  New function.
10629
10630         * profile.c (compute_branch_probabilities):  Cleanup sanity checking;
10631         allow negative probabilities for edges from the call to exit.
10632         (branch_prob): Do not add fake edges for functions that may return
10633         twice.
10634
10635 2003-04-17  DJ Delorie  <dj@redhat.com>
10636
10637         * toplev.c (target_options): Add value field.
10638         (set_target_switch): Handle target options with values.
10639         * doc/tm.texi: Document how fixed vs variable target
10640         options work.
10641         * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
10642         config/c4x/c4x.h, config/cris/aout.h, config/cris/cris.h,
10643         config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
10644         config/frv/frv.h, config/i386/i386.h, config/ia64/ia64.h,
10645         config/m32r/m32r.h, config/m68hc11/m68hc11.h,
10646         config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
10647         config/mips/mips.h, config/mmix/mmix.h, config/pa/pa.h,
10648         config/rs6000/rs6000.h, config/rs6000/sysv4.h,
10649         config/s390/s390.h, config/sparc/sparc.h, config/v850/v850.h:
10650         Add value initializer to target options.
10651
10652 2003-04-07  Loren James Rittle  <ljrittle@acm.org>
10653
10654         * cpppch.c (cpp_valid_state): Unconditionally initialize nl.
10655
10656 2003-04-17  Kazu Hirata  <kazu@cs.umass.edu>
10657
10658         * reload1.c (move2add_last_cc0): New.
10659         (reload_cse_move2add): Detect implicit sets.
10660         (move2add_note_store): Notice a store into cc0.
10661
10662 2003-04-17  Roger Sayle  <roger@eyesopen.com>
10663
10664         PR c/10375
10665         * c-decl.c (duplicate_decls): Preserve "const" and "noreturn"
10666         function attributes.
10667
10668 2003-04-17  Janis Johnson  <janis187@us.ibm.com>
10669
10670         * doc/sourcebuild.texi (Test Suites): Document support for testing
10671         binary compatibility (moved from testsuite/README.compat).
10672
10673 2003-04-17  Richard Henderson  <rth@redhat.com>
10674
10675         * config/ia64/ia64.c (ia64_in_small_data_p): Disallow strings.
10676
10677 2003-04-17  Simon Law  <sfllaw@engmail.uwaterloo.ca>
10678
10679         * doc/include/gpl.texi: Fix double-spacing after "MA" to match
10680         the one provided by the FSF.
10681
10682 2003-04-17  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
10683
10684         * doc/install.texi (Binaries): Update URL and list of platforms
10685         provided by ftp.thewrittenword.com.
10686
10687 2003-04-17  Richard Henderson  <rth@redhat.com>
10688
10689         * config/xtensa/xtensa.c (xtensa_encode_section_info): Remove.
10690         (call_insn_operand): Use SYMBOL_REF_LOCAL_P.
10691         * config/xtensa/xtensa.md (call, call_value): Likewise.
10692
10693 2003-04-17  Richard Henderson  <rth@redhat.com>
10694
10695         * config/v850/v850.c (print_operand): Use SYMBOL_REF_[ZST]DA.
10696         (print_operand_address): Likewise.
10697         (ep_memory_operand): Likewise.
10698         (special_symbolref_operand): Likewise.
10699         (v850_encode_data_area): Use SYMBOL_REF_FLAGS.
10700         (v850_encode_section_info): Call default_encode_section_info.
10701         (v850_strip_name_encoding): Remove.
10702         * config/v850/v850.h (EXTRA_CONSTRAINT): Use SYMBOL_REF_[ZST]DA.
10703         (ASM_OUTPUT_LABELREF): Remove.
10704         (ZDA_NAME_FLAG_CHAR, ZDA_NAME_P): Remove.
10705         (SDA_NAME_FLAG_CHAR, SDA_NAME_P): Remove.
10706         (TDA_NAME_FLAG_CHAR, TDA_NAME_P): Remove.
10707         (ENCODED_NAME_P): Remove.
10708         (SYMBOL_FLAG_ZDA, SYMBOL_REF_ZDA_P): New.
10709         (SYMBOL_FLAG_SDA, SYMBOL_REF_SDA_P): New.
10710         (SYMBOL_FLAG_TDA, SYMBOL_REF_TDA_P): New.
10711
10712 2003-04-17  Richard Henderson  <rth@redhat.com>
10713
10714         * config/stormy16/stormy16.c (xstormy16_encode_section_info): Kill.
10715         * config/stormy16/stormy16.h (ASM_OUTPUT_SYMBOL_REF): Use
10716         SYMBOL_REF_FUNCTION_P.
10717
10718 2003-04-17  Richard Henderson  <rth@redhat.com>
10719
10720         * config/sparc/sparc.c (sparc_encode_section_info): Remove.
10721         (data_segment_operand): Use SYMBOL_REF_FUNCTION_P.
10722         (text_segment_operand): Likewise.
10723
10724 2003-04-17  Richard Henderson  <rth@redhat.com>
10725
10726         * config/sh/sh.c (gen_datalabel_ref): Don't add SH_DATALABEL_ENCODING.
10727         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
10728         (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
10729         (sh_encode_section_info): Remove.
10730         (sh_strip_name_encoding): Remove.
10731         * config/sh/sh.h (SH_DATALABEL_ENCODING): Remove.
10732         (DATALABEL_SYMNAME_P, STRIP_DATALABEL_ENCODING): Remove.
10733         (SH_TLS_ENCODING, TLS_SYMNAME_P, STRIP_TLS_ENCODING): Remove.
10734         (ASM_OUTPUT_LABELREF): Remove.
10735         (ASM_OUTPUT_SYMBOL_REF): Use SYMBOL_REF_FUNCTION_P.
10736         * config/sh/sh.md (*): Use SYMBOL_REF_LOCAL_P.
10737
10738 2003-04-17  Richard Henderson  <rth@redhat.com>
10739
10740         * config/s390/s390.c (SYMBOL_FLAG_ALIGN1): New.
10741         (tls_model_chars): Remove.
10742         (larl_operand): Use SYMBOL_REF_FLAGS.
10743         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
10744         (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
10745         (s390_output_mi_thunk): Likewise.
10746         (s390_emit_prologue): Set SYMBOL_FLAG_LOCAL as needed.
10747         (s390_function_profiler): Likewise.
10748         (s390_encode_section_info): Use default_encode_section_info
10749         and SYMBOL_FLAG_ALIGN1.
10750         (s390_strip_name_encoding): Remove.
10751         * config/s390/s390.h (ASM_OUTPUT_LABELREF): Remove.
10752         * config/s390/s390.md (call, call_value): Use SYMBOL_REF_LOCAL_P.
10753         (builtin_setjmp_receiver): Set SYMBOL_FLAG_LOCAL as needed.
10754
10755 2003-04-17  Richard Henderson  <rth@redhat.com>
10756
10757         * config/ns32k/ns32k.c (ns32k_encode_section_info): Remove.
10758         (global_symbolic_reference_mentioned_p): Use SYMBOL_REF_LOCAL_P.
10759         (print_operand_address): Likewise.
10760
10761         * config/ns32k/ns32k.h (CANNOT_CHANGE_MODE_CLASS): Add CLASS argument.
10762         * config/ns32k/ns32k.c (expand_block_move): Don't check
10763         flag_unroll_loops.
10764
10765 2003-04-17  Richard Henderson  <rth@redhat.com>
10766
10767         * config/mcore/mcore.c (mcore_encode_section_info): Don't set
10768         SYMBOL_REF_FLAG.
10769
10770 2003-04-17  Richard Henderson  <rth@redhat.com>
10771
10772         * rtl.h (SYMBOL_FLAG_MACH_DEP_SHIFT): New.
10773
10774         * config/m32r/m32r.c (SYMBOL_FLAG_MODEL_SHIFT): New.
10775         (SYMBOL_REF_MODEL): New.
10776         (LIT_NAME_P): Move from m32r.h.
10777         (m32r_select_section): Remove.
10778         (m32r_encode_section_info): Use SYMBOL_REF_FLAGS.
10779         (m32r_strip_name_encoding): Remove.
10780         (m32r_in_small_data_p): New.
10781         (small_data_operand): Use SYMBOL_REF_SMALL_P.
10782         (addr24_operand): Use SYMBOL_REF_MODEL.
10783         (call26_operand): Likewise.
10784         (addr32_operand): Tidy.
10785         (m32r_print_operand): Use HOST_WIDE_INT_PRINT_HEX.
10786         * config/m32r/m32r.h (RODATA_SECTION_ASM_OP): Remove.
10787         (SDATA_SECTION_ASM_OP, SBSS_SECTION_ASM_OP): Remove.
10788         (READONLY_DATA_SECTION_ASM_OP): Remove.
10789         (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
10790         (SDATA_SECTION_FUNCTION, SBSS_SECTION_FUNCTION): Remove.
10791         (TARGET_ASM_SELECT_SECTION): Remove.
10792         (SDATA_FLAG_CHAR, MEDIUM_FLAG_CHAR, LARGE_FLAG_CHAR): Remove.
10793         (SDATA_NAME_P, SMALL_NAME_P, MEDIUM_NAME_P): Remove.
10794         (LARGE_NAME_P, ENCODED_NAME_P): Remove.
10795         (ASM_OUTPUT_LABELREF): Remove.
10796
10797 2003-04-17  Richard Henderson  <rth@redhat.com>
10798
10799         * config/ip2k/ip2k.c (is_regfile_address): Use SYMBOL_REF_FUNCTION_P.
10800         (encode_section_info): Remove.
10801         * config/ip2k/ip2k-protos.h: Update.
10802
10803 2003-04-17  Richard Henderson  <rth@redhat.com>
10804
10805         * varasm.c (default_encode_section_info): Don't set
10806         SYMBOL_FLAG_EXTERNAL if not TREE_PUBLIC.
10807         * config/i370/i370.c (i370_encode_section_info): Remove.
10808         * config/i370/i370.h (CONSTANT_ADDRESS_P): Use SYMBOL_REF_EXTERNAL_P.
10809         (PRINT_OPERAND, PRINT_OPERAND_ADDRESS): Likewise.
10810         * config/i370/i370.md (movsi): Likewise.
10811
10812         * config/i370/t-i370: Add missing backslash.
10813
10814 2003-04-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
10815
10816         * doc/invoke.texi (inline-limit): Fix pasto.
10817
10818 2003-04-17  Richard Henderson  <rth@redhat.com>
10819
10820         * config/h8300/h8300.c (SYMBOL_FLAG_FUNCVEC_FUNCTION): New.
10821         (small_call_insn_operand): Use it.
10822         (SYMBOL_FLAG_EIGHTBIT_DATA): New.
10823         (h8300_eightbit_constant_address_p): Use it.
10824         (SYMBOL_FLAG_TINY_DATA): New.
10825         (h8300_tiny_constant_address_p): Use it.
10826         (h8300_encode_label, h8300_strip_name_encoding): Remove.
10827         (h8300_encode_section_info): Set SYMBOL_REF_FLAGS.
10828         * config/h8300/h8300.h (TINY_DATA_NAME_P): Remove.
10829         (ASM_OUTPUT_LABELREF): Remove.
10830
10831 2003-04-16  Richard Henderson  <rth@redhat.com>
10832
10833         * config/frv/frv.c (symbol_ref_small_data_p): Remove.  Replace
10834         all users with SYMBOL_REF_SMALL_P.
10835         (const_small_data_p): Use SYMBOL_REF_SMALL_P.
10836         (frv_encode_section_info): Remove.
10837         (frv_strip_name_encoding): Remove.
10838         (frv_in_small_data_p): Merge tests from encode_section_info.
10839         (frv_print_operand): Use '@' not SDATA_FLAG_CHAR.
10840         * config/frv/frv.h (SDATA_FLAG_CHAR): Remove.
10841         (SDATA_NAME_P): Remove.
10842         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Use SIZE not SDATA_NAME_P.
10843         (ASM_OUTPUT_LABELREF): Remove.
10844         (PRINT_OPERAND_PUNCT_VALID_P): Use '@' not SDATA_FLAG_CHAR.
10845
10846         * config/frv/frv.c (frv_asm_out_constructor): New.
10847         (frv_asm_out_destructor): New.
10848         * config/frv/frv.h (CTORS_SECTION_ASM_OP): New.
10849         (DTORS_SECTION_ASM_OP): New.
10850         (ASM_OUTPUT_CONSTRUCTOR): Remove.
10851         (ASM_OUTPUT_DESTRUCTOR): Remove.
10852
10853 2003-04-16  Richard Henderson  <rth@redhat.com>
10854
10855         * config/cris/cris.c (cris_gotless_symbol, cris_got_symbol): Use
10856         SYMBOL_REF_LOCAL_P; abort if not pic.
10857         (cris_encode_section_info): Remove.
10858
10859 2003-04-16  Richard Henderson  <rth@redhat.com>
10860
10861         * config/c4x/c4x.c (c4x_encode_section_info): Remove.
10862         (c4x_T_constraint): Use SYMBOL_REF_FUNCTION_P.
10863
10864         * config/c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): Declare
10865         flag_inline_trees.
10866
10867 2003-04-16  Richard Henderson  <rth@redhat.com>
10868
10869         * config/avr/avr.c (avr_encode_section_info): Remove.
10870         (avr_insert_attributes): New.
10871         (print_operand_address): Use SYMBOL_REF_FUNCTION_P.
10872         (avr_assemble_integer): Likewise.
10873
10874 2003-04-16  Richard Henderson  <rth@redhat.com>
10875
10876         * arc.c (arc_encode_section_info): Remove.
10877         (arc_assemble_integer): Use SYMBOL_REF_FUNCTION_P.
10878         (arc_print_operand, arc_print_operand_address): Likewise.
10879         * arc.h (EXTRA_CONSTRAINT): Likewise.
10880
10881 2003-04-16  Roger Sayle  <roger@eyesopen.com>
10882
10883         * c-semantics.c (find_reachable_label): New function to find a
10884         potentially reachable label in an expression.
10885         (expand_unreachable_if_stmt): Similar to expand_if_stmt but
10886         assumes the start of the IF_STMT is unreachable (dead) code.
10887         (expand_unreachable_stmt): Similar to expand_stmt but assumes
10888         the start of the statement list is unreachable (dead) code.
10889         (genrtl_if_stmt):  If the controlling expression of the IF
10890         is constant, use expand_unreachable_stmt for the THEN or ELSE
10891         clause as appropriate.
10892         (genrtl_switch_stmt):  Use expand_unreachable_stmt to expand
10893         the body of a SWITCH statement.
10894         (expand_stmt): The code immediately following a "return",
10895         "break", "continue" or "goto" is unreachable.
10896         * Makefile.in (c-semantics.o): Depend upon tree-inline.h.
10897
10898 2003-04-16  Richard Henderson  <rth@redhat.com>
10899
10900         * rtl.h (MEM_ALIAS_SET): Update documentation.
10901         * doc/rtl.texi (Special Accessors): New node.
10902         (SYMBOL_REF_FLAG): Note relationship with SYMBOL_REF_FLAGS.
10903
10904 2003-04-16  Alexandre Oliva  <aoliva@redhat.com>
10905
10906         * reload1.c (reload_cse_noop_set_p): Return false if mode of
10907         SET_DEST is not the same as that returned by...
10908         * cselib.h (cselib_reg_set_mode): ... new function.
10909         * cselib.c (cselib_reg_set_mode): Define it.
10910         (REG_VALUES): Document semantics of first element as set mode.
10911         (cselib_subst_to_values): Skip first element if ELT is NULL.
10912         (cselib_lookup): Likewise.  Insert past the first element.
10913         (cselib_invalidate_regno): NULLify first element.
10914         (cselib_record_set): Set first element.
10915
10916 2003-04-16  Olivier Hainque <hainque@act-europe.fr>
10917
10918         * tree.c (skip_simple_arithmetics_at, saved_expr_p): New functions.
10919         (save_expr): Replace loop by call to skip_simple_arithmetics_at.
10920         * tree.h: Add prototypes for the two new functions.
10921         * fold-const.c (fold_binary_op_with_conditional_arg): Replace test
10922         updates introduced in the previous revision by call to saved_expr_p.
10923         * stor-layout.c (put_pending_size): Use skip_simple_arithmetics_at.
10924
10925         * expr.c (store_field): Force usage of bitfield instructions when
10926         the field position requires it, whatever SLOW_UNALIGNED_ACCESS.
10927         (expand_expr, case BIT_FIELD_REF): likewise.
10928
10929 2003-04-16  Mark Mitchell  <mark@codesourcery.com>
10930
10931         PR middle-end/8866
10932         * cfgtrl.c (try_redirect_by_replacing_jump): Do not delete
10933         jumptables.
10934
10935 2003-04-16  Richard Henderson  <rth@redhat.com>
10936
10937         * config/ia64/ia64.c (sdata_symbolic_operand): Use
10938         SYMBOL_REF_SMALL_P and SYMBOL_REF_LOCAL_P.
10939         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
10940         (function_operand): Use SYMBOL_REF_FUNCTION_P.
10941         (ia64_expand_load_address): Likewise.
10942         (ia64_assemble_integer): Likewise.
10943         (ia64_encode_section_info): Remove.
10944         (ia64_strip_name_encoding): Remove.
10945         * config/ia64/ia64.h (ENCODE_SECTION_INFO_CHAR): Remove.
10946         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't strip it.
10947
10948 2003-04-16  Richard Henderson  <rth@redhat.com>
10949
10950         * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): New.
10951         (samegp_function_operand): Use SYMBOL_FLAG_SAMEGP.
10952         (direct_call_operand): Use SYMBOL_FLAG_NEAR.
10953         (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
10954         (small_symbolic_operand): Use SYMBOL_REF_SMALL_P.
10955         (global_symbolic_operand): Similarly.
10956         (tls_symbolic_operand_1): Use SYMBOL_REF_TLS_MODEL.
10957         (tls_symbolic_operand_type): Likewise.
10958         (alpha_encode_section_info): Use default_encode_section_info.
10959         (alpha_strip_name_encoding): Remove.
10960         (get_tls_get_addr): Split out from ...
10961         (alpha_legitimize_address): ... here.
10962         (alpha_emit_xfloating_libcall): Use init_one_libfunc.
10963         (get_some_local_dynamic_name_1): Use SYMBOL_REF_TLS_MODEL.
10964         (alpha_initialize_trampoline): Use init_one_libfunc.
10965         (alpha_setup_incoming_varargs): Mark unused parameters.
10966         (alpha_initial_elimination_offset): Likewise.
10967         (alpha_end_function): Use SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP.
10968         (unicosmk_unique_section): Use default_strip_name_encoding.
10969         (unicosmk_ssib_name, unicosmk_output_externs): Likewise.
10970
10971 2003-04-16  Aldy Hernandez  <aldyh@redhat.com>
10972
10973         * config.gcc: Add t-spe for eabispe.
10974
10975         * config/rs6000/t-spe: New.
10976
10977 2003-04-16  J"orn Rennecke <joern.rennecke@superh.com>
10978
10979         Re-apply this patch:
10980
10981         2002-05-16  Dale Johannesen  <dalej@apple.com>
10982           * combine.c (cant_combine_insn_p):  Reenable combinations
10983           involving hard regs unless CLASS_LIKELY_SPILLED_P.
10984
10985 2003-04-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10986
10987         PR/10271
10988         * pa-protos.h (function_arg): Remove last argument.
10989         * pa.c (function_arg): Likewise.  Use CUMULATIVE_ARGS struct instead.
10990         * pa.h (struct hppa_args): Add member incoming.
10991         (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Initialize
10992         member incoming.
10993         (FUNCTION_ARG): Revise call to function_arg.
10994         (FUNCTION_INCOMING_ARG): Delete.
10995
10996 2003-04-15  Zack Weinberg  <zack@codesourcery.com>
10997
10998         * configure.in: Unify the code which creates symlinks to a
10999         just-built as, ld, objdump, and nm with the code that detects
11000         their presence for purposes of feature tests.
11001         * configure: Regenerate.
11002
11003 2003-04-15  Zack Weinberg  <zack@codesourcery.com>
11004
11005         * varasm.c (output_constant_def): Do not consult
11006         CONSTANT_AFTER_FUNCTION_P.  Remove all code predicated on it.
11007         (after_function_constants, output_after_function_constants): Delete.
11008         * doc/tm.texi: Delete documentation of CONSTANT_AFTER_FUNCTION_P.
11009         * config/mips/mips-protos.h, config/mips/mips.c
11010         (mips16_constant_after_function_p): Delete.
11011         * config/mips/mips.h: Delete #if-0-ed definition of
11012         CONSTANT_AFTER_FUNCTION_P.
11013         * config/d30v/d30v.h, config/stormy16/stormy16.h: Remove
11014         mention of CONSTANT_AFTER_FUNCTION_P in comment.
11015
11016 2003-04-15  Geoffrey Keating  <geoffk@apple.com>
11017
11018         * tree.c (next_decl_uid): Mark with GTY.
11019         (next_type_uid): Likewise.
11020
11021 2003-04-15  J"orn Rennecke <joern.rennecke@superh.com>
11022
11023         PR target/9594:
11024         * sh.c (barrier_align): Also recognize stuff_delay_slot as
11025         an indicator that a barrier was created by branch splitting.
11026
11027 2003-04-15  Mark Mitchell  <mark@codesourcery.com>
11028
11029         * c-decl.c (implicitly_declare): Copy declarations that are going
11030         to be placed in a local scope.
11031
11032 2003-04-15  James A. Morrison  <ja2morri@uwaterloo.ca>
11033
11034         * invoke.texi (Spec Files): Wrap if-exists-else example.
11035         (MCore): Remove duplicate @itemx entries and @opindex entries.
11036
11037 2003-04-15  Ulrich Weigand  <uweigand@de.ibm.com>
11038
11039         * unwind.inc (_Unwind_Backtrace): New function.
11040         * unwind.h (_Unwind_Backtrace): Declare it.
11041         * libgcc-std.ver (_Unwind_Backtrace): Export it.
11042
11043 2003-04-14  Jason Merrill  <jason@redhat.com>
11044
11045         PR middle-end/10336, c++/10401
11046         * jump.c (never_reached_warning): Also stop looking if we reach the
11047         beginning of the function.
11048
11049 2003-04-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11050
11051         PR target/10338
11052         PR bootstrap/10198
11053         PR bootstrap/10140
11054         * fixinc/gnu-regex.c (regerror): Use mempcpy not __mempcpy.
11055
11056 2003-04-15  J"orn Rennecke <joern.rennecke@superh.com>
11057
11058         * i386.md (abssf2_if+1): Make condition agree with abssf2_1 .
11059
11060 2003-04-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11061
11062         * optabs.c (expand_binop): In multi-word add cases, ensure
11063         XTARGET is copied to TARGET if they are different.
11064
11065 2003-04-15  Olivier Hainque <hainque@act-europe.fr>
11066
11067         * except.c (resolve_fixup_regions): Avoid dereferencing null pointer
11068         to region, possible after integration of function with unreachable
11069         regions that were optimized away.
11070
11071 2003-04-15  Jakub Jelinek  <jakub@redhat.com>
11072
11073         * config/rs6000/rs6000.h (EPILOGUE_USES): Use register 2,
11074         instead of TOC_REGISTER in epilogue in
11075         current_function_calls_eh_return functions.
11076
11077 2003-04-14  Mark Mitchell  <mark@codesourcery.com>
11078
11079         * doc/extend.texi (Empty Structures): Correct description of G++'s
11080         handling of these structures.
11081
11082         * c-decl.c (grokdeclarator): Reject extern redeclarations of
11083         static variables.
11084
11085 2003-04-14  Janis Johnson  <janis287@us.ibm.com>
11086
11087         * config/rs6000/rs6000.md (define_constants): Define constants for
11088         all UNSPEC usage, including new values for TLS support.
11089         (aux_truncdfsf2, fctiwz, movsi_got, movsi_got_internal,
11090         load_toc_aix_si, load_toc_aix_di, load_toc_v4_pic_si,
11091         load_toc_v4_PIC_1, load_toc_v4_PIC_1b, load_macho_picbase,
11092         macho_correct_pic, blockage, move_from_CR_ov_bit, movesi_from_cr,
11093         stack_tie, movsi_to_cr_one, movsi_to_cr, mtcrfsi, eh_set_lr_si,
11094         eh_set_lr_di): Use them.
11095         * rs6000.c: (mtcrf_operation, uses_TOC, rs6000_emit_prologue,
11096         rs6000_emit_epilogue) Use them.
11097
11098         * rtl.h (SYMBOL_REF_TLS_MODEL): Fix mask value.
11099
11100 2003-04-14  Neil Booth  <neil@daikokuya.co.uk>
11101
11102         * Makefile.in (c-opts.o): Use custom action.
11103
11104 2003-04-14  Douglas B Rupp  <rupp@gnat.com>
11105
11106         * ifcvt.c (noce_process_if_block): Fail on BLKmode move.
11107
11108 2003-04-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11109
11110         * stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
11111         handle "superflat arrays" in Ada.
11112
11113         * integrate.c (expand_inline_function): Don't inline if would
11114         lose /u on a BLKmode TARGET.
11115
11116 2003-04-14  Joel Brobecker  <brobecker@gnat.com>
11117
11118         * dbxout.c (print_int_cst_bounds_in_octal_p): New function,
11119         extracted from dbxout_type.
11120         (dbxout_range_type): print large bounds in octal format.
11121         (dbxout_type): Replace extracted code by call to
11122         print_int_cst_bounds_in_octal_p.
11123
11124         * dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead
11125         of DW_LANG_Ada83 for Ada units.
11126
11127 2003-04-14  Olivier Hainque <hainque@act-europe.fr>
11128
11129         * explow.c (round_push): Use HOST_WIDE_INT instead of int for the
11130         temporary used to round CONST_INT sizes.
11131
11132         * tree.c (int_fits_type_p): Extract generic checks from the case
11133         of constant type bounds. Refine the checks against constant type
11134         bounds to allow for possible decisions against each of these bounds
11135         without requiring both bounds to be constant.
11136         (tree_int_cst_msb): Put back.
11137         * tree.h (tree_int_cst_msb): Likewise.
11138
11139         * global.c (global_conflicts): Prevent allocation of call clobbered
11140         hard regs to pseudos live across abnormal edges, as later passes are
11141         not ready to handle them.
11142
11143         * fold-const.c (fold): Reorder tests for conditional expressions.
11144
11145         * expr.c (highest_pow2_factor): Return unsigned.
11146         * expr.h (offset_address): Likewise.
11147         * emit-rtl.c (offset_address): POW2 argument now unsigned.
11148
11149 2003-04-14  Roger Sayle  <roger@eyesopen.com>
11150
11151         * builtins.c (expand_builtin_strlen):  Evaluate the lengths of
11152         string literals at compile-time.
11153
11154 2003-04-14  Roger Sayle  <roger@eyesopen.com>
11155
11156         * fold-const.c (fold):  Transform (c1 - x) cmp c2, where cmp is a
11157         comparison operation and c1/c2 are floating point constants into
11158         x swap(cmp) (c1 - c2).
11159
11160 2003-04-14  Vladimir Makarov  <vmakarov@redhat.com>
11161
11162         * genautomata.c (output_translate_vect): Fix a typo in loop
11163         condition.
11164
11165 2003-04-14  Hans-Peter Nilsson  <hp@axis.com>
11166
11167         PR target/10377
11168         * config/cris/cris.md ("*mov_sideqi", "*mov_sidehi")
11169         ("*mov_sidesi", "*mov_sideqi_mem", "*mov_sidehi_mem")
11170         ("*mov_sidesi_mem", "*clear_sidesi", "*clear_sidehi")
11171         ("*clear_sideqi", "*ext_sideqihi", "*ext_sideqisi")
11172         ("*ext_sidehisi", "*op_sideqi", "*op_sidehi", "*op_sidesi")
11173         ("*op_swap_sideqi", "*op_swap_sidehi", "*op_swap_sidesi")
11174         ("*extopqihi_side", "*extopqisi_side", "*extophisi_side")
11175         ("*extopqihi_swap_side", "*extopqisi_swap_side")
11176         ("*extophisi_swap_side", 8th, 9th, 10th, 11th, 14th peepholes):
11177         When next to constraint R, replace constraint i with n.
11178
11179 Mon Apr 14 16:18:37 CEST 2003  Jan Hubicka  <jh@suse.cz>
11180
11181         PR opt/10024
11182         * cfgrtl.c (force_nonfallthru_and_redirect): Use unchecked_make_edge.
11183
11184 2003-04-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11185
11186         * doc/contrib.texi (Contributors): Correct my entry.
11187
11188 2003-04-13  Roger Sayle  <roger@eyesopen.com>
11189
11190         * tree.h (DECL_BUILT_IN_NONANSI): Remove.
11191         * c-common.c (builtin_function_2): Don't set DECL_BUILT_IN_NONANSI.
11192         * c-decl.c (duplicate_decls): Use invariant DECL_BUILT_IN_NONANSI
11193         implies DECL_BUILT_IN to simplify logic.
11194         * print-tree.c (print_node): Don't dump DECL_BUILT_IN_NONANSI.
11195
11196 2003-04-13  Roger Sayle  <roger@eyesopen.com>
11197
11198         * builtin-types.def (BT_FN_STRING_CONST_STRING): New builtin type.
11199         (BT_FN_PTR_SIZE_SIZE): Likewise.
11200         * builtins.def (BUILT_IN_MALLOC, BUILT_IN_CALLOC, BUILT_IN_STRDUP):
11201         New built-in functions for malloc, calloc and strdup respectively.
11202         * calls.c (special_function_p): No need to handle malloc-like
11203         functions any longer.  ECF_MALLOC is set via built-in attributes.
11204
11205         * c-decl.c (duplicate_decls): Preserve pure and malloc attributes.
11206
11207         * doc/extend.texi: Document these new built-in functions.
11208
11209 2003-04-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11210
11211         * builtins.c (expand_builtin_memcpy): Add `endp' argument, use it.
11212         (expand_builtin_stpcpy): New.
11213         (expand_builtin): Add BUILT_IN_MEMPCPY & BUILT_IN_STPCPY.
11214         * builtins.def: Add mempcpy & stpcpy support.
11215         * doc/extend.texi (mempcpy, stpcpy): Document new builtins.
11216
11217 2003-04-13  Nick Clifton  <nickc@redhat.com>
11218
11219         * config/rs6000/rs6000.c: Replace occurrences of "GNU CC" with
11220         "GCC".
11221         * config/rs6000/40x.md, config/rs6000/603.md,
11222         config/rs6000/6xx.md, config/rs6000/7450.md, config/rs6000/7xx.md,
11223         config/rs6000/8540.md, config/rs6000/aix.h, config/rs6000/aix31.h,
11224         config/rs6000/aix3newas.h, config/rs6000/aix41.h,
11225         config/rs6000/aix43.h, config/rs6000/aix51.h,
11226         config/rs6000/aix52.h, config/rs6000/altivec-defs.h,
11227         config/rs6000/altivec.h, config/rs6000/altivec.md,
11228         config/rs6000/beos.h, config/rs6000/darwin.h,
11229         config/rs6000/eabi.h, config/rs6000/eabialtivec.h,
11230         config/rs6000/eabisim.h, config/rs6000/eabispe.h,
11231         config/rs6000/freebsd.h, config/rs6000/gnu.h,
11232         config/rs6000/host-darwin.c, config/rs6000/linux.h,
11233         config/rs6000/linux64.h, config/rs6000/linuxaltivec.h,
11234         config/rs6000/lynx.h, config/rs6000/mach.h, config/rs6000/mpc.md,
11235         config/rs6000/netbsd.h, config/rs6000/power4.md,
11236         config/rs6000/rios1.md, config/rs6000/rios2.md,
11237         config/rs6000/rs6000-c.c, config/rs6000/rs6000-modes.def,
11238         config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
11239         config/rs6000/rs6000.h, config/rs6000/rs6000.md,
11240         config/rs6000/rs64.md, config/rs6000/rtems.h, config/rs6000/spe.h,
11241         config/rs6000/spe.md, config/rs6000/sysv4.h,
11242         config/rs6000/sysv4le.h, config/rs6000/vxworks.h,
11243         config/rs6000/windiss.h, config/rs6000/xcoff.h: Likewise.
11244
11245 2003-04-13  Nick Clifton  <nickc@redhat.com>
11246
11247         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Delete
11248         support for -mcall-aix switch.
11249         * config/rs6000/eabiaix.h: Delete.
11250         * config/rs6000/rs6000.h (rs6000_abi): Remove ABI_AIX_NODESC.
11251         (RS6000_REG_SAVE, RS6000_SAVE_AREA, FP_ARGS_MAX_REG,
11252         RETURN_ADDRESS_OFFSET): Remove use of ABI_AIX_NODESC.
11253         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Likewise.
11254         * config/rs6000/rs6000.c (print_operand, rs6000_stack_info,
11255         debug_stack_info, output_function_profiler,
11256         rs6000_trampoline_size, rs6000_initialise_trampoline): Likewise.
11257         * config/rs6000/rs6000.md (call, call_value, call_nonlocal_sysv,
11258         call_indirect_nonlocal_sysv, call_value_indirect_nonlocal_sysv,
11259         call_value_nonlocal_sysv, sibcall_value_nonlocal_sysv,
11260         sibcall_nonlocal_sysv, sibcall_value_local64): Likewise.
11261         * config/rs6000/t-ppcgas (MULTILIB_OPTIONS): Remove mcall-aix
11262         multilibs.
11263         (MULTILIB_DIRNAMES): Remove mcall-aix directories.
11264         (MULTILIB_EXCEPTIONS): Delete.
11265         (MULTILIB_MATCHES): Remove mcall-aix matches.
11266
11267         * doc/fragments.texi: Replace -mcall-aix example with an ARM
11268         one.
11269         * doc/install.texi: Delete powerpc-*-eabiaix target.
11270         * doc/invoke.texi: Remove documentation of mcall-aix switch.
11271         * doc/tm.texi: Remove mcall-aix from example CPP_SPEC.
11272         * config.gcc: Delete powerpc-*-eabiaix target.
11273
11274 2003-04-13  Kazu Hirata  <kazu@cs.umass.edu>
11275
11276         * doc/invoke.texi: Fix typos.
11277         * doc/tm.texi: Likewise.
11278
11279 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
11280
11281         * c-typeck.c (digest_init, push_init_level): Use CONSTRUCTOR_ELTS.
11282
11283 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
11284
11285         * tree.c (build_constructor): New function.
11286         * tree.h: Prototype it.
11287
11288         * c-typeck.c (build_c_cast, pop_init_level)
11289         * profile.c (build_function_info_value, build_gcov_info_value)
11290         (create_profiler):
11291         Use build_constructor.
11292
11293         * builtins.c (expand_builtin_args_info): Remove #if 0 blocks.
11294
11295         * objc/objc-act.c (build_constructor):
11296         Rename objc_build_constructor. Use build_constructor.
11297         (build_objc_string_object, objc_add_static_instance)
11298         (init_def_list, init_objc_symtab, init_module_descriptor)
11299         (generate_static_references, build_selector_translation_table)
11300         (build_descriptor_table_initializer, generate_descriptor_table)
11301         (build_protocol_initializer, build_ivar_list_initializer)
11302         (generate_ivars_list, build_dispatch_table_initializer)
11303         (generate_dispatch_table, generate_protocol_list)
11304         (build_category_initializer, build_shared_structure_initializer):
11305         Update to match.
11306
11307 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
11308
11309         * intl.h: #define gcc_gettext_width to strlen when !ENABLE_NLS.
11310
11311 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11312
11313         * config/m68hc11/m68hc11-protos.h
11314         (m68hc11_eq_compare_operator): Declare
11315         * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register new predicate.
11316         * config/m68hc11/m68hc11.c (m68hc11_eq_compare_operator): New predicate
11317         (d_register_operand): Check the operand mode.
11318         (hard_addr_reg_operand): Likewise.
11319
11320 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11321
11322         * config/m68hc11/m68hc11.md ("decrement_and_branch_until_zero"): New
11323         pattern for dbcc/ibcc generation for 68HC12.
11324         ("doloop_end"): New pattern.
11325         ("m68hc12_dbcc_dec_hi"): New pattern for dbeq/dbne.
11326         ("m68hc12_dbcc_inc_hi"): New pattern for ibeq/ibne.
11327         ("m68hc12_dbcc_dec_qi"): New pattern.
11328         ("m68hc12_dbcc_inc_qi"): New pattern.
11329         (split): Add split for the above when we can't use dbcc/ibcc due to
11330         reloading.
11331         (peephole2): Add peephole2 to generate the above when possible.
11332
11333 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11334
11335         * config/m68hc11/m68hc11.md ("bitcmpqi" split): No need to test the
11336         mode of operand 0.
11337         (peephole2 optimize const load): Likewise for operand 2.
11338         ("*rotlhi3_with_carry"): Change pattern to a const 1 rotate which
11339         clobbers CC_REGNUM.
11340         ("*rotrhi3_with_carry"): Likewise.
11341         (ashift:DI 1 split): Update pattern to create the above rotate.
11342         (lshiftrt:DI 1 split): Likewise.
11343
11344 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11345
11346         * config/m68hc11/m68hc11.md (SOFT_Z_REGNUM): New constant.
11347         ("tstqi_z_used" split): Use it.
11348         ("cmphi_z_used"): Likewise.
11349         ("bitcmpqi_z_used"): Likewise; also use SP_REGNUM constant.
11350         ("cmpqi_z_used"): Likewise.
11351
11352 2003-04-12  Mark Mitchell  <mark@codesourcery.com>
11353
11354         PR c++/7910
11355         * config/i386/winnt.c (i386_pe_mark_dllimport): Fix thinko.
11356
11357 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
11358
11359         * configure.in: Check for wchar.h, mbstowcs, and wcswidth.
11360         * configure, config.in: Regenerate.
11361         * intl.c (gcc_gettext_width): New function.
11362         * intl.h: Prototype it.
11363
11364 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11365
11366         * config/m68hc11/m68hc11.h (TARGET_SWITCHES): Fix -mnominmax option;
11367         recognize -mnorelax.
11368         (reg_class): Add Z_OR_S_REGS to represent soft registers with Z
11369         (REG_CLASS_NAMES): Add its name.
11370         (REG_CLASS_CONTENTS): Define its content.
11371
11372 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
11373
11374         * config/m68hc11/larith.asm (memcpy): Use ARG macro to access stack
11375         parameters so that offsets are valid for far definition.
11376         (__mulsi3): Likewise and use ret to return.
11377         (___adddi3, ___subdi3, ___notdi2, ): Don't use it to save the result.
11378
11379 2003-04-12  David Edelsohn  <edelsohn@gnu.org>
11380
11381         * config/rs6000/rs6000.c (rs6000_hash_constant): Skip '0' fields.
11382
11383 2003-04-12  Alexandre Oliva  <aoliva@redhat.com>
11384
11385         * mklibgcc.in (libgcc-stage-start): For every multilib  directory
11386         containing a libgcc.a, move lib* to the corresponding stage dir.
11387
11388         * Makefile.in (stage1-start, stage2-start, stage3-start,
11389         stage4-start): Move $(SPECS) to specs in stage dir.
11390         (unstage1 unstage2 unstage3 unstage4): Move specs in stage dir
11391         back as $(SPECS).
11392
11393         * mklibgcc.in (libgcc-stage-start): Move into the stage directory
11394         object files from the non-libgcc/ multilib directories as well.
11395
11396 2003-04-11  Geoffrey Keating  <geoffk@apple.com>
11397
11398         * profile.c (read_counts_file): Initialise 'checksum'.
11399
11400         * emit-rtl.c (gen_rtx): Really correct typo.
11401
11402         PR c++/9393
11403         * doc/invoke.texi (Debugging Options): Document -frandom-seed.
11404         * configure.in: Check for gettimeofday.
11405         * tree.c (flag_random_seed): Define.
11406         (default_flag_random_seed): New.
11407         (append_random_chars): Use flag_random_seed rather than trying
11408         to acquire randomness here.
11409         * tree.h (default_flag_random_seed): Declare.
11410         * toplev.c (display_help): Add -frandom-seed and -fstack-limit-*
11411         descriptions.
11412         (decode_f_option): Handle -frandom-seed.
11413         (print_switch_values): Call default_flag_random_seed.
11414         * flags.h (flag_random_seed): Declare.
11415         * configure: Regenerate.
11416         * config.in: Regenerate.
11417         * config/alpha/t-crtfm: Use -frandom-seed.
11418
11419         * doc/extend.texi (Empty Structures): New.
11420
11421         * c-pch.c: Include flags.h.  Add comments to routines.
11422         (struct c_pch_validity): New.
11423         (get_ident): Update PCH file version number.
11424         (pch_init): Output current debugging type.
11425         (c_common_valid_pch): Check debugging type.
11426         * Makefile.in (c-pch.o): Update dependencies.
11427         * flags.h (debug_type_names): Declare.
11428         * toplev.c (debug_type_names): Move out of decode_g_option.
11429
11430 2003-04-11  Eric Christopher  <echristo@redhat.com>
11431
11432         * emit-rtl.c (gen_rtx): Fix typos.
11433
11434 2003-04-11  Richard Henderson  <rth@redhat.com>
11435
11436         * emit-rtl.c (gen_rtx): Zero '0' fields.
11437
11438 2003-04-11  Richard Henderson  <rth@redhat.com>
11439
11440         PR c++/10202
11441         * expr.c (expand_expr): Use COMPLETE_OR_UNBOUND_ARRAY_TYPE_P
11442         not COMPLETE_TYPE_P for re-invoking layout_decl.
11443
11444 2003-04-11  Simon Law  <sfllaw@engmail.uwaterloo.ca>
11445
11446         * doc/bugreport.texi: Fix paragraph breaking between sections
11447         in preparation for TeXinfo's paragraph indentation fixes.
11448         * doc/extend.texi: Ditto.
11449         * doc/invoke.texi: Ditto.
11450         * doc/objc.texi: Ditto.
11451         * doc/gcov.texi: Wrap 'gcov' in @command{}.
11452         * doc/invoke.texi (Darwin Options): Add a preamble.
11453
11454 2003-04-11  Richard Henderson  <rth@redhat.com>
11455
11456         * config/i386/i386.c (tls_model_chars): Remove.
11457         (ix86_encode_section_info, ix86_strip_name_encoding): Remove.
11458         (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
11459         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
11460         (tls_symbolic_operand_1): Likewise.
11461         (legitimate_pic_address_disp_p): Use SYMBOL_REF_LOCAL_P.
11462         * config/i386/i386.h (TARGET_ENCODE_SECTION_INFO): Remove.
11463         (TARGET_STRIP_NAME_ENCODING, ASM_OUTPUT_LABELREF): Remove.
11464         * config/i386/winnt.c (i386_pe_encode_section_info): Replace
11465         bits "copied from i386.h" with default_encode_section_info.
11466
11467 2003-04-11  Richard Henderson  <rth@redhat.com>
11468
11469         * rtl.def (SYMBOL_REF): Add two 0 fields.
11470         * gengtype.c (adjust_field_rtx_def): Handle them.
11471         * print-rtl.c (print_rtx): Print them.
11472         * rtl.h (SYMBOL_REF_DECL, SYMBOL_REF_FLAGS): New.
11473         (SYMBOL_FLAG_FUNCTION, SYMBOL_REF_FUNCTION_P): New.
11474         (SYMBOL_FLAG_LOCAL, SYMBOL_REF_LOCAL_P): New.
11475         (SYMBOL_FLAG_SMALL, SYMBOL_REF_SMALL_P): New.
11476         (SYMBOL_FLAG_TLS_SHIFT, SYMBOL_REF_TLS_MODEL): New.
11477         (SYMBOL_FLAG_EXTERNAL, SYMBOL_REF_EXTERNAL_P): New.
11478         (SYMBOL_FLAG_MACH_DEP): New.
11479         * optabs.c (init_one_libfunc): Zap fake SYMBOL_REF_DECL.
11480         * varasm.c (make_decl_rtl): Set SYMBOL_REF_DECL.
11481         (assemble_static_space): Set SYMBOL_REF_FLAGS.
11482         (assemble_trampoline_template): Likewise.
11483         (output_constant_def, force_const_mem): Likewise.
11484         (default_encode_section_info): New.
11485         * output.h: Declare it.
11486         * target-def.h (TARGET_ENCODE_SECTION_INFO): Use it.
11487
11488 2003-04-11  Richard Henderson  <rth@redhat.com>
11489
11490         * libfuncs.h (LTI_setbits, LTI_gcov_flush, LTI_gcov_init): New.
11491         (setbits_libfunc, gcov_flush_libfunc, gcov_init_libfunc): New.
11492         * optabs.c (init_optabs): Initialize them.
11493         (init_libfuncs): Use init_one_libfunc.
11494         * calls.c (expand_call): Use gcov_flush_libfunc.
11495         * expr.c (store_constructor): Use setbits_libfunc.
11496         * function.c (expand_main_function): Use init_one_libfunc.
11497         * profile.c (create_profiler): Use gcov_init_libfunc and DECL_RTL.
11498
11499 2003-04-11  Mark Mitchell  <mark@codesourcery.com>
11500
11501         * doc/c-tree.texi (Functions): Remove DECL_REAL_CONTEXT
11502         documentation; add DECL_FRIEND_CONTEXT.
11503
11504 2003-04-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11505
11506         * doc/install.texi (hppa): Update links for HP-UX patches.  Revise
11507         notes on linker selection and configuration for 64-bit HP-UX port.
11508         * doc/invoke.texi (hppa): Remove hppa text from description for
11509         -ffunction-sections and -fdata-sections.  Document -static, -nolibdld
11510         and -threads options.
11511
11512         * pa-hpux10.h (LIB_SPEC): Add link options to resolve dependency of
11513         libc.a on libdld.sl when -static is specified and -nolibdld is not
11514         specified.
11515         * pa64-hpux.h (LIB_SPEC): Likewise.
11516         * pa-hpux11.h (LIB_SPEC): Likewise.
11517         (LINK_SPEC): Add __gcc_plt_call as an undefined symbol when -shared
11518         is not specified.
11519
11520 2003-04-11  Zack Weinberg  <zack@codesourcery.com>
11521
11522         * config/darwin-c.c (darwin_pragma_unused): Use lookup_name,
11523         not IDENTIFIER_LOCAL_VALUE.
11524
11525 2003-04-11  Richard Henderson  <rth@redhat.com>
11526
11527         PR c/10201
11528         * expr.c (expand_expr): Move DECL_RTL frobbing ...
11529         * stor-layout.c (layout_decl): ... here.
11530
11531 2003-04-11  James A. Morrison <ja2morri@uwaterloo.ca>
11532
11533         * doc/invoke.texi: Eliminate extra white-space caused by
11534         @gccoptlist{ on its own line.
11535         * doc/invoke.texi: Ensured there are two spaces between each option.
11536         * doc/invoke.texi: Re-wrapped option lines that were too wide.
11537         Added @gol to options that didn't have them.
11538
11539 2003-04-11  Nathan Sidwell  <nathan@codesourcery.com>
11540
11541         * Makefile.in (loop-init.o): Do not depend on gcov-io.h,
11542         gcov-iov.h.
11543
11544         Simplify interface to gcov reading and writing.
11545         * gcov-io.h (gcov_file, gcov_position, gcov_length, gcov_buffer,
11546         gcov_alloc, gcov_modified, gcov_errored): Move into ...
11547         (struct gcov_var gcov_var): ... this static structure.
11548         (gcov_write_unsigned, gcov_write_counter, gcov_write_string):
11549         Return void.
11550         (gcov_read_unsigned, gcov_read_couter, gcov_read_string): Return
11551         read object.
11552         (gcov_read_bytes, gcov_write_bytes): Set error flag on error.
11553         (gcov_reserve_length): Remove.
11554         (gcov_write_tag): New.
11555         (gcov_write_length): Adjust.
11556         (gcov_read_summary, gcov_write_summary): Adjust.
11557         (gcov_eof, gcov_ok): Rename to ...
11558         (gcov_is_eof, gcov_is_error): ... here. Return error code.
11559         (gcov_save_position, gcov_resync): Rename to ...
11560         (gcov_position, gcov_seek): ... here.
11561         (gcov_skip, gcov_skip_string): Remove.
11562         (gcov_error): Remove.
11563         (gcov_open, gcov_close): Adjust.
11564         * gcov.c (find_source): Take const char *, copy it on allocation.
11565         (read_graph_file): Adjust.
11566         (read_count_file): Adjust.
11567         * libgcov.c (gcov_exit): Adjust.
11568         * gcov-dump.c (tag_function, tag_blocks, tag_arcs, tag_lines,
11569         tag_arc_counts, tag_summary): Return void. Adjust.
11570         (struct tag_format): Adjust proc member.
11571         (dump_file): Adjust gcov calls.
11572
11573 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
11574
11575         * Makefile.in (fixinc.sh): Pass BUILD_LIBERTY as LIBERTY to
11576         mkfixinc.sh.
11577         * fixinc/mkfixinc.sh (defs): Add LIBERTY.
11578         * configure.in (STMP_FIXINC, STMP_FIXPROTO): Don't disable on
11579         build != host sysrooted builds.
11580         * configure.in (SYSTEM_HEADER_DIR): Make sure it contains
11581         TARGET_SYSTEM_ROOT even on sysrooted natives.
11582         * configure: Rebuilt.
11583
11584 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
11585
11586         * c-decl.c (struct binding_level): Add shadowed_tags and
11587         function_body; remove this_block, tag_transparent, and
11588         subblocks_tag_transparent; update comments.
11589         (clear_binding_level, lookup_tag_reverse): Kill.
11590         (make_binding_level): Use ggc_alloc_cleared or memset.
11591         (lookup_tag): Remove struct binding_level* parameter.  All
11592         callers changed. Just look at IDENTIFIER_TAG_VALUE, and
11593         current_binding_level->tags if asked for thislevel_only or if
11594         we might have to diagnose "struct foo; union foo;"
11595         (pushlevel): Ignore argument.  Do not push another binding
11596         level on the transition from the parameters to the top level
11597         of the function body; just tweak the flags and proceed.
11598         (poplevel): Overhaul.  Clear IDENTIFIER_TAG_VALUEs; on exiting
11599         a function body, separate the parameter list from the
11600         top-level local variables.
11601         (set_block): Do nothing.
11602         (pushtag): Set IDENTIFIER_TAG_VALUE and add an entry to
11603         shadowed_tags if necessary.
11604         (warn_if_shadowing): Nuke the special case for local shadowing
11605         parameter.
11606         (pushdecl): Do not create a shadow entry if we are replacing
11607         an older decl in the same binding level.
11608         (pushdecl_function_level): Tweak for new way of indicating
11609         function scope.
11610         (shadow_tag_warned): Use TYPE_NAME, not lookup_tag_reverse.
11611         (start_function): Don't set subblocks_tag_transparent.
11612         (finish_function): Fix up the binding_level stack for totally
11613         empty functions.  Otherwise, don't call poplevel.
11614
11615         * c-common.c (shadow_warning): MANDATORY argument is no longer
11616         necessary.  Always use plain warning.
11617         * c-common.h: Update to match.
11618
11619         * cfglayout.c (scope_to_insns_initialize): Clear block when we
11620         hit the FUNCTION_DECL.
11621         * function.c: Do not create cyclic tree structure.
11622
11623 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
11624
11625         * c-tree.h (struct lang_identifier): Replace global_value,
11626         local_value members with symbol_value, tag_value.  Kill
11627         implicit_decl and limbo_value.
11628         (IDENTIFIER_GLOBAL_VALUE, IDENTIFIER_LOCAL_VALUE,
11629         IDENTIFIER_LIMBO_VALUE, IDENTIFIER_IMPLICIT_DECL,
11630         C_MISSING_PROTOTYPE_WARNED): Kill.
11631         (IDENTIFIER_SYMBOL_VALUE, IDENTIFIER_TAG_VALUE,
11632         C_DECL_IMPLICIT, C_DECL_ISNT_PROTOTYPE): New.
11633         (C_DECL_ANTICIPATED): Rename to C_DECL_INVISIBLE.
11634         (implicit_decl_warning, lookup_name_current_level,
11635         record_function_scope_shadow): Don't prototype.
11636         (pushdecl_function_level): Prototype.
11637
11638         * c-decl.c (truly_local_externals): New variable.
11639         (struct binding_level): Adjust commentary.
11640         (get_function_binding_level, clear_limbo_values,
11641         record_function_scope_shadow): Kill.
11642         (lookup_name_current_level, implicit_decl_warning): Are now static.
11643         (any_external_decl, record_external_decl): New static functions.
11644         (clone_underlying type): Split out of pushdecl.
11645         (c_print_identifier): Update to match changes to struct
11646         lang_identifier.
11647         (poplevel): Delete #if 0 block.  Make externals invisible
11648         instead of clearing their IDENTIFIER_SYMBOL_VALUEs.  Don't
11649         call clear_limbo_values.  Refer to IDENTIFIER_SYMBOL_VALUE not
11650         IDENTIFIER_GLOBAL_VALUE or IDENTIFIER_LOCAL_VALUE.
11651         (duplicate-decls): For real parm decl after a forward decl,
11652         set TREE_ASM_WRITTEN here.  Allow void foo(...) followed by
11653         foo(...) { } with only a warning.  Say whether a previous
11654         declaration was implicit.
11655         (warn_if_shadowing): Now handles all shadowing, not just
11656         local-over-local.  Clarify comments.
11657         (pushdecl): Rewritten.  There is no longer a distinction
11658         between global and local symbol values; they're all
11659         IDENTIFIER_SYMBOL_VALUE.  Call record_external_decl on all
11660         DECL_EXTERNAL decls, and use any_external_decl to check
11661         against previous externals.  Kill #if 0 blocks.  Don't
11662         tolerate error_mark_node being NULL.
11663         (pushdecl_top_level): Handle only those cases which
11664         Objective C (the only user) needs.
11665         (pushdecl_function_level): New function.
11666         (implicitly_declare): Create ordinary decls with
11667         C_DECL_IMPLICIT set.  Recycle old decls, however they got
11668         created.
11669         (lookup_name): It's always IDENTIFIER_SYMBOL_VALUE. Return 0
11670         for C_DECL_INVISIBLE symbols.
11671         (lookup_name_current_level): Likewise.  Use chain_member.
11672         (c_make_fname_decl): Don't muck with DECL_CONTEXT.
11673         Use pushdecl_function_level.
11674         (builtin_function): Use C_DECL_INVISIBLE.
11675         (start_function): Don't muck with IDENTIFIER_IMPLICIT_DECL.
11676         Use C_DECL_ISNT_PROTOTYPE and C_DECL_IMPLICIT.
11677         (store_parm_decls): It's IDENTIFIER_SYMBOL_VALUE now.
11678         (identifier_global_value): Same.  Must scan
11679         global_binding_level in extremis.
11680
11681         * c-typeck.c (undeclared_variable): New static function, split
11682         from build_external_ref.
11683         (build_external_ref): Use DECL_CONTEXT, not
11684         IDENTIFIER_LOCAL_VALUE, to decide whether a local hides
11685         an instance variable.  Restructure for clarity.
11686         * objc/objc-act.c: Use identifier_global_value, not
11687         IDENTIFIER_GLOBAL_VALUE.
11688
11689 2003-04-08  Jonathan Wakely  <redi@gcc.gnu.org>
11690
11691         * doc/extend.texi (Template Instantiation): Refer to ISO standard,
11692         not Working Paper.
11693         * doc/invoke.texi (C++ Dialect Options): Same.
11694
11695 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
11696
11697         * tree.c (tree_operand_check_failed): New function.
11698         * tree.h (TREE_OPERAND_CHECK, TREE_OPERAND_CHECK_CODE,
11699         TREE_RTL_OPERAND_CHECK): New checking macros.
11700         (TREE_OPERAND, SAVE_EXPR_CONTEXT, SAVE_EXPR_RTL,
11701         RTL_EXPR_SEQUENCE, RTL_EXPR_RTL, WITH_CLEANUP_EXPR_RTL,
11702         CONSTRUCTOR_ELTS, LABELED_BLOCK_LABEL, LABELED_BLOCK_BODY,
11703         EXIT_BLOCK_RETURN, LOOP_EXPR_BODY, EXPR_WFL_NODE,
11704         EXPR_WFL_FILENAME_NODE, EXPR_WFL_FILENAME, TARGET_EXPR_SLOT,
11705         TARGET_EXPR_INITIAL, TARGET_EXPR_CLEANUP): Use the new
11706         checking macros.
11707
11708 Thu Apr 10 23:52:30 CEST 2003  Jan Hubicka  <jh@suse.cz>
11709
11710         PR inline-asm/8803
11711         * function.c (instantate_virtual_regs):  Verify that all ASM statements
11712         match after the virutal regs instantiation.
11713
11714 2003-04-10  Steve Ellcey  <sje@cup.hp.com>
11715
11716         * ia64-protos.h (addp4_optimize_ok): New.
11717         * ia64.c (addp4_optimize_ok): New.
11718         * ia64.md (*ptr_extend_plus_1): Use addp4_optimize_ok.
11719         (*ptr_extend_plus_2): Ditto.
11720
11721 2003-04-10  Steve Ellcey  <sje@cup.hp.com>
11722
11723         * expr.c (expand_assignment): Extend offset_rtx with convert_to_mode
11724         not with convert_memory_address.
11725         (store_constructor): Ditto, and same for copy_size_rtx.
11726         (expand_expr): Ditto.
11727
11728 2003-04-10  Douglas B Rupp  <rupp@gnat.com>
11729
11730         * config/i386/i386.c (ix86_ms_bitfield_layout_p): Fix formatting.
11731
11732 2003-04-10  Bob Wilson  <bob.wilson@acm.org>
11733
11734         * config/xtensa/lib2funcs.S (__xtensa_sync_caches): Flush data cache
11735         even if it is configured to be write-through.
11736
11737 2003-04-10  Ulrich Weigand  <uweigand@de.ibm.com>
11738
11739         * config/s390/s390.c (larl_operand): Do not allow symbols
11740         marked with '@'.
11741         (s390_encode_section_info): Mark symbols with forced 1-byte
11742         alignment with '@'.
11743         (s390_strip_name_encoding): Strip '@'.
11744         (legitimize_pic_address): Handle symbols that are not valid
11745         LARL operands in 64-bit mode.
11746
11747 2003-04-10  Andrew Haley  <aph@redhat.com>
11748
11749         * tree-inline.c (inlinable_function_p): Disable inlining for
11750         synchronized methods.
11751
11752 2003-04-09  Steven Bosscher  <steven@gcc.gnu.org>
11753
11754         * c-common.h (lang_statement_code_p): Remove declaration.
11755         (statement_code_p): Ditto.
11756         (c_common_stmt_codes): Define; list of c-common statement codes.
11757         (statement_code_p): New extern declaration.
11758         (STATEMENT_CODE_P): Define.
11759         (INIT_STATEMENT_CODES): Define.
11760         * c-common.c (statement_code_p): Kill the function, declare
11761         as an array of bools instead.
11762         (lang_statement_code_p): Remove.
11763         (walk_stmt_tree): Use STATEMENT_CODE_P not statement_code_p.
11764         (c_safe_from_p): Ditto.
11765         * c-objc-common.c (c_objc_common_init): Use INIT_STATEMENT_CODES
11766         to initialize the statement_code_p array.
11767         * tree-inline.c (walk_tree): Use STATEMENT_CODE_P instead of
11768         statement_code_p.
11769         (copy_tree_r): Ditto.
11770         * cp/cp-tree.h (cp_stmt_codes): Define; list of C++ specific
11771         statement tree codes.
11772         * cp/lex.c (cxx_init): Add missing print line break.  Use
11773         INIT_STATEMENT_CODES to initialize the statement_code_p array.
11774         * cp/parser.c (cp_parser_statement): Use STATEMENT_CODE_P
11775         instead of statement_code_p.
11776         * cp/pt.c (tsubst_expr): Ditto.
11777         * cp/tree.c (verify_stmt_tree_r): Ditto.
11778         (cp_statement_code_p): Remove.
11779         (init_tree): Don't set lang_statement_code_p, it's gone.
11780
11781 2003-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
11782             Zack Weinberg  <zack@codesourcery.com>
11783
11784         * regrename.c (struct du_chain): Use a bitfield for reg_class.
11785         * cse.c (struct qty_table_elem, struct table_elt, struct set):
11786         Use bitfields for fields holding enum rtx_code or
11787         enum machine_mode values.  Add comments explaining size choices.
11788
11789 2003-04-09  Alexandre Oliva  <aoliva@redhat.com>
11790
11791         * config/fp-bit.c (unpack_d): Handle pair of doubles with
11792         different signs correctly.
11793
11794 2003-04-09  Vladimir Makarov  <vmakarov@redhat.com>
11795
11796         * sched-deps.c (reg_pending_barrier_mode): New enumeration.
11797         (reg_pending_barrier): Make it of the enumeration type.
11798         (sched_analyze_2): Define the barrier as MOVE_BARRIER or
11799         TRUE_BARRIER.
11800         (sched_analyze): Ditto.
11801         (sched_analyze_insn): Ditto.  Use anti-dependencies for
11802         MOVE_BARRIER and true-dependencies as TRUE_BARRIER.
11803         (init_deps_global): Initialize the barrier as NO_BARRIER.
11804
11805 2003-04-09  Vladimir Makarov  <vmakarov@redhat.com>
11806
11807         * config/ia64/ia64.c (issue_nops_and_insn): Add new parameter.
11808         Check that asm insn starts on a new cycle.  Add nops after asm
11809         insn to end bundle.
11810         (bundling): Move insn type evaluation from the loop.  Call
11811         issue_nops_and_insn with the new parameter.  Ignore changing
11812         position for nops after asm insn.
11813
11814 2003-04-09  Alexandre Oliva  <aoliva@redhat.com>
11815
11816         * optabs.c: Comment that gen_add2_insn and others may actually
11817         return emitted insns, if the gen functions turn out to return
11818         emitted insns.
11819         * reload1.c (reload_cse_move2add): Cope with emitted insns from
11820         gen_add2_insn.
11821
11822 2003-04-09  Richard Henderson  <rth@redhat.com>
11823
11824         * config/ia64/ia64.c (move_operand): Allow symbolic_operand,
11825         but not tls_symbolic_operand.
11826         (ia64_expand_load_address): Remove scratch operand.
11827         (ia64_expand_tls_address): Split out from ia64_expand_move.
11828         (ia64_expand_move): Split symbolics only after reload.
11829         (ia64_emit_cond_move): New.
11830         * config/ia64/ia64-protos.h: Update.
11831         * config/ia64/ia64.md (movsi_symbolic, movdi_symbolic): Remove.
11832         (symbolic splitter): Accept SImode operands too.
11833         (cmove splitter): Use ia64_emit_cond_move.
11834
11835 2003-04-09  Nick Clifton  <nickc@redhat.com>
11836
11837         * doc/install.texi: Note that ARM toolchains need binutils 2.13 or
11838         newer.
11839         * config/arm/elf.h (SUBTARGET_ASM_FLOAT_SPEC): Pass -mfpu=softfpa
11840         instead of -mno-fpu.
11841         * config/arm/semi.h (ASM_SPEC): Likewise.
11842         * config/arm/xscale-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Likewise,
11843         but only if -msoft-float is specified pass.  Otherwise pass
11844         -mfpu=softvfp.
11845
11846 2003-04-09  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
11847
11848         * function.c (purge_addressof): Use free_INSN_LIST_node instead of
11849         free_EXPR_LIST_node.
11850
11851 2003-04-08  Roger Sayle  <roger@eyesopen.com>
11852
11853         * fold-const.c (fold):  Use "fold" following build in more places.
11854         Optimize sqrt(x)*sqrt(x) as x, pow(x,y)*pow(z,y) as pow(x*z,y),
11855         pow(x,y)*pow(x,z) as pow(x,y+z) and x/pow(y,z) as x*pow(y,-z).
11856
11857 2003-04-08  Roger Sayle  <roger@eyesopen.com>
11858
11859         * builtins.c (fold_builtin):  Constant fold expressions as x*0.5
11860         instead of x/2.0.  Optimize sqrt(pow(x,y)) as pow(x,y*0.5),
11861         log(pow(x,y)) as y*log(x), pow(exp(x),y) as exp(x*y),
11862         pow(sqrt(x),y) as pow(x,y*0.5) and pow(pow(x,y),z) as pow(x,y*z).
11863         Delete function scope "fcode" variable to avoid shadowing.
11864
11865 2003-04-08  Kevin Buettner  <kevinb@redhat.com>
11866
11867         * dwarf2out.c (DWARF_ARANGES_HEADER_SIZE, DWARF_ARANGES_PAD_SIZE):
11868         Take into account DWARF_INITIAL_LENGTH_SIZE.
11869
11870 2003-04-08  Hans-Peter Nilsson  <hp@axis.com>
11871
11872         * reorg.c (fill_slots_from_thread): When considering changing the
11873         insn following a reg-to-reg copy insn to use the source reg of the
11874         copy, bail out if there's overlap between the registers.
11875
11876 2003-04-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
11877
11878         * function.c (postponed_insns): New.
11879         (purge_addressof_1): Postpone processing of insns if addressofs
11880         are not put into stack.
11881         (purge_addressof): Process postponed insns.
11882
11883 2003-04-08  J"orn Rennecke <joern.rennecke@superh.com>
11884
11885         * sh.h (NORMAL_MODE): If interrupt handler and TARGET_FMOVD,
11886         this is FP_MODE_DOUBLE .
11887         * sh.c (ra.h): #include.
11888         (push_regs): Add second parameter.  Changed all callers.
11889         If necessary, set fpscr before saving floating point registers.
11890         (calc_live_regs): If interrupt handler and TARGET_FMOVD, always
11891         do saves / restores with SZ == 1.
11892         (sh_expand_prologue): If interrupt handler, don't use gen_toggle_sz.
11893         (sh_expand_epilogue): Likewise.  For TARGET_FMOVD, if floating point
11894         registers are being restored, restore FPSCR only after restoring them.
11895
11896 2003-04-08  Aldy Hernandez  <aldyh@redhat.com>
11897
11898         * config/rs6000/rs6000.c (rs6000_init_builtins): Set opaque types
11899         regardless of architecture.
11900         (spe_init_builtins): Change V2SI and V2SF types to opaque types.
11901
11902 2003-04-08  J"orn Rennecke <joern.rennecke@superh.com>
11903
11904         * sh.c (push_regs, calc_live_regs): Return int.  Take single
11905         HARD_REG_SET * parameter.  Changed all callers.
11906
11907 Tue Apr  8 11:12:07 CEST 2003  Jan Hubicka  <jh@suse.cz>
11908
11909         * i386.c (legitimate_pic_address_disp_p): Do not accept PLUS in the
11910         GOTOFF operand.
11911         (legitimize_pic_address): Move plus outside the unspec.
11912         * i386.c (legitimate_constant_p):  Check (CONST (PLUS (UNSPEC ...
11913         for validity.
11914
11915 2003-04-08  Nathan Sidwell  <nathan@codesourcery.com>
11916
11917         * gcov-io.h (gcov_save_position): Remove __inline__ from
11918         declaration.
11919
11920 2003-04-07  Matt Kraai  <kraai@alumni.cmu.edu>
11921
11922         * doc/install.texi: Use @command and @samp for single- and
11923         multi-word commands respectively.
11924         * doc/makefile.texi: Likewise.
11925         * doc/sourcebuild.texi: Likewise.
11926
11927 2003-04-07  Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
11928             Richard Henderson  <rth@redhat.com>
11929
11930         PR c/9516
11931         * expr.c (safe_from_p): Rearrange to avoid deep recursion in
11932         favor of looping and tail recursion for TREE_LIST and binops.
11933
11934 2003-04-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
11935
11936         * loop.h (REGNO_FIRST_LUID, REGNO_LAST_LUID): Provide defaults
11937         for insns without luid.
11938
11939 2003-04-07  Glen Nakamura  <glen@imodulo.com>
11940
11941         PR opt/8634
11942         * explow.c (maybe_set_unchanging): Don't flag non-static const
11943         aggregate type initializers with RTX_UNCHANGING_P.
11944
11945 2003-04-07  Richard Henderson  <rth@redhat.com>
11946
11947         PR opt/8634
11948         * function.c (purge_addressof_1): Don't try arithmetics for
11949         unchanging memories.
11950
11951 2003-04-07  Janis Johnson  <janis187@us.ibm.com>
11952
11953         * doc/sourcebuild.texi (Test Suites): Document testing support for
11954         gcov and profile-directed optimizations; describe gcc.misc-tests.
11955
11956 Mon Apr  7 22:19:59 CEST 2003  Jan Hubicka  <jh@suse.cz>
11957
11958         PR target/10077
11959         * i386.md (movsi_1, movsi_nointerunit_1):  Fix SSEMOV alternative.
11960
11961 2003-04-07  Eric Botcazou  <ebotcazou@libertysurf.fr>
11962
11963         * doc/rtl.texi (Comparison operations): Update to
11964         record the allowed comparison modes.
11965
11966 2003-04-07  Aldy Hernandez  <aldyh@redhat.com>
11967
11968         * config/rs6000/rs6000.c (rs6000_common_init_builtins): Rename all
11969         V2SI_type_node to opaque_V2SI_type_node.  Rename all
11970         V2SF_type_node to opaque_V2SF_type_node.
11971         (rs6000_init_builtins): Define opaque_V2SI_type_node and
11972         opaque_V2SF_type_node.
11973         (is_ev64_opaque_type): The types opaque_V2SI_type_node and
11974         opaque_V2SF_type_node are opaque types.
11975
11976 2003-04-07  J"orn Rennecke <joern.rennecke@superh.com>
11977
11978         * gcse.c (replace_store_insn): Use single_set.
11979
11980 2003-04-07  Nathan Sidwell  <nathan@codesourcery.com>
11981
11982         Change gcov file interface to single file at a time.
11983         * gcov-io.h: Replace IN_LIBGCC1 with IN_LIBGCOV. Use IN_GCOV.
11984         Convert to C89 prototypes.
11985         (gcov_file, gcov_length, gcov_position, gcov_buffer, gcov_alloc,
11986         gcov_error, gcov_modified): New static variables.
11987         (gcov_open, gcov_close, gcov_read_bytes, gcov_write_bytes): New
11988         functions.
11989         (gcov_write_unsigned, gcov_write_counter, gcov_write_string,
11990         gcov_read_unsigned, gcov_read_counter, gcov_read_string): Adjust.
11991         (gcov_read_summary, gcov_write_summary): Adjust.
11992         (gcov_save_position, gcov_reserve_length, gcov_write_length):
11993         Adjust.
11994         (gcov_resync, gcov_skip, gcov_skip_string): Adjust.
11995         (da_file_open, da_file_close, da_file_eof, da_file_error): Remove.
11996         (da_file_position, da_file_seek, da_file_write, da_file_read):
11997         Remove.
11998         (gcov_error, gcov_eof, gcov_ok, gcov_time): New functions.
11999         * gcov.c (gcov_type): Don't typedef here.
12000         (IN_GCOV): #define
12001         (read_graph_file, read_count_file): Adjust.
12002         * gcov-dump.c (gcov_type): Don't typedef here.
12003         (IN_GCOV): #define.
12004         (tag_function, tag_blocks, tag_arcs, tag_lines, tag_arc_counts):
12005         Remove FILE parameter, adjust.
12006         (struct tag_format): Adjust proc member.
12007         (dump_file): Adjust.
12008         * libgcov.c (IN_LIBGCOV): #define.
12009         (gcov_exit): Adjust.
12010         * loop-init.c: Don't #include gcov-io.h
12011         * profile.c (struct counts_entry): New structure to hold counter
12012         values.
12013         (struct section_reference, struct da_index_entry): Remove.
12014         (bbg_file, da_file): Remove.
12015         (htab_counts_index_hash, htab_counts_index_eq,
12016         htab_counts_index_del): Replace with ...
12017         (htab_counts_entry_hash, htab_counts_entry_eq,
12018         htab_counts_entry_del): ... these.
12019         (cleanup_counts_index, index_counts_file): Remove.
12020         (read_counts_file): New function.
12021         (get_exec_counts): Adjust.
12022         (compute_branch_probabilities): Don't free the exec counts here.
12023         (branch_prob): Adjust.
12024         (init_branch_prob): Adjust.
12025         (end_branch_prob): Adjust.
12026
12027 2003-04-07  Aldy Hernandez  <aldyh@redhat.com>
12028
12029         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
12030         -mfloat-gprs.
12031
12032         * config/rs6000/rs6000.c: Delete rs6000_fprs.
12033         Declare rs6000_float_gprs.
12034         Declare rs6000_float_gprs_string.
12035         (rs6000_parse_float_gprs_option): New.
12036         (rs6000_override_options): Genericize rs6000_parse_* calls to use
12037         rs6000_parse_yes_no_option.
12038         Change check for cpu=8540, to use TARGET_E500.
12039         (rs6000_parse_isel_option): Delete.
12040         (rs6000_parse_spe_option): Delete.
12041         (rs6000_parse_vrsave_option): Delete.
12042
12043         * config/rs6000/rs6000.h: Rename rs6000_fprs to rs6000_float_gprs.
12044         Define rs6000_float_gprs_string.
12045         (TARGET_OPTIONS): Add rs6000_float_gprs option.
12046
12047         * config/rs6000/eabi.h (TARGET_FPRS): Change to use rs6000_float_gprs.
12048
12049         * config/rs6000/eabispe.h: Set rs6000_float_gprs.
12050
12051 Mon Apr  7 14:36:24 CEST 2003  Jan Hubicka  <jh@suse.cz>
12052
12053         PR opt/10024
12054         * cfglayout.c (cfg_layout_redirect_edge):
12055         Redirect any branch edges unified with the fallthru one.
12056         * cfgrtl.c (force_nonfallthru_and_redirect):  Do not special
12057         case fallthru edges when called via cfglayout.c
12058
12059 2003-04-07  J"orn Rennecke <joern.rennecke@superh.com>
12060
12061         * c-typeck.c (output_init_element): Check for type == error_mark_node.
12062
12063 2003-04-07  Kazu Hirata  <kazu@cs.umass.edu>
12064
12065         * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Always
12066         split.
12067         (a splitter): Do zero-extension via HImode.
12068
12069 2003-04-07  James A. Morrison <ja2morri@uwaterloo.ca>
12070
12071         * doc/invoke.texi: Eliminate extra white-space caused by
12072         @gccoptlist{ on its own line.
12073         * doc/invoke.texi: Ensured there are two spaces between each option.
12074         * doc/invoke.texi: Re-wrapped option lines that were too wide.
12075         Added @gol to options that didn't have them.
12076
12077 2003-04-07  James A Morrison <ja2morri@student.math.uwaterloo.ca>
12078
12079         * doc/extend.texi (Darwin Pragmas): Fix spelling of Mac OS.
12080
12081 2003-04-06  Zack Weinberg  <zack@codesourcery.com>
12082
12083         * tree.c (tree_size): For all 'c' and 'x' nodes, look directly
12084         at the sizes of the relevant structures, rather than relying
12085         on TREE_CODE_LENGTH.  Call lang_hooks.tree_size to get the
12086         sizes of any such we don't know about.  Use
12087         lang_hooks.identifier_size for IDENTIFIER_NODE.
12088
12089         (initializer_zerop): Use CONSTRUCTOR_ELTS.
12090         * tree.def: Update commentary.  Make fourth element of
12091         the definition for all 'c' and 'x' nodes zero.
12092
12093         * langhooks.h: New hook, tree_size / LANG_HOOKS_TREE_SIZE.
12094         * langhooks-def.h: Update to match.
12095         * langhooks.c: New default, lhd_tree_size.
12096
12097         * c-common.def (SRCLOC): Kill.
12098         * c-pretty-print.c (pp_c_postfix_expression [case SRCLOC]):
12099         Remove entirely - was already #if-ed out.
12100
12101
12102 2003-04-06  Zack Weinberg  <zack@codesourcery.com>
12103
12104         * mklibgcc.in: Use a here document to avoid running afoul of
12105         shells that generate control-A from "echo \1".
12106
12107 2003-04-06  Aldy Hernandez  <aldyh@redhat.com>
12108
12109         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mspe
12110         option.
12111
12112         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
12113         rs6000_spe.
12114
12115         * config/rs6000/eabi.h (TARGET_E500): Define.
12116
12117         * config/rs6000/rs6000.h (TARGET_E500): Define.
12118         (TARGET_OPTIONS): Add spe= option.
12119         Declare rs6000_spe and rs6000_spe_string extern.
12120
12121         * config/rs6000/rs6000.c (branch_positive_comparison_operator):
12122         Change TARGET_SPE to TARGET_E500.
12123         (ccr_bit): Change TARGET_SPE to TARGET_E500.  Check for
12124         !TARGET_FPRS.
12125         (print_operand): Same.
12126         (rs6000_generate_compare): Same.
12127         (output_cbranch): Same.
12128         (rs6000_spe): Declare.
12129         (rs6000_spe_string): Declare.
12130         (rs6000_override_options): Call rs6000_parse_spe_option.
12131         (rs6000_parse_spe_option): New.
12132
12133 2003-04-06  Steven Bosscher  <steven@gcc.gnu.org>
12134
12135         * hashtable.c (gcc_obstack_init): Delete this function
12136         and everything related to it.
12137         * hashtable.h: Remove prototype.
12138         * bitmap.c (bitmap_element_allocate): Cleanup redundant
12139         defines.  Cleanup some unnecessary whitespace.
12140         * defaults.h (obstack_chunk_alloc): Redefine with
12141         appropriate casts for libiberty obstacks.
12142         (obstack_chunk_free): Ditto.
12143         (OBSTACK_CHUNK_SIZE): Define, default to 0.
12144         (gcc_obstack_init): Define as a call to _obstack_begin.
12145         * tree.c (print_obstack_statistics): Delete this unused
12146         function.
12147         * tree.h (obstack): Don't forward-declare.
12148         (print_obstack_statistics): Delete prototype.
12149         (print_obstack_name): Ditto.
12150         (gcc_obstack_init): Ditto.
12151         * rtl.h (gcc_obstack_init): Ditto.
12152         * java/jv-scan.c (gcc_obstack_init): Delete this
12153         function, its prototype and related defines.
12154         * java/jvgenmain.c (gcc_obstack_init): Delete this
12155         function, and related defines.
12156         * java/parse-scan.y (obstack_chunk_alloc): Don't define.
12157         (obstack_chunk_free): Ditto
12158
12159 2003-04-06  Geoffrey Keating  <geoffk@apple.com>
12160
12161         * dbxout.c (dbxout_handle_pch): Move prototype out from
12162         #if defined DBX_DEBUGGING_INFO.
12163
12164 2003-04-05  Nathan Sidwell  <nathan@codesourcery.com>
12165
12166         * gcov.c (struct arc_info): Replace local_span with cycle.
12167         (struct block_info): Replace u.span with u.cycle. Add is_call_return.
12168         (solve_flow_graph): Set is_call_return.
12169         (add_line_counts): Adjust. In block mode, blocks attach to last line.
12170         (accumulate_line_counts): Find graph cycles, not spanning tree.
12171         (output_branch_count): Adjust.
12172         (output_lines): Adjust.
12173         * doc/gcov.texi: Update.
12174
12175 2003-04-06  Kazu Hirata  <kazu@cs.umass.edu>
12176
12177         * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Change
12178         the second alternative to "#".
12179
12180 2003-04-05  Kazu Hirata  <kazu@cs.umass.edu>
12181
12182         * config/h8300/h8300.c (single_one_operand): Use GET_MODE_MASK.
12183         (single_zero_operand): Likewise.
12184
12185 2003-04-05  Daniel Berlin  <dberlin@dberlin.org>
12186
12187         * Makefile.in (df.o):  Depend on alloc-pool.h, not obstack.h.
12188         * df.c: Include alloc-pool.h, not obstack.h.
12189         (df_ref_obstack): Remove.
12190         (df_ref_pool, df_link_pool): Add pools.
12191         (df_alloc): Init the new pools.
12192         (df_free): And free them.
12193         (df_link_create): Use the pools.
12194         (df_ref_create): Ditto.
12195
12196 2003-04-05  Kazu Hirata  <kazu@cs.umass.edu>
12197
12198         * simplify-rtx.c: Fix formatting.
12199
12200 2003-04-05  Andrew Pinski  <apinski@apple.com>
12201
12202         * config/rs6000/rs6000.c (addrs_ok_for_quad_peep): Allow addr2
12203         reg with reg1 == reg2 and offset1 = -8.
12204
12205 2003-04-05  David Edelsohn  <edelsohn@gnu.org>
12206
12207         * config/rs6000/rs6000.c (rs6000_rtx_costs): Halve Power4
12208         multiply costs.  Correct Power4 divide costs.
12209         * config/rs6000/power4.md: Restore multiply and FP latency.
12210
12211 2003-04-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
12212
12213         * alias.c (find_base_term): Export.
12214         * rtl.h (find_base_term): Declare.
12215         * gcse.c (find_moveable_store): Test for flag_non_call_exceptions
12216         instead of flag_exceptions.  Move test for parameter passing ...
12217         (store_killed_in_insn): ... here.
12218
12219 2003-04-05  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12220
12221         PR bootstrap/10267
12222         * doc/install.texi (*-*-solaris2): /bin/ksh is not just recommended
12223         for configuring.
12224
12225 2003-04-04  Geoffrey Keating  <geoffk@apple.com>
12226
12227         * dbxout.c (scope_labelno): Add GTY.
12228         (have_used_extensions): Add GTY.
12229         (source_label_number): Add GTY.
12230         (lastfile): Add GTY.
12231         (lastfile_is_base): New.
12232         (base_input_file): New.
12233         (dbxout_handle_pch): New.
12234         (dbx_debug_hooks): Add handle_pch.
12235         (xcoff_debug_hooks): Likewise.
12236         (dbxout_function_end): Remove scope_labelno.
12237         (dbxout_init): Set base_input_file.
12238         (dbxout_handle_pch): New.
12239         (dbxout_source_file): Honour lastfile_is_base.
12240         * dwarfout.c (dwarf_debug_hooks): Add dummy handle_pch.
12241         * sdbout.c (sdb_debug_hooks): Add dummy handle_pch.
12242         * vmsdbgout.c (vmsdbg_debug_hooks): Add dummy handle_pch.
12243         * dwarf2out.c (dwarf2_debug_hooks): Add dummy handle_pch.
12244         * debug.c (do_nothing_debug_hooks): Add dummy handle_pch.
12245         * debug.h (struct gcc_debug_hooks): Add handle_pch.
12246         * c-pch.c (pch_init): Don't call start_source_file, but do call
12247         handle_pch.
12248         (c_common_write_pch): Call handle_pch.
12249         (c_common_read_pch): Don't call start_source_file,
12250         or end_source_file.
12251
12252 Fri Apr  4 17:43:52 2003  Olivier Hainque <hainque@act-europe.fr>
12253
12254         * emit-rtl.c (get_mem_attrs): Adjust alignment tests determining
12255         use of default attributes to agree MEM_ALIGN macro.
12256
12257 Fri Apr  4 17:33:24 2003  Joel Brobecker  <brobecker@gnat.com>
12258
12259         * dbxout.c (dbxout_type): When printing type index of range type
12260         whose bounds are printed in octal format, print type of parent type if
12261         it exists so enumerated type descriptions are not transformed
12262         into unsigned types.
12263
12264 2003-04-04  Kazu Hirata  <kazu@cs.umass.edu>
12265
12266         * config/h8300/h8300-protos.h: Add a prototype for
12267         compute_a_shift_cc.
12268         * config/h8300/h8300.c (shift_one): Update the CC status.
12269         (shift_two): Likewise.
12270         (output_a_shift_cc): Set cc_inline and cc_special.
12271         (compute_a_shift_cc): New.
12272         * config/h8300/h8300.md (shift insns): Use compute_a_shift_cc.
12273
12274 2003-04-04  Richard Henderson  <rth@redhat.com>
12275
12276         * cse.c (fold_rtx): Fix 03-30 change; do check insn non-null.
12277
12278 2003-04-04  Loren James Rittle  <ljrittle@acm.org>
12279
12280         * fixinc/inclhack.def (bsd_stdio_attrs_conflict): New.
12281         * fixinc/fixincl.x: Rebuilt.
12282         * fixinc/tests/base/stdio.h: Regenerated.
12283
12284 2003-04-04  Nathan Sidwell  <nathan@codesourcery.com>
12285
12286         * gcov.c (accumulate_line_counts): Fix span tree merge bug.
12287
12288 Fri Apr  4 15:58:52 2003  J"orn Rennecke <joern.rennecke@superh.com>
12289
12290         * sh.h (ACTUAL_NORMAL_MODE): New macro, broken out of
12291         (NORMAL_MODE).
12292         * sh.c (fpscr_set_from_mem): Use ACTUAL_NORMAL_MODE.
12293
12294 2003-04-04  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12295
12296         * doc/contrib.texi (Contributors): Add entries for Wolfgang
12297         Bangerth, DJ Delorie, Christian Ehrhardt, Christopher Faylor,
12298         Nathanael Nerode, Diego Novillo, Hartmut Penner, Volker Reichelt,
12299         Danny Smith, and Ulrich Weigand.
12300         Update Kriang Lerdsuwanakij and fix a typo in Janis Johnson's
12301         entry.
12302
12303 2003-04-04  Nick Clifton  <nickc@redhat.com>
12304
12305         * config/sparc/sol2-bi.h: Revert previous delta.
12306         * config/sparc/sol2-gas-bi.h (AS_SPARC64_FLAG): Prepend -TSO
12307
12308 2003-04-04  Nick Clifton  <nickc@redhat.com>
12309
12310         * config/v850/v850.c (expand_prologue): Only use register save
12311         helper functions if long calls are not being used.
12312         Add a clobber of r11 id using long calls.
12313         (pattern_is_ok_for_prologue): Account for the extra clobber.
12314         (construct_save_jarl): Likewise.
12315         * config/v850/v850.md (prolog pattern): Do not use this pattern
12316         for v850e's.
12317
12318 2003-04-04  Andreas Schwab  <schwab@suse.de>
12319
12320         * stor-layout.c (layout_decl): Avoid syntax error in last change
12321         when PCC_BITFIELD_TYPE_MATTERS is defined but not
12322         EMPTY_FIELD_BOUNDARY.
12323
12324 2003-04-03  Jason Merrill  <jason@redhat.com>
12325
12326         PR c/10175
12327         * jump.c (never_reached_warning): Revert patch of 2002-11-02.
12328         Look backwards for a line note.
12329
12330 2003-04-03  Neil Booth  <neil@daikokuya.co.uk>
12331
12332         * fix-header.c (read_scan_file): Defer switch processing.
12333
12334 2003-04-03  Matt Austern  <austern@apple.com>
12335
12336         * cpppch.c (reset_ht): Remove.
12337         (cpp_read_state): Remove loop to reset hashtable identifiers.
12338         * ggc-common.c (gt_pch_save): Add call to gt_pch_fixup_stringpool
12339         after pch file is written.
12340         * ggc.h (gt_pch_fixup_stringpool): Declare.
12341         * stringpool.c (ht_copy_and_clear): Define.  Callback.  Copy
12342         hashnode's value to another hashtable, then clear the original.
12343         (saved_ident_hash): Define.
12344         (gt_pch_save_stringpool): Create saved_ident_hash, use it to
12345         store definitions in ident_hash, and clear ident_hash.
12346         (gt_pch_fixup_stringpool): Define.  Restore definitions from
12347         saved_ident_hash to ident_hash, then destroy saved_ident_hash.
12348
12349 Thu Apr  3 22:27:40 CEST 2003  Jan Hubicka  <jh@suse.cz>
12350
12351         * cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
12352
12353 2003-04-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
12354
12355         PR optimization/10157
12356         * gcse.c (can_copy_p): Rename it to can_copy.
12357         (can_copy_init_p): Remove.
12358         (compute_can_copy): Use can_copy instead of can_copy_p.
12359         (can_copy_p): New exported function. Call compute_can_copy.
12360         (hash_scan_set): Use it.
12361         (gcse_main): Don't call compute_can_copy.
12362         (bypass_jumps): Don't call compute_can_copy.
12363         * rtl.h (can_copy_p): Declare.
12364         * loop.c (scan_loop): Don't move the source and add a reg-to-reg
12365         copy if the mode doesn't support copy operations.
12366
12367 2003-04-03  Jason Merrill  <jason@redhat.com>
12368
12369         * Makefile.in (unstrap): Also remove stage_last.
12370
12371         * dwarf2out.c (lookup_filename): Don't check for "<internal>".
12372         (dwarf2out_source_line): Don't do anything if line==0.
12373
12374         * stor-layout.c (do_type_align): New fn, split out from...
12375         (layout_decl): ...here.  Do all alignment calculations for
12376         FIELD_DECLs here.
12377         (update_alignment_for_field): Not here.
12378         (start_record_layout, debug_rli): Remove unpadded_align.
12379         * tree.h (struct record_layout_info_s): Remove unpadded_align.
12380         * c-decl.c (finish_enum): Don't set DECL_SIZE, DECL_ALIGN
12381         or DECL_MODE on the CONST_DECLs.
12382         (finish_struct): Don't mess with DECL_ALIGN.
12383
12384 Thu Apr  3 18:57:19 CEST 2003  Jan Hubicka  <jh@suse.cz>
12385
12386         * i386.c (print_operand): Do not bypass output_addr_const at flag_pic.
12387
12388 Thu Apr  3 17:08:09 2003  J"orn Rennecke <joern.rennecke@superh.com>
12389
12390         * sh.c (sh_function_ok_for_sibcall): Return 0 if the current
12391         function is an interrupt handler.
12392
12393         * sh.c (sh_expand_epilogue): Avoid clash of temp register for
12394         restoring target registers with EH_RETURN_STACKADJ_RTX; use
12395         multiple registers in round-robin fashion.
12396
12397 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12398
12399         * gengtype-lex.l (IWORD): Add CHAR_BITFIELD.
12400         * system.h (CHAR_BITFIELD): New.
12401
12402 2003-04-03  Kazu Hirata  <kazu@cs.umass.edu>
12403
12404         * config/h8300/h8300.md (a peephole2): Generalize to accept GT
12405         and LE.
12406         (another peephole2): Likewise.
12407
12408 2003-04-03  Nick Clifton  <nickc@redhat.com>
12409
12410         * config/sparc/sol2-bi.h (ASM_CPU64_DEFAULT_SPEC): Add -TSO.
12411         (DEF_ARCH64_SPEC): Likewise.
12412
12413 Thu Apr  3 09:53:40 CEST 2003  Jan Hubicka  <jh@suse.cz>
12414
12415         * i386.c (constant_address_p): Use legitimate_constant_p.
12416         (legitimate_address_p): Do not use CONSTANT_ADDRESS_P.
12417
12418 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
12419
12420         * config/h8300/h8300-protos.h: Add a prototype for
12421         gtle_operator.
12422         * config/h8300/h8300.c (gtle_operator): New.
12423         * config/h8300/h8300.h (PREDICATE_CODES): Add an entry for
12424         gtle_operator.
12425         * config/h8300/h8300.md (a peephole2): Generalize to accept GT
12426         and LE.
12427
12428 2003-04-02  Richard Henderson  <rth@redhat.com>
12429
12430         * libgcc-std.ver (_Unwind_GetCFA): New.
12431         * unwind-dw2.c (_Unwind_GetCFA): New.
12432         * unwind-libunwind.c (_Unwind_GetCFA): New.
12433         * unwind-sjlj.c (_Unwind_GetCFA): New.
12434         * unwind.h: Declare it.
12435
12436 Thu Apr  3 00:31:21 CEST 2003  Jan Hubicka  <jh@suse.cz>
12437
12438         PR inline-asm/8088
12439         * i386.c (ix86_hard_regno_mode_ok):  Return 0 for MMX/SSE registers
12440         when MMX/SSE is not available.
12441
12442 2003-04-02  Mike Stump  <mrs@apple.com>
12443
12444         * doc/install.texi (Specific): Update pointers to apple.com.
12445
12446 Thu Apr  3 00:18:49 CEST 2003  Jan Hubicka  <jh@suse.cz>
12447
12448         * i386.c (override_options):  Disable red zone by default on i386.
12449         (compute_frame_layout, ix86_force_to_memory, ix86_free_from_memory):
12450         Do not test TARGET_64BIT together with TARGET_RED_ZONE
12451
12452 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
12453
12454         * config/h8300/h8300.md (a peephole2): Tighten the condition.
12455
12456 2003-04-02  Richard Henderson  <rth@redhat.com>
12457
12458         * longlong.h (umul_ppmm) [alpha]: Use __builtin_alpha_umulh.
12459
12460 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
12461
12462         * config/h8300/h8300.md (a peephole2): New.
12463
12464 2003-04-02  Richard Henderson  <rth@redhat.com>
12465
12466         * except.c (sjlj_find_directly_reachable_regions): Recognize when
12467         must-not-throw region has been deleted.
12468
12469 2003-04-02  Richard Henderson  <rth@redhat.com>
12470
12471         * dwarf2out.c (output_call_frame_info): Ignore fde->nothrow as an
12472         optimization when flag_exceptions not enabled.
12473
12474 2003-04-02  Vladimir Makarov  <vmakarov@redhat.com>
12475
12476         * config/rs6000/rs6000.c
12477         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Redefine the
12478         macros.
12479         (rs6000_issue_rate): Add case for 8540.
12480         (rs6000_use_sched_lookahead): New function.
12481
12482         * config/rs6000/8540.md: Rename SIU units into SU ones and MIU
12483         units into MU ones.
12484         (ppc8540_branch, ppc8540_cr_logical): Add one cycle in the
12485         reservation before retirement.
12486         (ppc8540_multiply, ppc8540_load, ppc8540_store,
12487         ppc8540_simple_float, ppc8540_vector_load, ppc8540_vector_store):
12488         Remove additional cycle in the reservation before retirement.
12489         (ppc8540_mfcr, ppc8540_mtcrf, ppc8540_mtjmpr): Add missed
12490         reservation of ppc8540_issue.
12491
12492 2003-04-02  Andreas Schwab  <schwab@suse.de>
12493
12494         * real.c (decode_ieee_single): Fix decoding of SNaN bit.
12495
12496 2003-04-01  Richard Henderson  <rth@redhat.com>
12497
12498         * except.c (convert_from_eh_region_ranges_1): Smash REG_EH_REGION
12499         notes for nothrow calls if flag_forced_unwind_exceptions.
12500         (build_post_landing_pads): Mind flag_forced_unwind_exceptions.
12501         (sjlj_find_directly_reachable_regions): Likewise.
12502         (reachable_handlers): Likewise.
12503         (can_throw_external): Likewise.
12504         (collect_one_action_chain): Record cleanups after catch-all and
12505         must-not-throw if flag_forced_unwind_exceptions.
12506         * flags.h (flag_forced_unwind_exceptions): Declare.
12507         * toplev.c (flag_forced_unwind_exceptions): New.
12508         (lang_independent_options): Add it.
12509         * doc/invoke.text: Add it.
12510
12511 2003-04-01  David Mosberger <davidm@hpl.hp.com>
12512
12513         * config/ia64/crti.asm: Clean up trailing whitespace.
12514         Remove trailing hashes (#) from identifiers.
12515
12516         * config/ia64/crtn.asm: Ditto.
12517
12518         * config/ia64/crtend.asm: Remove trailing hashes (#) from
12519         identifiers.
12520         (__do_global_ctors_aux): Align to 32-byte boundary.  Add unwind
12521         directives.  Drop explicit bundling---it just makes the code
12522         harder to read.  Don't save/restore gp needlessly.
12523
12524         * config/ia64/crtbegin.asm: Remove trailing hashes (#) from
12525         identifiers (they're only needed if the identifier would clash
12526         with a register name otherwise).
12527         (__do_global_dtors_aux): Align to 32-byte boundary. Add unwind
12528         directives.  Drop explicit bundling---it just makes the code
12529         harder to read.
12530         (__do_jv_register_classes): Ditto.
12531         (.fini_array): Remove "progbits" (newer
12532         assemblers don't like wrong section-types).
12533         (.init_array): Ditto.
12534
12535 2003-04-01  Roger Sayle  <roger@eyesopen.com>
12536
12537         PR fortran/9974
12538         * gcse.c (reg_killed_on_edge): New function to test whether the
12539         given reg is overwritten by any instruction queued on an edge.
12540         (bypass_block): Ignore substitutions killed on incoming edges.
12541         Don't bypass outgoing edges that have queued instructions.
12542
12543 2003-04-01  Alexandre Oliva  <aoliva@redhat.com>
12544
12545         * real.h (EXP_BITS): Make room for...
12546         (struct real_value): ... added canonical bit.
12547         (struct real_format): Added pnan.
12548         (mips_single_format, mips_double_format, mips_extended_format,
12549         mips_quad_format): New.
12550         * real.c: Copy p to pnan in all formats.
12551         (get_canonical_qnan, get_canonical_snan): Set canonical bit.
12552         (real_nan): Use pnan to compute significand's shift.
12553         (real_identical): Disregard significand in canonical
12554         NaNs.
12555         (real_hash): Likewise.  Take signalling into account.
12556         (encode_ieee_single, encode_ieee_double, encode_ieee_quad):
12557         Disregard significand bits in canonical NaNs.  Set all bits of
12558         canonical NaN if !qnan_msb_set.
12559         (encode_ibm_extended, decode_ibm_extended): Likewise.  Use
12560         qnan_msb_set to tell the base double format.
12561         (ibm_extended_format): Use 53 as pnan.
12562         (mips_single_format, mips_double_format, mips_extended_format,
12563         mips_quad_format): Copied from the corresponding ieee/ibm
12564         formats, with qnan_msb_set false.
12565         * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Use mips_extended_format.
12566         * config/mips/linux64.h (MIPS_TFMODE_FORMAT): Use mips_quad_format.
12567         * config/mips/mips.c (override_options): Use mips_single_format
12568         and mips_double_format.  Default TFmode to mips_quad_format.
12569         * config/mips/t-linux64 (tp-bit.c): Define QUIET_NAN_NEGATED.
12570         * config/mips/t-irix6: Likewise.
12571         * config/mips/t-mips (fp-bit.c, dp-bit.c): Likewise.
12572         * config/fp-bit.c (pack_d, unpack_d): Obey it.
12573
12574 2003-04-01  Geoffrey Keating  <geoffk@apple.com>
12575
12576         * unwind-dw2-fde-darwin.c (DESTRUCTOR_MAY_BE_CALLED_LIVE): New.
12577         (live_image_destructor): Reset image to initial state.
12578         (examine_objects): Set DESTRUCTOR_MAY_BE_CALLED_LIVE.
12579
12580 2003-04-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
12581
12582         * config/sparc/sparc.c (input_operand): Accept bare
12583         CONSTANT_P_RTX operands.
12584
12585 2003-04-01  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
12586
12587         * gcse.c (struct ls_expr): Added pattern_regs field.
12588         (ldst_entry): Initialize it.
12589         (extract_mentioned_regs, extract_mentioned_regs_helper): New.
12590         (store_ops_ok): Use regs precomputed by them.
12591         (find_loads, store_killed_in_insn, load_kills_store): Change return
12592         type to bool.
12593         (store_killed_before, store_killed_after): Take position of register
12594         set in account.
12595         (reg_set_info): Store position of the setter.
12596         (gcse_main): Enable store motion.
12597         (mems_conflict_for_gcse_p): Enable load motion of non-symbol mems.
12598         (pre_insert_copy_insn, update_ld_motion_stores, insert_store): Prevent rtl
12599         sharing.
12600         (simple_mem): Enable store motion of non-symbol mems.
12601         (regvec): Type changed.
12602         (LAST_AVAIL_CHECK_FAILURE): New.
12603         (compute_store_table_current_insn): New.
12604         (build_store_vectors): Computation of availability and anticipatability
12605         moved ...
12606         (compute_store_table, find_moveable_store): ... here.
12607         (delete_store): Remove senseless comment.
12608         (store_motion): Reorganize.
12609
12610 2003-04-01  Kevin Buettner  <kevinb@redhat.com>
12611
12612         * config/mips/mips.c (override_options): Provide mappings for
12613         HI_REGNUM and LO_REGNUM.
12614         * config/mips/mips.h (MD_DBX_FIRST): Define.
12615
12616 2003-04-01  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
12617
12618         * combine.c (merge_outer_ops): Fix typo.
12619
12620         * varasm.c (make_decl_one_only): Revert 2003-03-09 patch.
12621
12622 2003-04-01  David Edelsohn  <edelsohn@gnu.org>
12623
12624         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
12625         power4.md,rios1.md,rios2.md,rs64.md}: Change mult_compare to
12626         imul_compare.  Add lmul_compare.
12627         * config/rs6000/power4.md: Bump some latencies.  Model extra cycle
12628         in second pair of dispatch slots.  Model stores more accurately.
12629         Tweak multiply model.  Add bypasses for CR instructions dependent
12630         on complicated compares.
12631         * config/rs6000/rs6000.md (mulsi3): Name imul_compare patterns.
12632         (muldi3): Add lmul_compare patterns.
12633         * config/rs6000/rs6000.c (rs6000_variable_issue): Move FPLOAD_UX
12634         and FPSTORE_UX to split instructions and add COMPARE,
12635         DELAYED_COMPARE, IMUL_COMPARE, LMUL_COMPARE, IDIV, LDIV.
12636         (rs6000_adjust_cost): Add IMUL_COMPARE and LMUL_COMPARE.
12637         (rs6000_rtx_costs): Separate POWER4 multiply case.
12638
12639 2003-04-01  Ulrich Weigand  <uweigand@de.ibm.com>
12640
12641         * config/s390/s390.c (s390_fixup_clobbered_return_reg):
12642         Do nothing if __builtin_return_address was not used.
12643
12644 Tue Apr  1 18:18:23 CEST 2003  Jan Hubicka  <jh@suse.cz>
12645
12646         * i386.md (test patterns):  Allow memory operand in operand1.
12647
12648 2003-02-31  Aldy Hernandez  <aldyh@redhat.com>
12649
12650         * testsuite/gcc.c-torture/execute/simd-3.c: New.
12651
12652         * expr.c (expand_expr): Handle VECTOR_CST.
12653         (const_vector_from_tree): New.
12654
12655         * varasm.c (output_constant): Handle VECTOR_CST.
12656
12657         * c-typeck.c (digest_init): Build a vector constant from a
12658         VECTOR_TYPE.
12659
12660         * config/rs6000/rs6000.c: Remove prototype for
12661         easy_vector_constant.
12662         (easy_vector_constant): Add mode parameter.  Rewrite to handle
12663         more easy constants.
12664         (rs6000_emit_move): Pass mode to easy_vector_constant.
12665         Call emit_easy_vector_insn for SPE V2SI vector constant moves.
12666         (emit_easy_vector_insn): New.
12667         (easy_vector_same): New.
12668         (EASY_VECTOR_15): New macro.
12669         (EASY_VECTOR_15_ADD_SELF): New macro.
12670         (bdesc_2arg): Rename to xorv2si3.
12671         (easy_vector_constant_add_self): New.
12672         (input_operand): Allow vector constants.
12673
12674         * config/rs6000/rs6000.h (PREDICATE_CODES): Add
12675         easy_vector_constant, easy_vector_constant_add_self.
12676         (EXTRA_CONSTRAINT): Add 'W'.
12677
12678         * config/rs6000/rs6000-protos.h: Add prototype for
12679         easy_vector_constant, emit_easy_vector_insn.
12680
12681         * config/rs6000/altivec.md (xorv8hi3): New.
12682         (xorv16qi3): New.
12683         Remove all _const0 patterns.
12684         (movv4si_internal): Rewrite to use code.  Add vector constant to
12685         vector alternative.  Add splitter.
12686         (movv8hi_internal): Same.
12687         (movv16qi_internal): Same.
12688         (movv4sf_internal): Same.
12689         Change the unspecs for vspltis* to use constants.
12690
12691         * config/rs6000/spe.md ("xorv4hi3"): New.
12692         ("spe_evxor"): Rename to xorv2si3.
12693         ("xorv1di3"): New.
12694         Remove all _const0 patterns.
12695         (movv2si_internal): Rewrite to use code.  Add vector constant to
12696         alternatives.  Add splitter.
12697         (movv4hi_internal): Add vector constant to alternatives.
12698         (movv1di_internal): Same.
12699         (movv2sf_internal): Same.
12700
12701 2003-03-31  Mark Mitchell  <mark@codesourcery.com>
12702
12703         PR c/9936
12704         * c-decl.c (grokdeclarator): Clear SAVE_EXPR_CONTEXT for
12705         variably-sized arrays in parameters.
12706         (set_save_expr_context): New function.
12707         (c_expand_body): Use it, via walk_tree.
12708
12709 2003-03-31  Eric Christopher  <echristo@redhat.com>
12710
12711         * combine.c (can_combine_p): Allow ZERO_EXTRACT and STRICT_LOW_PART.
12712         (combinable_i3pat): Remove call to expand_field_assignment and
12713         #if 0'd code.
12714
12715 2003-03-31  Mark Mitchell  <mark@codesourcery.com>
12716
12717         PR c++/10278
12718         * c-common.c (finish_label_address_expr): Handle the
12719         error_mark_node.
12720
12721 2003-03-31  Richard Henderson  <rth@redhat.com>
12722
12723         * real.c (real_identical): Reorg so as to not compare
12724         signalling for normals.
12725
12726 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
12727
12728         * config/m68hc11/m68hc11.c (hard_reg_operand): Check the mode.
12729
12730 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
12731
12732         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't rely on REG_WAS_0
12733         notes as they are boggus.
12734         (m68hc11_gen_movqi): Likewise.
12735
12736 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
12737
12738         * config/m68hc11/m68hc11.c (expand_prologue): For an interrupt handler
12739         save the soft registers after the frame pointer so that gdb can unwind
12740         the frame more easily.
12741         (expand_epilogue): Likewise in opposite order; allow to use X register
12742         as scratch if the return value is by reference.
12743
12744 2003-03-31  Jason Merrill  <jason@redhat.com>
12745
12746         PR java/10145
12747         * stor-layout.c (update_alignment_for_field): Respect
12748         DECL_USER_ALIGN for zero-length bitfields, too.
12749         * c-decl.c (finish_struct): Don't set DECL_ALIGN for normal
12750         fields.
12751
12752 2003-03-31  Matt Austern  <austern@apple.com>
12753
12754         * cpppch.c (struct cpp_savedstate): Add defs and n_defs members.
12755         (count_defs): Keep track of number of defs as well as total size.
12756         (write_defs): Put every definition in cpp_savedstate's defs array.
12757         (comp_hashnode): Define.  Comparison function for qsort.
12758         (cpp_write_pch_deps): Sort definitions before writing them.
12759         (struct ht_node_list): Define. Like cpp_savedstate but simpler.
12760         (collect_ht_nodes): Define.
12761         (cpp_valid_state): When verifying that undefined identifiers in
12762         the pch file are still undefined, read a sorted list of undefined
12763         identifiers, collect all defined identifiers into a sorted list,
12764         and walk through both lists to make sure there's no match.
12765
12766 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
12767
12768         * config/h8300/h8300.md (a peephole2): New.
12769
12770 2003-03-31  Michael Matz  <matz@suse.de>
12771
12772         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Change 1 into 0.
12773
12774 2003-03-31  Segher Boessenkool  <segher@koffie.nl>
12775
12776         PR target/10177
12777         * config/rs6000/rs6000.h (HARD_REGNO_RENAME_OK): New.
12778         * config/rs6000/rs6000.c (compute_vrsave_mask): Don't mark
12779         all call-clobbered registers as used.
12780
12781 2003-03-31  Michael Matz  <matz@suse.de>
12782
12783         * cppexp.c (cpp_classify_number): Accept '.' after "0x".
12784         * testsuite/gcc.dg/cpp/c99-hexfloat-3.c: New file.
12785
12786 2003-03-31  Nathan Sidwell  <nathan@codesourcery.com>
12787
12788         * gcov.c: Add -a & -u options.
12789         (struct arc_info): Add local_span, is_call_non_return,
12790         is_nonlocal_return, is_unconditional flags, remove is_call flag.
12791         (struct block_info): Add flags, is_call_site, is_nonlocal_return
12792         members. Make encodings a union with span member.
12793         (struct function_info): Add blocks_executed, line, src, line_next
12794         members.
12795         (struct coverage_info): Make branches a union with blocks member.
12796         (struct source_info): Add functions member.
12797         (object_summary, program_count): New global variables.
12798         (flag_all_blocks, flag_unconditional): New flags.
12799         (find_source, output_branch_count): New functions.
12800         (print_usage): Adjust.
12801         (options): Adjust.
12802         (process_args): Adjust.
12803         (read_graph_file) <GCOV_TAG_FUNCTION>: Adjust.
12804         <GCOV_TAG_BLOCKS>: Read flags.
12805         <GCOV_TAG_LINES>: Adjust.
12806         (read_count_file): Process SUMMARY tags.
12807         (solve_flow_graph): Set is_unconditional and clear is_call_site
12808         appropriately.
12809         (add_branch_counts): Adjust. Don't count unconditional branches.
12810         (add_line_counts): Deal with all-blocks mode, accumulate block
12811         coverage.
12812         (accumulate_line_counts): Adjust, generate local spanning tree for
12813         all-blocks mode.
12814         (output_lines): Adjust.
12815         * profile.c (branch_prob): Alter GCOV_FUNCTION_TAG record.
12816         * doc/gcov.texi: Document.
12817
12818 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
12819
12820         * config/h8300/h8300.md: Organize peephole2's that transform
12821         (compare (reg:HI) (const_int)).
12822
12823 2003-03-31  Roger Sayle  <roger@eyesopen.com>
12824
12825         * emit-rtl.c (dconstm2, dconsthalf): New real constants.
12826         (init_emit_once): Initialize dconstm2 and dconsthalf here.
12827         * real.h (dconstm2, dconsthalf): Add prototypes here.
12828         * real.c (real_sqrt): Use dconsthalf rather than local copy.
12829         * builtins.c (fold_builtin): When optimizing sqrt(exp(x)) as
12830         exp(x/2.0) remember to fold the division if possible.
12831         Fold sin(0.0) as 0.0, cos(0.0) as 1.0, pow(x,1.0) as x,
12832         pow(x,-1.0) as 1.0/x, pow(x,2.0) as x*x, pow(x,-2.0) as
12833         1.0/(x*x) and pow(x,0.5) as sqrt(x).
12834
12835 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
12836
12837         * config/h8300/h8300.md (a new peephole2): New.
12838
12839 2003-03-31  Richard Sandiford  <rsandifo@redhat.com>
12840
12841         * gcse.c (simple_mem): Return false for floating-point accesses
12842         if flag_float_store is true.
12843
12844 2003-03-30  Roger Sayle  <roger@eyesopen.com>
12845
12846         * gcse.c (gcse_constant_p): New function to identify constants
12847         suitable for constant propagation, including COMPARE with two
12848         integer constant arguments.
12849         (hash_scan_set): Use gcse_constant_p.
12850         (find_avail_set): Likewise.
12851         (cprop_insn): Likewise.
12852         (do_local_cprop): Likewise.
12853         (find_implicit_sets): Likewise.
12854         (find_bypass_set): Likewise.
12855
12856 2003-03-30  Matt Kraai  <kraai@alumni.cmu.edu>
12857
12858         * except.h: Remove definition of varray_type.
12859
12860 2003-03-30  Richard Henderson  <rth@redhat.com>
12861
12862         PR opt/10011, opt/10252:
12863         * toplev.c (rest_of_compilation): Run purge_builtin_constant_p
12864         before post-gcse cse pass.
12865
12866 2003-03-30  Roger Sayle  <roger@eyesopen.com>
12867
12868         * dojump.c (do_jump): Copy SUBREGs into a pseudo for comparison.
12869
12870 2003-03-30  DJ Delorie  <dj@redhat.com>
12871
12872         * profile.c (instrument_edges): Make sure any newly created
12873         jump insns have correct jump label info.
12874
12875 2003-03-30  Richard Henderson  <rth@redhat.com>
12876
12877         * cfgbuild.c (make_edges): Use tablejump_p.
12878         * cfgcleanup.c (label_is_jump_target_p): Likewise.
12879         * cfglayout.c (cfg_layout_can_duplicate_bb_p): Likewise.
12880         * cfgrtl.c (flow_delete_block_noexpunge): Likewise.
12881         (try_redirect_by_replacing_jump): Likewise.
12882         (redirect_edge_and_branch): Likewise.
12883         * cse.c (fold_rtx): Likewise.
12884         * jump.c (delete_related_insns): Likewise.
12885         * rtlanal.c (get_jump_table_offset): Likewise.
12886         * ssa-ccp.c (ssa_ccp_df_delete_unreachable_insns): Likewise.
12887
12888 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
12889
12890         * Makefile.in (STRICT_WARN): Don't warn for ISO C constructs.
12891         (STRICT2_WARN): Likewise.
12892
12893 2003-03-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12894
12895         PR other/6955
12896         * collect2.c (collect_wait): Use WCOREDUMP and fix output message.
12897         * system.h (WCOREDUMP, WCOREFLG): Define if necessary.
12898
12899 2003-03-30  Richard Henderson  <rth@redhat.com>
12900
12901         PR c/10083
12902         * config/alpha/alpha.md (umuldi3_highpart): Change to expander;
12903         don't zero_extend const inputs.
12904
12905 2003-03-30  Kazu Hirata  <kazu@cs.umass.edu>
12906
12907         * reload1.c (reload_cse_move2add): Fix a comment typo.
12908
12909 2003-03-30  Kazu Hirata  <kazu@cs.umass.edu>
12910
12911         * config/h8300/h8300.md (a peephole2): Remove useless code.
12912
12913 2003-03-29  Kazu Hirata  <kazu@cs.umass.edu>
12914
12915         * config/h8300/h8300.md (*iorsi3_and_ashift): New.
12916         (*iorsi3_and_lshiftrt): Likewise.
12917         (*iorsi3_zero_extract): Likewise.
12918
12919 2003-03-29  Kazu Hirata  <kazu@cs.umass.edu>
12920
12921         * config/h8300/h8300.md (*insv_si_8_8): New.
12922         (*insv_si_8_8_lshiftrt_8): Likewise.
12923         (a peephole2): Likewise.
12924
12925 2003-03-29  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12926
12927         * doc/contrib.texi: Add Eric Botcazou and Roger Sayle.
12928         Uniformly use bugfix instead of bug fix.
12929
12930 2003-03-29  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12931
12932         PR doc/895
12933         * ONEWS: Remove those items that already appear in the EGCS
12934         release notes on our web pages.
12935
12936 2003-03-29  Alan Modra  <amodra@bigpond.net.au>
12937
12938         * config/rs6000/rs6000.h (FUNCTION_VALUE_REGNO_P): Respect
12939         TARGET_HARD_FLOAT.  Reformat.
12940         (FUNCTION_ARG_REGNO_P): Likewise, and remove unneeded casts.
12941
12942 2003-03-28  Albert Chin-A-Young  <china@thewrittenword.com>
12943
12944         * gcc/fixinc/inclhack.def: Update solaris_mutex_init_1 to
12945         work on Solaris 2.5.1.
12946
12947 2003-03-28  Kazu Hirata  <kazu@cs.umass.edu>
12948
12949         * config/h8300/h8300.md (*addsi3_and_r_1): Put under plus:SI
12950         section of h8300.md
12951         (*addsi3_and_nor_r_1): Likewise.
12952
12953 2003-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
12954
12955         * config/s390/s390.c (s390_emit_prologoue): Make sure backchain is
12956         set up before any trapping memory access if flag_non_call_exceptions.
12957
12958 2003-03-29  Alan Modra  <amodra@bigpond.net.au>
12959
12960         * reload1.c (reload_as_needed): Allow a USE in asm reloads.
12961
12962         * loop.c: (find_mem_in_note_1, find_mem_in_note): Comment.
12963
12964 2003-03-28  Nathanael Nerode  <neroden@gcc.gnu.org>
12965
12966         * configure.in: Clarify comments.
12967         * configure: Regenerate.
12968
12969 2003-03-28  Ulrich Weigand  <uweigand@de.ibm.com>
12970
12971         * config/s390/s390.md ("literal_pool_31"): Output pool anchor
12972         label even if pool empty when generating PIC.
12973         ("literal_pool_31", "literal_pool_64"): Coding style cleanup.
12974
12975 2003-03-28  Kazu Hirata  <kazu@cs.umass.edu>,
12976             Dhananjay Deshpande  <dhananjayd@kpit.com>
12977
12978         PR target/10205
12979         * config/h8300/h8300.c (h8300_initial_elimination_offset):
12980         Correct the offset computation when TARGET_NORMAL.
12981
12982 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
12983
12984         PR target/10067
12985         * config/sparc/sparc.md (jump pattern): Correct order
12986         when issuing the annuling marker.
12987
12988 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
12989
12990         PR c/8281
12991         * config/sparc/sparc.md (movdi_insn_sp32_v9): Remove 'f-f' alternative.
12992         (movdi reg/reg split): Match only on sparc32, and v9 when int regs.
12993
12994 2003-03-28  Alan Modra  <amodra@bigpond.net.au>
12995
12996         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
12997         globalize_label.
12998         * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
12999         * config/i960/i960.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
13000         * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
13001         * config/mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
13002         * config/mips/linux.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
13003         * config/sparc/sparc.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
13004         * config/v850/v850.c (v850_output_aligned_bss): Likewise.
13005
13006 2003-03-28  Alan Modra  <amodra@bigpond.net.au>
13007
13008         * loop.c: (find_mem_in_note_1, find_mem_in_note): New functions.
13009         (replace_loop_mems): Add "written" param.  Remove invalid REG_EQUAL
13010         notes after hoisting.
13011         (load_mems): Adjust replace_loop_mems call.
13012
13013 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
13014             Richard Henderson  <rth@redhat.com>
13015
13016         PR target/10114 and PR target/10084
13017         * dwarf2out.c (mem_loc_descriptor): Handle LO_SUM.
13018
13019 2003-03-27  Richard Henderson  <rth@redhat.com>
13020
13021         * config/alpha/alpha.md (adddi_er_high_l): Valid only after reload.
13022
13023 2003-03-27  Roger Sayle  <roger@eyesopen.com>
13024
13025         * fold-const.c (fold_inf_compare):  New function to simplify FP
13026         comparisons against +Infinity or -Infinity.
13027         (fold):  Optimize floating point comparisons against Infs and NaNs.
13028
13029 2003-03-27  Janis Johnson  <janis187@us.ibm.com>
13030
13031         * libgcov.c: Provide only dummy functions if libc is not available.
13032
13033 2003-03-27  Richard Henderson  <rth@redhat.com>
13034
13035         * real.h (struct real_value): Add signalling.
13036         (EXP_BITS): Decrement.
13037         * real.c (get_canonical_qnan): Don't set MSB-1.
13038         (get_canonical_snan): Likewise.  Set signalling.
13039         (real_identical): Compare signalling.
13040         (round_for_format): Remove force-one-bit on code.
13041         (real_nan): Likewise.  Set signalling.
13042         (encode_ieee_single): Add force-one-bit code; honor signalling.
13043         (encode_ieee_double, encode_ieee_extended, encode_ieee_quad): Likewise.
13044         (decode_ieee_single): Set signalling.
13045         (decode_ieee_double, decode_ieee_extended, decode_ieee_quad): Likewise.
13046
13047 2003-03-27  Olivier Hainque  <hainque@act-europe.fr>
13048
13049         PR ada/9953
13050         * ada/Makefile.in (gnatlib configuration for HPUX): Split
13051         the general section for HPUX into specific sections for
13052         HPUX 10 and HPUX 11. Fix the setting of TGT_LIB in the HPUX
13053         11 case.
13054
13055 2003-03-27  Glen Nakamura  <glen@imodulo.com>
13056
13057         PR opt/10087
13058         * loop.c (loop_givs_reduce): Skip bivs with duplicate locations
13059         while incrementing giv.
13060         (record_biv): Check for duplicate biv locations and
13061         set (struct induction *) v->same if found.
13062
13063 2003-03-27  David Mosberger  <davidm@hpl.hp.com>
13064
13065         * unwind-libunwind.c (uw_frame_state_for): Adjust for libunwind
13066         v0.9 API change: replace read of UNW_REG_HANDLER with
13067         unw_get_proc_info().
13068         (_Unwind_GetLanguageSpecificData): Replace read of UNW_REG_LSDA
13069         with unw_get_proc_info().
13070         (_Unwind_GetRegionStart): Replace UNW_REG_PROC_START with
13071         unw_get_proc_info().
13072
13073 2003-03-27  Vladimir Makarov  <vmakarov@redhat.com>
13074
13075         * config/rs6000/8540.md: Use presence_set instead of absence_set.
13076
13077 2003-03-26  Richard Henderson  <rth@redhat.com>
13078
13079         * c-decl.c (finish_function): Always defer if DECL_DECLARED_INLINE_P.
13080
13081 2003-03-26  Roger Sayle  <roger@eyesopen.com>
13082
13083         PR bootstrap/10051, PR bootstrap/10169.
13084         * mips-tfile.c (init_file): Don't provide a static initializer.
13085         (initialize_init_file): Initialize the contents of init_file.
13086         (add_file): Call initialize_init_file if not already initialized.
13087
13088 2003-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
13089
13090         * config/s390/s390.c (s390_optimize_prolog): Do not save/restore
13091         registers used for global asm variables.
13092         (s390_frame_info, s390_arg_frame_offset): Likewise.
13093         (s390_emit_prologue, s390_emit_epilogue): Likewise.
13094
13095 2003-03-26  Vladimir Makarov  <vmakarov@redhat.com>
13096
13097         * config/rs6000/8540.md: New file.
13098
13099         * config/rs6000/{40x.md, 603.md, 6xx.md, 7450.md, 7xx.md, mpc.md,
13100         power4.md, rios1.md, rios2.md, rs64.md}: Add mult_compare to
13101         reservations for imul.
13102
13103         * config/rs6000/rs6000.md: Include 8540.md.  Change
13104         delayed_compare onto mult_compare for insns generating
13105         multiplication.
13106         (mult_compare, fpsimple, brinc, vecdiv, veccmpsimple, vecfdiv):
13107         New type attribute values.
13108
13109         * config/rs6000/spe.md (*negsf2_gp, *abssf2_gpr): Use type
13110         fpsimple instead of fp.
13111         (*divsf3_gpr): Use type vecfdiv instead of fp.
13112         (spe_evfsabs, spe_evfsnabs, spe_evfsneg): Use type vecsimple
13113         instead of vecfloat.
13114         (spe_evfsdive): Use type vecfdiv instead of vecfloat.
13115         (spe_brinc): Use type brinc instead of veccomplex.
13116         (spe_evaddw, spe_evaddiw): Use type vecsimple instead of
13117         veccomplex.
13118         (spe_evdivws, spe_evdivwu): Use type vecdiv instead of veccomplex.
13119         (*movv2si_internal, *movv1di_internal, *movv4hi_internal,
13120         *movv2sf_internal): Define type attribute values for all
13121         alternatives.
13122         (cmpsfeq_gpr, cmpsfgt_gpr, cmpsflt_gpr): Use type veccmp instead
13123         of fpcompare.
13124         (tstsfeq_gpr, tstsfgt_gpr, tstsflt_gpr): Use type veccmpsimple
13125         instead of fpcompare.
13126
13127 2003-03-26  David Edelsohn  <edelsohn@gnu.org>
13128
13129         * config/rs6000/power4.md: Allow delay between dispatch and
13130         function units for simple instructions.  Correct store units.
13131         Allow branch to occupy as many dispatch slots as necessary.
13132
13133 2003-03-26  Jakub Jelinek  <jakub@redhat.com>
13134
13135         * config/ia64/ia64.c (ia64_expand_op_and_fetch): Fix comment.
13136         (ia64_expand_compare_and_swap): Use always DImode ar.ccv,
13137         zero extend old to it.
13138         * config/ia64/ia64.md (cmpxchg_acq_si): Remove mode from ccv
13139         operand.
13140
13141 2003-03-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
13142
13143         PR target/7784
13144         * reload.c (find_reloads_address): Handle
13145         (PLUS (PLUS (REG) (REG)) (CONST_INT)) form for
13146         all base registers.
13147
13148 2003-03-25  Marcelo Abreu  <mmabreu@inf.ufrgs.br>
13149
13150         PR other/10203
13151         * version.c: Reference the GCC web site in the URL.
13152
13153 2003-03-26  Alan Modra  <amodra@bigpond.net.au>
13154
13155         * c-incpath.c (add_standard_paths): Add both "translated" and
13156         non-translated header paths.
13157
13158 2003-03-25  Loren James Rittle  <ljrittle@acm.org>
13159
13160         * doc/install.texi (*-*-freebsd*): Update with known status.
13161
13162 2003-03-21  Jason Merrill  <jason@redhat.com>
13163
13164         PR optimization/10171
13165         * unroll.c (unroll_loop): Don't delete the jump at the end unless
13166         we also delete a jump at the beginning.
13167
13168 2003-03-25  Stephane Carrez  <stcarrez@nerim.fr>
13169
13170         * doc/contrib.texi (Contributors): Mention self as 68HC11/68HC12
13171         contributor.
13172
13173 Tue Mar 25 20:35:51 CET 2003  Jan Hubicka  <jh@suse.cz>
13174
13175         * i386.c (ix86_rtx_costs): For -fpic and x86-64 local symbolic
13176         constants are not expensive.
13177
13178 Mon Mar 24 20:03:03 CET 2003  Jan Hubicka  <jh@suse.cz>
13179
13180         PR opt/10056
13181         * cfglayout.c (fixup_reorder_chain):  Fix dealing with the conditional
13182         jump jumping to the next instruction.
13183         * cfgrtl.c (force_nonfallthru_and_redirect):  Likewise.
13184
13185 2003-03-25  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
13186
13187         * doc/passes.texi (Passes): Properly document that we do not
13188         perform jump2 any longer; remove command-line option -dJ.
13189
13190 2003-03-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
13191
13192         PR optimization/8746
13193         * config/i386/i386.md (and promoting splitters): Disable HImode to
13194         SImode promoting when the sign bit matters and is not preserved, or
13195         when TARGET_FAST_PREFIX is true. Disable promoting when optimizing
13196         for size.
13197
13198 2003-03-24  Kazu Hirata  <kazu@cs.umass.edu>
13199
13200         * config/h8300/h8300.md (a peephole2): Extend to support loads
13201         in QImode and HImode.
13202
13203 2003-03-24  Stephane Carrez  <stcarrez@nerim.fr>
13204
13205         * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Add _call_far and
13206         _return_far
13207         (MULTILIB_OPTIONS): Don't multilib on -mlong-calls.
13208         (MULTILIB_EXCEPTIONS): Likewise.
13209         * config/m68hc11/m68hc11.md ("call"): Support far calls for 68HC11
13210         by calling some board support routine.
13211         ("call_value"): Likewise.
13212         ("*return_void"): Likewise for return.
13213         ("*return_16bit"): Likewise.
13214         ("*return_32bit"): Likewise.
13215         * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Generate .far
13216         for 68HC11 too.
13217         (DWARF2_ADDR_SIZE): Use 4 so that addresses can
13218         * config/m68hc11/m68hc11.c (m68hc11_override_options): Accept
13219         -mlong-calls for 68HC11.
13220         * config/m68hc11/larith.asm (declare_near): New macro.
13221         (__premain, ___negsi2, ___one_cmplsi2, ___ashlsi3): Use it.
13222         (___ashrsi3, ___lshrsi3, ___lshrhi3, ___lshlhi3): Likewise.
13223         (___rotrhi3, ___rotlhi3, ___ashrhi3, ___ashrqi3): Likewise.
13224         (___lshlqi3, __divmodhi4, ___mulqi3, ___mulhi3): Likewise.
13225         (__mulhi32): Likewise.
13226         (ret): Update macro for 68HC11.
13227         (__far_trampoline): Implement for 68HC11.
13228         (__call_a16, __call_a32, __return_void, __return_16): New support
13229         routines for 68HC11 memory bank switching calling support.
13230         (__return_32): Likewise.
13231
13232 2003-03-24  Neil Booth  <neil@daikokuya.co.uk>
13233
13234         * toplev.c (independent_decode_option): Don't skip a 'Y' prefix.
13235
13236 2003-03-24  Janis Johnson  <janis187@us.ibm.com>
13237
13238         * doc/install.texi (Testing): Mention test result links from build
13239         status pages.
13240
13241 2003-03-24  Mark Mitchell  <mark@codesourcery.com>
13242
13243         * function.c (put_var_into_stack): Change bool parameter to int.
13244         (gen_mem_addressof): Likewise.
13245         * rtl.h (gen_mem_addressof): Likewise.
13246         * tree.h (put_var_into_stack): Likewise.
13247         * config/alpha/alpha.c (alpha_gp_save_rtx): Adjust call to
13248         gen_mem_addressof or put_var_into_stack.
13249         * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
13250         * config/ia64/ia64.c (spill_tfmode_operand): Likewise.
13251
13252 2003-03-24  Kazu Hirata  <kazu@cs.umass.edu>
13253
13254         * config/h8300/h8300.md (a peephole2): New.
13255
13256 2003-03-24  Jakub Jelinek  <jakub@redhat.com>
13257
13258         * dojump.c (do_jump): Handle UNSAVE_EXPR specially.
13259
13260 2003-03-24  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
13261
13262         * doc/contrib.texi (Contributors): Update Janis Johnson.
13263
13264 2003-03-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
13265
13266         PR target/10072
13267         * combine.c (simplify_if_then_else): Check that the mode
13268         has MODE_INT class before applying the (OP Z (mult COND C2))
13269         transformation.
13270
13271 2003-03-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
13272
13273         PR optimization/9414
13274         * config/sparc/sparc.md (widening peepholes): Use
13275         widen_memory_access instead of change_address.
13276
13277 2003-03-23  Mark Mitchell  <mark@codesourcery.com>
13278
13279         PR c++/7086
13280         * c-typeck.c (c_mark_addressable): Adjust calls to
13281         put_var_into_stack.
13282         * expr.c (expand_expr): Likewise.
13283         * function.c (put_var_into_stack): Add rescan parameter.  Do not
13284         call fixup_var_refs when rescan is false.
13285         (gen_mem_addressof): Likewise.
13286         (assign_parms): Adjust calls to put_var_into_stack.
13287         (setjmp_protect): Likewise.
13288         (setjmp_protect_args): Likewise.
13289         * rtl.h (gen_mem_addressof): Change prototype.
13290         * stmt.c (expand_decl): Adjust calls to put_var_into_stack.
13291         * tree.h (put_var_into_stack): Change prototype.
13292
13293 2003-03-23  Arpad Beszedes <beszedes@cc.u-szeged.hu>
13294
13295         PR middle-end/9967
13296         * builtins.c (expand_builtin_fputs): When optimizing for size,
13297         don't transform fputs into fwrite.
13298
13299 2003-03-23  Glen Nakamura <glen@imodulo.com>
13300
13301         PR c/8224
13302         * fold-const.c (extract_muldiv_1): Don't pass through type conversions
13303         when signedness changes for division or modulus.
13304
13305 2003-03-24  Alan Modra  <amodra@bigpond.net.au>
13306
13307         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
13308         globalize_label.
13309
13310 2003-03-23  Roger Sayle  <roger@eyesopen.com>
13311
13312         PR c/10178
13313         * stmt.c (expand_end_case_type): Check for overflow in range when
13314         determining whether to use a bit-test implementation.
13315
13316 2003-03-23  Richard Henderson  <rth@redhat.com>
13317
13318         * cfgcleanup.c (try_optimize_cfg): Allow merging of tablejumps
13319         before flow2.
13320         * cfgrtl.c (try_redirect_by_replacing_jump): Similarly.
13321
13322 2003-03-23  Richard Henderson  <rth@redhat.com>
13323
13324         PR opt/10116
13325         * ifcvt.c (find_if_block): Disallow tablejump insns outgoing
13326         from then_bb or else_bb after flow2.
13327
13328 2003-03-23  Zack Weinberg  <zack@codesourcery.com>
13329
13330         * configure.in: Check whether it is necessary to link against
13331         libm to use ldexp.
13332         * configure: Regenerate.
13333         * Makefile.in: Add LDEXP_LIB substitution variable.
13334
13335 2003-03-23  Kazu Hirata  <kazu@cs.umass.edu>
13336
13337         * config/h8300/h8300.md: Fix comment typos.
13338
13339 2003-03-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13340
13341         * pa.c (output_cbranch): Fix typo in comment.
13342
13343 2003-03-22  Richard Henderson <rth@redhat.com>
13344
13345         * cfgcleanup.c (insns_match_p): Do not do EQUIV substitution
13346         after reload.
13347
13348 2003-03-22  DJ Delorie  <dj at redhat dot com>,
13349         Bruce Korb  <bkorb at gnu dot org>
13350
13351         * fixinc/inclhack.def (solaris_mutex_init_1): New; Fix
13352         buggy Solaris 2.6 mutex/cond initializers.
13353         (solaris_mutex_init): Rename to solaris_mutex_init_2.
13354         * fixinc/fixincl.x: Regenerate.
13355         * fixinc/tests/base/pthread.h: Update.
13356         * fixinc/fixincl.c(initialize): be explicit about the default case
13357         and indicate verbose level when being very, very verbose.
13358         * fixinc/check.tpl(VERBOSE): provide a means for passing the value in
13359
13360 2003-03-22  Andreas Jaeger  <aj@suse.de>
13361
13362         * config/i386/i386.c (ix86_init_machine_status): Return value.
13363
13364 2003-03-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13365
13366         * pa.c (output_cbranch, output_bb, output_bvb): Output nop for
13367         conditional branch to the following instruction.  Use next_real_insn
13368         instead of next_active_insn.
13369         (output_dbra, output_movb, jump_in_call_delay): Use next_real_insn
13370         instead of next_active_insn.
13371
13372 2003-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
13373
13374         * config/s390/s390.md ("movti", "*movdi_31", "*movdf_31"): Use 'o'
13375         instead of 'm' constraint in forced-split alternatives.
13376         ("*adddi3_31", "*subdi3_31"): Likewise.  Also, pass 0 instead of 1 as
13377         VALIDATE_ADDRESS parameter to operand_subword.
13378
13379 2003-03-22  Kazu Hirata  <kazu@cs.umass.edu>
13380
13381         * config/h8300/h8300.c (notice_update_cc): Correctly handle
13382         the case where the set destination is STRICT_LOW_PART.
13383
13384 2003-03-22  Svein E. Seldal  <Svein.Seldal@solidas.com>
13385
13386         * config/c4x/t-c4x (INSTALL_LIBGCC): Make gcc recognize a c33 as a
13387         c30 instead of a c40 processor.
13388
13389 2003-03-22  Alan Modra  <amodra@bigpond.net.au>
13390
13391         * combine.c (simplify_comparison <AND>): Use gen_int_mode.  Tidy.
13392
13393 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
13394
13395         * c-common.c: Include intl.h.
13396         (shadow_warning): Rewrite to allow better diagnostic translations.
13397         * c-common.h: Update prototype of shadow_warning.  Declare sw_kind enum.
13398         * c-decl.c (warn_if_shadowing): Update calls to shadow_warning;
13399         use it throughout.
13400         * Makefile.in (c-common.o): Add intl.h.
13401
13402 2003-03-21  Nathanael Nerode  <neroden@gcc.gnu.org>
13403
13404         * config.gcc: Remove 'float_format'.
13405
13406         * fixproto: Define NULL and size_t in generated stdlib.h and
13407         unistd.h.  Kill unused required_stdlib_h, required_unistd_h.
13408         Rearrange file generation loop for readability.  Generate time.h,
13409         string.h if missing.
13410         * tsystem.h: Include <string.h>, <time.h> unconditionally.
13411         * config.gcc: Blow away POSIX defines.
13412
13413 2003-03-22  Stephane Carrez  <stcarrez@nerim.fr>
13414
13415         * config/m68hc11/m68hc11.md ("call_value"): Fix trap check.
13416
13417 2003-03-22  Stephane Carrez  <stcarrez@nerim.fr>
13418
13419         * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Fix typo in
13420         writing .interrupt command.
13421         * config/m68hc11/m68hc11.md ("call"): Look at the symbol to see
13422         if it's a far or near function.
13423         ("call_value"): Likewise.
13424         * config/m68hc11/m68hc11.c (m68hc11_attribute_table): Add far and
13425         near attributes.
13426         (m68hc11_handle_fntype_attribute): Accept attributes on methods.
13427         (m68hc11_override_options): Ignore -mlong-calls for 68HC11.
13428         (m68hc11_initial_elimination_offset): Set current_function_far
13429         according to attributes.
13430         (expand_prologue): Likewise.
13431         (trap_handler_symbol): New global to keep track of trap handlers.
13432         (m68hc11_encode_section_info): Mark symbol as far if needed; set
13433         trap symbol.
13434         (m68hc11_is_far_symbol): New function.
13435         (m68hc11_is_trap_symbol): New function.
13436         * config/m68hc11/m68hc11-protos.h (m68hc11_is_far_symbol): Declare.
13437         (m68hc11_is_trap_symbol): Declare.
13438
13439 2003-03-21  Jan Hubicka  <jh@suse.cz>
13440
13441         * i386.c (ix86_compute_frame_layout): Recompute fast prologues
13442         only when amount of saved regs changed.
13443         (ix86_init_machine_status): Initialize use_fast_prologue_epilgoue_nregs.
13444         * i386.h (machine_function): New fields use_fast_prologue_epilgoue_nregs.
13445
13446 2003-03-21  Jan Hubicka  <jh@suse.cz>
13447
13448         PR inline-asm/7916
13449         * function.c (instantiate_virtual_regs_lossage): New function.
13450         (instantiate_virtual_regs_1): Use it.
13451         (instantiate_virtual_regs): Do not continue in substition when insn has
13452         been deleted.
13453
13454 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
13455
13456         * combine.c (make_field_assignment): Fix a warning.
13457
13458 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
13459
13460         * config/h8300/h8300.md (*insv_si_1_n_lshiftrt_16): New.
13461
13462 2003-03-21  Dale Johannesen  <dalej@apple.com>
13463
13464         * config/rs6000/rs6000.h (REG_ALLOC_ORDER):  Increase
13465         priority for R2 on Darwin.
13466         (HARD_REGNO_MODE_OK):  Don't accept R31 for DFmode.
13467
13468 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
13469
13470         * combine.c (make_field_assignment): Remove unnecessary AND
13471         when storing into zero_extract.
13472
13473 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
13474
13475         * aclocal.m4 (gcc_AC_EXAMINE_OBJECT, gcc_AC_C_FLOAT_FORMAT): Delete.
13476         * configure.in: Don't call gcc_AC_C_FLOAT_FORMAT.
13477         * defaults.h: Remove reference to HOST_FLOAT_WORDS_BIG_ENDIAN
13478         in comment.
13479
13480 2003-03-21  DJ Delorie  <dj@redhat.com>
13481
13482         * optabs.c (init_integral_libfuncs): Make sure we init at least up
13483         to "long long" size words.
13484
13485 2003-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
13486
13487         * config/s390/s390.h: Do not include fixdfdi.h on s390x.
13488         (TARGET_64BIT): Define as compile-time constant when IN_LIBGCC2.
13489         (MIN_UNITS_PER_WORD): Do not define when IN_LIBGCC2.
13490
13491 2003-03-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
13492
13493         PR doc-bug/9813
13494         * doc/extend.texi: Move misplaced paragraph about underscores in
13495         variables in macros.
13496
13497 2003-03-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
13498             Richard Henderson  <rth@redhat.com>
13499
13500         PR optimization/8366
13501         * config/sparc/sparc.h: (SYMBOLIC_CONST): New macro.
13502         (GO_IF_LEGITIMATE_ADDRESS): Use it. Reject the form
13503         PIC+SYMBOLIC_CONST in other modes than Pmode.
13504         (GO_IF_MODE_DEPENDENT_ADDRESS): Use it. Mark
13505         the form PIC+SYMBOLIC_CONST as mode dependent.
13506
13507 2003-03-21  DJ Delorie  <dj@redhat.com>
13508
13509         * config/stormy16/stormy16.c (xstormy16_expand_arith): Make
13510         sure we always emit at least one insn.
13511
13512 2003-03-21  Christopher Faylor  <cgf@redhat.com>
13513
13514         * config.gcc (i[34567]86-*-cygwin*): Use new common makefile
13515         stub t-cygming. Use common target header cygming.h. Add extra
13516         c_target_obj and cxx_target_obj file. Default cygwin to posix
13517         threading. Enforce i386 as float format.
13518         (i[34567]86-*-mingw*): Use new common makefile stub t-cygming.
13519         Remove cygwin.h as target header. Use common target header
13520         cygming.h  Enforce i386 as float format. Correct typo.
13521         * config/i386/cygming.h: New file, containing definitions
13522         common to mingw32 and cygwin.
13523         * config/i386/cygwin.h: Remove definitions common to cygwin and
13524         mingw.  Simplify special spec logic.  Define "wrappers" around
13525         certain include path defines to accommodate -mno-cygwin.
13526         Remove some #if 0'ed code.
13527         (STANDARD_INCLUDE_DIR) Always define when not cross-compiling.
13528         (LINK_SPEC): Don't use cyg search prefix when -mno-cygwin.
13529         (GCC_DRIVER_HOST_INITIALIZATION): Define as call to mingw_scan.
13530         * config/i386/mingw32.h: Remove definitions common to cygwin and
13531         mingw.
13532         (EXTRA_OS_CPP_BUILTINS): Adjust.
13533         (TARGET_VERSION): Define.
13534         * config/i386/crtdll.h (EXTRA_OS_CPP_BUILTINS): Override
13535         mingw32.h definitions.
13536         (LIBGCC_SPEC): Add libmingwex.a as in mingw32.h.
13537         * config/i386/t-cygwin (EXTRA_GCC_OBJS): Define as cygwin1.o.
13538         Add compilation rules for cygwin1.o cygwin2.o.
13539         * config/i386/cygwin1.c: New file.
13540         * config/i386/cygwin2.c: New file.
13541         * config/i386/t-cygming: New makefile stub.
13542
13543 2003-03-20  Richard Henderson  <rth@redhat.com>
13544
13545         * fold-const.c (extract_muldiv_1): Revert changing order of
13546         operands in case MULT_EXPR of 2003-02-16 patch.
13547
13548 2003-03-20  Daniel Berlin  <dberlin@dberlin.org>
13549         Merge changes from new-regalloc-branch
13550
13551         From Michael Matz  <matz@suse.de>
13552         * df.c (df_ref_record_1): Move init of loc to safe point.
13553         Only recurse on interesting things in parallels.
13554         Handle CLASS_CANNOT_CHANGE_MODE smarter.
13555         (df_uses_record): Ditto.
13556
13557         * df.h (DF_REF_MEM_OK): New enum member, used to mark ref's which
13558         it's already okay to use memory operands in (IE doesn't require
13559         adding another insn or anything).
13560
13561 2003-03-20  Richard Henderson  <rth@redhat.com>
13562
13563         PR middle-end/6348
13564         * explow.c (allocate_dynamic_stack_space): Handle STACK_SIZE_MODE
13565         different from word_mode.
13566
13567 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
13568
13569         * config/h8300/h8300.md (*insv_si_1_n_lshiftrt): Restrict the
13570         source operand to those that can be extracted with bld.
13571
13572 2003-03-20  Richard Earnshaw  <rearnsha@arm.com>
13573
13574         PR 10066
13575         * arm.md (UNSPEC_PIC_BASE): New constant.
13576         (pic_add_dot_plus_four): Wrap with unspec.
13577         (pic_add_dot_plus_eight): Likewise.
13578
13579 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
13580
13581         * config/h8300/h8300.md (*insv_si_1_n): New.
13582         (*insv_si_1_n_lshiftrt): Likewise.
13583
13584 2003-03-20  Roger Sayle  <roger@eyesopen.com>
13585
13586         * fold-const.c (fold_mathfn_compare): New function to simplify
13587         comparisons against built-in math functions.  Fold comparisons
13588         of sqrt against constants.
13589         (fold): Call fold_mathfn_compare when appropriate.
13590
13591 2003-03-20 Richard Earnshaw  <rearnsha@arm.com>
13592
13593         * ifcvt.c (find_if_case_1): If we add a new bb, update the dominance
13594         information.
13595
13596 2003-03-20  Per Bothner  <pbothner@apple.com>
13597
13598         Various cleanups to help compile server.
13599
13600         * cppinit.c (cpp_create_reader):  Take extra hash_table* argument,
13601         and pass that to _cpp_init_hashtable.
13602         (cpp_read_main_file):  Drop hash_table* argument; don't call
13603         _cpp_init_hashtable.
13604         * cpplib.h:  Update declarations to match.
13605         * c-opts.c (c_common_init_options):  Pass ident_hash to
13606         cpp_create_reader.
13607         (c_common_post_options):  Don't pass ident_hash to cpp_read_main_file.
13608         * fix-header.c (read_scan_file):  Likewise pass NULL table to
13609         cpp_create_reader rather than cpp_read_main_file.
13610
13611         * cppfiles.c (cpp_rename_file):  Generalized and renamed
13612         to cpp_change_file.
13613         * cpplib.h:  Update declaration to match.
13614         * c-opts.c (push_command_line_line, finish_options):  Change
13615         cpp_rename_file calls to cpp_change_file.
13616
13617         * line-map.c (add_line_map):  Allow leaving the outermost file.
13618         Allowing entering an outermost-file after the initial time.
13619
13620         * toplev.c (pop_srcloc):  Allow popping from initial file.
13621
13622 2003-03-20  Kazu Hirata  <kazu at cs dot umass dot edu>
13623
13624         * fold-const.c (fold): Fold A - (A & B) into ~B & A.
13625
13626 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
13627
13628         * config/h8300/h8300.md (a peephole2): New.
13629
13630 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
13631
13632         * config/h8300/h8300.md (*addsi3_and_r_1): New.
13633         (*addsi3_and_not_r_1): Likewise.
13634
13635 2003-03-19  Loren James Rittle  <ljrittle@acm.org>
13636
13637         * Makefile.in (STRICT2_WARN): Add @WERROR@.
13638         (GCC_WARN_CFLAGS): Remove $(WERROR).
13639         (fixinc.sh-warn): New.
13640         * ada/Make-lang.in (ada-warn): Add $(WERROR).
13641         * cp/Make-lang.in (cp-warn): Add $(WERROR).
13642         * f/Make-lang.in (f-warn): Add $(WERROR).
13643         * java/Make-lang.in (java-warn): Add $(WERROR).
13644         * treelang/Make-lang.in (treelang-warn): Add $(WERROR).
13645
13646 2003-03-19  Nathanael Nerode  <neroden@gcc.gnu.org>
13647
13648         * c-common.h (c_dump_tree), c-dump.c (c_dump_tree),
13649         langhooks-def.h (lhd_tree_dump_dump_tree),
13650         langhooks.c (lhd_tree_dump_dump_tree), langhooks.h (*dump_tree):
13651         Change return type from 'int' to 'bool'.  Replace 0 and 1 with
13652         true and false in return statements.
13653
13654 2003-03-19  Kevin Buettner  <kevinb@redhat.com>
13655
13656         * dwarf2out.c (DWARF_INITIAL_LENGTH_SIZE): Define.
13657         (DWARF_COMPILE_UNIT_HEADER_SIZE): Take into account
13658         DWARF_INITIAL_LENGTH_SIZE.
13659         (output_compilation_unit_header, output_pubnames, output_aranges)
13660         (output_line_info): Output 0xffffffff escape value for 64-bit
13661         DWARF extension.
13662         * config/mips/iris6.h (DWARF_INITIAL_LENGTH_SIZE): Define.
13663
13664 2003-03-19  Ulrich Weigand  <uweigand@de.ibm.com>
13665
13666         * config/s390/s390.c (s390_preferred_reload_class): Do not
13667         force constants to the pool unless necessary.
13668         (s390_decompose_address): Prefer to use pointer as base,
13669         not index register.
13670         * config/s390/s390.md ("*tsthiCCT_only"): Remove '?' from
13671         Q alternative.
13672         ("*movdi_64", "*movsi", "movhi", "movqi_64", "movqi",
13673         "*movdf_64", "*movsf"): Add '?' to Q->Q alternatives.
13674         ("*extractqi", "*extracthi", "*zero_extendhisi2_31",
13675         "*zero_extendqisi2_31", "*zero_extendqihi2_31",
13676         "*adddi3_31", "*subdi3_31"): Do not set "type" attribute.
13677
13678 2003-03-19  Jan Hubicka  <jh@suse.cz>
13679
13680         * i386.h (machine_function): New fields use_fast_prologue_epilogue.
13681         * i386.c (use_fast_prologue_epilogue): Remove.
13682         (ix86_frame): New field save_regs-using_mov;
13683         (ix86_compute_frame_layout):  Decide on fast prologues;
13684         allocate saved registers in red zone.
13685         (ix86_expand_epilogue, ix86_expand_prolgoues): Obey new parameters.
13686
13687 2003-03-19  Nick Clifton  <nickc@redhat.com>
13688
13689         * config/mcore/mcore.h (CPP_SPEC): Remove trailing semi-colon.
13690
13691 2003-03-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13692
13693         PR 10062
13694         * config/pa/pa-hpux.h (TARGET_HPUX_UNWIND_LIBRARY): Redefine.
13695         * pa-protos.h (output_lbranch): New prototype.
13696         * pa.c (compute_frame_size): Change size of the frame marker on the
13697         64-bit ports to 48 bytes.
13698         (pa_output_function_prologue): Document why SAVE_SP is set.
13699         (hppa_expand_prologue): Save previous stack pointer into frame marker
13700         on targets which use the hpux unwind library.
13701         (output_cbranch): Use output_lbranch.
13702         (output_lbranch): New function to output long unconditional branches.
13703         * pa.h (TARGET_HPUX_UNWIND_LIBRARY): Define.
13704         (STACK_POINTER_OFFSET): Update offset for 48-byte frame marker on
13705         64-bit ports.
13706         * pa.md (jump): Use output_lbranch.
13707         (allocate_stack): New expander for dynamic stack allocation.
13708
13709 2003-03-19  Alan Modra  <amodra@bigpond.net.au>
13710
13711         * config/rs6000/rs6000.c (rs6000_stack_info): Only require a frame
13712         when debugging on XCOFF targets.  Delete "abi" temp.
13713
13714         PR target/10073
13715         * combine.c (force_to_mode <NOT>): Use gen_int_mode.
13716
13717 2003-03-18  Jakub Jelinek  <jakub@redhat.com>
13718
13719         * config/s390/s390.c (s390_output_dwarf_dtprel): New.
13720         * config/s390/s390-protos.h (s390_output_dwarf_dtprel): New proto.
13721         * config/s390/s390.h (ASM_OUTPUT_DWARF_DTPREL): Define.
13722
13723         * config/ia64/ia64.c (ia64_output_dwarf_dtprel): New.
13724         * config/ia64/ia64-protos.h (ia64_output_dwarf_dtprel): New proto.
13725         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_DTPREL): Define.
13726
13727 2003-03-18  Geoffrey Keating  <geoffk@apple.com>
13728
13729         * config/rs6000/rs6000.c (rs6000_emit_prologue): Don't clone
13730         the result of machopic_function_base_name.
13731         * config/darwin.c (machopic_function_base_name): Use a gc-allocated
13732         string rather than a static array.
13733
13734         * Makefile.in (emit-rtl.o): Add gt-emit-rtl.h to dependencies.
13735
13736         * gengtype.c: Include rtl.h.
13737         (enum rtx_code): Don't define.
13738         (rtx_format): Make declaration match rtl.h.
13739         (rtx_next_new): Rename from rtx_next to avoid conflict.  Change all
13740         users.
13741         (adjust_field_rtx_def): Describe strings in NOTE_LINE_NUMBER notes.
13742         * Makefile.in (gengtype.o): Update dependencies.
13743
13744 2003-03-18  Andreas Schwab  <schwab@suse.de>
13745
13746         * config/m68k/m68k.md (iordi3): Fix setting low half to -1.  From
13747         martin@blom.org.
13748
13749 2003-03-18  Geoffrey Keating  <geoffk@apple.com>
13750
13751         * function.c (next_block_index): Mark with GTY.
13752
13753         * config/rs6000/rs6000.md (macho_correct_pic): Correct pattern.
13754
13755 2003-03-18  Richard Henderson  <rth@redhat.com>
13756
13757         * config/ia64/ia64.md (UNSPECV_SETJMP_RECEIVER): New.
13758         (builtin_setjmp_receiver): Delay call to ia64_reload_gp
13759         until after reload.
13760
13761 2003-03-18  Richard Henderson  <rth@redhat.com>
13762
13763         * builtins.c (expand_builtin_unop): New target_mode operand;
13764         use it to convert the result to the correct mode.
13765         (expand_builtin): Update all callers.
13766
13767 2003-03-18  Ulrich Weigand  <uweigand@de.ibm.com>
13768
13769         * config/s390/s390.md ("movti", "movhi", "movqi"): Add "type" attribute.
13770
13771 2003-03-18  Jan Hubicka  <jh@suse.cz>
13772
13773         * i386.md:  Fix previous commit that mistakely applied the patch
13774         twice.
13775
13776         * alias.c (rtx_equal_for_memref_p): Assume that X and Y has been
13777         canonicalized.
13778         (memrefs_conflict_p): Likewise.
13779         (addr_side_effect_eval): Canonicalize the constructed address.
13780
13781 2003-03-18  Jan Hubicka  <jh@suse.cz>
13782
13783         * i386.md (cvtts?2si peep2): New.
13784
13785 2003-03-18  Kazu Hirata  <kazu@cs.umass.edu>
13786
13787         * config/h8300/h8300.md (*iorsi3_two_qi_zext): New.
13788
13789 2003-03-18  Andreas Schwab  <schwab@suse.de>
13790
13791         * dwarf2out.c (output_file_names): Cast size_t to unsigned long
13792         for format.
13793
13794 2003-03-17  Jason Merrill  <jason@redhat.com>
13795
13796         PR c++/10091
13797         * expr.c (expand_expr) [ADDR_EXPR]: Disallow taking the address of
13798         an unaligned member of TREE_ADDRESSABLE type.
13799
13800 2003-03-18  Alan Modra  <amodra@bigpond.net.au>
13801
13802         * config/rs6000/linux64.h (MASK_PROFILE_KERNEL): Define.
13803         (TARGET_PROFILE_KERNEL): Define.
13804         (SUBTARGET_SWITCHES): Handle -mprofile-kernel.
13805         (PROFILE_BEFORE_PROLOGUE): Don't define.
13806         (PROFILE_KERNEL): Remove hacks.
13807         * config/rs6000/rs6000.c (TARGET_PROFILE_KERNEL): Define default.
13808         (rs6000_stack_info): No need to save lr if just for profiling when
13809         TARGET_PROFILE_KERNEL.
13810         (output_profile_hook): Output nothing when TARGET_PROFILE_KERNEL.
13811         (output_function_profiler): Localize label generation.  Emit code
13812         for kernel profiling.
13813
13814 2003-03-17  Kazu Hirata  <kazu@cs.umass.edu>
13815
13816         * config/h8300/h8300-protos.h: Add a prototype for
13817         byte_accesses_mergeable_p.
13818         * config/h8300/h8300.c (byte_accesses_mergeable_p): New.
13819         * config/h8300/h8300.md (*iorhi3_two_qi_mem): Likewise.
13820         (a splitter): Likewise.
13821         (*iorsi3_ashift_16_ashift_24): Likewise.
13822         (*iorsi3_ashift_16_ashift_24_mem): Likewise.
13823
13824 2003-03-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13825
13826         * dwarf2asm.h: Delete obsolete comment.
13827         (dw2_asm_output_data, dw2_asm_output_delta, dw2_asm_output_offset,
13828         dw2_asm_output_pcrel, dw2_asm_output_addr,
13829         dw2_asm_output_addr_rtx, dw2_asm_output_encoded_addr_rtx,
13830         dw2_asm_output_nstring, dw2_asm_output_data_uleb128,
13831         dw2_asm_output_data_sleb128, dw2_asm_output_delta_uleb128,
13832         dw2_asm_output_delta_sleb128): Add ATTRIBUTE_NULL_PRINTF.
13833
13834 2003-03-17  Zack Weinberg <zack@codesourcery.com>
13835
13836         * c-tree.h (struct lang_identifier): Remove error_locus field.
13837         (IDENTIFIER_ERROR_LOCUS): Kill.
13838         (record_function_scope_shadow): New prototype.
13839         * c-typeck.c (build_external_ref): Don't complain if
13840         decl is error_mark_node.  When not at file scope, bind the
13841         decl's local value to error_mark_node to suppress further
13842         warnings, instead of setting IDENTIFIER_ERROR_LOCUS.
13843
13844         * c-decl.c (get_function_binding_level): New static function.
13845         (record_function_scope_shadow): New exported function.
13846         (c_make_fname_decl): Use get_function_binding_level.
13847
13848 2003-03-17  Steve Ellcey  <sje@cup.hp.com>
13849
13850         * stmt.c (tail_recursion_args): Call promote_mode to set
13851         unsignedp flag correctly before calling convert_move.
13852
13853 2003-03-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13854
13855         * loop-unroll.c (decide_peel_completely,
13856         decide_unroll_constant_iterations, decide_unroll_stupid,
13857         decide_unroll_runtime_iterations, decide_peel_simple): Set
13858         loop->has_desc.
13859
13860 2003-03-17  Jan Hubicka  <jh@suse.cz>
13861
13862         * ggc-common.c (ggc_mark_roots): Use htab_traverse_noresize.
13863
13864 2003-03-17  Olivier Hainque  <hainque@act-europe.fr>
13865
13866         * function.c (assign_parms): For a struct value address passed as
13867         first argument, delay the function's result RTL setup code until
13868         after the emission of parameter conversions.
13869
13870 2003-03-17  Dave Love  <fx@gnu.org>
13871             Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
13872
13873         * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Define __digital__,
13874         __arch64__ to match Compaq cc.
13875
13876 2003-03-17  Neil Booth  <neil@daikokuya.co.uk>
13877
13878         * c-opts.c: Default TARGET_EBCDIC to 0 if not defined.
13879         (c_common_init): Set EBCDIC in cpp options.
13880         * cpplex.c (maybe_read_ucs, cpp_parse_escape): Use EBCDIC option,
13881         not conditional compilation.
13882         * cpplib.h (struct cpp_options): New entry EBCDIC.
13883
13884 2003-03-17  Neil Booth  <neil@daikokuya.co.uk>
13885
13886         * fix-header.c (read_scan_file): Need to malloc arguments to add_path.
13887
13888 2003-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13889
13890         * function.c (thread_prologue_and_epilogue_insns): Set delete_unused
13891         argument to 0 for redirect_jump.
13892
13893 2003-03-16  Mark Mitchell  <mark@codesourcery.com>
13894
13895         PR c++/8805
13896         * except.c (eh_region_u_cleanup): Add prev_try.
13897         (expand_eh_region_end_cleanup): Set it.
13898         (reachable_handlers): Use it to skip over cleanup blocks.
13899
13900 2003-03-17  Andreas Jaeger  <aj@suse.de>
13901
13902         * Makefile.in (TAGS): Remove obsolete handling of =*.[chy].
13903
13904 2003-03-17  Alan Modra  <amodra@bigpond.net.au>
13905
13906         * config/rs6000/linux64.h (TARGET_64BIT): Redefine.
13907         (TARGET_RELOCATABLE, TARGET_EABI, TARGET_PROTOTYPE): Likewise.
13908         (SUBTARGET_SWITCHES, SUBTARGET_OPTIONS): Likewise.
13909         (SUBTARGET_OVERRIDE_OPTIONS, CPP_SYSV_SPEC): Likewise.
13910
13911 2003-03-16  Richard Henderson  <rth@redhat.com>
13912
13913         * simplify-rtx (simplify_binary_operation): Don't abort for
13914         SS_PLUS, US_PLUS, SS_MINUS, US_MINUS.
13915
13916 2003-03-16  Richard Henderson  <rth@redhat.com>
13917
13918         * config/i386/i386.md (movstrictqi, movstrictqi_1): Check
13919         optimize_size as well.
13920
13921 2003-03-16  Stephane Carrez  <stcarrez@nerim.fr>
13922
13923         * config/m68hc11/m68hc11.c (print_operand): Handle 'b' modifier
13924         for D register to specify the low part of it, aka B.
13925         (m68hc11_gen_movhi): Use REG_WAS_0 note and increment or decrement
13926         the register if we are loading 1 or -1 to it; avoid using temp
13927         register when moving X/Y to Y/X.
13928         (m68hc11_gen_movqi): Likewise.
13929         (m68hc11_check_z_replacement): Fix last insn setting for compare case.
13930
13931 2003-03-14  Mark Mitchell  <mark@codesourcery.com>
13932
13933         PR optimization/9016
13934         * config/i386/i386.c (ix86_expand_move): Force more CONST_DOUBLEs
13935         into the constant pool.
13936
13937 2003-03-16  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
13938
13939         PR target/9164
13940         * tree.c (get_narrower): For extensions with unchanged bit number,
13941         return the unsignedness of the outer mode.
13942
13943 2003-03-16  Roger Sayle  <roger@eyesopen.com>
13944
13945         * c-typeck.c (build_component_ref):  Turn "for" into "do .. while"
13946         to avoid "may be used uninitialized" warning on ia64-hpux.
13947         * config/ia64/ia64-c.c: Include "tm_p.h" for function prototypes.
13948
13949 2003-03-16  Andreas Jaeger  <aj@suse.de>
13950
13951         * configure.in: Improve check for memcheck.h.
13952         * configure: Regenerated.
13953
13954 2003-03-16  Neil Booth  <neil@daikokuya.co.uk>
13955
13956         * doc/cppopts.texi: Remove documentation of -A-.
13957
13958 2003-03-15  Zack Weinberg  <zack@codesourcery.com>
13959
13960         * doc/libgcc.texi: Remove @tie.
13961
13962 2003-03-15  Josef Zlomek  <zlomekj@suse.cz>
13963
13964         * rtl.h (subrtx_p): Renamed to rtx_referenced_p.
13965         (rtx_pair): Added new element update_label_nuses, renamed to
13966         replace_label_data.
13967         * cfgcleanup.c (outgoing_edges_match, try_crossjump_to_edge): Use
13968         replace_label_data instead of rtx_pair.
13969         * loop.c (load_mems): Likewise.
13970         * rtlanal.c (replace_label): Replace label in pool constants and in
13971         INSN_LIST (in REG_LABEL note).
13972         (subrtx_p): Renamed to rtx_referenced_p.
13973         (subrtx_p_1): Renamed to rtx_referenced_p_1, compare the interior of
13974         LABEL_REF with CODE_LABEL, traverse constants from pool.
13975
13976 2003-03-15  Aldy Hernandez <aldyh@redhat.com>
13977             Zack Weinberg  <zack@codesourcery.com>
13978
13979         * Makefile.in (TEXI_GCCINT_FILES): Add libgcc.texi.
13980         * doc/libgcc.texi: New file.
13981         * doc/interface.texi: Delete paragraph about libgcc interface.
13982         * doc/gccint.texi: Add libgcc menu entry and @include libgcc.texi.
13983
13984 2003-03-15  Jason Merrill  <jason@redhat.com>
13985
13986         PR debug/9039
13987         * dwarf2out.c (gen_decl_die): Ignore frontend tree codes.
13988
13989         PR debug/6387
13990         * dwarf2out.c (dwarf2out_decl): If we're at -g1, just stick nested
13991         function DIEs at toplevel.
13992         (decls_for_scope): At -g1, don't descend into subblocks.
13993
13994 2003-03-15  Ulrich Weigand  <uweigand@de.ibm.com>
13995
13996         * varasm.c (struct rtx_const): Change type of un.addr member
13997         to struct holding an additional 'symbol' member.
13998         (decode_rtx_const): Re-enable optimization to count SYMBOL_REFs
13999         with equal string addresses as equal.
14000         (simplify_subtraction): Adapt to struct rtx_const change.
14001
14002 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
14003
14004         * fix-header.c (read_scan_file): Read main file before handling -D.
14005
14006 2003-03-15  Roger Sayle  <roger@eyesopen.com>
14007
14008         * c-cppbuiltin.c (builtin_define_with_value_n): Fix whitespace.
14009         * c-typeck.c (c_tree_expr_nonnegative_p): Likewise.
14010         * cfgbuild.c (find_many_sub_basic_blocks): Likewise.
14011         (find_sub_basic_blocks): Likewise.
14012         * cgraphunit.c (cgraph_expand_functions): Likewise.
14013         * dwarf2out.c (prune_unused_types): Likewise.
14014         * expr.c (store_field): Likewise.
14015         * genextract.c (print_path): Likewise.
14016         * haifa-sched.c (schedule_insn): Likewise.
14017         * lcm.c (compute_antinout_edge): Likewise.
14018         * loop-unroll.c (decide_peel_once_rolling): Likewise.
14019         * ra-colorize.c (ra_colorize_free_all): Likewise.
14020         * ra-debug.c (dump_igraph): Likewise.
14021         (debug_hard_reg_set): Likewise.
14022         * reg-stack.c (reg_to_stack): Likewise.
14023         * rtlanal.c (refers_to_regno_p): Likewise.
14024         * tracer.c (layout_superblocks): Likewise.
14025
14026 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
14027
14028         * fix-header.c (read_scan_file): Fix thinko.
14029
14030 2003-03-15  Glen Nakamura  <glen@imodulo.com>
14031
14032         * reload1.c (choose_reload_regs): Use && instead of ||
14033         with REG_CANNOT_CHANGE_MODE_P condition.
14034
14035 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
14036
14037         * Makefile.in: Update.
14038         * c-common.h (cb_register_builtins): Rename c_cpp_builtins.
14039         * c-lex.c (init_c_lex): Register builtins hook is dead.
14040         * c-opts.c (COMMAND_LINE_OPTIONS, missing_arg): Handle -A, -D and -U.
14041         (c_common_decode_option): Don't call cpp_handle_option.
14042         Handle -A, -D and -U.
14043         (handle_deferred_opts): Simplify.
14044         (finish_options): Define builtins and command line macros.
14045         * c-ppoutput.c (init_pp_output): Register builtins hook is dead.
14046         * cppinit.c: Don't include intl.h.
14047         (init_builtins): Rename cpp_init_builtins.  No hook to call.
14048         (init_library): Don't need to sort options.
14049         (cpp_create_reader): Don't set pending.
14050         (cpp_destroy): Don't free pending.
14051         (struct pending_option, cl_directive_handler, struct cpp_pending,
14052         APPEND, free_chain, new_pending_directive, parse_option, opt_comp,
14053         cpp_finish_options, COMMAND_LINE_OPTIONS, DEF_OPT, struct cl_option,
14054         cl_options, cpp_handle_option): Remove.
14055         * cpplib.h (struct cpp_pending, register_builtins, cpp_handle_option,
14056         cpp_finish_options): Remove.
14057         (cpp_init_builtins): New.
14058         * fix-header.c (read_scan_file): Update to handle -D.  Fix
14059         handling of -I.  Replace call to cpp_finish_options.
14060
14061 2003-03-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14062
14063         PR optimization/9387
14064         * function.c (thread_prologue_and_epilogue_insns): Use redirect_jump
14065         for conditional returns.
14066
14067 2003-03-14  Jason Merrill  <jason@redhat.com>
14068
14069         PR optimization/6871
14070         * varasm.c (assemble_variable): Leave constant zeroes in .rodata.
14071
14072 2003-03-14  Neil Booth  <neil@daikokuya.co.uk>
14073
14074         * c-opts.c (finish_options): New.
14075         (COMMAND_LINE_OPTIONS, c_common_decode_option): Add -imacros.
14076         (missing_arg): Handle OPT_include and OPT_imacros.
14077         (c_common_init, c_common_parse_file): Use finish_options.
14078         (handle_deferred_opts): Update.
14079         * cppinit.c (struct cpp_pending): Remove imacros_head and imacros_tail.
14080         (cpp_finish_options): Don't handle -imacros here.
14081         (no_fil): Remove.
14082         (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -imacros.
14083
14084 2003-03-14  Jakub Jelinek  <jakub@redhat.com>
14085
14086         * config/rs6000/rs6000.c (rs6000_emit_load_toc_table): Don't call
14087         rs6000_maybe_dead if !fromprolog.
14088
14089 2003-03-14  Neil Booth  <neil@daikokuya.co.uk>
14090
14091         * Makefile.in: Update.
14092         * c-common.h (fe_file_change, pp_file_change): New.
14093         * c-lex.c (init_c_lex): Don't set cb_file_change.
14094         (c_common_parse_file): Move to c-opts.c.
14095         (cb_file_change): Rename fe_file_change.
14096         * c-opts.c: Include debug.h.
14097         (warn_unused_macros, include_cursor): New.
14098         (push_command_line_include, cb_file_change): New.
14099         (COMMAND_LINE_OPTIONS): Handle -include.
14100         (c_common_decode_option): Use local warn_unused_macros.
14101         Handle OPT_include.
14102         (c_common_post_options): Set file change callback.
14103         (handle_deferred_opts): Skip -include.  Don't free the array.
14104         (c_common_init): Call cpp_finish_options here, and push an
14105         initial -include file.
14106         * c-ppoutput.c (cb_file_change): Rename pp_file_change.
14107         (preprocess_file): Don't call cpp_finish_options.
14108         (init_pp_output): Don't set the file change callback.
14109         (pp_file_change): Return if no line commands or no output.
14110         * cpphash.h (next_include_file, first_unused_line): Remove.
14111         * cppinit.c (include_head, include_tail): Remove.
14112         (cpp_destroy): Don't free -include chain.
14113         (cpp_finish_options): Don't handle -include, or worry about
14114         -Wunused-macros.
14115         (_cpp_maybe_push_include_file): Remove.
14116         (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -include.
14117         * cpplib.c (_cpp_pop_buffer): Don't handle -include.
14118         * cppmacro.c (_cpp_warn_if_unused_macro, _cpp_create_definition):
14119         Used flag is set based upon the state of the warn_unused_macros
14120         flag, and so use of first_unused_line is unnecessary.
14121
14122 2003-03-13  Jan Hubicka  <jh@suse.cz>
14123
14124         * cselib.c (clear_table): Do not take argument; always clear just
14125         used slots.
14126         (cselib_process_insn):  Update call of clear_table
14127         (cselib_init): Do not call clear_table.
14128         (cselib_finish): Clear table.
14129
14130         * cse.c (count_reg_usage): Do not check side_effects_p.
14131         * rtlanal.c (set_noop_p): Check side_effects_p only when set looks
14132         like noop.
14133         (find_reg_equal_equiv_note): Do not use find_reg_note.
14134
14135 2003-03-14  Richard Henderson  <rth@redhat.com>
14136
14137         PR target/9700
14138         * config/alpha/alpha.c (alpha_va_start): Account for
14139         current_function_pretend_args_size in the AP offset.
14140
14141         * config/alpha/alpha.h (SETUP_INCOMING_VARARGS): Move out of line.
14142         (INITIAL_ELIMINATION_OFFSET): Move out of line.
14143         * config/alpha/alpha.c (alpha_setup_incoming_varargs): New.
14144         (alpha_initial_elimination_offset) New.
14145         * config/alpha/alpha-protos.h: Update.
14146
14147 2003-03-14  Jakub Jelinek  <jakub@redhat.com>
14148
14149         * stmt.c (expand_start_case): Call emit_queue ().
14150
14151 2003-03-14  Chris Demetriou  <cgd@broadcom.com>
14152             Alexandre Oliva  <aoliva@redhat.com>
14153
14154         * config/mips/mips.h (FUNCTION_PROFILER): _mcount() doesn't pop 2
14155         words in new abis.
14156
14157 2003-03-14  Eric Botcazou  <ebotcazou@libertysurf.fr>
14158
14159         PR optimization/8396
14160         * tree-inline.c (initialize_inlined_parameters): Make sure the value
14161         of read-only constant arguments is passed with the right type.
14162
14163 2003-03-14  Steven Bosscher  <steven@gcc.gnu.org>
14164
14165         * doc/extend.texi (Function Names): Make the example compilable.
14166
14167 2003-03-13  David Edelsohn  <edelsohn@gnu.org>
14168
14169         * config/rs6000/rs6000.c (processor_target_table): Really allow
14170         GP optional instructions on Power4.
14171
14172 2003-03-13  Roger Sayle  <roger@eyesopen.com>
14173
14174         * calls.c (flags_from_decl_or_type): Factor and remove redundant
14175         conditional tests.
14176
14177 2003-03-13  Mike Stump  <mrs@apple.com>
14178
14179         * ggc-page.c (struct page_entry): Remove varray.h header.
14180         Add index_by_depth field.
14181         Remove save_in_use_p field.
14182         (struct globals): Add depth_in_use, depth_max, by_depth_in_use,
14183         by_depth_max, by_depth, and save_in_use fields.
14184         (INITIAL_PTE_COUNT): Add.
14185         (save_in_use_p_i): Add.
14186         (save_in_use_p): Add.
14187         (adjust_depth): Add.
14188         (move_ptes_to_front): Add.
14189         (push_depth): Add.
14190         (push_by_depth): Add.
14191         (prefetch): Add.
14192         (free_page): Add support for and use faster data structures.
14193         (ggc_alloc): Likewise.
14194         (init_ggc): Likewise.
14195         (ggc_recalculate_in_use_p): Likewise.
14196         (ggc_pop_context): Likewise.
14197         (clear_marks): Likewise.
14198         (ggc_pch_read): Likewise.
14199         * Makefile.in (ggc-page.o): Remove varray.h.
14200
14201 2003-03-13  Nathanael Nerode  <neroden@gcc.gnu.org>
14202
14203         * ChangeLog: Rotated last year's entries to...
14204         * ChangeLog.8: New.
14205
14206         * config/ia64/fde-glibc.c, config/ia64/freebsd.h,
14207         config/ia64/hpux.h, config/ia64/hpux_longdouble.h,
14208         config/ia64/ia64-c.c, config/ia64/ia64-modes.def,
14209         config/ia64/ia64-protos.h, config/ia64/ia64.c,
14210         config/ia64/ia64.h, config/ia64/ia64.md,
14211         config/ia64/itanium1.md, config/ia64/itanium2.md,
14212         config/ia64/quadlib.c, config/ia64/unwind-ia64.c,
14213         config/ia64/unwind-ia64.h: It's GCC, not GNU CC.
14214
14215 2003-03-13  Aldy Hernandez  <aldyh@redhat.com>
14216
14217         * config/rs6000/rs6000.c (rs6000_dwarf_register_span):
14218         Differentiate endianness.
14219         (s6000_override_options): Use cpu type instead of TARGET_SPE.
14220
14221 2003-03-13  Nick Clifton  <nickc@redhat.com>
14222
14223         * config/arm/arm.c (print_multi_reg): Do not generate a type 2
14224         LDM instructions with writeback enabled.
14225         (output_return_instruction): Likewise.
14226
14227         * config/arm/pe.h (FIXED_REGISTERS): Remove definition.
14228         (CALL_USED_REGISTERS): Remove definition.
14229         (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Define.
14230
14231 2003-03-13  Alan Modra  <amodra@bigpond.net.au>
14232
14233         * config/rs6000/rs6000.c (rs6000_flag_pic): Delete.
14234         (rs6000_xcoff_encode_section_info): #ifdef TARGET_XCOFF.
14235         (rs6000_binds_local_p, TARGET_BINDS_LOCAL_P): #if TARGET_MACHO.
14236         (rs6000_override_options): Don't clear flag_pic for ABI_AIX.
14237         (rs6000_legitimize_address): Formatting.
14238         (rs6000_emit_move): Likewise.
14239         (rs6000_return_addr): Test ABI_AIX as well as flag_pic.
14240         (rs6000_emit_prologue <save_LR_around_toc_setup>): Likewise.
14241         (rs6000_elf_select_section): Comment reason for shlib being
14242         set for ABI_AIX.
14243         (rs6000_elf_unique_section): Likewise.
14244         (rs6000_elf_encode_section_info): Test !TARGET_AIX as well as ABI_AIX.
14245         * config/rs6000/rs6000.h (LEGITIMATE_LO_SUM_ADDRESS_P): Test ABI_AIX
14246         as well as flag_pic.
14247         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Likewise.
14248         (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
14249         * config/rs6000/linux64.h (TARGET_ENCODE_SECTION_INFO): Don't define.
14250
14251 2003-03-13  Richard Henderson  <rth@redhat.com>
14252
14253         * emit-rtl.c (try_split): Handle 1-1 splits of call insns properly.
14254
14255         * config/ia64/ia64.c (TARGET_FUNCTION_OK_FOR_SIBCALL): New.
14256         (ia64_gp_save_reg): Remove.
14257         (struct ia64_frame_info): Move to the beginning of the file;
14258         add reg_save_gp.
14259         (ia64_expand_call): Rearrange for new call patterns.
14260         (ia64_reload_gp): New.
14261         (ia64_split_call): New.
14262         (ia64_compute_frame_size): Allocate reg_save_gp.
14263         (ia64_expand_prologue): Save reg_save_gp.
14264         (ia64_expand_epilogue): Don't restore gp.
14265         (ia64_hard_regno_rename_ok): Remove R4 hack.
14266         (ia64_function_ok_for_sibcall): New.
14267         (ia64_output_mi_thunk): Set reload_completed, no_new_pseudos;
14268         call try_split on sibcall pattern.
14269         * config/ia64/ia64-protos.h: Update.
14270         * config/ia64/ia64.md (call_nogp, call_value_nogp, sibcall_nogp):
14271         Rename from nopic versions.  Confiscate 2nd argument to call as
14272         a marker.
14273         (call_pic, call_value_pic, sibcall_pic): Remove.
14274         (call_gp, call_value_gp, sibcall_gp): New.
14275         (builtin_setjmp_setup): Remove.
14276         (builtin_setjmp_receiver): Call ia64_reload_gp.
14277
14278 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
14279
14280         * config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
14281         config/dsp16xx/dsp16xx.h, config/dsp16xx/dsp16xx.md: Replace
14282         "GNU CC" with "GCC".
14283
14284         * config/c4x/c4x-c.c, config/c4x/c4x-modes.def,
14285         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
14286         config/c4x/c4x.md, config/c4x/libgcc.S, config/c4x/rtems.h:
14287         GCC, not GNU CC.
14288
14289         * genattrtab.h, hosthooks-def.h, hosthooks.h, langhooks-def.h,
14290         langhooks.h, tree-inline.h: Replace "GNU CC" with "GCC".
14291
14292         * c-pch.c, dummy-conditions.c, genautomata.c, genconditions.c,
14293         langhooks.c, tree-inline.c, unwind-dw2-fde-darwin.c,
14294         unwind-dw2-fde-glibc.c, unwind-libunwind.c, vmsdbgout.c: Replace
14295         "GNU CC" with "GCC".
14296
14297         * config/v850/lib1funcs.asm, config/v850/rtems.h,
14298         config/v850/v850-c.c, config/v850/v850-protos.h,
14299         config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
14300         GCC, not GNU CC.
14301
14302         * config/vax/bsd.h, config/vax/elf.h, config/vax/netbsd-elf.h,
14303         config/vax/netbsd.h, config/vax/openbsd.h, config/vax/openbsd1.h,
14304         config/vax/ultrix.h, config/vax/vax-protos.h, config/vax/vax.c,
14305         config/vax/vax.h, config/vax/vax.md, config/vax/vaxv.h: GCC, not
14306         GNU CC.
14307
14308 2003-03-12  Benjamin Kosnik  <bkoz@redhat.com>
14309
14310         * cpppch.c (cpp_valid_state): Use DL_WARNING_SYSHDR, not DL_WARNING.
14311
14312 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
14313
14314         * fixinc/fixinc.interix: Remove dead code (most of it).
14315         * fixinc/fixinc.dgux: Remove.
14316
14317         * ginclude/float.h, ginclude/iso646.h, ginclude/stdarg.h,
14318         ginclude/stdbool.h, ginclude/stddef.h: GCC, not GNU CC.
14319
14320 2003-03-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
14321
14322         * pa.c (pa_init_builtins): Fix warning.
14323
14324 2003-03-12  Steve Ellcey  <sje@cup.hp.com>
14325
14326         * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR): Remove.
14327         (ASM_OUTPUT_XDATA_SHORT): Remove.
14328         (ASM_OUTPUT_XDATA_INT): Remove.
14329         (ASM_OUTPUT_XDATA_DOUBLE_INT): Remove.
14330         (ASM_OUTPUT_ADDR_DIFF_ELT): Handled 32 bit address diffs.
14331         (ASM_PREFERRED_EH_DATA_FORMAT): Handle 32 bit EH pointers.
14332         (CASE_VECTOR_MODE): Handle 32 bit pointers in case statement.
14333
14334 2003-03-12  Andrew Lewycky  <andrew@mxc.ca>
14335
14336         PR c++/7050
14337         * expr.c (store_expr): Don't attempt to store void-typed trees,
14338         just evaluate them for side effects.
14339
14340 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
14341
14342         * cppfiles.c (cpp_rename_file, cpp_push_include): New.
14343         * cppinit.c (push_include): Move with changes to cppfiles.c.
14344         (cpp_read_main_file): Mark named operators here...
14345         (cpp_finish_options): ...not here.  Update.
14346         (_cpp_maybe_push_include_file): Update.
14347         * cpplib.h (cpp_push_include, cpp_rename_file): New.
14348
14349 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
14350
14351         * aclocal.m4: Introduce gcc_GAS_VERSION_GTE_IFELSE,
14352         _gcc_COMPUTE_GAS_VERSION.
14353         * configure.in: Use them.
14354         * configure: Regenerate.
14355
14356 2003-03-12  Bob Wilson  <bob.wilson@acm.org>
14357
14358         * config/xtensa/xtensa.md (adddi3): Don't clobber source operand used
14359         to detect carry.
14360         (subdi3): Reorder emitted instructions.
14361
14362 2003-03-12  Andreas Jaeger  <aj@suse.de>
14363
14364         * config/i386/netbsd64.h (TARGET_OS_CPP_BUILTINS): Remove call to
14365         NETBSD_OS_CPP_BUILTINS_LP64.
14366
14367 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
14368
14369         * Makefile.in: Eliminate all.indirect.  Update and clean up comments.
14370         Rearrange.  Reorganize.
14371         * configure.in: Rearrange.
14372         * configure: Regenerate.
14373
14374 2003-03-12  Andreas Jaeger  <aj@suse.de>
14375
14376         * c-cppbuiltin.c (cb_register_builtins): Define LP64 builtins for
14377         LP64 targets.
14378
14379         * doc/cpp.texi (Common Predefined Macros): Document __LP64__ and
14380         _LP64.
14381
14382         * config/ia64/ia64.h (TARGET_CPU_CPP_BUILTINS): Do not define
14383         _LP64 macros here.
14384         * config/pa/pa.h (TARGET_CPU_CPP_BUILTINS): Likewise.
14385
14386         * config/alpha/netbsd.h (TARGET_OS_CPP_BUILTINS): Remove call to
14387         NETBSD_OS_CPP_BUILTINS_LP64.
14388         * config/sh/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
14389         * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
14390
14391         * config/netbsd.h (NETBSD_OS_CPP_BUILTINS_LP64): Remove.
14392
14393 2003-03-12  Jan Hubicka  <jh@suse.cz>
14394
14395         * i386.c (ix86_setup_incoming_varargs): Set stack_alignment_needed to 128.
14396
14397 2003-03-12  Daniel Jacobowitz  <drow@mvista.com>
14398
14399         Fix PR target/9797 and PR c/9853.
14400         * stmt.c (expand_decl_init): Call push_temp_slots () and
14401         pop_temp_slots ().
14402
14403 2003-03-12  J"orn Rennecke <joern.rennecke@superh.com>
14404
14405         * sh.c: Include basic-block.h.
14406         (sh_output_mi_thunk, emit_load_ptr): New functions.
14407         (TARGET_ASM_OUTPUT_MI_THUNK, TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine.
14408
14409 2003-03-12  Nick Clifton  <nickc@redhat.com>
14410
14411         * config/arm/pe.h (FIXED_REGISTERS): Add Maverick registers.
14412         (CALL_USED_REGISTERS): Likewise.
14413         * config/arm/arm.h (FIRST_PSEUDO_REGISTER): Update comment
14414         describing how this value is calculated.
14415
14416 2003-03-12  Hans-Peter Nilsson  <hp@bitrange.com>
14417
14418         * configure.in (rlim_t): Define to long if no valid definition
14419         found in sys/resource.h.
14420         * config.in, configure: Regenerate.
14421
14422 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
14423
14424         * config/mcore/mcore-elf.h (CPP_PREDEFINES): Replace with
14425         TARGET_OS_CPP_BUILTINS.
14426         * config/mcore/mcore-pe.h: Similarly.
14427         * config/mcore/mcore.h: Replace CPP_PREDEFINES and part of
14428         CPP_SPEC with TARGET_CPU_CPP_BUILTINS.
14429
14430 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
14431
14432         PR c/9928
14433         * c-decl.c (duplicate_decls): Discard the initializer of the new decl
14434         only if it is a VAR_DECL.
14435
14436 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
14437
14438         PR optimization/9888
14439         * config/i386/i386.md (jcc_1): Fix range.
14440         (jcc_2): Likewise.
14441         (jump): LIkewise.
14442         (doloop_end_internal): Likewise.
14443
14444 2003-03-12  Danny Smith  <dannysmith@users.sourceforge.net>
14445
14446         * config/i386/winnt.c (DLL_IMPORT_PREFIX): New define.
14447         Use throughout instead of DLL_IMPORT_EXPORT_PREFIX and "e."
14448         (DLL_EXPORT_PREFIX): New define. Use throughout instead of
14449         DLL_IMPORT_EXPORT_PREFIX and "i."
14450         (i386_pe_dllexport_name_p): Here.
14451         (i386_pe_dllimport_name_p): Here.
14452         (i386_pe_mark_dllexport): Here. Remove DLL_IMPORT_PREFIX,
14453         not 9 chars when getting identifier name.
14454         (i386_pe_mark_dllimport): Here.
14455         (i386_pe_encode_section_info): Here. Remove DLL_IMPORT_PREFIX,
14456         not 9 chars when getting identifier name. Correct comment.
14457         (i386_pe_strip_name_encoding): Here. Add comments for different
14458         cases.
14459         (gen_fastcall_suffix): Break down xmalloc() argument to
14460         components.
14461         (gen_stdcall_suffix): Likewise.
14462         Update copyright year.
14463
14464 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
14465
14466         PR optimization/9888
14467         * config/i386/i386.md (movsi_1): Remove special alternatives
14468         for %eax register.
14469         (movsi_1_nointernunit): Likewise.
14470         (movhi_1): Likewise.
14471         * config/i386/i386.c (memory_address_length): Do not use
14472         short displacement when there is no base.
14473         (ix86_attr_length_address_default): Handle LEA instructions.
14474
14475 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
14476
14477         * c-cppbuiltin.c (builtin_define_std): Make non-static.
14478
14479 2003-03-11  Loren James Rittle  <ljrittle@acm.org>
14480
14481         * config/freebsd-spec.h (FBSD_CPP_PREDEFINES): Remove.
14482         (FBSD_TARGET_OS_CPP_BUILTINS): New port-specific macro.
14483         (FBSD_TARGET_CPU_CPP_BUILTINS): New port-specific macro.
14484         * config/freebsd.h (CPP_PREDEFINES): Remove.
14485         (TARGET_OS_CPP_BUILTINS): New.
14486         * config/alpha/freebsd.h: Use overridden FBSD_TARGET_CPU_CPP_BUILTINS
14487         instead of TARGET_OS_CPP_BUILTINS.
14488         * config/sparc/freebsd.h (CPP_PREDEFINES): Remove.
14489
14490 2003-03-11  Geoffrey Keating  <geoffk@apple.com>
14491
14492         * c-cppbuiltin.c (builtin_define_std): Add ATTRIBUTE_UNUSED.
14493
14494 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
14495
14496         * config/rs6000/rs6000.c (rs6000_stack_info): Remove
14497         insn_chain_scanned.  Use insn_chain_scanned_p in machine_function.
14498
14499         * config/rs6000/rs6000.h (machine_function): Add insn_chain_scanned_p.
14500
14501 2003-03-11  Alexandre Oliva  <aoliva@redhat.com>
14502
14503         * toplev.c (independent_decode_option): Return success for --help,
14504         --target-help and --version.
14505
14506 2003-03-11  Alexandre Oliva  <aoliva@redhat.com>
14507
14508         * config/mips/linux64.h (DRIVER_SELF_SPECS): Add endian_spec.
14509         Default to -mips3 on -mabi=64.  Don't add -mips* flag if -march is
14510         specified.
14511         (SUBTARGET_ASM_SPEC): Remove -mips*-adding code obviated by
14512         DRIVER_SELF_SPECS.
14513         (LINK_SPEC): Let endian options affect the linker emulation name.
14514
14515 2003-03-11  J"orn Rennecke <joern.rennecke@superh.com>
14516
14517         * sh.md (reload_inqi): Fix mode for source in second set.
14518
14519 2003-03-11  Jan Hubicka  <jh@suse.cz>
14520
14521         * cselib.c (cselib_invalidate_mem_1): Move too ...
14522         (cselib_invalidate_mem): ... here; use new list
14523         (dummy_val, first_containing_mem): New static variables.
14524         (clear_table): Initialize first_containing_mem.
14525         (discard_useless_values):  Compact the containing_mem list.
14526         (add_mem_for_addr): Add to the list.
14527         * cselib.h (cselib_val): Add next_containing_mem.
14528
14529 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
14530
14531         * config/rs6000/rs6000.c (rs6000_override_options): Disable string
14532         instructions for e500.
14533
14534 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
14535
14536         * Makefile.in: Update.
14537         * c-cppbuiltin.c: Include tm_p.h.
14538
14539 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
14540
14541         * doc/tm.texi (Frame Registers): Document DWARF_REG_TO_UNWIND_COLUMN.
14542
14543         * unwind-dw2.c (DWARF_REG_TO_UNWIND_COLUMN): Define.
14544         (_Unwind_GetGR): Use DWARF_REG_TO_UNWIND_COLUMN.
14545         (_Unwind_SetGR): Same.
14546         (_Unwind_GetGRPtr): New.
14547         (_Unwind_SetGRPtr): New.
14548         (uw_update_context_1): Use accesor functions instead of accessing
14549         context->reg[] directly.
14550         (uw_install_context_1): Same.
14551         (execute_cfa_program): Same.
14552         (__frame_state_for): Same.
14553
14554         * config/rs6000/rs6000.c (spe_synthesize_frame_save): Use 1200 as
14555         the synthetic register offset.
14556
14557         * config/rs6000/rs6000.h (DWARF_REG_TO_UNWIND_COLUMN): New.
14558
14559 2003-03-11  Hans-Peter Nilsson  <hp@axis.com>
14560
14561         * config/cris/cris.md: Remove lingering EGCS reference.
14562         ("*extopqihi_side_biap"): For HI operation, match
14563         cris_additive_operand_extend_operator, not
14564         cris_operand_extend_operator.  Adjust condition.
14565         ("*extopqihi_side", "*extopqihi"): Ditto.
14566         ("*extopqisi_side_biap"): Correct operand numbers in condition.
14567         ("*extophisi_side_biap", "*extopqisi_swap_side_biap"): Ditto.
14568         ("*extophisi_swap_side_biap", "*extopqisi_swap"): Ditto.
14569         ("*extophisi_swap"): Ditto.
14570         ("*extopqihi_swap_side_biap"): For HI operation, match a simple
14571         PLUS, not cris_operand_extend_operator.  Adjust condition and
14572         output template.
14573         ("*extopqihi_swap_side", "*extopqihi_swap"): Ditto.
14574         * config/cris/cris.h (PREDICATE_CODES): Add
14575         cris_additive_operand_extend_operator.
14576         * config/cris/cris.c (cris_additive_operand_extend_operator):
14577         New predicate.
14578
14579 2003-03-11  Hartmut Penner  <hpenner@de.ibm.com>
14580
14581         * df.c (read_modify_subreg_p): Change from static to global.
14582         * df.h (read_modify_subreg_p): Add prototype.
14583         * sched-deps.c (sched_analyze_1): Generate true dependency for
14584         strict_low_part, certain subregs and zero/sign_extract.
14585
14586 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
14587
14588         * Makefile.in: Update.
14589         * c-common.c: Don't include real.h or except.h.
14590         (REGISTER_PREFIX): Remove.
14591         (builtin_define_std, builtin_define_with_value,
14592         builtin_define_with_int_value, builtin_define_with_hex_fp_value,
14593         builtin_define_type_max, builtin_define_type_precision,
14594         builtin_define_float_constants): Move to c-cppbuiltin.c.
14595         (c_stddef_cpp_builtins): New.
14596         * c-common.h (builtin_define_with_value, c_stddef_cpp_builtins): New.
14597         * c-cppbuiltin.c: New, extracted from c-common.c.
14598         (define__GNUC__): New.
14599         * cppspec.c (lang_specific_driver): Remove support of -no-gcc.
14600         * gcc.c: Remove support of %v1, %v2 and %v3 specs.
14601         (cpp_unique_options): Don't support no-gcc.
14602         (do_spec_1): Remove support of version specs.
14603         * doc/invoke.texi: Remove documentation of %v1, %v2 and %v3.
14604         * doc/passes.texi: Update.
14605         * doc/tm.texi: Update.
14606
14607 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
14608
14609         * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
14610
14611 2003-03-10  Andrew Pinski  <apinski@apple.com>
14612
14613         * config/darwin.c (machopic_function_base_name): If dynamic-no-pic
14614         is on should not get here.
14615         (machopic_indirect_data_reference): If dynamic-no-pic is on just
14616         generate high/low parts of the address.
14617         (machopic_legitimize_pic_address): Change MACHOPIC_PURE to
14618         MACHOPIC_INDIRECT. Dynamic-no-pic uses 0 as the pic base. Generate
14619         symbol and labels with a new reg.  Dynamic-no-pic does not have a
14620         pic_offset_table_rtx.
14621         (machopic_select_section): Change references of flag_pic to
14622         MACHOPIC_INDIRECT.
14623         (machopic_asm_out_destructor): Likewise.
14624         * config/darwin.h (ASM_DECLARE_UNRESOLVED_REFERENCE): Change
14625         reference of flag_pic to MACHOPIC_INDIRECT.
14626         (MACHO_DYNAMIC_NO_PIC_P): Define as TARGET_DYNAMIC_NO_PIC.
14627         (MACHOPIC_INDIRECT): Is also true when dynamic-no-pic is on.
14628         (MACHOPIC_JUST_INDIRECT): Is also true when dynamic-no-pic is on.
14629         (MACHOPIC_PURE): Is not pure when dynamic-no-pic is on.
14630         * config/i386/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define as
14631         0 for right now as dynamic-no-pic is not implemented on Darwin/ia32.
14632         * config/rs6000/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define.
14633         (TARGET_DYNAMIC_NO_PIC): Define.
14634         (SUBTARGET_SWITCHES): Define, have sub-target switches for
14635         dynamic-no-pic.
14636         (SUBTARGET_OVERRIDE_OPTIONS): Move check for -fpic from
14637         rs6000_override_options to here. Dynamic-no-pic overrides
14638         pic.
14639         (CC1_SPEC): Change from not static then pic to not static and not
14640         dynamic-no-pic then pic.
14641         * config/rs6000/rs6000.c (rs6000_override_options): Move the
14642         check for -fpic and DARWIN_ABI to config/rs6000/darwin.h
14643         (rs6000_legitimize_reload_address): Add case for loading floating in
14644         dynamic-no-pic.
14645         (rs6000_emit_move): Add case for dynamic-no-pic.  Change reference
14646         of flag_pic to MACHOPIC_INDIRECT.
14647         (secondary_reload_class): Conditional change the reference of
14648         flag_pic to MACHOPIC_INDIRECT.
14649         (rs6000_output_mi_thunk): Change reference of flag_pic to
14650         MACHOPIC_INDIRECT.
14651         (output_profile_hook): Likewise.
14652         (machopic_output_stub): Non-pure (dynamic-no-pic) is now supported.
14653         * config/rs6000/rs6000.md (movdf_low): Add the case for
14654         MACHO_DYNAMIC_NO_PIC_P.
14655         (call): Change references for flag_pic in TARGET_MACHO to
14656         MACHOPIC_INDIRECT.
14657         (SUBTARGET_OVERRIDE_OPTIONS): Add case where -fpic is on and
14658         -mdynamic-no-pic is on.  Also move case for -fpic from rs6000.c.
14659         * doc/invoke.texi (-mdynamic-no-pic): Document.
14660
14661 2003-03-10  Devang Patel  <dpatel@apple.com>
14662
14663         PR c++/9394
14664         * gcc.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
14665         (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
14666         * gcc.h (DEFAULT_SWITCH_TAKES_ARG): Add.
14667         (DEFAULT_WORD_SWITCH_TAKES_ARG): Add.
14668         * cppspec.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
14669         (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
14670
14671 2003-03-10  Steven Bosscher  <s.bosscher@student.tudelft.nl>
14672
14673         PR optimization/7189
14674         * toplev.c (rest_of_compilation):  Move
14675         check_function_return_warnings up to just after
14676         delete_unreachable_blocks.
14677
14678 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
14679
14680         * config/m68hc11/m68hc11.h (HARD_REGNO_RENAME_OK): Define.
14681         * config/m68hc11/m68hc11-protos.h (m68hc11_hard_regno_rename_ok):
14682         Declare.
14683         * config/m68hc11/m68hc11.c (m68hc11_hard_regno_rename_ok): New function
14684         for reg rename optimization to avoid using Z and Y registers.
14685
14686 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
14687
14688         * config/m68hc11/m68hc11.md ("*addhi3_68hc12"): Accept any constant
14689         when adding to X and Y since leax/leay are fast.
14690         ("*addhi3"): Accept 'I' constraint when adding to address register.
14691         ("rotlhi3"): Operand 1 must be a register_operand.
14692         (peephole2): New peephole to optimize some adds.
14693         * config/m68hc11/m68hc11.h (CONST_OK_FOR_LETTER_P): Use 'I' constraint
14694         to represent -2 .. 2 small integer range.
14695
14696 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
14697
14698         * config/m68hc11/m68hc11.c (m68hc11_gen_rotate): Set carry before
14699         each 16-bit rotation.
14700
14701 2003-03-10  Zack Weinberg  <zack@codesourcery.com>
14702
14703         * c-opts.c (add_prefixed_path): Don't use concat.  When
14704         prefixing with cpp_GCC_INCLUDE_DIR, copy only the first
14705         cpp_GCC_INCLUDE_DIR_len characters.
14706
14707 2003-03-10  Segher Boessenkool  <segher@koffie.nl>
14708
14709         * testsuite/gcc.dg/altivec-9.c: New file.
14710
14711         * config/rs6000/rs6000.c (altivec_frame_fixup): Remove.
14712         (rs6000_emit_prologue): Use rs6000_frame_related instead.
14713
14714 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
14715
14716         * config/rs6000/spe.h: Define __ev64_*64__ to use single element
14717         vectors.
14718         (__ev_convert_u64): Remove macro.  Define as inline.
14719         (__ev_convert_s64): Same.
14720
14721 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
14722
14723         * config/rs6000/rs6000.h (DWARF_FRAME_REGISTERS): Define.
14724         (rs6000_stack_t): Add spe_64bit_regs_used.
14725
14726         * config/rs6000/rs6000.c (rs6000_stack_info): Calculate
14727         spe_64bit_regs_used, and use it to determine the size of the
14728         frame.
14729         (spe_func_has_64bit_regs_p): New.
14730         (spe_synthesize_frame_save): New.
14731         (rs6000_frame_related): Handle SPE synthetic registers.
14732         (rs6000_emit_prologue): Only save in 64-bits if the function used
14733         any registers in 64-bit mode.
14734         (rs6000_emit_epilogue): Same, but for restore.
14735
14736 2003-03-10  Richard Earnshaw  <rearnsha@arm.com>
14737
14738         * arm.h (enum floating_point_type): Delete.  Replace with...
14739         (enum fputype): ... new.
14740         (FPUTYPE_DEFAULT): Renamed from FP_DEFAULT.  Values reworked.
14741         * linux-elf.h (FPUTYPE_DEFAULT): Likewise.
14742         * arm.md (attr fpu): Reworked for new underlying enum values.
14743         * arm.c (arm_fpu_arch): Now enum fputype.
14744         (arm_fpu_tune): Renamed from arm_fpu.  Now enum fputype.
14745         (arm_override_options, arm_output_epilogue, arm_expand_prologue):
14746         Update uses of arm_fpu_arch and arm_fpu_tune.
14747
14748 2003-03-10  Josef Zlomek  <zlomekj@suse.cz>
14749
14750         * cfgcleanup.c (outgoing_edges_match): Compare the jump tables.
14751         (try_crossjump_to_edge): Replace refereces to one jump table by
14752         references to identical jump table.
14753         * loop.c (load_mems): Moved setting the JUMP_LABEL to replace_label.
14754         (replace_label): Moved to rtlanal.c.
14755         (struct rtx_pair): Moved to rtl.h.
14756         * rtl.h (struct rtx_pair): Moved from loop.c.
14757         (replace_label): New extern function.
14758         (subrtx_p): New extern function.
14759         (tablejump_p): New extern function.
14760         * rtlanal.c (replace_label): Moved from loop.c.
14761         (subrtx_p_1): New static function.
14762         (subrtx_p): New function.
14763         (tablejump_p): New function.
14764
14765 2003-03-10  Jan Hubicka  <jh@suse.cz>
14766
14767         * cfgcleanup.c (try_optimize_cfg): Fix thinko in previous patch.
14768
14769         * cfgcleanup.c (merge_blocks): Return where to iterate next.
14770         (try_optimize_cfg): Use return value of merge_blocks
14771
14772 2003-03-10  Michael Matz  <matz@suse.de>
14773
14774         * cfg.c (unchecked_make_edge): New.
14775         (cached_make_edge): Use it.
14776         * basic-block.h (unchecked_make_edge): Declare.
14777         * cfglayout.c (cfg_layout_duplicate_bb): Use it.
14778
14779 2003-03-10  Richard Earnshaw  <rearnsha@arm.com>
14780
14781         * fpa.md: New file.  Move all patterns relating to FPA co-processor
14782         to here...
14783         * arm.md: ... from here.
14784         (cirrus.md, fpa.md): Include at end of description.
14785         (divsf3, divdf3, modsf3, movdf3, sqrtsf2, sqrtdf2): New expands.
14786         (pic_load_addr_based): Remove register constraint from expander.
14787         (seq, sne, sgt, sle, slt, sge, sgeu, sleu, sgtu, sltu, sunordered)
14788         (sordered, sungt, sunle, sunge, sunlt): Likewise.
14789         (eh_epilogue, tablejump): Likewise.
14790
14791 2003-03-09  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14792
14793         * tree.c (substitute_in_expr, case 'e'): Only make recursive call
14794         on operands if it has a PLACEHOLDER_EXPR.
14795
14796 2003-03-09  David Edelsohn  <edelsohn@gnu.org>
14797             Mostafa Hagog
14798
14799         * config/rs6000/rs6000.md (movsi_update1): Add TARGET_UPDATE final
14800         condition.
14801
14802 2003-03-09  Neil Booth  <neil@daikokuya.co.uk>
14803
14804         * config/frv/frv.h: Use TARGET_CPU_CPP_BUILTINS, not CPP_PREDEFINES.
14805         * config/ip2k/ip2k.h: Similarly.
14806         * config/m32r/m32r.h: Similarly.
14807         * config/m68hc11/m68hc11.h: Similarly.
14808         * config/mn10200/mn10200.h: Similarly.
14809         * config/mn10300/mn10300.h: Similarly.
14810         * config/pdp11/pdp11.h: Similarly.
14811         * config/v850/v850.h: Similarly.
14812         * config/rs6000/vxworks.h: Similarly for TARGET_OS_CPP_BUILTINS.
14813         * config/v850/retms.h: Similarly for TARGET_OS_CPP_BUILTINS.
14814         * config/mips/iris3.h: Remove #if 0 block.
14815
14816 2003-03-09  Roger Sayle  <roger@eyesopen.com>
14817             Joern Rennecke <joern.rennecke@superh.com>
14818
14819         * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch.  Don't handle
14820         pending argument upon return from handle_braces here.
14821         (do_spec_2): Instead handle it upon return from do_spec_1 here.
14822
14823 2003-03-09  Roger Sayle  <roger@eyesopen.com>
14824             Joern Rennecke <joern.rennecke@superh.com>
14825
14826         * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch.  Don't handle
14827         pending argument upon return from handle_braces here.
14828         (do_spec_2): Instead handle it upon return from do_spec_1 here.
14829
14830 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
14831
14832         * varasm.c (make_decl_one_only): Use declare_weak().
14833
14834 2003-03-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
14835
14836         PR middle-end/9986
14837         * c-common.c (c_common_nodes_and_builtins): Initialize target builtins
14838         after the common builtins.
14839         * pa-hpux.h (DONT_HAVE_FPUTC_UNLOCKED): Define.
14840         * pa.c (TARGET_INIT_BUILTINS): Define.
14841         (pa_init_builtins): New function.
14842
14843         * pa.md (call, call_value, sibcall, sibcall_value): When sufficient
14844         space has been allocated for the outgoing arguments, set the arg
14845         pointer for a call emitted after virtuals have been instantiated
14846         using the stack pointer offset, otherwise abort.
14847
14848 2003-03-09  DJ Delorie  <dj@redhat.com>
14849
14850         * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH): Revert.
14851
14852 2003-03-09  Richard Earnshaw  <rearnsha@arm.com>
14853
14854         * arm.md (fix_truncsfsi2, fix_truncdfsi2, arm_fix_truncsfsi2)
14855         (arm_fix_truncdfsi2): Add missing fix in floating point mode before
14856         conversion to integer.
14857         * cirrus.md (cirrus_truncsfsi2, cirrus_truncdfsi2): Likewise.
14858
14859 2003-03-09  Roger Sayle  <roger@eyesopen.com>
14860
14861         * builtins.def: Fix typo and improve grammar.
14862         * loop-unroll.c (decide_peel_completely): Tidy log message.
14863
14864 2003-03-09  Kazu Hirata  <kazu@cs.umass.edu>
14865
14866         * config/h8300/h8300.md (*tstsi_upper_bit): New.
14867         (*iorsi3_e2f): Likewise.
14868
14869 2003-03-08  Kazu Hirata  <kazu@cs.umass.edu>
14870
14871         * config/h8300/h8300.c (h8300_and_costs): Return the number of
14872         assembly instructions needed.
14873         (h8300_shift_costs): Likewise.
14874
14875 2003-03-09  Hans-Peter Nilsson  <hp@bitrange.com>
14876
14877         * config/cris/aout.h (ENDFILE_SPEC): Undef.
14878
14879         * optabs.c (gen_move_insn): Move logic for synthesizing MODE_CC
14880         moves from here ...
14881         * expr.c (emit_move_insn_1): ... to here.
14882
14883         * config/cris/aout.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__AOUT__ to...
14884         (TARGET_OS_CPP_BUILTINS): New macro.
14885         * config/cris/cris.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__ELF__ to...
14886         (TARGET_OS_CPP_BUILTINS): New macro.
14887         (CPP_PREDEFINES): Don't define.  Move old definitions and...
14888         (CPP_SPEC): ...move -D__CRIS_ABI_version=2 to...
14889         (TARGET_CPU_CPP_BUILTINS): New macro.
14890         * config/cris/linux.h (CRIS_CPP_SUBTARGET_SPEC): Move constant
14891         definitions and the optional __PIC__, __pic__ and
14892         __NO_UNDERSCORES__ definitions to...
14893         (TARGET_OS_CPP_BUILTINS): New macro.
14894
14895         * flags.h (flag_leading_underscore): Declare.
14896
14897         * c-opts.c (c_common_post_options): On fopen failure, return
14898         false, not NULL.
14899
14900 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
14901
14902         * config/cris/cris_abi_symbol.c: #include tconfig.h and tm.h, not
14903         config.h.
14904         * config/cris/cris.h (HAVE_GAS_HIDDEN): Don't define here.
14905         * config/cris/aout.h (HAVE_GAS_HIDDEN): Undef.
14906
14907 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
14908
14909         * config/sh/rtemself.h (TARGET_OS_CPP_BUILTINS): Use instead of
14910         CPP_PREDEFINES.
14911         * config/sh/rtems.h (TARGET_OS_CPP_BUILTINS): Use instead of
14912         CPP_PREDEFINES.
14913
14914 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
14915
14916         * c-common.h (c_common_init, c_common_post_options): Update.
14917         * c-objc-common.c (c_objc_common_init): Update for new prototype.
14918         * c-opts.c (saved_lineno): New.
14919         (c_common_post_options, c_common_init): Update prototypes,
14920         move call to cpp_read_main_file from latter to former.
14921         * c-tree.h (c_ojbc_common_init): Update.
14922         * langhooks-def.h (lhd_post_options): New.
14923         (LANG_HOOKS_INIT, LANG_HOOKS_POST_OPTIONS): Update.
14924         * langhooks.c (lhd_post_options): New.
14925         * langhooks.h (struct lang_hooks): Update post_options and init hooks.
14926         * toplev.c (no_backend): New.
14927         (process_options): Call post_options hook and set main_input_filename
14928         and input_filename here.
14929         (lang_dependent_init, do_compile): post_options hook moved to
14930         process_options.
14931         * objc/objc-act.c (objc_init): Update prototype.
14932         * objc/objc-act.h (objc_init): Update prototype.
14933
14934 2003-03-08  Roger Sayle  <roger@eyesopen.com>
14935
14936         * emit-rtl.c (gen_lowpart): Don't attempt to load a part of
14937         a complex or vector type, using a load in the original mode.
14938
14939 2003-03-08  Jan Hubicka  <jh@suse.cz>
14940
14941         * Makefile.in (cgraph.o): Depend on gt-cgraph.h and varray.h.
14942         * gt-cgraph.h: New GC file.
14943         * cgraph.c (known_fns): New static variable.
14944         (cgraph_node): Add the decl into varray.
14945
14946 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
14947
14948         * config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives.
14949
14950 2003-03-08  Richard Earnshaw  <rearnsha@arm.com>
14951
14952         * arm.c (fpa_rhs_operand, fpa_add_operand, const_double_rtx_ok_for_fpa)
14953         (neg_const_double_ok_for_fpa, output_mov_long_double_fpa_from_arm)
14954         (output_mov_long_double_arm_from_fpa, output_mov_double_fpa_from_arm)
14955         (output_mov_double_arm_from_fpa): Renamed to use fpa instead of fpu.
14956         All callers changed.
14957         * arm.md, arm.h, arm-protos.h: Updated.
14958
14959         * arm.h (enum reg_class FPA_REGS): Renamed from FPU_REGS.
14960         (CLASS_MAX_NREGS, REGISTER_MOVE_COST, REG_CLASS_FROM_LETTER): Updated.
14961         * arm.c (arm_regno_class, f_register_operand): Updated.
14962
14963 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
14964
14965         * config/cris/cris.h: Remove EGCS references.
14966         (CPP_SPEC): Remove "-$".
14967         (INIT_CUMULATIVE_ARGS): Adjust parameter name to FNDECL.
14968
14969 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
14970
14971         * config/stormy16/stormy16.h (TARGET_CPU_CPP_BUILTINS): Use in
14972         preference to CPP_PREDEFINES.
14973
14974 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
14975
14976         * cppinit.c (cpp_finish_options): Set first_unused_line to -1.
14977
14978 2003-03-08  Kazu Hirata  <kazu@cs.umass.edu>
14979
14980         * config/h8300/h8300.md (*extzv_16_8): New.
14981
14982 2003-03-08  Jan Hubicka  <jh@suse.cz>
14983
14984         * c-decl.c: (finish_function): Update call of tree_inlinable_function_p.
14985         * cgraph.h: (cgraph_local_info): Add can_inline_once
14986         (cgraph_global_info): Add inline_once.
14987         (cgraph_node): Add previous.
14988         (cgraph_remove_node): New.
14989         * cgraphunit.c (cgraph_mark_functions_to_inline_once): New static
14990         function.
14991         (cgraph_optimize): Call it.
14992         (cgraph_finalize_function):  Set inlinable flags.
14993         (cgraph_finalize_compilation_unit):  Actually remove the reclaimed nodes.
14994         (cgraph_mark_functions_to_output):  Use new inlining heuristics flags.
14995         (cgraph_expand_function): Likewise.
14996         * cgraph.c
14997         (cgraph_node): Put nodes into doubly linked chain.
14998         (cgraph_remove_node): New function.
14999         * flags.h (flag_inline_functions_called_once): Declare.
15000         * tree-inline.c: Include cgraph.h
15001         (inlinable_functions_p): Add extra argument to bypass limits.
15002         (expand_call_inline):  Obey cgraph flag.
15003         * tree-inline.h (tree_inlinable_function_p): Update prototype.
15004
15005 2003-03-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15006
15007         * gcse.c (bypass_block, bypass_conditional_jumps): Do not create
15008         irreducible loops.
15009
15010         * loop-unroll.c (unroll_loop_runtime_iterations): Update irreducible
15011         loops info correctly.
15012
15013 2003-03-08  Eric Botcazou  <ebotcazou@libertysurf.fr>
15014
15015         PR middle-end/7796
15016         * unroll.c (calculate_giv_inc): Handle constants being
15017         loaded with LSHIFTRT.
15018
15019 2003-03-07  David Edelsohn  <edelsohn@gnu.org>
15020
15021         * config/rs6000/rs6000.c (processor_target_table): Do not disable
15022         GP optional instructions on Power3, Power4, 620, and 630.
15023
15024 2003-03-07  Kazu Hirata  <kazu@cs.umass.edu>
15025
15026         * calls.c: Fix comment formatting.
15027         * cfgloopanal.c: Likewise.
15028         * cfgloopmanip.c: Likewise.
15029         * combine.c: Likewise.
15030         * dwarf2out.c: Likewise.
15031         * ggc-common.c: Likewise.
15032         * langhooks.c: Likewise.
15033         * loop-unroll.c: Likewise.
15034         * loop.c: Likewise.
15035         * ra-build.c: Likewise.
15036         * sbitmap.c: Likewise.
15037         * toplev.c: Likewise.
15038
15039 2003-03-07  James E Wilson  <wilson@tuliptree.org>
15040
15041         * config/sh/sh.h (HARD_REGNO_NREGS): Round up the XD register count.
15042
15043 2003-03-07  Geoffrey Keating  <geoffk@apple.com>
15044
15045         * objc/lang-specs.h (objective-c-header): Use .gch not .pch;
15046         support -no-integrated-cpp.
15047
15048         * c-pch.c (get_ident): Use c_language_kind and flag_objc rather
15049         than langhooks.name.
15050
15051 2003-03-07  Michael Matz  <matz@suse.de>
15052
15053         * df.h (enum df_ref_flags.DF_REF_STRIPPED): New.
15054         (DF_FOR_REGALLOC): New.
15055         * df.c (df_ref_record): Set DF_REF_STRIPPED.
15056         (read_modify_subreg_p): Simplify.
15057         (df_def_record_1, df_uses_record): Set DF_REF_MODE_CHANGE more often.
15058         Use DF_FOR_REGALLOC.
15059         * ra.h (struct web): New member subreg_stripped.
15060         (invalid_mode_change_regs): Declare.
15061         * ra.c (invalid_mode_change_regs): New.
15062         (init_ra): Initialize it.
15063         * ra-build.c (init_one_web_common, remember_web_was_spilled): Use it.
15064         Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
15065         (reinit_one_web, parts_to_web_1): Deal with subreg_stripped.
15066         * ra-colorize.c (colorize_one_web): Use invalid_mode_change_regs.
15067         Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
15068
15069 2003-03-07  Richard Earnshaw  <rearnsha@arm.com>
15070
15071         * arm.md (addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, negsf2)
15072         (negdf2, abssi2, abssf2, absdf2, floatsisf2, floatsidf2)
15073         (fix_truncsfsi2, fix_truncdfsi2, truncdfsf2): Moved back into main
15074         machine description file from ...
15075         * cirrus.md: ... here.
15076
15077 2003-03-06  Kazu Hirata  <kazu@cs.umass.edu>
15078
15079         * config/h8300/h8300.md (a peephole2): Don't use
15080         reg_overlap_mentioned_p.
15081
15082 2003-03-06  Geoffrey Keating  <geoffk@apple.com>
15083
15084         * c-pch.c: Include langhooks.h.
15085         (IDENT_LENGTH): New.
15086         (get_ident): New.
15087         (pch_ident): Delete.
15088         (pch_init): Use get_ident, IDENT_LENGTH.
15089         (c_common_valid_pch): Likewise.  Also, use actual language
15090         in warning message.
15091         * Makefile.in (c-pch.o): Add langhooks.h to dependencies.
15092
15093         * objc/config-lang.in (gtfiles): Add objc-act.c.  Remove duplicate
15094         c-parse.in.
15095         * objc/Make-lang.in (objc/objc-act.o): Add dependency on
15096         gt-objc-objc-act.h.
15097         (gt-objc-objc-act.h): New rule.
15098         * objc/lang-specs.h: Support PCH.
15099         * objc/objc-act.c: Include gt-objc-objc-act.h.
15100         (objc_add_static_instance): Move num_static_inst out, mark for PCH.
15101         (build_selector_reference_decl): Move idx out, mark for PCH.
15102         (build_class_reference_decl): Likewise.
15103         (build_objc_string_decl): Move *_idx out, mark for PCH.
15104         (build_tmp_function_decl): Move xxx out, mark for PCH.
15105
15106 2003-03-06  Dale Johannesen  <dalej@apple.com>
15107
15108         * config/rs6000/rs6000.c (rs6000_binds_local_p):  Consider
15109         global functions for inlining on Darwin.
15110
15111 2003-03-06  Vladimir Makarov  <vmakarov@redhat.com>
15112
15113         * haifa-sched.c (schedule_block): Don't call reorder when sorting
15114         is prohibited.
15115
15116 2003-03-06  Neil Booth  <neil@daikokuya.co.uk>
15117
15118         * Makefile.in (c-ppoutput.o): Update.
15119         * c-common.h (init_pp_output): New.
15120         (preprocess_file): Update.
15121         * c-lex.c (init_c_lex): Move mbchar initialization to cpplib.
15122         Register builtins.
15123         * c-opts.c (c_common_init): Call init_pp_output if preprocessing.
15124         Make call to cpp_read_main_file common to whether preprocessing
15125         or not.  Don't register builtins.
15126         * c-ppoutput.c: Include c-pragma.h.
15127         (setup_callbacks): Rename init_pp_output.
15128         (preprocess_file): No longer setup callbacks or call
15129         cpp_read_main_file.
15130         * cpphash.h (_cpp_init_mbchar): New.
15131         * cppinit.c (init_library): Call _cpp_init_mbchar.
15132         * cpplex.c (_cpp_init_mbchar): New.
15133
15134 2003-03-06  Roger Sayle  <roger@eyesopen.com>
15135
15136         * emit-rtl.c (gen_lowpart): When requesting the low-part of a
15137         MEM, try loading the MEM into a register and taking the low-part
15138         of that, to help CSE see the use of the MEM in its true mode.
15139
15140 2003-03-05  Tom Tromey  <tromey@redhat.com>
15141
15142         * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH):
15143         Define.
15144
15145 2003-03-05  Nick Clifton  <nickc@cambridge.redhat.com>
15146
15147         * config/stormy16/stormy16.md ("*eqbranchsi"): Remove '+' on
15148         operand 2.
15149         ("*ineqbranchsi"): Likewise.
15150
15151 2003-03-05  Andrew Haley  <aph@cambridge.redhat.com>
15152
15153         * config/stormy16/stormy16.c (xstormy16_expand_prologue): Delete
15154         mem_fake_push_rtx.  Instead construct a SEQUENCE to show the
15155         register store followed by a stack increment.
15156
15157 2003-03-05  Chris Moller  <cmoller@redhat.com>
15158
15159         * config/stormy16/stormy16.c (REG_NEEDS_SAVE): added a term
15160         to inhibit saving CARRY_REGS.
15161
15162         * config/stormy16/stormy16.c (xs_hi_general_operand):
15163         added predicate to detect and error-out on out-of-range
15164         const_ints for movhi.
15165         * config/stormy16/stormy16.md (movhi): use
15166         xs_hi_general_operand.
15167
15168         * config/stormy16/stormy16.c (xstormy16_expand_prologue):
15169         added a check for local vbl size overflow.
15170         * config/stormy16/stormy16.c (xs_hi_nonmemory_operand):
15171         added predicate to detect and error-out on out-of-range
15172         const_ints for addhi and subhi.
15173         * config/stormy16/stormy16.md (addhi3, addchi4, addchi5,
15174         subhi3, subchi4, subchi5): used xs_hi_nonmemory_operand.
15175
15176         * config/stormy16/stormy16.c (xstormy16_legitimate_address_p):
15177         add a term to accept PRE_MODIFY addresses.
15178         * config/stormy16/stormy16.c (xstormy16_expand_move):
15179         add code to expand PRE_MODIFY addresses to an add followed
15180         by a move.
15181
15182 2003-03-06  Jason Merrill  <jason@redhat.com>
15183
15184         * tree-inline.c (inlinable_function_p): Revert earlier change
15185         pending investigation.
15186
15187 2003-03-06  Kazu Hirata  <kazu@cs.umass.edu>
15188
15189         * config/h8300/h8300.md (a new peephole2): New.
15190
15191 2003-03-06  Jan Hubicka  <jh@suse.cz>
15192
15193         * cgraph.c (cgraph_node): Do not confuse nested functions and methods.
15194
15195 2003-03-06  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15196
15197         * dwarf2out.c (size_of_die): Compute size of external reference to
15198         die correctly.
15199
15200 2003-03-06  Hans-Peter Nilsson  <hp@bitrange.com>
15201
15202         * config/mmix/mmix.md ("*movcc_expanded"): New pattern.
15203         ("movcc", "movcc_uns", "movcc_fp", "movcc_fpeq", "movcc_fun"): New
15204         expanders.
15205
15206 2003-03-05  Roger Sayle  <roger@eyesopen.com>
15207
15208         * expr.h (lang_expand_expr): Delete obsolete prototype.
15209
15210 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
15211
15212         * emit-rtl.c (gen_highpart_mode): Fix a comment typo.
15213
15214 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
15215
15216         * config/h8300/h8300.md (a peephole2): Generalize to
15217         accept a memory operand.
15218
15219 2003-03-05  Olivier Hainque <hainque@act-europe.fr>
15220
15221         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): Add '+'.
15222         * config/alpha/alpha.c (print_operand, case '+'): New.
15223         * config/alpha/alpha.md (call_osf_1_noreturn): Document and use.
15224         (call_value_osf_1_noreturn): Likewise.
15225
15226 2003-03-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15227
15228         * stmt.c (fixup_gotos): Change meaning of DONT_JUMP_IN.
15229         (expand_end_bindings): Likewise.
15230
15231 2003-03-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
15232
15233         * pa.md (return_external_pic): Add !TARGET_PA_20 to constraint.
15234         (epilogue): Don't generate return_external_pic when emitting PA 2.0
15235         code.
15236
15237 2003-03-05  Aldy Hernandez  <aldyh@redhat.com>
15238
15239         * doc/tm.texi: Document TARGET_DWARF_REGISTER_SPAN.
15240
15241         * config/rs6000/rs6000.c (rs6000_dwarf_register_span): New.
15242
15243         * hooks.c (hook_rtx_rtx_null): New.
15244
15245         * hooks.h (hook_rtx_rtx_null): Protoize.
15246
15247         * target-def.h (TARGET_DWARF_REGISTER_SPAN): New macro.
15248         (TARGET_INITIALIZER): Add TARGET_DWARF_REGISTER_SPAN.
15249
15250         * target.h (struct gcc_target): Add dwarf_register_span.
15251
15252         * dwarf2out.c (multiple_reg_loc_descriptor): New.
15253         (one_reg_loc_descriptor): New.
15254         (reg_loc_descriptor): Add support for values that span more than
15255         one register.
15256
15257 2003-03-05  Jan Hubicka  <jh@suse.cz>
15258
15259         * Makefile.in (calls.o, toplev.o alias.o): Depend on cgraph.h
15260         * alias.c:  Include cgraph.h
15261         (mark_constant_function): Use cgraph_rtl_info.
15262         * calls.c:  Include cgraph.h
15263         (flags_from_decl_or_type): Use cgraph_rtl_info to find pure and const
15264         calls.
15265         (expand_call): Use cgraph_rtl_info to set preferred stack boundary.
15266         * cgraph.c (cgraph_rtl_info): New function.
15267         * cgraph.h (cgraph_rtl_info): Declare
15268         (cgraph_rtl_info): Likewise.
15269         * function.h (struct function): Add recursive_call_emit.
15270         * toplev.c: Include cgraph.h.
15271         (rest_of_compilation): Set preferred_incoming_stack_boundary.
15272
15273 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
15274
15275         * config/h8300/h8300.c (output_simode_bld): Clear the
15276         destination first if possible.
15277         * config/h8300/h8300.md (extzv_1_r_h8300hs): Add an
15278         alternative.
15279         (extzv_1_r_inv_h8300hs): Likewise.
15280
15281 2003-03-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15282
15283         * basic-block.h (EDGE_IRREDUCIBLE_LOOP, EDGE_ALL_FLAGS): New.
15284         * cfg.c (dump_edge_info): Add EDGE_IRREDUCIBLE_LOOP flag dump.
15285         * cfgloop.c (flow_loop_free): Made global.
15286         (establish_preds): New static function.
15287         (flow_loop_tree_node_add): Handle subloops of added loop correctly.
15288         (get_loop_exit_edges): New.
15289         (verify_loop_structure): Verify EDGE_IRREDUCIBLE_LOOP flags.
15290         * cfgloop.h (flow_loop_free, get_loop_exit_edges, unloop): Declare.
15291         * cfgloopanal.c (mark_irreducible_loops): Mark edges in irreducible
15292         loops.
15293         * cfgloopmanip.c (loop_delete_branch_edge): Allow to test for
15294         removability of an edge.
15295         (fix_irreducible_loops): New static function.
15296         (find_path, remove_path): Add ability to remove enclosing loops.
15297         (unloop): New.
15298         (copy_bbs, duplicate_loop_to_header_edge): Use EDGE_IRREDUCIBLE_LOOP
15299         flags.
15300         * cfgrtl.c (verify_flow_info): Handle EDGE_IRREDUCIBLE_LOOP flag.
15301         * loop-unroll.c (peel_loops_completely): Do not duplicate loop if
15302         not neccessary.
15303         (decide_peel_completely, peel_loops_completely): Allow complete peeling
15304         of non-duplicable once rolling loops.
15305         * loop-unswitch.c (unswitch_loop): Update EDGE_IRREDUCIBLE_LOOP flags.
15306
15307 2003-03-05  J"orn Rennecke <joern.rennecke@superh.com>
15308
15309         * sh.h (OVERRIDE_OPTIONS): For TARGET_SHMEDIA, the minimum value
15310         for align_jumps is 4.
15311
15312         (SECONDARY_INPUT_RELOAD_CLASS): If reloading a PLUS into FPUL,
15313         use GENERAL_REGS.
15314
15315 2003-03-05  Stephane Carrez  <stcarrez@nerim.fr>
15316
15317         * config/m68hc11/m68hc11.h (PAD_VARARGS_DOWN): Define and return
15318         according to va_arg type.
15319         (EXPAND_BUILTIN_VA_ARG): Remove.
15320         * config/m68hc11/m68hc11.c (m68hc11_va_arg): Remove.
15321         * config/m68hc11/m68hc11-protos.h (m68hc11_va_arg): Remove.
15322
15323 2003-03-05  David Edelsohn  <edelsohn@gnu.org>
15324
15325         * config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary
15326         else clauses.
15327
15328 2003-03-05  Michael Matz  <matz@suse.de>
15329
15330         * i386/i386.c (ix86_save_reg): Also test
15331         current_function_uses_const_pool.
15332
15333 2003-03-05  Michael Matz  <matz@suse.de>
15334
15335         * unwind.h: Add the GPL exception.
15336         * Makefile.in (USER_H): Add unwind.h.
15337
15338 2003-03-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
15339
15340         PR c/9799
15341         * c-typeck.c (push_init_level): Add sanity check.
15342
15343 2003-03-05  Jan Hubicka  <jh@suse.cz>
15344
15345         * toplev.c (rest_of_compilation):  Deffer RTL compilation only when
15346         RTL inlining is done.
15347
15348         * cgraphunit.c (cgraph_mark_local_functions): New local function.
15349         (cgraph_optimize): Mark local functions.
15350         * i386-protos.h (init_cumulative_args): Update prototype.
15351         * i386.c (init_cumulative_args): Use register passing convention for
15352         local functions.
15353
15354         * cgraph.c (cgraph_global_info_ready): New global variable
15355         (cgraph_local_info, cgraph_global_info): New functions.
15356         * cgraph.h (struct cgraph_local_info, cgraph_global_info): New
15357         structures.
15358         (cgraph_local_info, cgraph_global_info, cgraph_global_info_ready):
15359         Declare.
15360         * cgraphunit.c (cgraph_finalize_function): Set inline_many.
15361         (cgraph_mark_functions_to_output): Use inline_many.
15362         (cgraph_expand_function): Free DECL_SAVED_TREE uncondtionally.
15363         (cgraph_expand_functions): Expand inline functions last.
15364         (cgraph_optimize): Do not emit uneeded functions.
15365
15366 2003-03-04  Steve Ellcey  <sje@cup.hp.com>
15367
15368         * expr.c (convert_modes): Check for legal hard register.
15369
15370 2003-03-04  Tom Tromey  <tromey@redhat.com>
15371
15372         * doc/sourcebuild.texi (Front End Directory): Document tags.
15373         * configure: Rebuilt.
15374         * configure.in (target_list): Added tags.
15375         * Makefile.in (TAGS): Depend on lang.clean.  Include subdirectory
15376         TAGS files by reference.
15377         * objc/Make-lang.in (objc.tags): New target.
15378
15379 2003-03-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15380
15381         * gcov-io.h (gcov_save_position, gcov_reserve_length, gcov_resync,
15382         gcov_skip, gcov_skip_string, gcov_write_unsigned, gcov_write_counter,
15383         gcov_write_string, gcov_read_unsigned, gcov_read_counter,
15384         gcov_read_string, gcov_write_length): Modified to enable reading/
15385         writing of whole .da file just once.
15386         (da_file_open, da_file_close, da_file_eof, da_file_error,
15387         da_file_position, da_file_seek, da_file_write, da_file_read): New
15388         functions.
15389         (actual_da_file, actual_da_file_position, actual_da_file_length,
15390         actual_da_file_buffer, actual_da_file_buffer_size): New static
15391         functions.
15392         * libgcov.c (gcov_exit): Modified to read/write the whole .da file at
15393         just once.
15394
15395
15396 2003-03-04  Andreas Schwab  <schwab@suse.de>
15397
15398         * config/m68k/m68k.c (m68k_output_function_prologue): Fix CFA
15399         offset without frame pointer.
15400
15401 2003-03-04  Steve Ellcey  <sje@cup.hp.com>
15402
15403         * expr.c (expand_expr): Call promote_mode to set unsignedp.
15404
15405 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
15406
15407         * configure.in: Don't always define TARGET_SYSTEM_ROOT.
15408         * configure: Regenerated.
15409         * gcc.c: Check whether TARGET_SYSTEM_ROOT is defined.
15410
15411 2003-03-04  Andreas Jaeger  <aj@suse.de>
15412
15413         * configure.in: Check for <memcheck.h>.
15414         * configure: Regenerated.
15415
15416         * config.in: Define HAVE_MEMCHECK_H.
15417
15418         * ggc-common.c: Use <memcheck.h> if available instead of
15419         <valgrind.h>.
15420         * ggc-page.c: Likewise.
15421         * cppfiles.c: Likewise.
15422
15423 2003-03-04  Kazu Hirata  <kazu@cs.umass.edu>
15424
15425         * config/h8300/h8300.md (*extzv_8_8): Fix cc and lengths.
15426
15427 2003-03-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
15428
15429         PR c/9262
15430         * c-typeck.c (do_case): Attach the first case label to the SWITCH_BODY.
15431         (c_finish_case): Rechain the next statements to the SWITCH_STMT.
15432
15433 2003-03-04  Jan Hubicka  <jh@suse.cz>
15434
15435         * doc/invoke.texi:  Document that unit-at-a-time is enabled for -O3
15436         * toplev.c (parse_options_and_default_flags): Enable flag_unit_at_a_time
15437         for -O3.
15438
15439 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
15440
15441         * configure.in: Delete three unused variables.  Move a variable
15442         definition closer to its use.  Simplify use_collect2 logic.  Start to
15443         organize.  Simplify tests for in-tree gas and ld.
15444         * configure: Regenerate.
15445
15446 2003-03-04  Neil Booth  <neil@daikokuya.co.uk>
15447
15448         * Makefile.in: Update.
15449         * c-common.c (flag_no_line_commands, flag_no_output,
15450         flag_dump_macros, flag_dump_includes): New.
15451         * c-common.h (flag_no_line_commands, flag_no_output,
15452         flag_dump_macros, flag_dump_includes, preprocess_file): New.
15453         (init_c_lex): Update prototype.
15454         * c-lex.c (init_c_lex): Update prototype; move some code to
15455         c_common_init.
15456         * c-opts.c (preprocess_file): Subsume into c_common_init.
15457         (c_common_decode_option): Update flags.
15458         (c_common_init): Move code from preprocess_file and init_c_lex.
15459         (sanitize_cpp_opts): Update.
15460         * c-ppoutput.c: New, cppmain.c almost verbatim.
15461         * cpphash.h (struct printer): Remove.
15462         (struct cpp_reader): Remove print.
15463         * cpplib.h (dump_none, dump_only, dump_names, dump_definitions,
15464         cpp_preprocess_file): Remove.
15465         (struct cpp_options): Remove no_output, no_line_commands, dump_macros
15466         and dump_includes.
15467         * cppmain.c: Remove.
15468         * doc/passes.texi: Update.
15469
15470 2003-03-04  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
15471
15472         * function.c (STACK_ALIGNMENT_NEEDED): New macro.  Default to 1.
15473         (assign_stack_local_1): Perform overall stack alignment only when
15474         STACK_ALIGNMENT_NEEDED is nonzero.
15475         * doc/tm.texi (STACK_ALIGNMENT_NEEDED): Document.
15476
15477         * pa.c (compute_frame_size): Rename fsize to size.  Account for
15478         alignment to a word boundary before general register save block.  Only
15479         account for double-word alignment before floating point register save
15480         block if one or more are saved.  Don't allocate space for %r3 when
15481         frame pointer is needed.
15482         (hppa_expand_prologue): Include alignment to word boundary in local
15483         frame size.
15484         * pa.h (STARTING_FRAME_OFFSET): Define to 8 on both 32 and 64-bit ports.
15485         (STACK_ALIGNMENT_NEEDED): Define.
15486
15487 2003-03-04  Kevin Buettner  <kevinb@redhat.com>
15488
15489         * dwarf2out.c (rtl_for_decl_location): Don't return NULL_RTX for
15490         global register variables.
15491
15492 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
15493
15494         * reload.c (reload_adjust_reg_for_mode): New function.
15495         (subst_reloads): Call it.
15496         (operands_match_p): Adjust registers using HARD_REGNO_NREGS.
15497         * reload.h (reload_adjust_reg_for_mode): Declare.
15498         * reload1.c (emit_input_reload_insns, emit_output_reload_insns):
15499         Call it.
15500
15501 2003-03-03  James E Wilson  <wilson@tuliptree.org>
15502
15503         * optabs.c (add_equal_note): Delete SUBREG_REG use.
15504         Fixes PR c/7872.
15505
15506 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15507
15508         * config/h8300/h8300.md (*ixorsi3_ashift_16): New.
15509         (*ixorsi3_lshiftrt_16): New.
15510         (*iorsi3_ashift_16): Remove.
15511
15512 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15513
15514         * config/h8300/h8300.md (*extzv_8_8): Use '?' to simplify the
15515         pattern.
15516
15517 2003-03-03  Geoffrey Keating  <geoffk@apple.com>
15518
15519         * doc/install.texi (Specific): Update entry for powerpc-darwin.
15520
15521 2003-03-03  Richard Henderson  <rth@redhat.com>
15522
15523         * config/ia64/ia64.h (HAVE_AS_LTOFFX_LDXMOV_RELOCS): Default to 0.
15524
15525 2003-03-03  David Edelsohn  <edelsohn@gnu.org>
15526
15527         * config/rs6000/rs6000.c (rs6000_multipass_dfa_lookahead): Delete.
15528         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Delete.
15529         (rs6000_variable_issue): Do not return negative value.
15530         (rs6000_issue_rate): Uniformly set issue rate to 1 for first
15531         scheduling pass.
15532
15533 2003-03-03  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15534
15535         * dwarf2out.c (dwarf2out_finish): Swap order of break_out_includes and
15536         prune_unused_types calls.
15537
15538 2003-03-03  Jason Merrill  <jason@redhat.com>
15539
15540         * tree-inline.c (find_builtin_longjmp_call): Save and restore
15541         lineno and input_filename.
15542         (find_alloca_call): Likewise.
15543         (inlinable_function_p): Run the langhook earlier.
15544
15545         * calls.c (compute_argument_addresses): Give the new MEMs a
15546         minimum alignment of PARM_BOUNDARY.
15547
15548 2003-03-03  J"orn Rennecke <joern.rennecke@superh.com>
15549
15550         * config/sh/sh.h (EXTRA_SPECS): Add subtarget_asm_relax_spec and
15551         subtarget_asm_isa_spec.
15552         (SUBTARGET_ASM_RELAX_SPEC, SUBTARGET_ASM_ISA_SPEC): Define.
15553         (ASM_SPEC): Define as SH_ASM_SPEC.
15554         (SH_ASM_SPEC): New; take the role of ASM_SPEC, but safe from svr4.h.
15555         Use subtarget_asm_relax_spec and subtarget_asm_isa_spec.
15556         * config/sh/elf.h (ASM_SPEC): Use SH_ASM_SPEC.
15557         (SUBTARGET_ASM_ISA_SPEC): Undef / define.
15558
15559         * sh.h (OVERRIDE_OPTIONS): Set default values for align_loops
15560         and align_jumps if not set.
15561         Force align_jumps to be at least 2.
15562         When relaxing, force align_functions to be at least the maximum of
15563         align_loops, align_jumps and 4.
15564         * sh.c (find_barrier, barrier_align): Honour align_jumps_log.
15565         (sh_loop_align): Honour align_loops_log.
15566
15567         * sh.md (length attribute): Use prev_nonnote_insn instead of PREV_INSN
15568         to check for indirect_jump_scratch.
15569         (indirect_jump_scratch): Add second set.
15570         * sh.c (output_far_jump): Use prev_nonnote_insn instead of PREV_INSN
15571         when looking for indirect_jump_scratch.
15572         Extract scratch register taking new structure of indirect_jump_scratch
15573         into account.
15574         (gen_block_redirect): Set INSN_SCOPE for indirect_jump_scratch.
15575
15576 2003-03-03  Jan Hubicka  <jh@suse.cz>
15577
15578         * calls.c (rtx_for_function_call): Take the address as an argument
15579         (expand_call): Do not modify the expression.
15580
15581         * toplev.c (rest_of_compilation):  Avoid cfg_cleanup calls when not
15582         optimizing.
15583
15584 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15585
15586         * config/h8300/h8300.md (*ixorsi3_zext_hi): Restrict to
15587         TARGET_H8300H and TARGET_H8300S.
15588
15589 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15590
15591         * config/h8300/h8300.md (a peephole2): New.
15592
15593 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15594
15595         * config/h8300/h8300.md (*extzv_8_8): Use shorter code when
15596         operands[0] and operands[1] are different.
15597
15598 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
15599
15600         * reload1.c (reload_cse_move2add): Remove variable success.
15601
15602 2003-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15603
15604         * ggc-common.c (ggc_rlimit_bound): Cast RLIM_INFINITY to avoid
15605         warnings.
15606
15607 2003-03-02  Richard Henderson  <rth@redhat.com>
15608
15609         * configure.in (HAVE_AS_LTOFFX_LDXMOV_RELOCS): New ia64 test.
15610         * config.in, configure: Rebuild.
15611         * config/ia64/ia64.c (ia64_ld_address_bypass_p): Accept lo_sum.
15612         * config/ia64/ia64.md (load_symptr): Use high/lo_sum for the
15613         paired ldtoffx and ldxmov annotations.
15614         (load_symptr_internal1): Remove.
15615         (load_symptr_high, load_symptr_low): New.
15616
15617 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
15618
15619         * c-incpath.c (add_path): Fix sysp assignment.
15620
15621 2003-03-02  Kurt Garloff  <garloff@suse.de>
15622
15623         * params.def: Introduce parameter max-inline-insns-rtl for
15624         a separate limit for the RTL inliner.
15625         * params.h: Likewise.
15626         * integrate.c (function_cannot_inline_p): Use it.
15627         * toplev.c (decode_f_option): Set multiple parameters
15628         controlling inlining with -finline-limit.
15629         * params.def: Fix orthographic and typographic errors.
15630         * doc/invoke.texi: Document parameters controlling inlining
15631         and the way -finline-limit sets multiple of them.
15632
15633         * tree.h (struct tree_decl): Introduce inlined_function_flag,
15634         recording whether the function became eligible for inlining
15635         by a compiler flag rather than the declaration.
15636         Provide DID_INLINE_FUNC macro to access it.
15637         * c-decl.c (grokdeclarator): Set DID_INLINE_FUNC.
15638         * cp/decl.c (grokfndecl): Likewise.
15639         * toplev.c (rest_of_compilation): Likewise.
15640         * cp/optimize (maybe_clone_body): Copy DID_INLINE_FUNC.
15641         * print-tree.c (print_node): Report it.
15642         * params.def: Introduce new max-inline-insns-auto limit.
15643         * params.h: Likewise.
15644         * tree-inline.c (inlinable_function_p): Apply it to functions
15645         with DID_INLINE_FUNC set.
15646         * toplev.c (decode_f_option): Initialize it from -finline-limit
15647         value.
15648         * doc/invoke.texi: Document new parameter.
15649
15650 2003-03-02  Geoffrey Keating  <geoffk@apple.com>
15651
15652         * fix-header.c (read_scan_file): Don't reference simplify_path.
15653
15654 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
15655
15656         * config/m68hc11/m68hc11.c (m68hc11_override_options): Don't enable
15657         min/max instructions by default as may result in reload errors.
15658
15659 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
15660
15661         * config/m68hc11/m68hc11.md ("mulqi3"): Allow address register to
15662         avoid reload problems; define split for it.
15663
15664 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
15665
15666         * config/m68hc11/m68hc11.c (m68hc11_shift_operator): New function.
15667         * config/m68hc11/m68hc11-protos.h (m68hc11_shift_operator): Declare.
15668         * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register.
15669         * config/m68hc11/m68hc11.md ("rotrhi3", "rotlhi3"): New patterns for
15670         rotatert and rotate.
15671         ("rotrhi3_const", "rotlhi3_const"): Rename of old 'rotrhi3' insns.
15672         ("*rotrhi3", "*rotlhi3"): New insn pattern for non-const rotatert.
15673         ("*rotrhi3_addr"): New split for shift insns on address register.
15674         ("*lshrhi3", "*ashrhi3", "*ashlhi3_2"): Use new split.
15675         * config/m68hc11/larith.asm (___rotlhi3): New asm function.
15676         (___rotrhi3): Likewise.
15677         * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Build them.
15678
15679 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
15680
15681         * toplev.c (aux_base_name): Moved from toplev.h.
15682         (filename): Constify.
15683         (lang_dependent_init): Don't duplicate name.
15684         (process_options): Set aux_base_name here, not...
15685         (do_compile): ...here.  Change protoype.
15686         (toplev_main): Move some code from do_compile.
15687         * toplev.h: Remove aux_base_name.
15688
15689 2003-03-02  Kazu Hirata  <kazu@cs.umass.edu>
15690
15691         * config/h8300/h8300-protos.h: Add a prototype for
15692         iorxor_operator.
15693         * config/h8300/h8300.c (print_operand): Handle 'c'.
15694         (iorxor_operator): New.
15695         * config/h8300/h8300.h (PREDICATE_CODES): Add iorxor_operator.
15696         * config/h8300/h8300.md (*iorhi3_zext): Remove.
15697         (*iorsi3_zexthi): Likewise.
15698         (*iorsi3_zextsi): Likewise.
15699         (*xorhi3_zextqi): Likewise.
15700         (*xorsi3_zexthi): Likewise.
15701         (*xorsi3_zextsi): Likewise.
15702         (*ixorhi3_zext): New.
15703         (*ixorsi3_zext_qi): Likewise.
15704         (*ixorsi3_zext_hi): Likewise.
15705
15706 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
15707
15708         * c-incpath.c (remove_component_p, simplify_path): Move back to
15709         cppfiles.c.
15710         (remove_duplicates): Use cpp_simplify_path.
15711         * c-incpath.h (simplify_path): Remove.
15712         * c-lex.c: Don't include c-incpath.h.
15713         (init_c_lex): Remove simplify_path.
15714         * cppfiles.c (remove_component_p, cpp_simplify_path): Restore.
15715         (find_or_create_entry, validate_pch): Revert.
15716
15717 2003-03-02  Ashif Harji  <asharji@uwaterloo.ca>
15718
15719         * gcc.c (default_compilers): Add -no-integrated-cpp flag to invoke
15720           an external cpp during compilation.
15721         (option_map): Likewise.
15722         * objc/lang-specs.h (default_compilers): Similarly.
15723         * doc/invoke.texi: Document -no-integrated-cpp flag.
15724
15725 2003-03-02  Kazu Hirata  <kazu@cs.umass.edu>
15726
15727         * config/h8300/h8300.md (zero_extendqisi2): Change to an
15728         expander.
15729         (*zero_extendqisi2_h8300): New.
15730         (*zero_extendqisi2_h8300hs): New.
15731         (two splitters): New.
15732
15733 2003-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15734
15735         * fp-bit.h (float_to_usi): Fix condition wrapping prototype.
15736
15737 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
15738
15739         * config/h8300/h8300.md (a peephole2): Remove dead code.
15740
15741 2003-03-01  Roger Sayle  <roger@eyesopen.com>
15742
15743         PR c++/9367
15744         * builtin-types.def (DEF_FUNCTION_TYPE_VAR_3): New macro.
15745         (BT_FN_INT_CONST_STRING_VALIST_ARG,
15746         BT_FN_INT_STRING_CONST_STRING_VALIST_ARG,
15747         BT_FN_INT_CONST_STRING_CONST_STRING_VALIST_ARG,
15748         BT_FN_INT_STRING_SIZE_CONST_STRING_VALIST_ARG,
15749         BT_FN_INT_STRING_CONST_STRING_VAR,
15750         BT_FN_INT_CONST_STRING_CONST_STRING_VAR,
15751         BT_FN_INT_STRING_SIZE_CONST_STRING_VAR): New built-in types.
15752         * builtin-attrs.def (ATTR_NONNULL_1, ATTR_NONNULL_2,
15753         ATTR_NONNULL_3): Also include the nothrow attribute.
15754         (sprintf, scanf, sscanf, vprintf, vsprintf, snprintf,
15755         vsnprintf, vscanf, vsscanf): Don't define attributes here.
15756         * builtins.def (putchar, puts): Make full C89 built-ins.
15757         (snprintf, sprintf, scanf, sscanf, vprintf, vscanf,
15758         vsscanf, vsnprintf, vsprintf): New built-ins.
15759         * c-common.c (c_common_nodes_and_builtins): Handle new macro
15760         DEF_FUNCTION_TYPE_VAR_3.
15761
15762         * doc/extend.texi: Document these new built-in functions.
15763
15764 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
15765
15766         * config/h8300/h8300.md (a peephole2): New.
15767
15768 2003-03-01  Richard Earnshaw  <rearnsha@arm.com>
15769
15770         * predict.c (estimate_bb_frequencies): Correctly set
15771         real_values_initialized after initialization.
15772
15773 2003-03-01  Neil Booth  <neil@daikokuya.co.uk>
15774
15775         * Makefile.in (C_AND_OBJC_OBJS, c-incpath.o, c-lex.o, LIBCPP_OBJS,
15776         cppinit.o, cppdefault.o, fix-header): Update.
15777         * c-incpath.c: New file.
15778         * c-incpath.h: New file.
15779         * c-lex.c: Include c-incpath.h.
15780         (init_c_lex): Register path simplifier.
15781         * c-opts.c: Include cppdefault.h and c-incpath.h.
15782         (TARGET_SYSTEM_ROOT, verbose, iprefix, sysroot, std_inc,
15783         std_cxx_inc, quote_chain_split, add_prefixed_path): New.
15784         (COMMAND_LINE_OPTIONS): Add more options from cpplib.
15785         (missing_arg, c_common_decode_option): Handle them.
15786         (c_common_post_options): Register include chains.
15787         (print_help): Update.
15788         * cppdefault.h (struct default include): Update.
15789         Move some macros to ...
15790         * cppdefault.c: ... here.
15791         (cpp_include_defaults): Add extra field add_sysroot.
15792         * cppfiles.c (include_file, search_from, find_or_create_entry,
15793         cpp_included, find_include_file, remap_filename): Update for
15794         renaming of search_path to cpp_path, and of the chain headers.
15795         (remove_component_p, _cpp_simplify_pathname): Move to c-incpath.c.
15796         * cpphash.h (struct search_path): Move to cpplib.h.
15797         (struct cpp_buffer, struct cpp_reader): Update.
15798         (_cpp_simplify_pathname): Remove.
15799         * cppinit.c: Don't include prefix.h and cppdefault.h.
15800         (INO_T_EQ, INO_T_COPY, path_include, append_include_chain,
15801         remove_dup_dir, remove_dup_nonsys_dirs, remove_dup_dirs,
15802         init_standard_includes, BRACKET, SYSTEM, AFTER, no_dir,
15803         no_pth, cpp_handle_options): Remove.
15804         (struct pending_option): Remove chain members.
15805         (cpp_destroy, cpp_read_main_file, COMMAND_LINE_OPTIONS,
15806         cpp_handle_option): Update.
15807         * cpplib.h (struct cpp_path, cpp_set_include_chains): New.
15808         (struct cpp_options): Remove quote_include, bracket_include,
15809         include_prefix, include_prefix_len, verbose, ignore_srcdir,
15810         no_standard_includes, no_standard_cplusplus_includes.
15811         (struct cpp_callbacks): Add simplify_path.
15812         (cpp_handle_options): Remove.
15813         * fix-header.c: Include c-incpath.h.
15814         (read_scan_file): Update to use c-incpath functionality.
15815         * doc/passes.texi: Update.
15816
15817 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
15818
15819         * config/h8300/h8300.c (bit_operand): Accept MEM only if it
15820         satisfies EXTRA_CONSTRAINT 'U'.
15821
15822 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
15823
15824         * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Take a scratch
15825         register.
15826         (*tst_extzv_memqi_1_n): Change to a splitter.
15827         (a peephole2): Update.
15828
15829 2003-03-01  Richard Earnshaw  <rearnsha@arm.com>
15830
15831         * predict.c (estimate_bb_frequencies): Initialize the sreal
15832         constants once per compilation.
15833
15834 2003-02-28  Richard Henderson  <rth@redhat.com>
15835
15836         * toplev.c (flag_eliminate_unused_debug_types): Enable by default.
15837
15838 2003-02-28  scott snyder  <snyder@fnal.gov>
15839
15840         * flags.h: Add flag_eliminate_unused_debug_types.
15841         * toplev.c: Add flag_eliminate_unused_debug_types.
15842         (f_options): Add -feliminate-unused-debug-types.
15843         * dwarf2out.c (struct file_table): Add emitted member.
15844         (splice_child_die): Fix the parent pointer for the child being
15845         spliced.
15846         (lookup_filename): Maintain file_table.emitted array.  Don't
15847         output .file directive here.
15848         (maybe_emit_file): (new)
15849         (init_file_table): Set up file_table.emitted.
15850         (dwarf2out_source_line): Use maybe_emit_file.
15851         (dwarf2out_start_source_file): Use maybe_emit_file.
15852         (dwarf2out_init): Use maybe_emit_file.
15853         (prune_unused_types_walk_attribs): (new)
15854         (prune_unused_types_mark): (new)
15855         (prune_unused_types_walk): (new)
15856         (prune_unused_types_prune): (new)
15857         (prune_unused_types): (new)
15858         (dwarf2out_finish): Call prune_unused_types if
15859         flag_eliminate_unused_debug_types is set.
15860         * doc/invoke.texi (Option Summary): Add
15861         -feliminate-unused-debug-types.
15862         (Debugging Options): Likewise.
15863
15864 2003-02-28  Geoffrey Keating  <geoffk@apple.com>
15865
15866         * doc/invoke.texi: Change .pch to .gch.
15867         * cppfiles.c (open_file_pch): Likewise.
15868         * gcc.c (default_compilers): Likewise.
15869
15870 2003-02-28  Aldy Hernandez  <aldyh@redhat.com>
15871
15872         * floatlib.c: Remove.
15873
15874 2003-02-28  Jason Merrill  <jason@redhat.com>
15875
15876         * stor-layout.c (variable_size): Leave a "minus 1" outside the
15877         SAVE_EXPR.
15878
15879 2003-02-28  David Edelsohn  <edelsohn@gnu.org>
15880
15881         * config/rs6000/power4.md: Add compare bypass.
15882
15883 2003-02-28  Jason Thorpe  <thorpej@wasabisystems.com>
15884
15885         * config/netbsd.h: Update copyright years.
15886         (NETBSD_CPP_SPEC): Define _REENTRANT and _PTHREADS if
15887         -pthread is specified on the command line.
15888
15889 2003-02-28  Dale Johannesen <dalej@apple.com>
15890
15891         * loop.c (struct movable): Add insert_temp, shrink savemode.
15892         (scan_loop): Accept invariants that require copying; mark as
15893         insert_temp.
15894         (combine_movables): Don't combine insert_temp movables.
15895         (move_movables): Insert copies for insert_temp movables.
15896         Don't record the info based on regno for insert_temp's.
15897
15898 2003-02-28  Joel Sherrill <joel@OARcorp.com>
15899
15900         PR 9638/other
15901         * config/i386/i386.c (DEFAULT_PCC_STRUCT_RETURN): Ensure the
15902         this constant defaults to 1.
15903
15904 2003-02-28  Bob Wilson  <bob.wilson@acm.org>
15905
15906         * config.gcc (xtensa-*-linux*): Add t-slibgcc-elf-ver to tmake_file.
15907
15908 2003-02-28  Richard Earnshaw  <rearnsha@arm.com>
15909
15910         * arm.md (mulhisi3, mulhisi3addsi, mulhidi3adddi): Enable for any
15911         ARMv5e processor, not just for XScale.  Instructions are predicable.
15912         (mulhisi3tb, mulhisi3bt, mulhisi3tt): New patterns for ARMv5e.
15913
15914 2003-02-28  Nick Clifton  <nickc@redhat.com>
15915
15916         * config/arm/arm.c (note_invalid_constants): Change parameter type
15917         from bool to int.
15918
15919 2003-02-28  Kazu Hirata  <kazu@cs.umass.edu>
15920
15921         * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Accept the
15922         test of bit 7.
15923         (*tst_extzv_memqi_1_n): Likewise.
15924         (a peephole2): New.
15925
15926 2003-02-28  Richard Sandiford  <rsandifo@redhat.com>
15927
15928         * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Wrap in
15929         #ifndef __mips16.
15930
15931 2003-02-28  Jan Hubicka  <jh@suse.cz>
15932
15933         * combine.c (gen_lowpart_for_combine): Update handling of
15934         subregs_of_mode
15935         * flow.c (life_analysis, mark_used_regs): Likewise.
15936         * regclass.c (subregs_of_mode): Turn into single bitmap.
15937         (cannot_change-mode_set_regs, invalid_mode_change_p): Update
15938         dealing with subregs_of_mode
15939         * regs.h (subregs_of_mode): Update prototype.
15940
15941 2003-02-28  Josef Zlomek  <zlomekj@suse.cz>
15942
15943         * emit-rtl.c (set_reg_attrs_for_parm): New function.
15944         * rtl.h (set_reg_attrs_for_parm): New exported function.
15945         * function.c (assign_parms): Use set_reg_attrs_for_parm instead of
15946         set_reg_attrs_from_mem.
15947
15948 2003-02-27  Roger Sayle  <roger@eyesopen.com>
15949             Zack Weinberg <zack@codesourcery.com>
15950
15951         * gcc.c (do_spec_1):  Treat %U like %u for unique associations.
15952
15953 2003-02-27  Kazu Hirata  <kazu@cs.umass.edu>
15954
15955         * reload1.c (sext_for_mode): Remove.
15956         (reload_cse_move2add): Use trunc_int_for_mode instead of
15957         sext_for_mode.
15958         (move2add_note_store): Likewise.
15959         Reset register information if we see a set in non-integer
15960         mode.
15961
15962 2003-02-27  David Edelsohn  <edelsohn@gnu.org>
15963
15964         * config/rs6000/aix43.h (ASM_SPEC): Only emit -mppc64 if no -mcpu
15965         option.
15966         (ASM_CPU_SPEC): Use -m620 for Power3, Power4, 620, 630.
15967         * config/rs6000/aix51.h: Same.
15968         * config/rs6000/aix52.h: Same.
15969         * config/rs6000/power4.md: Additional VMX bypasses.
15970
15971 2003-02-27   Geert Bosch <bosch@gnat.com>
15972
15973         * toplev.c (print_version): Add indentation for GGC heuristics and
15974         output after printing version information.
15975
15976 2003-02-27  James E Wilson  <wilson@tuliptree.org>
15977
15978         * combine.c (simplify_comparison): Require integral mode when
15979         permuting SUBREG with AND.
15980
15981 2003-02-27  Steve Ellcey  <sje@cup.hp.com>
15982
15983         * config/ia64/hpux.h (STARTFILE_PREFIX_SPEC): Remove.
15984
15985 2003-02-27  Nick Clifton  <nickc@redhat.com>
15986
15987         * config/arm/arm.md (extendsfdf2): Add pattern accidentally
15988         deleted when cirrus instructions were added.
15989
15990 2003-02-27  Jason Thorpe  <thorpej@wasabisystems.com>
15991
15992         * config.gcc (*-*-netbsd[2-9]*, *-*-netbsdelf[2-9]*): Enable
15993         POSIX thread support by default.
15994
15995 2003-02-27  Roger Sayle  <roger@eyesopen.com>
15996
15997         * config/i386/cygwin.h: Don't include any other files directly.
15998         * config/i386/mingw32.h: Don't include cygwin.h directly.
15999         * config.gcc (cygwin, mingw32, uwin): Instead make these files
16000         explicit in the tm_files variable.
16001
16002 2003-02-27  Alan Modra  <amodra@bigpond.net.au>
16003
16004         * config/rs6000/rs6000.md: Add TI constant splitter.
16005
16006 2003-02-26  Alexandre Oliva  <aoliva@redhat.com>
16007
16008         * builtins.c (purge_builtin_constant_p): Handle subreg of
16009         constant_p_rtx too.
16010
16011         * function.c (assign_stack_local_1): Truncate constant added to
16012         frame_pointer_rtx or virtual_stack_vars_rtx for Pmode.
16013
16014 2003-02-26  David Edelsohn  <edelsohn@gnu.org>
16015
16016         * config.gcc: Add power4 to PowerPC with_cpu list.
16017
16018 2003-02-26  Jan Hubicka  <jh@suse.cz>
16019
16020         * objc-act.c: (mark_referenced_methods): Fix compilation problem.
16021
16022 2003-02-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16023
16024         * gcov-dump.c (print_prefix): Fix signedness warning.
16025         * gcov-io.h (struct counter_section, struct counter_section_data): New.
16026         (struct function_info): n_arc_counts field removed, n_counter_sections,
16027         counter_sections fields added.
16028         (struct gcov_info): arc_counts, n_arc_counts fields removed,
16029         n_counter_sections, counter_sections fields added.
16030         * libgcov.c (gcov_exit, __gcov_flush): Add support for multiple
16031         profile sections.
16032         * profile.h (MAX_COUNTER_SECTIONS): New.
16033         (struct section_info): New.
16034         (struct profile_info): count_instrumented_edges,
16035         count_edges_instrumented_now fields removed, n_sections, section_info
16036         fields added.
16037         (find_counters_section): Declare.
16038         * profile.c (struct function_list): count_edges field removed,
16039         n_counter_sections, counter_sections fields added.
16040         (set_purpose, label_for_tag, build_counter_section_fields,
16041         build_counter_section_value, build_counter_section_data_fields,
16042         build_counter_section_data_value, build_function_info_fields,
16043         build_function_info_value, build_gcov_info_fields,
16044         build_gcov_info_value): New static functions.
16045         (find_counters_section): New function.
16046         (instrument_edges, get_exec_counts, compute_branch_probabilities,
16047         branch_prob, create_profiler): Modified to support multiple profile
16048         sections.
16049
16050 2003-02-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
16051
16052         * pa.c (compute_frame_size): Don't assume PREFERRED_STACK_BOUNDARY
16053         is 8 * STACK_BOUNDARY.
16054         * pa.h (PREFERRED_STACK_BOUNDARY): Change to 128 on 64-bit port.
16055
16056 2003-02-26  Michael Matz  <matz@suse.de>
16057
16058         * ra-colorize.c (merge_moves): Fix list handling.
16059
16060 2003-02-26  Nick Clifton  <nickc@redhat.com>
16061
16062         * config/arm/arm.c (is_load_address): Rename to...
16063         (arm_memory_load_p) ... this and make it check for SUBREGs and
16064         constant loads that will be converted into loads from the
16065         minipool.
16066         (is_cirrus_insn): Rename to ...
16067         (arm_cirrus_insn_p): ... this, for consistency.  Replace test
16068         of CIRRUS_NO with CIRRUS_NOT.
16069         (cirrus_reorg): Use renamed functions.
16070         (note_invalid_constants): Change from a void function to bool.
16071         Add an extra parameter, saying whether the fixups should be
16072         pushed.  Return true if fixups are needed.
16073         (arm_reorg): Use renamed functions.  Use INSN_P.  Replace test
16074         of CIRRUS_NO with CIRRUS_NOT.
16075         * config/arm/arm.h (FLOAT_WORDS_BIG_ENDIAN): Mention that
16076         other floating point co-processors can also affect this.
16077         * config/arm/arm.md ("type" attribute): Add mav_farith and
16078         mav_dmult.  Replace references to "cirrus_type" attribute with
16079         "type".
16080         * config/arm/cirrus.md ("cirrus_fpu" attribute): Delete.
16081         ("cirrus_type" attribute): Delete - use "type" instead.
16082         ("cirrus" attribute): Replace 'no' with 'not' and 'yes' with
16083         'normal'.
16084
16085 2003-02-25  Jan Hubicka  <jh@suse.cz>
16086
16087         * objc-act.c: Include cgraph.h
16088         (mark_referenced_methods): New function.
16089         (objc_init): Call it.
16090         * objc-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Set.
16091
16092         * c-decl.c (finish_function): Honor can_defer_p even in unit-at-a-time
16093         mode.
16094
16095         * optabs.c (expand_fix): Do not widen the input operand.
16096
16097         * expr.c (emit_group_store):  Fix crash when converting single
16098         register into complex register.
16099
16100         * Makefile.in (jump.o, regclass.o, alias.o): Add dependency on timevar.h
16101         * alias.c: Include timevar.h
16102         (init_alias_analysis):  Set timevar
16103         * jump.c: Include timevar.h
16104         (rebuild_jump_labels):  Set timevar
16105         * regcalss.c: Include timevar.h
16106         (reg_scan):  Set timevar
16107         * timevar.def (TV_ALIAS_ANALYSIS, TV_REG_SCAN, TV_REBUILD_JUMP): New
16108
16109 2003-02-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16110
16111         * cse.c (count_reg_usage): Fix handling of REG_EQUAL notes.
16112
16113         * Makefile.in (loop-unroll.o): New.
16114         * cfgloop.h (UAP_PEEL, UAP_UNROLL, UAP_UNROLL_ALL): New.
16115         (unroll_and_peel_loops): Declare.
16116         * alias.c (init_alias_analysis): Flag_unroll_loops renamed to
16117         flag_old_unroll_loops.
16118         * loop.c (loop_invariant_p): Ditto.
16119         * unroll.c (unroll_loop): Flag_unroll_all_loops renamed to
16120         flag_old_unroll_all_loops.
16121         * flags.h (flag_unroll_loops): Renamed to flag_old_unroll_loops.
16122         (flag_unroll_all_loops): Renamed to flag_old_unroll_all_loops.
16123         * params.def (PARAM_MAX_UNROLLED_INSNS): Default value changed.
16124         (PARAM_MAX_AVERAGE_UNROLLED_INSNS, PARAM_MAX_UNROLL_TIMES,
16125         PARAM_MAX_PEELED_INSNS, PARAM_MAX_PEEL_TIMES,
16126         PARAM_MAX_COMPLETELY_PEELED_INSNS, PARAM_MAX_COMPLETELY_PEEL_TIMES,
16127         PARAM_MAX_ONCE_PEELED_INSNS): New.
16128         * toplev.h (flag_old_unroll_loops, flag_old_unroll_all_loops): New.
16129         (flag_unroll_loops, flag_unroll_all_loops): Used for new unroller
16130         instead of old one.
16131         (flag_peel_loops): New.
16132         (lang_independent_options): The new flags added.
16133         (rest_of_compilation): Call new unroller.
16134         (process_options): Setup flags for coexistence of old and new unroller.
16135         * doc/invoke.texi: Document new options.
16136         * doc/passes.texi: Document new unroller pass.
16137
16138 2003-02-26  David Billinghurst <David.Billinghurst@riotinto.com>
16139
16140         * fixinc/fixincl.x: Regenerate
16141
16142 2003-02-26  Josef Zlomek  <zlomekj@suse.cz>
16143
16144         * function.c (assign_parms): Set reg_attrs for parameters passed in
16145         registers.
16146
16147 2003-02-26  Alan Modra  <amodra@bigpond.net.au>
16148
16149         PR target/9681
16150         * tlink.c (scan_linker_output): Drop leading '.' from symbol names.
16151
16152 2003-02-25  David Edelsohn  <edelsohn@gnu.org>
16153
16154         * config/rs6000/xcoff.h (ASM_FILE_START): Do not emit machine
16155         pseudo-op.
16156
16157 2003-02-25  Roger Sayle  <roger@eyesopen.com>
16158
16159         * combine.c (combine_simplify_rtx, simplfy_comparison):  Use CC0_P.
16160         * cse.c (invalidate_skipped_set):  Likewise.
16161         * integrate.c (subst_constants):  Likewise.
16162         * jump.c (reversed_comparison_code_parts):  Likewise.
16163         * loop.c (canonicalize_condition):  Likewise.
16164         * simplify-rtx.c (simplify_relational_operation):  Likewise.
16165
16166 2003-02-25  Roger Sayle  <roger@eyesopen.com>
16167
16168         * builtins.def (DEF_LIB_ALWAYS_BUILTIN, DEF_UNUSED_BUILTIN): Delete.
16169         (abs, labs, fabs, fabsf, fabsl, abort, exit, _exit, _Exit):  Use
16170         the appropriate macro to define built-in function.
16171         (fmod,fmodf,fmodl): New built-in functions.
16172
16173         * doc/extend.texi (fmod,fmodf,fmodl): Document new built-ins.
16174
16175 2003-02-25  Richard Henderson  <rth@redhat.com>
16176
16177         * config/i386/i386.c (function_arg): Pass variable sized
16178         structures correctly on the stack.
16179
16180 2003-02-25  Kazu Hirata  <kazu@cs.umass.edu>
16181
16182         * reload1.c (reload_cse_move2add): Use STRICT_LOW_PART if PLUS
16183         does not reduce the cost of SET.
16184
16185 2003-02-25  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
16186
16187         PR target/9732
16188         * config/rs6000/rs6000.c (first_reg_to_save): Handle
16189         PIC_OFFSET_TABLE_REGNUM for -fPIC too.
16190         (rs6000_emit_prologue): Likewise.
16191         (rs6000_emit_epilogue): Likewise.
16192         * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Make
16193         PIC_OFFSET_TABLE_REGNUM a fixed register for -fPIC.
16194
16195 2003-02-25  Richard Henderson  <rth@redhat.com>
16196
16197         * real.c (real_to_integer2): Force overflow result only for
16198         unsigned overflow.
16199
16200 2003-02-25  Kazu Hirata  <kazu@cs.umass.edu>
16201
16202         * gcse.c (cprop_jump): Revert the 2003-02-23 change.
16203
16204 2003-02-25  Vladimir Makarov  <vmakarov@toke.toronto.redhat.com>
16205             Richard Henderson  <rth@redhat.com>
16206
16207         * sched-ebb.c (add_deps_for_risky_insns): Add the dependence when
16208         there is no similar load.
16209
16210 2003-02-25  Vladimir Makarov  <vmakarov@redhat.com>
16211             Richard Henderson  <rth@redhat.com>
16212
16213         * sched-int.h (INSN_TRAP_CLASS, WORST_CLASS): Move them from
16214         sched-rgn.c.
16215         (add_forward_dependence): New function prototype.
16216
16217         * sched-rgn.c (INSN_TRAP_CLASS, WORST_CLASS): Move them to
16218         sched-init.h.
16219         (CONST_BASED_ADDRESS_P, may_trap_exp, haifa_classify_insn): Move
16220         them to haifa-sched.c.
16221
16222         * haifa-sched.c (CONST_BASED_ADDRESS_P, may_trap_exp,
16223         haifa_classify_insn): Move them from sched-rgn.c.
16224
16225         * sched-deps.c (add_dependence): Return flag of creating a new
16226         entry.
16227         (add_forward_dependence): New function.
16228         (compute_forward_dependences): Use the function.
16229
16230         * sched-ebb.c (earliest_block_with_similiar_load): New function.
16231         (add_deps_for_risky_insns): New function.
16232         (schedule_ebb): Call the function.
16233
16234 2003-02-20  Aldy Hernandez  <aldyh@redhat.com>
16235
16236         * doc/tm.texi: Document Rename TARGET_VECTOR_TYPES_COMPATIBLE to
16237         TARGET_VECTOR_OPAQUE_P.  Document accordingly.
16238
16239         * testsuite/gcc.dg/20030218-1.c: Check that initialization of
16240         opaque types fail.
16241
16242         * c-typeck.c (comptypes): Change call to vector_types_compatible
16243         to vector_opaque_p.
16244         (convert_for_assignment): Call vector_opaque_p instead of
16245         vector_types_compatible.
16246         (really_start_incremental_init): Disallow initialization of opaque
16247         types.
16248
16249         * target-def.h: Remove TARGET_VECTOR_TYPES_COMPATIBLE.
16250         Define TARGET_VECTOR_OPAQUE_P.
16251         (TARGET_INITIALIZER): Same.
16252
16253         * target.h (struct gcc_target): Remove vector_types_compatible.
16254         Add vector_opaque_p.
16255
16256         * config/rs6000/rs6000.c (rs6000_spe_vector_types_compatible):
16257         Remove.
16258         (is_ev64_opaque_type): Check for TARGET_SPE and make sure type is
16259         a vector type.  Change return type to bool.
16260         (TARGET_VECTOR_TYPES_COMPATIBLE): Remove.
16261         (TARGET_VECTOR_OPAQUE_P): Define.
16262
16263         * cp/parser.c (cp_parser_init_declarator): Call vector_opaque_p
16264         target hook.
16265         Include target.h.
16266         (cp_parser_init_declarator): Fix typo in function comments.
16267
16268 2003-02-25  Jan Hubicka  <jh@suse.cz>
16269
16270         * Makefile.in (lcm.o):  Add dependency on function.h
16271         * lcm.c (function.h): Include.
16272         * i386.c (machine_function, ix86_stack_locals,
16273         * ix86_save_varrargs_registers) : Move to
16274         ...
16275         * i386.h (machine_function, ix86_stack_locals,
16276         ix86_save_varrargs_registers): ... here; add optimize_mode_switching
16277         (ix86_optimize_mode_switching): New.
16278         * i386.md (fix patterns): Set ix86_optimize_mode_switching
16279
16280 2003-02-25  Nick Clifton  <nickc@redhat.com>
16281
16282         * config/d30v/d30v.c (d30v_init_cumulative_args): Fix typo.  Name
16283         of fourth arg is 'fndecl' not 'indirect'.  Update comment
16284         describing the function's parameters.
16285
16286 2003-02-24  Jan Hubicka  <jh@suse.cz>
16287
16288         * combine.c (simplify_shift_const):  Fix previous patch.
16289
16290 2003-02-24  Jeff Law  <law@redhat.com>
16291
16292         * i386.md (testdi_1_rex64): Discourage reload from using the %eax
16293         alternative.
16294         (testsi_1, testhi_1, testqi_1): Likewise.
16295
16296 2003-02-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
16297
16298         * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Rename
16299         __EXTERN_PREFIX to __PRAGMA_EXTERN_PREFIX.
16300         * doc/extend.texi (Tru64 Pragmas): Reflect this.
16301
16302         * fixinc/inclhack.def (alpha___extern_prefix): Indicate #pragma
16303         extern_prefix support for Tru64 UNIX V5 <sys/stat.h>.
16304         * fixinc/fixincl.x: Regenerate.
16305         * fixinc/tests/base/sys/stat.h [ALPHA___EXTERN_PREFIX_CHECK]: New
16306         testcase.
16307         Fixes PR c/5059, c/6126, other/9671.
16308
16309 2003-02-24  Roger Sayle  <roger@eyesopen.com>
16310
16311         * gcc.c (do_spec_1) ['{']:  Handle pending argument upon return
16312         from handle_braces in "%{...}".
16313
16314 2003-02-24  Kaz Kojima  <kkojima@gcc.gnu.org>
16315
16316         * config/sh/sh.c (TARGET_HAVE_TLS): Conditionally define.
16317         (prepare_move_operands): Handle TLS operands.
16318         (tls_symbolic_operand): New.
16319         (nonpic_symbol_mentioned_p): Handle TLS UNSPECs.
16320         (legitimize_pic_address): Do nothing for the TLS symbol.
16321         (sh_encode_section_info): Handle TLS case.
16322         (sh_strip_name_encoding): Drop TLS encoding.
16323         * config/sh/sh-protos.h (tls_symbolic_operand): Add prototype.
16324         * config/sh/sh.h (SH_TLS_ENCODING): Define.
16325         (TLS_SYMNAME_P, STRIP_TLS_ENCODING): Likewise.
16326         (ASM_OUTPUT_LABELREF): Drop TLS encoding.
16327         (OUTPUT_ADDR_CONST_EXTRA): Handle TLS UNSPECs.
16328         * config/sh/sh.md: Define TLS UNSPEC constants.
16329         (type): Add tls_load.
16330         ("tls_global_dynamic", "tls_local_dynamic"): New insns.
16331         ("sym2DTPOFF", "symDTPOFF2reg", "sym2GOTTPOFF"): New expanders.
16332         ("tls_initial_exec"): New insn.
16333         ("sym2TPOFF", "symTPOFF2reg"): New expanders.
16334         ("load_gbr"): New insn.
16335
16336         * configure.in (HAVE_AS_TLS): Add sh-*-* and sh[34]*-*-* cases.
16337         * configure: Regenerate.
16338
16339 2003-02-24  Alan Modra  <amodra@bigpond.net.au>
16340
16341         PR 9297, PR 9722
16342         * calls.c (store_one_arg): Revert 1999-02-16 change.  Revert
16343         2000-12-17 change.  Pass EXPAND_STACK_PARM to expand_expr.
16344         * expr.h (enum expand_modifier): Define EXPAND_STACK_PARM.
16345         (enum block_op_methods): Reorder for better store_expr optimization.
16346         * expr.c (store_expr): Test bit 1 of "want_value" for call param
16347         stores, test bit 0 for original want_value meaning.  Pass
16348         BLOCK_OP_CALL_PARM to emit_block_move when bit 1 set.  Adjust
16349         recursive calls, and calls to expand_param.
16350         (expand_expr): Handle EXPAND_STACK_PARM modifier.  When cse
16351         expected, set target to 0 rather than to subtarget.  Formatting.
16352
16353 2003-02-23  Kazu Hirata  <kazu@cs.umass.edu>
16354
16355         * gcse.c (cprop_jump): Use the REG_EQUAL note if available.
16356
16357 2003-02-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16358
16359         * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Document
16360         new default behavior.
16361         * ggc-common.c: Include sys/resource.h.
16362         (ggc_rlimit_bound): New function.
16363         (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic): Update
16364         defaults to account for rlimits.
16365
16366 2003-02-22  Richard Henderson  <rth@redhat.com>
16367
16368         * i386.c, i386.h (TUNEMASK): Rename from CPUMASK.
16369
16370 2003-02-22  Kelley Cook <kelley@dwhoops.info>
16371
16372         * i386.h, i386.c, i386.md (ix86_tune): Rename from ix86_cpu.
16373         (ix86_tune_string): Rename from ix86_cpu_string.
16374
16375 2003-02-22  Kelley Cook <kelleycook@comcast.net>
16376
16377         * config/i386/i386.c: Replace "mcpu" with "mtune".
16378         * config/i386/i386.h (TARGET_OPTIONS): Likewise.
16379         (CC1_CPU_SPEC): Likewise. New warning for "-mcpu".
16380         * doc/invoke.texi (i386 and x86-64 Options): Replace "mcpu"
16381         with "mtune".  Note that "mcpu" is a deprecated synonym for "mtune".
16382
16383 2003-02-23  Andreas Schwab  <schwab@suse.de>
16384
16385         * config.gcc: Delete references to m68k/t-linux and
16386         m68k/t-linux-aout.
16387         * config/m68k/t-linux, config/m68k/t-linux-aout: Removed.
16388
16389 2003-02-22  Jan Hubicka  <jh@suse.cz>
16390
16391         * toplev.c (rest_of_compilation):  Apply fotgotten hunk
16392         of track scheduling patch.
16393
16394 2003-02-22  Jan Hubicka  <jh@suse.cz>
16395
16396         * config/linux.h (TARGET_HAS_F_SETLKW): Define.
16397         * config/alpha/linux.h (TARGET_HAS_F_SETLKW): Likewise
16398
16399 2003-02-22  Jan Hubicka  <jh@suse.cz>
16400
16401         * c-decl.c (c_expand_body_1): Fix.
16402
16403 2003-02-22  Jan Hubicka  <jh@suse.cz>
16404
16405         * expmed.c (expand_divmod): Undo sign extensions for unsigned operands
16406
16407         * cfgcleanup.c (try_forward_edges):  Don't check loop structures
16408         when not optimizing.
16409         (cleanup_cfg): Do not iterate trought delete_trivially_dead_insns
16410         when not expensive.
16411         * toplev.c (rest_of_compilation):  Duplicate loop headers only when
16412         optimizing;  Delete trivially dead insns early; fix optimize check.
16413
16414         * Makefile.in (c-decl.o, c-objc-common.o, cgraph.o, tree-inline.o): Add
16415         dependency on cgraph.h
16416         * c-decl.c: Include cgraph.h
16417         (finish_function): Update call of tree_inlinable_function_p.
16418         * c-objc-common.c: Include cgraph.h
16419         * cgraph.h: New file.
16420         * cgraphunit.c: New file.
16421         * cgraph.c (cgraph_node, cgraph_edge): Move into cgraph.h
16422         (cgraph_nodes, cgraph_n_nodes): Globalize.
16423         (cgraph_finalize_function, cgraph_finalize_compilation_unit
16424         cgraph_create_edges, cgraph_optimize, cgraph_mark_needed_node):
16425         Move into cgraphunit.c
16426         * tree-inline.c: Include cgraph.h
16427         * tree-inline.c: Include cgraph.h
16428
16429 2003-02-22  Josef Zlomek  <zlomekj@suse.cz>
16430
16431         * config/i386/i386.md: Use gen_lowpart instead of gen_rtx_REG
16432         for copying a register.
16433
16434 2003-02-22  Steven Bosscher  <s.bosscher@student.tudelft.nl>
16435
16436         PR other/3782
16437         * toplev.c (process_options): If flag_detailed_statistics is set,
16438         then set time_report as well.
16439
16440         PR c/8828
16441         * jump.c (never_reached_warning): Don't fall through BARRRIER
16442         insns.  Update comments to reflect what the function really does.
16443
16444 2003-02-21  Roger Sayle  <roger@eyesopen.com>
16445
16446         * fold-const.c (omit_one_operand): No longer static.
16447         * tree.h (omit_one_operand): Prototype here.
16448         (div_and_round_double): Keep fold-const.c prototypes together.
16449         * builtins.c (builtin_mathfn_code): Handle binary built-in
16450         funtions, such as "pow" and "atan2".
16451         (fold_builtin): Optimize both pow(x,0.0) and pow(1.0,y) to 1.0.
16452         Simplify optimizations using "type" the builtin's return type.
16453
16454 2003-02-22  Hans-Peter Nilsson  <hp@axis.com>
16455
16456         * config/cris/cris.c (cris_rtx_costs): Blockify dangling else.
16457         Fix functionalization typo.
16458
16459         * regmove.c (optimize_reg_copy_1): Do not replace a hard register
16460         in an asm.
16461
16462 2003-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16463
16464         * Makefile.in (ggc-common.o): Depend on $(PARAMS_H)
16465         * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Update
16466         documentation.
16467         * ggc-common.c: Include params.h
16468         (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
16469         init_ggc_heuristics): New functions.
16470         * ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
16471         init_ggc_heuristics): Prototype.
16472         * toplev.c (print_version):  Output GGC heuristics.
16473         (parse_options_and_default_flags): Call init_ggc_heuristics.
16474
16475 2003-02-22  Jan Hubicka  <jh@suse.cz>
16476
16477         * i386.c (def_builtin):  Special case 64bit builtins.
16478         (MASK_SSE164, MASK_SSE264): New constants.
16479         (builtin_description): Add 64bit builtins.
16480         (ix86_init_mmx_sse_builtins): Likewise.
16481         * i386.h (enum ix86_builtins): Likewise.
16482         * i386.md (cvtss2siq, cvttss2siq, cvtsd2siq, cvttsd2siq, cvtsi2sdq,
16483         sse2_movq2dq_rex64, sse2_movsq2q_rex64): New.
16484         (sse2_movq2dq, sse2_movsq2q): Disable for 64bit.
16485         * mmintrin.h (_mm_cvtsi64x_si64, _mm_set_pi64x, _mm_cvtsi64_si64x): New.
16486         * xmmintrin.h (_mm_cvtss_si64x, _mm_cvttss_si64x, _mm_cvtsi64x_ss,
16487         _mm_set_epi64x, _mm_set1_epi64x, _mm_cvtsd_si64x, _mm_cvttsd_si64x,
16488         _mm_cvtsi64x_sd, _mm_cvtsi64x_si128, _mm_cvtsi128_si64x): New.
16489
16490 2003-02-22  Jan Hubicka  <jh@suse.cz>
16491
16492         * i386.c (builtin_description): Add __builtin_ia32_paddq and
16493         __builtin_ia32_psubq. Fix __builtin_ia32_paddq128
16494          and __builtin_ia32_psubq128.
16495         * i386.h (IX86_BUILTIN_PADDQ, IX86_BUILTIN_PSUBQ): New.
16496         * i386.md (addv*, mmx_ior*, mmx_xoe*, mmx_and*): Add missing '%'.
16497         (mmx_adddi3, mmx_subdi3): New.
16498         * mmintrin.h (_mm_add_si64, _mm_sub_si64): New.
16499         * xmmintrin.h (_mm_movepi64_pi64): New.
16500         (_mm_add_epi64, _mm_sub_epi64): fix.
16501         (_mm_mul_pu16): Rename to...
16502         (_mm_mul_su32): ... this one.
16503
16504         * builtins.c (expand_builtin_expect):  Do not predict
16505         flag_guess_branch_prob is not set.
16506         * c-semantics.c (expand_stmt): Likewise.
16507         * predict.c (predict_insn): Likewise.
16508         * stmt.c (expand_continue_loop): Likewise.
16509         * toplev.c (rest_of_compilation): Do not call
16510         note_prediction_to_br_prob and note_prediction_to_br_prob
16511         when not optimizing.
16512
16513 2003-02-21  Jan Hubicka  <jh@suse.cz>
16514
16515         * cfgrtl.c (commit_edge_insertions):  Call
16516         find_many_sub_basic_block only when some code has been emitted.
16517         (commit_edge_insertions_watch_calls): Bring into sync with
16518         commit_edge_insertions
16519
16520 2003-02-21  J"orn Rennecke <joern.rennecke@superh.com>
16521
16522         * sh.h (OVERRIDE_OPTIONS): Fix code that clears 'e' register class.
16523
16524         * sh.md (binary_sf_op): Use extra constant operand instead of
16525         negating constant operand 4.
16526         * sh.c (sh_expand_binop_v2sf): Supply it.
16527
16528 2003-02-21  Zack Weinberg  <zack@codesourcery.com>
16529
16530         * cpphash.h (struct lexer_state): Add directive_wants_padding.
16531         * cpplib.c (_cpp_handle_directive): Set directive_wants_padding
16532         for directives of type INCL.
16533         (glue_header_name, parse_include): Use get_token_no_padding.
16534         * cppmacro.c (replace_args): If directive_wants_padding,
16535         provide padding tokens.
16536
16537 2003-02-21  Kazu Hirata  <kazu@cs.umass.edu>
16538
16539         * config/h8300/h8300.md (a peephole2): New.
16540
16541 2003-02-21  Jan Hubicka  <jh@suse.cz>
16542
16543         * cfgrtl.c (commit_one_edge_insertion): Only mark BB for splitting.
16544         (commit_edge_insertions): Call find_many_sub_basic_blocks
16545
16546         * reg-stack.c (convert_regs): Cleax aux for blocks.
16547
16548 2003-02-21  Jan Hubicka  <jh@suse.cz>
16549
16550         * toplev.c (parse_options_and_default_flags): Undo accidental commit.
16551
16552 2003-02-21  Glen Nakamura  <glen@imodulo.com>
16553
16554         PR optimization/8613
16555         * builtins.c (expand_builtin): Emit postincrements before expanding
16556         builtin functions.
16557
16558 2003-02-21  Ben Elliston  <bje@redhat.com>
16559
16560         PR other/5634
16561         * doc/install.texi (Configuration): Explain using $HOME instead of
16562         the ~ metacharacter when referring to home directories.
16563
16564 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
16565
16566         * configure.in (TARGET_SYSTEM_ROOT): Set default to
16567         ${exec_prefix}/${target_alias}/sys-root.  Match explicit
16568         '${exec_prefix}' (in addition to the expansion thereof) as
16569         relocatable.
16570         * configure: Rebuilt.
16571
16572 2003-02-20  Kazu Hirata  <kazu@cs.umass.edu>
16573
16574         * config/h8300/h8300.md (addhi3_incdec): Change the name to
16575         *addhi3_incdec.
16576         (addsi3_incdec): Change the name to *addsi3_incdec.
16577
16578 2003-02-20  Roger Sayle  <roger@eyesopen.com>
16579
16580         * explow.c (force_reg): Avoid useless REG_EQUAL notes.
16581
16582 2003-02-20  Toon Moene  <toon@moene.indiv.nluug.nl>
16583
16584         PR fortran/9038
16585         * c-opts.c (sanitize_cpp_opts): Add Fortran front end
16586         options to be ignored.
16587         (c_common_decode_option): Ignore them when preprocessing.
16588
16589 2003-02-20  Jan Hubicka  <jh@suse.cz>
16590
16591         * toplev.c (flag_sched2_use_superblocks, flag_sched2_use_traces): New
16592         global variables.
16593         (lang_independent_options):  Add -fsched2-use-superblocks
16594         -fsced2-use-traces.
16595         (rest_of_compilation): Deal with it.
16596         * invoke.texi (-fsched2-use-traces, fsched2-use-superblocks):  Declare.
16597         * flags.h (flag_sched2_use_superblocks, flag_sched2_use_traces):
16598         Declare.
16599         * rtl.h (reg_to_stack):  Update prototype.
16600         * reg-stack.c (reg_to_stack): Return when something has changed;
16601         update liveness when executing after superblock scheduling.
16602
16603         * combine.c (simplify_shift_const):  Simplify few special cases
16604         into constants.
16605
16606 2003-02-20  David Edelsohn  <edelsohn@gnu.org>
16607
16608         * config/rs6000/rs6000.md: (attr "type"): Add fast_compare.
16609         (add.,subf.,neg.): Change attribute to fast_compare.
16610         All DFA descriptions updated.
16611
16612 2003-02-20  Nathan Sidwell  <nathan@codesourcery.com>
16613
16614         Change base class access representation.
16615         * tree.h (TREE_VIA_PUBLIC, TREE_VIA_PROTECTED,
16616         TREE_VIA_PRIVATE): Remove.
16617         (BINFO_BASEACCESSES): New binfo elt.
16618         (BINFO_BASEACCESS): New accessor.
16619         (BINFO_ELTS): Increase.
16620         (TI_ACCESS_PUBLIC, TI_ACCESS_PROTECTED, TI_ACCESS_PRIVATE): New.
16621         (access_public_node, access_protected_node,
16622         access_private_node): New global nodes.
16623         * tree.c (build_common_tree_nodes_2): Initialize access nodes.
16624         * dbxout.c (dbxout_type): Adjust.
16625         * dwarf2out.c (gen_inheritance_die): Add access parameter.
16626         (gen_member_die): Adjust.
16627         * dwarfout.c (output_inheritance_die): ARG is array of two trees.
16628         (output_type): Adjust.
16629         * tree-dump.c (dequeue_and_dump): Adjust binfo dumping.
16630
16631         Change base class access representation. Share virtual base
16632         binfos.
16633         * cp/call.c (build_special_member_call): Remove binfo_for_vbase
16634         call.
16635         * cp/class.c (build_base_path): Likewise.
16636         (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
16637         (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
16638         (make_new_vtable): Adjust.
16639         (force_canonical_binfo_r): Delete.
16640         (force_canonical_binfo): Delete.
16641         (mark_primary_virtual_base): Delete.
16642         (dfs_unshared_virtual_bases): Delete.
16643         (mark_primary_bases): Adjust.
16644         (maybe_warn_about_overly_private_class): Adjust.
16645         (dfs_base_derived_from): Delete.
16646         (base_derived_from): Follow the inheritance chain.
16647         (struct find_final_overrider_data): Add vpath member.
16648         (dfs_find_final_overrider): Adjust.
16649         (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
16650         (find_final_overrider): Adjust.
16651         (update_vtable_entry_for_fn): Adjust.
16652         (modify_all_vtables): Adjust.
16653         (walk_subobject_offsets): Adjust.
16654         (layout_nonempty_base_or_field): Adjust.
16655         (layout_empty_base): Remove last parameter. Adjust.
16656         (build_base_field): Adjust.
16657         (build_base_fields): Adjust.
16658         (propagate_binfo_offsets): Remove last parameter. Adjust.
16659         (dfs_set_offset_for_unshared_vbases): Delete.
16660         (layout_virtual_bases): Adjust.
16661         (finish_struct_1): Adjust.
16662         (init_class_processing): Don't init access nodes.
16663         (dfs_get_primary_binfo): Delete.
16664         (get_primary_binfo): Adjust.
16665         (dump_class_hierarchy_r): Remove most derived arg, add IGO
16666         parameter. Adjust.
16667         (dump_class_hierarchy): Adjust.
16668         (finish_vtbls): Adjust.
16669         (get_original_base): Delete.
16670         (build_vtt_inits): Adjust.
16671         (dfs_build_secondary_vptr_vtt_inits): Adjust.
16672         (dfs_ctor_vtable_bases_queue_p): Adjust.
16673         (build_ctor_vtbl_group): Adjust.
16674         (dfs_accumulate_vtbl_inits): Adjust.
16675         (build_vtbl_initializer): Adjust.
16676         (build_vbase_offset_vtbl_entries): Adjust.
16677         (add_vcall_offset_vtbl_entries_1): Adjust.
16678         * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
16679         (access_*_node): Remove.
16680         (CANONICAL_BINFO): Delete.
16681         (BINFO_UNSHARED_MARKED): Remove.
16682         (BINFO_MARKED): Set LANG_FLAG_0 directly.
16683         (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
16684         (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
16685         (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
16686         Delete.
16687         (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
16688         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
16689         (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
16690         Delete.
16691         (BINFO_DEPENDENT_BASE_P): New.
16692         (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
16693         index.
16694         (markedp, unmarkedp): Adjust.
16695         (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
16696         dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
16697         find_vbase_instance, binfo_for_vbase): Delete.
16698         (copied_binfo, original_binfo): Declare.
16699         (finish_base_specifier): Add virtual_p arg.
16700         (unshare_base_binfos): Delete.
16701         (copy_base_binfos): Declare.
16702         (reverse_path): Delete.
16703         * cp/decl.c (xref_basetypes): Access and virtuality passed
16704         differently. Don't copy direct base binfos here. Call
16705         copy_base_binfos.
16706         * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
16707         (initialize_vtbl_ptrs): Adjust.
16708         (expand_member_init): Adjust.
16709         * cp/parser.c (cp_parser_base_specifier): Adjust.
16710         * cp/pt.c (instantiate_class_template): Adjust.
16711         (get_template_base_recursive): Adjust.
16712         * cp/rtti.c (get_pseudo_ti_init): Adjust.
16713         (get_pseudo_ti_desc): Adjust.
16714         * cp/tree.c (unshare_base_binfos): Rename to ...
16715         (copy_base_binfos): ... here, reimplement.
16716         (make_binfo): Set BINFO_DEPENDENT_BASE_P.
16717         (reverse_path): Remove.
16718         * cp/typeck.c (get_delta_difference): Adjust error messages.
16719         * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
16720         * cp/search.c (lookup_base_r): Adjust.
16721         (dynamic_cast_base_recurse): Adjust.
16722         (canonical_binfo): Remove.
16723         (dfs_canonical_queue): Remove.
16724         (dfs_assert_unmarked_p): Remove.
16725         (assert_canonical_unmarked): Remove.
16726         (shared_marked_p, shared_unmarked_p): Remove.
16727         (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
16728         (dfs_access_in_type): Adjust.
16729         (access_in_type): Adjust.
16730         (dfs_accessible_queue_p): Adjust.
16731         (dfs_accessible_p): Adjust.
16732         (is_subobject_of_p_1, is_subobject_of_p): Remove.
16733         (struct lookup_field_info): Remove from_dep_base_p field.
16734         (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
16735         (lookup_field_r): Remove dependent base code.
16736         (lookup_member): Likewise.
16737         (dfs_walk, dfs_walk_real): Add access arg to queue fn.
16738         (dfs_unmarked_real_bases_queue_p): Remove.
16739         (dfs_marked_real_bases_queue_p): Remove.
16740         (dfs_skip_vbases): Remove.
16741         (dfs_get_pure_virtuals): Adjust.
16742         (markedp, unmarkedp): Adjust.
16743         (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
16744         (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
16745         (dfs_unmark): Adjust.
16746         (dfs_get_vbase_types):Remove.
16747         (dfs_build_inheritance_graph_order): Remove.
16748         (get_vbase_types): Remove
16749         (dfs_find_vbase_instance): Remove.
16750         (find_vbase_instance): Remove.
16751         (dfs_debug_unmarkedp): Adjust.
16752         (dependent_base_p): Remove.
16753         (dfs_push_type_decls): Adjust.
16754         (dfs_push_decls): Adjust.
16755         (dfs_no_overlap_yet): Adjust.
16756         (copied_binfo): New function.
16757         (original_binfo): New function.
16758         (binfo_for_vbase): Remove.
16759
16760         Change base class access representation.
16761         * java/class.c (set_super_info): Don't set TREE_VIA_PUBLIC.
16762         (add_interface_do): Likewise.
16763
16764 2003-02-20  David Edelsohn  <edelsohn@gnu.org>
16765
16766         * config/rs6000/sysv4.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
16767         * config/rs6000/power4.md (power4-store,power4-vecstore): New
16768         insn reservations.
16769         (power4-fpstore): Compact.
16770
16771 2003-02-20  Kazu Hirata  <kazu@cs.umass.edu>
16772
16773         * config/h8300/h8300.md (*iorsi3_w): New.
16774
16775 2003-02-20  Josef Zlomek  <zlomekj@suse.cz>
16776
16777         * combine.c (distribute_notes): Kill REG_EXEC_COUNT.
16778         * rtl.c (reg_note_name): Likewise.
16779         * rtl.h (enum reg_note): Likewise.
16780         * doc/invoke.texi: Likewise.
16781         * doc/rtl.texi: Likewise.
16782
16783 2003-02-20  Josef Zlomek  <zlomekj@suse.cz>
16784
16785         * bb-reorder.c (find_traces_1_round): Fix comment typo.
16786
16787 2003-02-19  Roger Sayle  <roger@eyesopen.com>
16788
16789         * fold-const.c (fold_real_zero_addition_p): Don't fold a zero
16790         addition in the presence of signaling NaNs.
16791
16792 2003-02-19  Krister Walfridsson  <cato@df.lth.se>
16793
16794         * tm.texi (INIT_CUMULATIVE_ARGS): Fix typo.
16795
16796 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
16797
16798         * config/h8300/h8300.c (output_logical_op): Optimize or.l when
16799         ORing with 0xffff??00 with the highest bit of the ?? part set.
16800         (compute_logical_op_length): Update.
16801         (compute_logical_op_cc): Likewise.
16802
16803 2003-02-19  Josef Zlomek  <zlomekj@suse.cz>
16804
16805         * bb-reorder.c (find_traces_1_round): Fixed condition for small
16806         destination block with multiple predecessors.
16807         (connect_traces): Check whether the block is a start of trace.
16808
16809 2003-02-19  Jan Hubicka  <jh@suse.cz>
16810
16811         * calls.c (expand_call): Update call of INIT_CUMULATIVE_ARGS
16812         * function.c (assign_params): Likewise.
16813         * arm-protos.h (arm_init_cumulative_args): Update prototype.
16814         * arm.c (arm_init_cumulative_args): Update function.
16815         * arm.h (INIT_CUMULATIVE_ARGS): Update.
16816         * avr-protos.h (init_cumulative_args): Update prototype.
16817         * avr.c (init_cumulative_args): Update function.
16818         * avr.h (INIT_CUMULATIVE_ARGS): Update.
16819         * d30v-protos.h (d30v_init_cumulative_args): Update prototype.
16820         * d30v.c (d30v_init_cumulative_args): Update function.
16821         * d30v.h (INIT_CUMULATIVE_ARGS): Update.
16822         * frv-protos.h (frv_init_cumulative_args): Update prototype.
16823         * frv.c (frv_init_cumulative_args): Update function.
16824         * frv.h (INIT_CUMULATIVE_ARGS): Update.
16825         * mips.c (mips_expand_prolgue): Update call of INIT_CUMULATIVE_ARGS.
16826         * pa.h (INIT_CUMULATIVE_ARGS): Update.
16827         * sparc-protos.h (init_cumulative_args): Update prototype.
16828         * sparc.c (init_cumulative_args): Update function.
16829         * sparc.h (INIT_CUMULATIVE_ARGS): Update.
16830         * tm.texi (INIT_CUMULATIVE_ARGS): Update documentation.
16831
16832 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
16833
16834         * config/h8300/h8300.md (*iorsi3_two_qi_sext): New.
16835         (*ashiftsi_sextqi_7): Likewise.
16836
16837 2003-02-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
16838
16839         * config/mips/iris6.h (TARGET_OS_CPP_BUILTINS): Define __c99 for
16840         ISO C99 and C++.
16841
16842         * fixinc/inclhack.def (irix___restrict): Don't change __restrict
16843         for C++ on IRIX 6.5.1[89].
16844         * fixinc/tests/base/internal/sgimacros.h: New file.
16845
16846         * fixinc/inclhack.def (irix_wcsftime): Use XPG5 variant for C99.
16847         * fixinc/tests/base/internal/wchar_core.h: New file.
16848
16849         * fixinc/inclhack.def (irix_socklen_t): Fix broken IRIX 6.5.1[78]
16850         socklen_t definition.
16851         * fixinc/fixincl.x: Regenerate.
16852         * fixinc/tests/base/sys/socket.h: New file.
16853         Fixes PR libgcj/9652.
16854
16855 2003-02-19  Jan Hubicka  <jh@suse.cz>
16856
16857         * i386.md (movsfcc_1, movdfcc_1): Fix constrains.
16858
16859 2003-02-19  David Edelsohn  <edelsohn@gnu.org>
16860
16861         * config/rs6000/rs6000.c (rs6000_override_options): Initialize
16862         align_jumps_max_skip and align_loops_max_skip.
16863
16864 2003-02-19  Thierry Moreau  <thierry.moreau@connotech.com>
16865
16866         * config/rs6000/rs6000.c (rs6000_encode_section_info): Do not
16867         test size if named section.
16868
16869 2003-02-19  Daniel Jacobowitz  <drow@mvista.com>
16870
16871         * expr.c (expand_expr): Use gen_int_mode for the argument
16872         to gen_rtx_MULT.
16873
16874 2003-02-19  Jan Hubicka  <jh@suse.cz>
16875
16876         * i386.md (cosxf2):  Fix conditional.
16877
16878 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
16879
16880         * config/h8300/h8300.md (extendqisi2): Change to an expander.
16881         (*extendqisi2_h8300): New.
16882         (*extendqisi2_h8300hs): Likewise.
16883
16884 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
16885
16886         * config/h8300/h8300-protos.h: Update the prototype for
16887         split_adds_subs.  Remove the prototypes for
16888         const_int_le_2_operand and const_int_le_6_operand.
16889         * config/h8300/h8300.c (split_adds_sub): Don't output inc/dec.
16890         (const_int_le_2_operand): Remove.
16891         (const_int_le_6_operand): Likewise.
16892         * config/h8300/h8300.h (PREDICATE_CODES): Remove the entries
16893         for const_int_le_2_operand and const_int_le_6_operand.
16894         * config/h8300/h8300.md: Update all uses of split_adds_subs.
16895         (a peephole2): New.
16896
16897 2003-02-18  Jan Hubicka  <jh@suse.cz>
16898
16899         * cgraph.c (NPREDECESORC, SET_NPREDECESORS): Kill.
16900         (cgraph_expand_function): Rewrite.
16901
16902 2003-02-18  Matt Austern <austern@apple.com>
16903
16904         * toplev.c, langhooks.c, langhooks-def.h: Move
16905         write_global_declarations from toplev.c to langhooks.c.
16906
16907 2003-02-18  Kazu Hirata  <kazu@cs.umass.edu>
16908
16909         * config/h8300/h8300.c (general_operand_src): Always check
16910         MODE.
16911         (general_operand_dst): Likewise.
16912
16913 2003-02-18  Roger Sayle  <roger@eyesopen.com>
16914
16915         * convert.c (convert_to_real): Also optimize (float)log(x) into
16916         logf(x) where x is a float, i.e. also handle BUILT_IN_LOG{,L}.
16917
16918 2003-02-18  Kaz Kojima  <kkojima@gcc.gnu.org>
16919
16920         * config/sh/sh.c (unspec_caller_rtx_p): New.
16921         (sh_cannot_copy_insn_p): New.
16922         (TARGET_CANNOT_COPY_INSN_P): New.
16923
16924 2003-02-18  Richard Henderson  <rth@redhat.com>
16925
16926         * c-common.c (handle_used_attribute): Accept static data too.
16927
16928 2003-02-18  Nick Clifton  <nickc@redhat.com>
16929             Aldy Hernandez  <aldyh@redhat.com>
16930
16931         * testsuite/gcc.dg/20030218-1.c: New.
16932
16933         * doc/tm.texi: Document TARGET_VECTOR_TYPES_COMPATIBLE.
16934
16935         * target-def.h (TARGET_INITIALIZER): Add
16936         TARGET_VECTOR_TYPES_COMPATIBLE.
16937         (TARGET_VECTOR_TYPES_COMPATIBLE): New macro.
16938
16939         * target.h (struct gcc_target): Add field vector_types_compatible.
16940
16941         * c-typeck.c (comptypes): Take into account
16942         TARGET_VECTOR_TYPES_COMPATIBLE.
16943         (convert_for_assignment): Same.
16944
16945         * config/rs6000/rs6000.c (is_ev64_opaque_type): New.
16946         (rs6000_spe_vector_types_compatible): New.
16947         (TARGET_VECTOR_TYPES_COMPATIBLE): Define.
16948
16949 2003-02-19  Andreas Schwab  <schwab@suse.de>
16950
16951         * Makefile.in (toplev.o): Depend on $(LANGHOOKS_DEF_H).
16952         * toplev.c: Include langhooks-def.h.
16953
16954 2003-02-18  Chris Demetriou  <cgd@broadcom.com>
16955
16956         * config/mips/mips.h (enum processor_type): Sort entries
16957         alphabetically.
16958         * config/mips/mips.md (define_attr cpu): Sync with processor_type
16959         enum values, including adding entries that were missing.
16960
16961 2003-02-18  J"orn Rennecke <joern.rennecke@superh.com>
16962
16963         * sh.c (calc_live_regs): Also check GET_CODE when checking if
16964         initial value for PR_REG is still the PR_REG register.
16965
16966 2003-02-18  Jim Wilson  <wilson@redhat.com>
16967
16968         * config/ia64/ia64.md (floatdidf2, floatdisf2): Add %, before second
16969         instruction in output template.
16970         (bsp_value): Change output template from string to C code, add %,
16971         before actual instruction.
16972         (flushrs): Mark as not predicable.
16973
16974 2003-02-18  Krister Walfridsson  <cato@df.lth.se>
16975
16976         * inclhack.def (netbsd_bogus_semicolon): New fix.
16977         * fixincl.x: Rebuilt.
16978         * tests/base/ctype.h: Update.
16979
16980 2003-02-18  Roger Sayle  <roger@eyesopen.com>
16981
16982         * fold-const.c (negate_expr_p): New function to determine whether
16983         an expression can be negated cheaply.
16984         (fold) [MINUS_EXPR]: Use it to determine whether to transform
16985         -A - B into -B - A for floating point types.
16986
16987 2003-02-18  Roger Sayle  <roger@eyesopen.com>
16988
16989         * sbitmap.c (sbitmap_resize): New function.
16990         * sbitmap.h (sbitmap_resize): Prototype here.
16991         * recog.c (split_all_insns): Use sbitmap_resize.
16992
16993 2003-02-18  Kazu Hirata  <kazu@cs.umass.edu>
16994
16995         * config/h8300/h8300.md (*zero_extendhisi2_h8300): Fix the
16996         insn length.
16997         (extendqisi2): Likewise.
16998         (*extendhisi2_h8300): Likewise.
16999
17000 2003-02-18  Matt Austern <austern@apple.com>
17001
17002         * langhooks.h, langhooks-def.h: introduce new langhook,
17003         final_write_globals, with write_global_declarations as default.
17004         * toplev.c: Move invocation of wrapup_global_declarations from
17005         compile_file to new function, write_global_declarations.  Change
17006         compile_file to use final_write_globals hook.  Change
17007         wrapup_global_declarations so writing to DECL_DEFER_OUTPUT is
17008         conditional.
17009
17010 2003-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17011
17012         * pa.md: Correct and enhance comment.
17013
17014 2003-02-18  Geoffrey Keating  <geoffk@apple.com>
17015
17016         * gcc.c (validate_switches): Don't scan past closing '}'.
17017
17018 2003-02-18  Ben Elliston  <bje@redhat.com>
17019
17020         PR c++/1607
17021         * doc/extend.texi (Function Attributes): Document the effect of
17022         the C++ "this" parameter on the counting of arguments for the
17023         "format" and "format_arg" attributes.
17024
17025 2003-02-17  Aldy Hernandez  <aldyh@redhat.com>
17026
17027         * config/rs6000/spe.h (__ev_stdd): Cast 2nd arg.
17028         (__ev_stdw): Same.
17029         (__ev_stdh): Same.
17030
17031 2003-02-17  Jan Hubicka  <jh@suse.cz>
17032
17033         * recog.c (split_all_insns):  Fix memory overflow.
17034
17035 2003-02-17  Kazu Hirata  <kazu@cs.umass.edu>
17036
17037         * config/h8300/h8300.md (cmpqi): Remove mode from compare.
17038         (cmphi): Likewise.
17039         (*cmphi_h8300): Likewise.
17040         (*cmphi_h8300hs): Likewise.
17041         (cmpsi): Likewise.
17042         (7 peephole2): Likewise.
17043
17044 2003-02-16  Jan Hubicka  <jh@suse.cz>
17045
17046         * c-typeck.c (build_c_cast):  Fold constant variables into
17047         initial values.
17048
17049 2003-02-16  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17050
17051         * doc/install.texi (Specific): Fix link for m68k-att-sysv.
17052         (Binaries): Ditto for Sinix/Reliant Unix.
17053
17054 2003-02-16 Richard Earnshaw  <rearnsha@arm.com>
17055
17056         * arm.c (arm_reload_in_hi): Ensure that the scratch register does
17057         not overlap the final result register.
17058
17059 2003-02-16 Arend Bayer <arend.bayer@web.de>
17060            Richard Henderson  <rth@redhat.com>
17061
17062         PR c/8068
17063         * fold-const.c (extract_muldiv_1): Rename from extract_muldiv;
17064         rearrange mult arguments for less recursion.
17065         (extract_muldiv): New.  Prevent runaway recursion.
17066
17067 2003-02-16  Danny Smith  <dannysmith@users.sourceforge.net>
17068
17069         * config/i386/cygwin.h (TARGET_SUBTARGET_DEFAULT): Set
17070         MASK_ALIGN_DOUBLE.
17071
17072 2003-02-15  Roger Sayle  <roger@eyesopen.com>
17073
17074         * config/i386/i386.c (x86_ext_80387_constants): Use 80387 insns
17075         to load mathematical constants on K6, Athlon, Pentium 4 and PPro.
17076         (ext_80387_constants_table): Global table of 80387 special constants
17077         guarded by ext_80387_constants_init flag when not initialized.
17078         (init_ext_80387_constants): New function to initialize this table.
17079         (standard_80387_constant_p): Extend to recognize extra 80387
17080         constants, in XFmode, on processors where this is a win.
17081         (standard_80387_constant_opcode): New function to return the
17082         opcode associated with standard_80387_constant_p.
17083         (standard_80387_constant_rtx): New function to return the XFmode
17084         CONST_DOUBLE associated with standard_80387_constant_p.
17085         (ix86_rtx_costs): Give the new constants the same cost as 1.0.
17086
17087         * config/i386/i386-protos.h (standard_80387_constant_opcode):
17088         Prototype here.
17089         (standard_80387_constant_rtx): Likewise.
17090
17091         * config/i386/i386.md (*movsf1, *movsf1_nointerunit, *movdf_nointeger,
17092         *movdf_integer, *movxf_nointeger, *movtf_nointeger, *movxf_integer,
17093         *movtf_integer): Simplify using new standard_80387_constant_opcode.
17094
17095 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
17096
17097         * doc/invoke.texi (Optimize Options): Correct @option syntax.
17098
17099 2003-02-15  Richard Henderson  <rth@redhat.com>
17100
17101         * Makefile.in (cfglayout.o): Depend on TARGET_H.
17102         * cfglayout.c: Include target.h.
17103         (cfg_layout_can_duplicate_bb_p): Check targetm.cannot_copy_insn_p.
17104         * target-def.h (TARGET_CANNOT_COPY_INSN_P): New.
17105         * target.h (struct gcc_target): Add cannot_copy_insn_p.
17106
17107         * config/alpha/alpha.c (alpha_cannot_copy_insn_p): New.
17108         (TARGET_CANNOT_COPY_INSN_P): New.
17109         (override_options): Revert 2003-02-08 hack.
17110
17111 2003-02-15  Richard Henderson  <rth@redhat.com>
17112
17113         * gcse.c (bypass_block): Use BLOCK_FOR_INSN for resolving LABEL_REFs.
17114         (bypass_conditional_jumps): Accept computed_jump_p insns as well.
17115
17116 2003-02-15  David Edelsohn  <edelsohn@gnu.org>
17117
17118         * config/rs6000/rs6000.h (processor_type): Add PPC440.
17119         * config/rs6000/rs6000.c (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
17120         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
17121         TARGET_SCHED_VARIABLE_ISSUE): Define.
17122         (rs6000_use_dfa_pipeline_interface): New function.
17123         (rs6000_multipass_dfa_lookahead): New Function.
17124         (rs6000_variable_issue): New function.
17125         (rs6000_adjust_cost): Add CMP and DELAYED_CR types.
17126         (rs6000_issue_rate): Add PPC440.
17127         * config/rs6000/rs6000.md (unspec list): Correct typo.
17128         (attr "type"): Add load_ext, load_ext_u, load_ext_ux, load_u,
17129         store_ux, store_u, fpload_ux, fpload_u, fpstore_ux, fpstore_u,
17130         cmp, delayed_cr, mfcr, mtcr.
17131         (automata_option): Set "ndfa".
17132         (extendMMNN2): Update attributes.
17133         (movcc_internal1): Discourage move to non-cr0.  Update
17134         attributes.
17135         (movMM_update): Update attributes.
17136         (cmpMM_internal): Update attributes.
17137         (sCC CR materialization): Update attributes.
17138         (branch patterns): Do not discourage non-cr0.
17139         (cr logical patterns): Prefer destructive register allocation.
17140         Update attributes.
17141         (movesi_from_cr): Update attribute.
17142         (mtcrf_operation): Update attribute.
17143         (mtcrfsi): Update attribute.
17144         * config/rs6000/40x.md: New file.
17145         * config/rs6000/603.md: New file.
17146         * config/rs6000/6xx.md: New file.
17147         * config/rs6000/7450.md: New file.
17148         * config/rs6000/7xx.md: New file.
17149         * config/rs6000/mpc.md: New file.
17150         * config/rs6000/power4.md: New file.
17151         * config/rs6000/rios1.md: New file.
17152         * config/rs6000/rios2.md: New file.
17153         * config/rs6000/rs64.md: New file.
17154         [Some DFA descriptions based on work by Michael Hayes]
17155
17156 2003-02-15  Richard Henderson  <rth@redhat.com>
17157
17158         * bb-reorder.c (find_traces_1_round): Don't connect easy to copy
17159         successors with multiple predecessors.
17160         (connect_traces): Try harder to copy traces of length 1.
17161
17162         * function.h (struct function): Add computed_goto_common_label,
17163         computed_goto_common_reg.
17164         * function.c (free_after_compilation): Zap them.
17165         * stmt.c (expand_computed_goto): Use them to produce one
17166         indirect branch per function.
17167
17168 2003-02-15  Richard Henderson  <rth@redhat.com>
17169
17170         * cfgcleanup.c: Include params.h.
17171         (try_crossjump_bb): Use PARAM_MAX_CROSSJUMP_EDGES.  Fix test for
17172         too many outgoing edges from a block.
17173         * Makefile.in (cfgcleanup.o): Depend on PARAMS_H.
17174         * params.def (max-crossjump-edges): New.
17175         * doc/invoke.texi: Document it.
17176
17177 2003-02-15  Richard Henderson  <rth@redhat.com>
17178
17179         * recog.c (split_all_insns): Include new blocks in life update;
17180         do a global life update.
17181
17182 2003-02-15  Danny Smith  <dannysmith@users.sourceforge.net>
17183
17184         * config/i386/mingw32.h (LIBGCC_SPEC): Add libmingwex.a.
17185         Update copyright.
17186         * config/i386/cygwin.h (LIBGCC_SPEC): Add libmingwex.a for
17187         -mno-cygwin case.
17188
17189 2003-02-14  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
17190
17191         PR optimization/7702
17192         * reload1.c (reload_cse_simplify_set): Honor
17193         CANNOT_CHANGE_MODE_CLASS.
17194
17195 2003-02-14  Alexandre Oliva  <aoliva@redhat.com>
17196
17197         * config/mn10300/mn10300.c (mn10300_wide_const_load_uses_clr): New
17198         function.
17199         * config/mn10300/mn10300-protos.h: Declare it.
17200         * config/mn10300/mn10300.md (movdi, movdf): Use it to compute
17201         attribute cc of instructions that may use clr.
17202
17203 2003-02-14  Kazu Hirata  <kazu@cs.umass.edu>
17204
17205         * simplify-rtx.c (simplify_binary_operation): Simplify ~y when
17206         (x - (x & y)) is found.
17207
17208 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17209
17210         * configure.in: Fix typo.
17211         * configure: Regenerate.
17212
17213 2003-02-14  Kazu Hirata  <kazu@cs.umass.edu>
17214
17215         * config/h8300/h8300.md (*iorsi2_and_1_lshiftrt_1): New.
17216
17217 2003-02-13  Adam Nemet  <anemet@lnxw.com>
17218
17219         PR opt/2391
17220         * combine.c: Fix spelling in comment.
17221         (cached_nonzero_bits): New function.
17222         (cached_num_sign_bit_copies): New function.
17223         (nonzero_bits_with_known): New macro.
17224         (num_sign_bit_copies_with_known): New macro.
17225         (nonzero_bits1): Rename from nonzero_bits.  Add three new
17226         arguments.  Change calls from nonzero_bits to
17227         nonzero_bits_with_known.
17228         (num_sign_bit_copies1): Rename from num_sign_bit_copies.  Add
17229         three new arguments.  Change calls from num_sign_bit_copies to
17230         num_sign_bit_copies_with_known.
17231         (nonzero_bits): New macro.
17232         (num_sign_bit_copies): New macro.
17233         (update_table_tick): Don't traverse identical subexpression more
17234         than once.
17235         (get_last_value_validate): Likewise.
17236
17237 2003-02-13  Zack Weinberg  <zack@codesourcery.com>
17238
17239         * emit-rtl.c (init_emit): Use ggc_alloc for regno_reg_rtx.
17240         * function.h (struct emit_status): Length of regno_pointer_align
17241         and x_regno_reg_rtx as seen by gengtype is only x_reg_rtx_no,
17242         not regno_pointer_align_length (i.e. length actually used, not
17243         length as allocated)
17244
17245         * config/i386/i386.c (struct stack_local_entry): New.
17246         (struct machine_function): Replace huge array with alist.
17247         (assign_386_stack_local): Change to match.
17248
17249 2003-02-13  John David Anglin  <dave.anglin@nrc-crnc.gc.ca>
17250
17251         * inclhack.def (hpux_long_double): Tighten select and add bypass
17252         regexp.
17253         * fixincl.x: Rebuilt.
17254
17255 2003-02-13  Josef Zlomek  <zlomekj@suse.cz>
17256
17257         * cfgcleanup.c (outgoing_edges_match): When there is single outgoing
17258         edge and block ends with a jump insn it must be simple jump.
17259
17260 2003-02-13  Daniel Jacobowitz  <drow@mvista.com>
17261
17262         * Makefile.in (PREPROCESSOR_DEFINES): Add
17263         @TARGET_SYSTEM_ROOT_DEFINE@.
17264         * configure.in (PREFIX_INCLUDE_DIR): Don't define if $with_sysroot
17265         is specified or if building a cross compiler.
17266         (TARGET_SYSTEM_ROOT_DEFINE): Add TARGET_SYSTEM_ROOT_RELOCATABLE
17267         if the sysroot is under $exec_prefix.
17268         * configure: Regenerated.
17269         * cppdefault.h: Use native include paths if TARGET_SYSTEM_ROOT is
17270         defined.
17271         (struct default_include): Add add_sysroot field.
17272         (cpp_SYSROOT): Declare.
17273         * cppdefault.c (cpp_include_defaults): Fill in add_sysroot
17274         field.
17275         (cpp_SYSROOT): New variable.
17276         * cppinit.c (cpp_create_reader): Initialize
17277         CPP_OPTION (pfile, sysroot).
17278         (init_standard_includes): Handle add_sysroot.  Do not
17279         add unrelocated copies of relocated directories.
17280         (COMMAND_LINE_OPTIONS): Add -isysroot.
17281         (cpp_handle_option): Handle -isysroot.
17282         * cpplib.h (struct cpp_options): Add sysroot member.
17283         * gcc.c (The Specs Language): Update description of %I.
17284         (target_system_root_changed): New variable.
17285         (process_command): Conditionalize make_relative_prefix call
17286         on !VMS and TARGET_SYSTEM_ROOT_RELOCATABLE.  Set
17287         target_system_root_changed.
17288         (do_spec_1): Add -isysroot to %I.
17289         * doc/invoke.texi (Spec Files): Update description of %I.
17290         * doc/install.texi (--with-sysroot): Update comment about
17291         relocation.
17292
17293 2003-02-13  Kazu Hirata  <kazu@cs.umass.edu>
17294
17295         * config/h8300/h8300.md (a peephole2): New.
17296
17297 2003-02-13  Robert Lipe <robertlipe@usa.net>
17298             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17299
17300         * doc/install.texi (Specific): Update three SCO-related URLs.
17301
17302 2003-02-13  Andreas Schwab  <schwab@suse.de>
17303
17304         * cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
17305         Parenthesize properly.
17306         (NPREDECESORS): Parenthesize properly.
17307
17308 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
17309
17310         * timevar.h (POP_TIMEVAR_AND_RETURN): New macro.
17311
17312 2003-02-12  Roger Sayle  <roger@eyesopen.com>
17313
17314         * config/i386/i386.md (UNSPEC_FPATAN): New UNSPEC constant.
17315         (atan2sf3, atan2df3, atan2xf3, atan2tf3): New patterns.
17316
17317         * reg-stack.c (subst_stack_regs_pat): Add support for binary
17318         UNSPEC instructions (e.g. "fpatan").
17319
17320 2003-02-12  Mike Stump  <mrs@apple.com>
17321
17322         * varray.c (element_size): Remove.
17323         (uses_ggc): Remove.
17324         (element): Add.
17325         (varray_init): Use new interface.
17326         (varray_grow): Use new interface.
17327         (varray_clear): Use new interface.
17328
17329 2003-02-12  Aldy Hernandez  <aldyh@redhat.com>
17330
17331         * config/rs6000/spe.h: Add casts to the arguments of the following
17332         macros: evfsabs, evfsnabs, evfsneg, evfsadd, evfssub, evfsmul,
17333         evfsdiv, evfscfui, evfscfsi evfscfuf evfscfsf, evfsctui, evfsctsi,
17334         evfsctuf, evfsctsf, evfsctuiz, evfsctsiz, __ev_get_upper*,
17335         __ev_get_lower*, __ev_get_u32, __ev_get_s32, __ev_get_fs,
17336         __ev_get_u16, __ev_get_s16.
17337
17338 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
17339
17340         * config/h8300/h8300.md (a peephole2): New.
17341
17342 2003-02-12  Jan Hubicka  <jh@suse.cz>
17343
17344         * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-unit-at-a-time
17345         (OBJS): Add callgraph.o
17346         (callgraph.o): New.
17347         * c-decl.c (expand_body_1): Break out from ...
17348         (expand_body): This one;  change calling convention
17349         (finish_function): Move some of expand_body logic here.
17350         (c_expand_deferred_function): Update call of expand_body
17351         (c_expand_stmt): Use c_expand_body_1.
17352         * c-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Define.
17353         * c-objc-commin.c (c_objc_common_finish_file): Use callgraph code.
17354         * c-tree.h (c_expand_body): Declare.
17355         * callgraph.c: New file.
17356         * flags.h (flag_unit_at_a_time): Declare.
17357         * langhooks.h (LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION,
17358         LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION,
17359         LANG_HOOKS_CALLGRAPH_INITIALIZER): New macros.
17360         * langhooks.h (struct lang_hooks_for_callgraph): New.
17361         (struct lang_hooks): Add callgraph field.
17362         * toplev.c (flag_unit_at_a_time): New.
17363         (lang_independent_options): Add flag_unit_at_a_time.
17364         (process_options): Disable unit-at-a-time mode for frontends not
17365         supporting callgraph.
17366         * tree-inline.c (typedef struct inline_data): Add "decl"
17367         (expand_call_inline): Update callgraph.
17368         (optimize_inline_calls): Set id.decl.
17369         * tree.h (cgraph_finalize_function, cgraph_finalize_compilation_unit,
17370         cgraph_create_edges, dump_cgraph, cgraph_optimize, cgraph_remove_call
17371         cgraph_calls_p): Declare.
17372         * invoke.texi (-funit-at-a-time): Document
17373
17374 2003-02-12  Aldy Hernandez  <aldyh@redhat.com>
17375
17376         * config/rs6000/spe.h: Fix misc formatting.
17377         (__ev_create_ufix32_fs): Cast ev argument.
17378         (__ev_create_sfix32_fs): Same.
17379         (__ev_get_sfix32_fs_internal): Cast arguments to builtins.
17380         (__ev_get_ufix32_fs_internal): Same.
17381
17382 2003-02-12  Ranjit Mathew  <rmathew@hotmail.com>
17383
17384         * doc/tm.texi (MODIFY_JNI_METHOD_CALL): Document.
17385         * config/i386/cygwin.h (MODIFY_JNI_METHOD_CALL): New macro.
17386
17387 2003-02-12  Zack Weinberg  <zack@codesourcery.com>
17388
17389         * cpplib.c (do_include_common): Move warnings for
17390         #include_next and #import out to callers.  Use early-return
17391         instead of nested ifs.  Don't do check_eol here.
17392         (parse_include): Do check_eol here with the rest of the
17393         parsing stuff.
17394         (do_include_next, do_import): Now handle warnings.
17395
17396 2003-02-11  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17397
17398         * doc/install.texi (Specific): Update AVR- and Darwin-related URLs.
17399
17400 2003-02-12  Jan Hubicka  <jh@suse.cz>
17401
17402         * predict.c (estimate_probability):  Fix roundoff error.
17403
17404 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
17405
17406         * config/h8300/h8300.md (a peephole2): Don't handle 65535.
17407         (two peephole2): New.
17408
17409 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
17410
17411         * config/h8300/h8300.md (several peephole2): Replace
17412         find_regno_note with peep2_reg_dead_p.
17413
17414 2003-02-11  Richard Henderson  <rth@redhat.com>
17415
17416         * gcse.c (lookup_set): Remove unused argument PAT.  Update
17417         both callers.
17418
17419 2003-02-11  Geoffrey Keating  <geoffk@apple.com>
17420
17421         * diagnostic.c (real_abort): New.
17422         (diagnostic_report_diagnostic): Call real_abort on error.
17423         * diagnostic.h (diagnostic_abort_on_error): New.
17424         (struct diagnostic_context): Add abort_on_error field.
17425         * toplev.c (setup_core_dumping): New.
17426         (decode_d_option): Handle 'H' case.
17427         * doc/invoke.texi (Debugging Options): Document -dH.
17428
17429 2003-02-11  Nathanael Nerode  <neroden@gcc.gnu.org>
17430
17431         * Makefile.in: Remove pointless setting of CXXFLAGS for dejagnu
17432         which refers to obsolete directories.
17433
17434 2003-02-11  Richard Henderson  <rth@redhat.com>
17435
17436         * config/alpha/linux.h (TARGET_C99_FUNCTIONS): New.
17437
17438 2002-10-21  Jan Hubicka  <jh@suse.cz>
17439
17440         * i386.c (contains_128bit_aligned_vector_p): New function.
17441         (ix86_function_arg_boundary): Properly align vector modes.
17442
17443 2003-02-11  Bob Wilson  <bob.wilson@acm.org>
17444
17445         * config/xtensa/xtensa.md (set_frame_ptr): Change rtl to set reg a7.
17446         * config/xtensa/xtensa.c (xtensa_reorg): Search for UNSPECV_SET_FP
17447         as a SET pattern.
17448
17449 2003-02-11  Roger Sayle  <roger@eyesopen.com>
17450
17451         * builtins.c:  Fix failure caused by commiting wrong patch.
17452
17453 2003-02-11  Dale Johannesen  <dalej@apple.com>
17454         * ra-build.c (compare_and_free_webs):  Relax checking.
17455         * config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME):  Define.
17456         (UNLIKELY_EXECUTED_TEXT_SECTION_NAME):  Define.
17457
17458 2003-02-11  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
17459
17460         PR optimization/9651
17461         * rtlanal.c (may_trap_p): Handle FIX.
17462
17463 2003-02-11  Dave Jones <davej@codemonkey.org.uk>
17464
17465         * config/i386/i386.c (override_options): Define c3-2 as a 686 with SSE.
17466         * doc/invoke.texi: Extra alias.
17467
17468 2003-02-11  Geoffrey Keating  <geoffk@apple.com>
17469
17470         * config/rs6000/host-darwin.c: Fix comment.
17471
17472 2003-02-11  David Edelsohn  <edelsohn@gnu.org>
17473
17474         * config/rs6000/rs6000.md (divmodsi4): Use register_operand
17475         predicate for mod result.
17476
17477 2003-02-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17478
17479         * inclhack.def (hpux_long_double, hpux10_ctype_declarations1,
17480         hpux10_ctype_declarations2, hpux_ctype_macros): New hacks.
17481         * fixincl.x: Rebuilt.
17482         * tests/base/stdlib.h: Update.
17483         * tests/base/ctype.h: New file.
17484
17485 2003-02-11  Jan Hubicka  <jh@suse.cz>
17486
17487         * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
17488
17489 2003-02-11  Richard Henderson  <rth@redhat.com>
17490
17491         * config/i386/i386.c (ix86_expand_movstr): Fail if esi or edi
17492         appropriated as globals.
17493         (ix86_expand_clrstr): Similarly.
17494         * config/i386/i386.md (cmpstrsi): Similarly.
17495
17496 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
17497
17498         * config/h8300/h8300.md (a peephole2): Add a case of 255.
17499
17500 2003-02-11  Roger Sayle  <roger@eyesopen.com>
17501
17502         * optabs.h (enum optab_index): Add new OTI_pow and OTI_atan2.
17503         (pow_optab, atan2_optab): Define corresponding macros.
17504         * optabs.c (init_optabs): Initialize pow_optab and atan2_optab.
17505         * genopinit.c (optabs): Implement pow_optab and atan2_optab
17506         using pow?f3 and atan2?f3 patterns.
17507         * builtins.c (expand_errno_check): New function to update errno
17508         if necessary, split out from expand_builtin_mathfn.
17509         (expand_builtin_mathfn): Use expand_errno_check.
17510         (expand_builtin_mathfn_2): New function to handle expanding binary
17511         math functions, reusing the code in expand_errno_check.
17512         (expand_builtin): Handle the pow and atan2 math built-ins,
17513         BUILT_IN_{POW,POWF,POWL,ATAN2,ATAN2F,ATAN2L} via the new function
17514         expand_builtin_mathfn_2.
17515
17516         * doc/md.texi: Document new pow?f3 and atan2?f3 patterns.
17517
17518 2003-02-11  Jan Hubicka  <jh@suse.cz>
17519
17520         * combine.c (combine_simplify_rtx): Fix folding of
17521         nested float_truncates.
17522
17523 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
17524
17525         * config/h8300/h8300.md (a peephole2): Fix a typo.
17526
17527 2003-02-11  Richard Earnshaw  <rearnsha@arm.com>
17528
17529         * arm.mc (return_address_mask): Use CC_REGNUM for the condition code
17530         register number.
17531
17532 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
17533
17534         * config/h8300/h8300-protos.h: Add a prototype for
17535         gtuleu_operator.
17536         * config/h8300/h8300.c (gtuleu_operator): New.
17537         * config/h8300/h8300.h (PREDICATE_CODES): Add gtuleu_operator.
17538         * config/h8300/h8300.md (a peephole2): New.
17539
17540 2003-02-11  Jan Hubicka  <jh@suse.cz>
17541
17542         * sched-ebb.c (schedule_ebbs): Do not verify_flow_info.
17543
17544 2003-02-11  Jan Hubicka  <jh@suse.cz>
17545
17546         * predict.c (choose_function_section): Choose sections correctly.
17547
17548 2003-02-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17549
17550         * reload1.c (first_label_num): New.
17551         (reload): Index offsets_known_at and offsets_at using difference of
17552         label number and first label number.  Don't use offset pointers.
17553         (set_label_offsets, set_initial_label_offsets): Likewise.
17554
17555 2003-02-10  Roger Sayle  <roger@eyesopen.com>
17556
17557         * mips-tfile.c (init_file): Add missing initializers in the
17558         "#ifdef __alpha" case.
17559         (file_offset, max_file_offset): Declare as unsigned long.
17560         (write_varray): Cast to "unsigned long" in comparisons against
17561         either file_offset or max_file_offset.
17562         (write_object): Likewise.
17563         (read_seek): Likewise.
17564         (copy_object): Likewise. Declare "ifd" as int to match its use
17565         in add_ext_symbol, and avoid signed/unsigned conditional warning.
17566
17567 2003-02-10  Nick Clifton  <nickc@redhat.com>
17568             Aldy Hernandez  <aldyh@redhat.com>
17569
17570         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Do not
17571         override options which have been specified on the command line.
17572
17573 2003-02-10  Kazu Hirata  <kazu@cs.umass.edu>
17574
17575         * config/h8300/h8300.md (abssf2): New.
17576         (*abssf2_h8300): Likewise.
17577         (*abssf2_h8300hs): Likewise.
17578
17579 2003-02-10  Phil Edwards  <pme@gcc.gnu.org>
17580
17581         * tree.c (build_tree_list):  Fix parameter names in comment.
17582
17583 2003-02-10  Janis Johnson  <janis187@us.ibm.com>
17584
17585         * config/rs6000/ppc64-fp.c: New file.
17586         * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add ppc64-fp.c.
17587
17588 2003-02-10  Josef Zlomek  <zlomekj@suse.cz>
17589
17590         * Makefile.in (bb-reorder.o): Add dependency on $(FIBHEAP_H).
17591         * bb-reorder.c (make_reorder_chain): Deleted.
17592         (make_reorder_chain_1): Deleted.
17593         (find_traces): New function.
17594         (rotate_loop): New function.
17595         (mark_bb_visited): New function.
17596         (find_traces_1_round): New function.
17597         (copy_bb): New function.
17598         (bb_to_key): New function.
17599         (better_edge_p): New function.
17600         (connect_traces): New function.
17601         (copy_bb_p): New function.
17602         (get_uncond_jump_length): New function.
17603         (reorder_basic_blocks): Use new functions (Software Trace Cache).
17604         * cfgcleanup.c (outgoing_edges_match): Enable crossjumping across loop
17605         boundaries.
17606
17607 2003-02-10  Aldy Hernandez  <aldyh@redhat.com>
17608
17609         * config/rs6000/rs6000.c (bdesc_2arg): Change spe_evxor to xorv2si3.
17610
17611 2003-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
17612
17613         * tree.h (struct tree_decl): Remove unused live_range_rtl field.
17614         (DECL_LIVE_RANGE_RTL): Remove.
17615
17616 2003-02-10  Nick Clifton  <nickc@redhat.com>
17617
17618         * config/arm/aof.h, config/arm/aout.h, config/arm/arm-modes.def,
17619         config/arm/arm-protos.h, config/arm/arm.c, config/arm/arm.h,
17620         config/arm/arm.md, config/arm/cirrus.md, config/arm/coff.h,
17621         config/arm/conix-elf.h, config/arm/ecos-elf.h, config/arm/elf.h,
17622         config/arm/freebsd.h, config/arm/linux-elf.h,
17623         config/arm/linux-gas.h, config/arm/netbsd-elf.h,
17624         config/arm/netbsd.h, config/arm/pe.c, config/arm/pe.h,
17625         config/arm/rtems-elf.h, config/arm/semi.h, config/arm/semiaof.h,
17626         config/arm/strongarm-coff.h, config/arm/strongarm-elf.h,
17627         config/arm/strongarm-pe.h, config/arm/uclinux-elf.h,
17628         config/arm/unknown-elf-oabi.h, config/arm/unknown-elf.h,
17629         config/arm/xscale-elf.h: Replace occurances of "GNU CC" with "GCC"
17630         and reformat as appropriate.
17631
17632 2003-02-10  Kazu Hirata  <kazu@cs.umass.edu>
17633
17634         * config/h8300/clzsi2.c: Remove.
17635         * config/h8300/ctzsi2.c: Likewise.
17636         * config/h8300/paritysi2.c: Likewise.
17637         * config/h8300/popcountsi2.c: Likewise.
17638         * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Remove clzsi2,
17639         ctzsi2, paritysi2, and popcountsi2.
17640
17641 2003-02-10  Eric Botcazou  <ebotcazou@libertysurf.fr>
17642             Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
17643
17644         PR c/7741
17645         * c-decl.c (duplicate_decls): Discard the initializer of the
17646         new decl when the types are conflicting.
17647
17648 2003-02-10  Josef Zlomek  <zlomekj@suse.cz>
17649
17650         * Makefile.in (sreal.o): Added.
17651         (predict.o): Depends on sreal.h instead of real.h.
17652         * sreal.c: New file.
17653         * sreal.h: New file.
17654         * predict.c: Use sreal.c instead of real.c.
17655
17656 2003-02-10  Nick Clifton  <nickc@redhat.com>
17657
17658         * Contributed support for the Cirrus EP9312 "Maverick"
17659         floating point co-processor.  Written by Aldy Hernandez
17660         <aldyh@redhat.com>.
17661         (config/arm/arm.c): Add Cirrus support.
17662         (config/arm/arm.h): Likewise.
17663         (config/arm/aout.h): Likewise.
17664         (config/arm/arm.md): Likewise.
17665         (config/arm/arm-protos.h): Likewise.
17666         (config.gcc): Likewise.
17667         (doc/invoke.texi): Describe new -mcpu value and new
17668         -mcirrus-fix-invalid-insns switch,
17669         (cirrus.md): New file.
17670
17671 2003-02-10  Jan Hubicka  <jh@suse.cz>
17672
17673         * combine.c (combine_simplify_rtx): Simplify using
17674         (float_truncate (float x)) is (float x)
17675         (float_extend (float_extend x)) is (float_extend x).
17676
17677 2003-02-10  Alan Modra  <amodra@bigpond.net.au>
17678
17679         * calls.c (try_to_integrate): Tidy stack_usage_map access.
17680         (emit_library_call_value_1): Likewise.  Formatting.
17681         (store_one_arg): Likewise.
17682
17683 2003-02-09  Nick Clifton  <nickc@redhat.com>
17684             Aldy Hernandez  <aldyh@redhat.com>
17685
17686         * config/rs6000/spe.md: spe_evlhhesplat, spe_evlhhossplat,
17687         spe_evlhhousplat, spe_evlwhsplat, spe_evlwwsplat, spe_evldd,
17688         spe_evldh, spe_evldw, spe_evlwhe, spe_evlwhos, spe_evlwhou,
17689         spe_evstdd, spe_evstdh, spe_evstdw, spe_evstdwx, spe_evstwhe,
17690         spe_evstwho, spe_evstwwe, spe_evstwwo: Fix syntax to match newest
17691         docs.  Add range test for immediate value.
17692
17693 2003-02-09  Aldy Hernandez  <aldyh@redhat.com>
17694
17695         Rename spe_evxor to xorv2si3.
17696         (xorv4hi3): New.
17697         (xorv1di3): New.
17698
17699 2003-02-10  Glen Nakamura  <glen@imodulo.com>
17700
17701         * doc/extend.texi (C++98 Thread-Local Edits): Add missing @item
17702         tag.
17703
17704 2003-02-10  Jan Hubicka  <jh@suse.cz>
17705
17706         * i386.c (vector_move_operand): New predicate.
17707         (ix86_expand_vector_move): Be happy about 0.
17708         * i386.h (PREDICATE_CODES): Add sse-move_operand.
17709         * i386.md (mov*_internal): Add 'C' alternative.
17710
17711 2003-02-09  Jan Hubicka  <jh@suse.cz>
17712
17713         * i386.md (floathi*): Deal with SSE.
17714
17715 2003-02-09  Jan Hubicka  <jh@suse.cz>
17716
17717         * simplify-rtx.c (simplify_unary_operation,
17718         simplify_binary_operation):  Deal with vector modes
17719         (simplify_ternary_operation):  Deal with no-op VEC_MERGE.
17720
17721 2003-02-09  Richard Sandiford  <rsandifo@redhat.com>
17722
17723         * toplev.c (rest_of_compilation): Recompute register usage after
17724         split_all_insns.
17725
17726 2003-02-09  Richard Henderson  <rth@redhat.com>
17727
17728         * libgcc-std.ver (__clztf2): New.
17729         (__ctztf2, __popcounttf2, __paritytf2): New.
17730         * libgcc2.c (__clzSI2, __clzDI2, __ctzSI2, __ctzDI2, __popcountSI2,
17731         __popcountDI2, __paritySI2, __parityDI2): Use UWmode and UDWmode;
17732         adjust code to match the different type sizes.
17733         * libgcc2.h (__clzSI2, __ctzSI2, __popcountSI2, __paritySI2,
17734         __clzDI2, __ctzDI2, __popcountDI2, __parityDI2): New macros.
17735
17736         * optabs.c (init_integral_libfuncs): Don't hard-code SImode and
17737         TImode; select word_mode and twice that.
17738         (init_floating_libfuncs): Don't hard-code SFmode and TFmode;
17739         select the modes from float, double, and long double.
17740         (init_optabs): Remove duplicate initializations.
17741
17742 2003-02-09  Wolfgang Bangerth  <bangerth@ticam.utexas.edu>
17743
17744         * doc/install.texi: Squeeze and streamline section on
17745         testing and regression checking.
17746
17747 2003-02-09  Jan Hubicka  <jh@suse.cz>
17748
17749         * i386.md (ahi?v*3): Set third operand type to TImode.
17750         * i386.c (ix86_expand_binop_builtin): Extend operand when needed.
17751
17752         * simplify-rtx.c (simplify_subreg): Fix conversion from vector into
17753         integer mode.
17754
17755         * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_DUPLICATE):
17756         Change code so they are arithmetic expressions now.
17757         * simplify-rtx.c (simplify_unary_operation, simplify_binary_operation,
17758         simplify_ternary_operation): Deal with VEC_* expressions.
17759
17760         * i386.md (vmaskcmp, pinsrw, movd patterns):  Fix RTL representation.
17761
17762 2003-02-08  Jan Hubicka  <jh@suse.cz>
17763
17764         * cfgrtl.c (verify_flow_info):  Use control_flow_insn_p.
17765         * reload1.c (fixup_abnormal_edges):  Split basic blocks when EH edges
17766         possibly got duplicated.
17767
17768 2003-02-08  Richard Henderson  <rth@redhat.com>
17769
17770         * config/alpha/alpha.c (override_options): Turn off explicit
17771         relocs until post-peep2 code duplication resolved.
17772
17773 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
17774
17775         * optabs.c (expand_unop): Widen clz properly when clz is done
17776         via libcall.
17777
17778 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
17779
17780         * config/h8300/clzsi2.c: Replace "GNU CC" with "GCC".
17781         * config/h8300/crti.asm: Likewise.
17782         * config/h8300/crtn.asm: Likewise.
17783         * config/h8300/ctzsi2.c: Likewise.
17784         * config/h8300/fixunssfsi.c: Likewise.
17785         * config/h8300/h8300-protos.h: Likewise.
17786         * config/h8300/h8300.c: Likewise.
17787         * config/h8300/h8300.h: Likewise.
17788         * config/h8300/h8300.md: Likewise.
17789         * config/h8300/paritysi2.c: Likewise.
17790         * config/h8300/popcountsi2.c: Likewise.
17791         * config/h8300/rtems.h: Likewise.
17792
17793 2003-02-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
17794
17795         * doc/invoke.texi: Documentation for my previous commit.
17796         * doc/passes.texi: Ditto.
17797
17798 2003-02-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
17799
17800         * cfgloop.h (fix_loop_placement, can_duplicate_loop_p,
17801         duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
17802         Declare.
17803         (DLTHE_FLAG_UPDATE_FREQ): New.
17804         * cfgloopmanip.c (duplicate_loop, duplicate_subloops, copy_loops_to,
17805         loop_redirect_edge, loop_delete_branch_edge, copy_bbs, remove_bbs,
17806         rpe_enum_p, find_branch, alp_enum_p, add_loop, fix_loop_placements,
17807         fix_bb_placement, fix_bb_placements, place_new_loop,
17808         scale_loop_frequencies, scale_bbs_frequencies, record_exit_edges):
17809         New static functions.
17810         (fix_loop_placement, can_duplicate_loop_p,
17811         duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
17812         New functions.
17813
17814         * cfgloop.h (loop_optimizer_init, loop_optimizer_finalize,
17815         unswitch_loops): Declare.
17816         * loop-init.c: New file.
17817         * loop-unswitch.c: New file.
17818         * Makefile.in (loop-init.o, loop-unswitch.o): New.
17819         * params.def (PARAM_MAX_UNSWITCH_INSNS, PARAM_MAX_UNSWITCH_LEVEL): New.
17820         * toplev.c (DFI_loop2): New dump.
17821         (flag_unswitch_loops): New.
17822         (lang_independent_options): Add it.
17823         (rest_of_compilation): Call new loop optimizer.
17824         (parse_options_and_default_flags): Turn flag_unswitch_loops on with -O3.
17825
17826 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
17827
17828         * config/h8300/clzsi2.c: New.
17829         * config/h8300/ctzsi2.c: Likewise.
17830         * config/h8300/paritysi2.c: Likewise.
17831         * config/h8300/popcountsi2.c: Likewise.
17832         * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Add above files.
17833
17834 2003-02-07  David Edelsohn  <edelsohn@gnu.org>
17835
17836         * config/rs6000/rs6000.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
17837         * config/rs6000/rs6000.md (clzsi2): Rename from cntlzw2.
17838         (ctzsi2): New pattern.
17839         (ffssi2): Use clz instead of unspec.
17840         (clzdi2): Rename from cntlzd2.
17841         (ctzdi2): New pattern.
17842         (ffsdi2): Use clz instead of unspec.
17843
17844 2003-02-07  Loren James Rittle  <ljrittle@acm.org>
17845
17846         * config/alpha/freebsd.h (LINK_SPEC): Weaken error to notice.
17847         * config/ia64/freebsd.h (LINK_SPEC): Likewise.
17848         * config/sparc/freebsd.h (LINK_SPEC): Likewise.
17849         * config/i386/freebsd.h (LINK_SPEC): Add clause to mirror other arches.
17850
17851 2003-02-07  Wolfgang Bangerth  <bangerth@ticam.utexas.edu>
17852
17853         * doc/trouble.texi: Document pitfalls of two-stage name lookup.
17854
17855 2003-02-07  Richard Henderson  <rth@redhat.com>
17856
17857         PR 9226
17858         * gcse.c (local_cprop_find_used_regs): New.
17859         (local_cprop_pass): Use it.
17860
17861 2003-02-07  Fred Fish  <fnf@intrinsity.com>
17862
17863         * mips-tfile.c (parse_def): Parenthesize assignments to fix
17864         precedence bugs.
17865
17866 2003-02-07  Segher Boessenkool  <segher@koffie.nl>
17867
17868         * genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
17869
17870 2003-02-07  Roger Sayle  <roger@eyesopen.com>
17871
17872         * builtin-types.def (BT_FN_FLOAT_FLOAT_FLOAT): New built-in type.
17873         (BT_FN_LONG_DOUBLE_LONG_DOUBLE_LONG_DOUBLE): Likewise.
17874         (BT_FN_DOUBLE_DOUBLE_DOUBLE): Likewise.
17875         * builtins.def: Define pow, powf, powl, atan2, atan2f and atan2l
17876         builtin functions (and their __builtin_* variants).
17877         * builtins.c (mathfn_built_in): Handle missing log{,f,l} cases.
17878         (expand_builtin): Don't expand log{,f,l}, pow{,f,l} or atan2{,f,l}
17879         when not optimizing.
17880
17881         * doc/extend.texi: Document new pow and atan2 builtins, and
17882         their float and long double variants.  Realphabetize builtins.
17883
17884 2003-02-07  Jan Hubicka  <jh@suse.cz>
17885
17886         * i386.md (sse2_nandv2di3): Fix.
17887
17888 2003-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
17889
17890         * config/i386/i386.h (MS_AGGREGATE_RETURN): New define.
17891         * config/i386/cygwin.h (MS_AGGREGATE_RETURN): Override default
17892         definition.
17893         * config/i386/i386.h (ix86_return_in_memory): Return aggregate
17894         types of up to 8 bytes via registers if MS_AGGREGATE_RETURN.
17895
17896 2003-02-07  Jan Hubicka  <jh@suse.cz>
17897
17898         * i386.md (movdi_rex64_1): Fix mmx<->int move opcode.
17899
17900 2003-02-07  Daniel Berlin  <dberlin@dberlin.org>
17901
17902         * cfg.c (dump_flow_info): Add back accidently deleted line.
17903
17904 2003-02-07  Andrey Petrov <petrov@netbsd.org>
17905
17906         * optabs.c (expand_float): Search wider integer modes first.
17907
17908 2003-02-07  Bob Wilson  <bob.wilson@acm.org>
17909
17910         * config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this
17911         based on preprocessor flag.
17912
17913 2003-02-07  Roger Sayle  <roger@eyesopen.com>
17914             Richard Henderson  <rth@redhat.com>
17915
17916         * gcse.c (implicit_sets): New.
17917         (compute_hash_table_work): Include them in hash table.
17918         (find_implicit_sets, fis_get_condition): New.
17919         (one_cprop_pass): Allocate and free implicit_sets; call
17920         find_implicit_sets before building hash table.
17921
17922 2003-02-07  Jason Thorpe  <thorpej@wasabisystems.com>
17923
17924         * config/t-netbsd (USER_H): Revert previous change.
17925
17926 2003-02-07  Gabor Greif  <ggreif@lucent.com>
17927
17928         * doc/c-tree.texi (Namespaces): Fix typo.
17929
17930 2003-02-07  Jan Hubicka  <jh@suse.cz>
17931
17932         * regrename.c (do_replace, find_oldest_value_reg,
17933         copyprop_hardreg_forward_1): Update register attributes.
17934
17935 2003-02-06  Vladimir Makarov  <vmakarov@redhat.com>
17936
17937         * genautomata.c (VLA_PTR_CREATE, VLA_PTR_EXPAND, VLA_PTR_ADD,
17938         VLA_HWINT_CREATE, VLA_HWINT_EXPAND, VLA_HWINT_ADD): Use temporay
17939         variables starting with underscore.
17940         (struct unit_usage): New structure.
17941         (unit_usages, cycle_alt_unit_usages): New global variables.
17942         (check_unit_distribution_in_reserv): Remove it.
17943         (store_alt_unit_usage): New function.
17944         (check_regexp_units_distribution): Rewrite it.
17945
17946 2003-02-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17947
17948         * config.gcc (hppa*-*-linux*): Set MASK_NO_SPACE_REGS in
17949         target_cpu_default.
17950         * pa.c (attr_length_call): Add 8 to call length (long indirect PA 1.X)
17951         if not MASK_NO_SPACE_REGS.
17952         (output_call): Adjust return pointer, don't load new space register
17953         into %sr0, and use %sr4 for call if TARGET_NO_SPACE_REGS is true.
17954         (pa_asm_output_mi_thunk): Don't load new space register into %sr0 if
17955         TARGET_NO_SPACE_REGS is true.
17956         * pa.md (return_external_pic): Add TARGET_NO_SPACE_REGS to insn
17957         conditions.
17958         (epilogue): Always use return_internal if TARGET_NO_SPACE_REGS is true.
17959         (interspace_jump): Add new pattern for when TARGET_NO_SPACE_REGS is
17960         true.  Use bve when TARGET_64BIT is true.
17961
17962 2003-02-06  Richard Henderson  <rth@redhat.com>
17963
17964         * combine.c (nonzero_bits): Fix double break.
17965
17966 2003-02-06  Eric Botcazou <ebotcazou@libertysurf.fr>
17967             Richard Henderson <rth@redhat.com>
17968
17969         PR c/9530
17970         * config/i386/i386.c (ix86_function_ok_for_sibcall): Forbid sibcalls
17971         from functions that return a float to functions that don't.
17972
17973 2003-02-06  Jan Hubicka  <jh@suse.cz>
17974
17975         * i386.c (x86_inter_unit_moves): New variable.
17976         (ix86_secondary_memory_needed): Fix 64bit case, honor
17977         TARGET_INTER_UNIT_MOVES
17978         * i386.h (x86_inter_unit_moves): Declare.
17979         (TARGET_INTER_UNIT_MOVES): New macro.
17980         * i386.md (movsi_1): Cleanup constraints; disable
17981         when not doing inter-unit moves.
17982         (movsi_1_nointernunit): New.
17983         (movdi_1_rex64): Fix constraints; deal with SSE->GPR moves.
17984         (movdi_1_rex64_nointerunit): New.
17985         (mivsf_1): disable when not doing inter-unit moves.
17986         (movsf_1_nointerunit): New.
17987
17988         * basic-block.h (inside_basic_block_p):  Declare.
17989         * cfgbuild.c (inside_basic_block_p): Make global.
17990         * haifa-sched.c (unlink_other_notes): Deal with NOT_INSN_BASIC_BLOCK.
17991         * scheudle-ebb.c  (schedule_ebb): Return last basic block of trace;
17992         update CFG.
17993         (fix_basic_block_boundaries, add_missing_bbs): New.
17994         (rank): Use profile.
17995         (scheudle_ebbs): Rely on CFG; update coments.
17996
17997 2003-02-05  Geoffrey Keating  <geoffk@apple.com>
17998
17999         * Makefile.in (host_hook_obj): New.
18000         (OBJS): Add $(host_hook_obj).
18001         (host_default.o): New rule.
18002         * config.gcc (host_hook_obj): New, default to host-default.o.
18003         (powerpc-*-darwin*): Use host-darwin.o.
18004         (out_host_hook_obj): New.
18005         * configure: Regenerate.
18006         * configure.in: Print information about out_host_hook_obj, substitute
18007         into output files.
18008         * host-default.c: New file.
18009         * hosthooks.h: New file.
18010         * toplev.c (general_init): Call host_hooks.extra_signals.
18011         * config/rs6000/host-darwin.c: New file.
18012         * config/rs6000/x-darwin: New file.
18013         * doc/hostconfig.texi: Add documentation for new host hook.
18014         Rearrange existing documentation.
18015
18016 2003-02-05  Roger Sayle  <roger@eyesopen.com>
18017
18018         * dwarf2out.c (mem_loc_descriptor): Replace ASM_SIMPLIFY_DWARF_ADDR
18019         with *targetm.delegitimize_address.
18020         (rtl_for_decl_location): Likewise.
18021         * dwarfout.c (output_mem_loc_descriptor): Likewise.  Include target.h.
18022         * Makefile.in (dwarf2out.c, dwarfout.c): Depend upon $(TARGET_H)
18023
18024         * config/i386/i386.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
18025         * config/i386/i386-protos.h (i386_simplify_dwarf_addr): Remove
18026         prototype.
18027         * config/i386/i386.c (ix86_delegitimize_address): Renamed from
18028         i386_simplify_dwarf_addr.  Made static.  Prototyped.
18029         (TARGET_DELEGITIMIZE_ADDRESS): Update definition from
18030         i386_simplify_dwarf_addr to ix86_delegitimize_address.
18031         (ix86_find_base_term): Likewise.
18032         (maybe_get_pool_constant): Likewise.
18033
18034         * config/s390/s390.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
18035         * config/s390/s390-protos.h (s390_simplify_dwarf_addr): Remove
18036         prototype.
18037         * config/s390/s390.c (s390_delegitimize_address): Renamed from
18038         s390_simplify_dwarf_addr.  Made static.  Prototyped.
18039         (TARGET_DELEGITIMIZE_ADDRESS): Define as s390_delegitimize_address.
18040
18041 2003-02-05  Richard Henderson  <rth@redhat.com>
18042
18043         PR c/8602
18044         * integrate.c (output_inline_function): Reset input_filename
18045         and lineno from the decl before rest_of_compilation.
18046
18047 2003-02-05  Richard Henderson  <rth@redhat.com>
18048
18049         * defaults.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
18050         (CTZ_DEFINED_VALUE_AT_ZERO): New.
18051         * doc/rtl.texi, doc/tm.texi: Document them.
18052
18053         * combine.c (nonzero_bits) [CLZ, CTZ]: Handle the definedness
18054         of the value at zero properly.
18055         * fold-const.c (tree_expr_nonnegative_p): Likewise.
18056         * simplify-rtx.c (simplify_unary_operation): Likewise.
18057
18058         * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
18059         (CTZ_DEFINED_VALUE_AT_ZERO): New.
18060
18061         * config/arm/arm.c (TARGET_INIT_BUILTINS): Remove.
18062         (TARGET_EXPAND_BUILTIN): Remove.
18063         (def_builtin, arm_init_builtins, arm_expand_builtin): Remove.
18064         * config/arm/arm.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
18065         (enum arm_builtins): Remove.
18066         * config/arm/arm.md (UNSPEC_CLZ): Remove.
18067         (clzsi2): Rename from clz; use clz instead of unspec.
18068         (ctzsi2): New.
18069         * config/arm/arm-protos.h: Update.
18070
18071 2003-02-05  Jan Hubicka  <jh@suse.cz>
18072
18073         * i386-protos.h (x86_emit_floatuns):  Declare.
18074         * i386.c (x86_emit_floatuns): New global function.
18075         * i386.md (floatunssisf2, floatunsdisf2,
18076         floatunsdidf2):  New patterns.
18077
18078 2003-01-25  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
18079
18080         * cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
18081
18082 2003-02-05  Hans Boehm <Hans.Boehm@hp.com>
18083
18084         * config/ia64/unwind-ia64.c: include coretypes.h, tm.h to get
18085           config/ia64/linux.h
18086
18087 2003-02-05  Roger Sayle  <roger@eyesopen.com>
18088
18089         * cfgloop.h (flow_bb_inside_loop_p): Correct prototype again.
18090
18091 2003-02-05  Jakub Jelinek  <jakub@redhat.com>
18092
18093         PR optimization/8555
18094         * config/i386/i386.md (sse_mov?fcc split): Handle op2 == op3 case
18095         instead of aborting.
18096
18097 2003-02-04  Richard Henderson  <rth@redhat.com>
18098
18099         * config/i386/i386.md (UNSPEC_BSF): Remove.
18100         (ffssi2): Split into cmove and no_cmove insns and splitters;
18101         lose pentium float trick for now.
18102         (ffssi_1): Add * to name; use CTZ instead of UNSPEC.
18103         (ctzsi2, clzsi2, bsr): New.
18104
18105 2003-02-04  Richard Henderson  <rth@redhat.com>
18106
18107         * config/ia64/ia64.c (rtx_needs_barrier): Handle POPCOUNT,
18108         UNSPEC_GETF_EXP; remove UNSPEC_POPCNT.
18109         * config/ia64/ia64.md (UNSPEC_POPCNT): Remove.
18110         (ffsdi2): Use popcount instead of unspec.
18111         (popcountdi2): Rename from *popcnt.
18112         (ctzdi2, clzdi2, getf_exp_tf): New.
18113
18114 2003-02-04  Kazu Hirata  <kazu@cs.umass.edu>
18115
18116         * genconfig.c (main): Generate CC0_P.
18117         * rtl.h (CC0_P): Remove.
18118
18119 2003-02-04  Richard Henderson  <rth@redhat.com>
18120
18121         * libgcc2.h, libgcc2.c (__ffsSI2): New.
18122         (__ffsDI2): Rename from __ffsdi2.
18123         * mklibgcc.in (lib2funcs): Add _ffssi2.
18124
18125 2003-02-04  Richard Henderson  <rth@redhat.com>
18126
18127         * libgcc2.c (__paritysi2, __paritydi2): Replace last two reduction
18128         rounds with a "bit table" lookup.
18129
18130 2003-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
18131
18132         * reload.c (find_reloads): Do not use the mode specified in the insn
18133         pattern as reload mode for address operands.  Do not generate optional
18134         reloads for operands where a mandatory reload was already pushed.
18135
18136 2003-02-04  Richard Henderson  <rth@redhat.com>
18137
18138         * longlong.h [alpha] (count_leading_zeros, count_trailing_zeros): Use
18139         builtins instead of inline assembly.
18140
18141 2003-02-04  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
18142
18143         PR c/9376
18144         * libgcc2.c (__subvdi3): Fix typo.
18145
18146 2003-02-04  Jan Hubicka  <jh@suse.cz>
18147
18148         * i386.md (movti_rex64):  Fix constraint.
18149
18150 2003-02-04  Jan Hubicka  <jh@suse.cz>
18151
18152         * i386.md (vector push splitters):  Fix typo in resolving conflict.
18153
18154 2003-02-04  Rodney Brown  <rbrown64@csc.com.au>
18155
18156         * config/i386/i386.c (x86_function_profiler): Fix typo in format.
18157
18158 2003-02-04  Phil Edwards  <pme@gcc.gnu.org>
18159
18160         * doc/install.texi (*-*-linux-gnu):  Mention glibc requirements
18161         for recent libstdc++.  Remove formatting cruft.
18162
18163 2003-02-04  Jakub Jelinek  <jakub@redhat.com>
18164
18165         * dwarf2out.c (dwarf2out_finish): Add AT_comp_dir
18166         attribute even if input file name is absolute, but one of the
18167         includes is relative.
18168
18169 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
18170
18171         * doc/gcc.texi, doc/gccint.texi, doc/gcov.texi,
18172         doc/include/fdl.texi, doc/invoke.texi: Update to GFDL 1.2.
18173         * doc/install.texi: Update copyright dates.  Update to GFDL 1.2.
18174
18175 2003-02-03  Richard Henderson  <rth@redhat.com>
18176
18177         * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
18178         __popcountsi2, __popcountdi2, __paritysi2, __paritydi2): Change
18179         return type to "int".  Shuffle declarations and undef int trap.
18180         * libgcc2.h: Remove their declarations.
18181         * optabs.c (expand_unop): Force outmode to int for bitops.
18182
18183 2003-02-03  Bob Wilson  <bob.wilson@acm.org>
18184
18185         * config/xtensa/xtensa.c (order_regs_for_local_alloc): Order the
18186         coprocessor registers before floating-point registers.
18187         * config/xtensa/xtensa.h (REG_ALLOC_ORDER): Adjust register numbers
18188         to account for a previously removed register.
18189         (SPEC_REG_FIRST, SPEC_REG_LAST, SPEC_REG_NUM, COUNT_REGISTER_REGNUM):
18190         Delete unused macros.
18191
18192 2003-02-03  Jan Hubicka  <jh@suse.cz>
18193
18194         * i386.c (ix86_expand_store_builtin):  Always force op1 to register.
18195         (mov*_internal): Fix predicates; require one of operands to not be
18196         memory.
18197         (SSE?MMX move expanders):  Fix predicates; force one of operands to
18198         register.
18199         (SSE/MMX push patterns): Reorganize; fix x86-64 code generation.
18200         (movups/movupd/movdqu patterns): Force one of operands to not be
18201         memory.
18202
18203 2003-02-03  Roger Sayle  <roger@eyesopen.com>
18204
18205         * hooks.c (hook_rtx_rtx_identity): Generic hook function that
18206         takes a single rtx and returns it unmodified.
18207         * hooks.h (hook_rtx_rtx_identity): Prototype here.
18208         * target.h (struct gcc_target): Add "delegitimize_address"
18209         field to target structure.
18210         * target-def.h (TARGET_DELEGITIMIZE_ADDRESS):  Provide default
18211         for delegitimize_address target using hook_rtx_rtx_identity.
18212         (TARGET_INITIALIZER): Initialize delegitimize_address field
18213         using TARGET_DELEGITIMIZE_ADDRESS macro.
18214         * simplify-rtx.c (avoid_constant_pool_reference): Handle float
18215         extensions of constant pool references.  Use delegitimize_address
18216         to undo the obfuscation of "-fpic".
18217         * Makefile.in (simplify-rtx.o): Add dependency on target.h.
18218
18219         * config/i386/i386.c (TARGET_DELEGITIMIZE_ADDRESS): Define as
18220         i386_simplify_dwarf_addr.
18221         (ix86_find_base_term): Simplify using i386_simplify_dwarf_addr.
18222         (maybe_get_pool_constant): Likewise.
18223
18224 2003-02-03  Jan Hubicka  <jh@suse.cz>
18225
18226         * i386.c (ix86_expand_int_movcc):  Fix setcc sign bit case.
18227
18228 2003-02-03  Jan Hubicka  <jh@suse.cz>
18229
18230         * regclass.c (cannot_change_mode_set_regs): Correct argument order.
18231
18232 2003-02-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18233
18234         * mips/_tilib.c: Don't include tsystem.h or defaults.h.  Don't
18235         define LIBGCC2_WORDS_BIG_ENDIAN.  Include coretypes.h and tm.h.
18236
18237 2003-02-02  Andreas Schwab  <schwab@suse.de>
18238
18239         * varasm.c (asm_output_aligned_bss): Declare as possibly unused.
18240
18241 2003-02-02  Richard Earnshaw  <rearnsha@arm.com>
18242
18243         * arm.md (sibcall_epilogue): Set the "conds" to "clob".
18244         (epilogue_insns): Likewise.
18245
18246 2003-02-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18247
18248         * doc/install.texi (hppa*-hp-hpux11*): Update installation notes.
18249
18250 2003-02-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18251
18252         * pa-protos.h (attr_length_millicode_call): Remove second argument.
18253         (attr_length_indirect_call, attr_length_indirect_call,
18254         attr_length_save_restore_dltp): New prototypes.
18255         * pa.c (attr_length_millicode_call): Remove second argument.  Check
18256         INSN_ADDRESSES_SET_P in distance calculation.
18257         (output_millicode_call): Check INSN_ADDRESSES_SET_P before using
18258         INSN_ADDRESSES.
18259         (attr_length_call): Check INSN_ADDRESSES_SET_P in distance calculation.
18260         (output_call): Check INSN_ADDRESSES_SET_P before using INSN_ADDRESSES.
18261         Call attr_length_call directly.
18262         (attr_length_indirect_call, output_indirect_call,
18263         attr_length_save_restore_dltp): New functions.
18264         * pa.md (attr_length_millicode_call): Drop second argument from all
18265         patterns.
18266         (return_internal_pic): Delete.
18267         (return_external_pic): Remove use of PIC register and pic operand and
18268         flag checks.
18269         (epilogue): Use return_internal for both normal and pic code.
18270         (call, call_value): Emit new 32-bit pic patterns for symref and
18271         indirect calls.  Remove uses for arg pointer and pic register.
18272         (call_symref_pic, call_symref_pic_post_reload, call_reg_pic,
18273         call_reg_pic_post_reload, call_val_symref_pic,
18274         call_val_symref_pic_post_reload, call_val_reg_pic,
18275         call_val_reg_pic_post_reload): New pre and post reload insn patterns.
18276         Implement define_split and define_peephole2 patterns for pre reload
18277         patterns.
18278         (call_symref_64bit, call_internal_reg_64bit, call_value_symref_64bit,
18279         call_value_internal_reg_64bit): Shorten names.
18280         (all call patterns): Explicitly indicate registers used and clobbered.
18281         Use attr_length_indirect_call and attr_length_save_restore_dltp for
18282         attribute length calculation.  Move code generation for indirect calls
18283         to output_indirect_call.
18284         (sibcall, sibcall_value): Don't restore PIC register.
18285         (exception_receiver, builtin_setjmp_receiver): Add blockage after PIC
18286         register retore.
18287
18288 2003-02-02  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18289
18290         * doc/install.texi (Testing): Simplify and compress instructions
18291         concerning Dejagnu.
18292
18293 2003-02-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18294
18295         * collect2.c (pexecute_pid): Rename to pid.
18296         (collect_wait, collect_execute, scan_prog_file, scan_libraries): Use
18297         pid.
18298
18299 2003-02-01  Geoffrey Keating  <geoffk@apple.com>
18300
18301         * doc/extend.texi (Function Attributes): Remove documentation
18302         for PowerPC Windows NT function attributes..
18303
18304 2003-02-01  Daniel Jacobowitz  <drow@mvista.com>
18305
18306         * dwarf2out.c (gen_type_die): Check for typedefs before calling
18307         for TYPE_MAIN_VARIANT.
18308
18309 2003-02-01  Richard Henderson  <rth@redhat.com>
18310
18311         * libgcc2.c: Include auto-host.h.
18312         (ATTRIBUTE_HIDDEN): New.
18313         (__clz_tab): Don't declare here for clz and ctz.
18314         (__clzsi2, __clzdi2): Use count_leading_zeros.
18315         (__ctzsi2, __ctzdi2): Use count_trailing_zeros.
18316         (__popcount_tab): Mark ATTRIBUTE_HIDDEN.
18317         (__paritysi2, __paritydi2): Use shifts instead of __popcount_tab.
18318         * longlong.h (__clz_tab): Mark ATTRIBUTE_HIDDEN.
18319
18320 2003-02-01  Richard Henderson  <rth@redhat.com>
18321
18322         * config/i386/i386.md (addsi_1_zext splitter): Add TARGET_64BIT
18323         to the conditional.
18324         (ashlsi3_1_zext splitter): Likewise.
18325
18326 2003-02-01  Richard Henderson  <rth@redhat.com>
18327
18328         * optabs.c (expand_unop): Use word_mode for outmode of bit scaners.
18329         * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
18330         __popcountsi2, __popcountdi2, __paritysi2 __paritydi2): Change
18331         return type to Wtype.
18332
18333         * libgcc-std.ver (GCC_3.4): Fix inheritance.
18334
18335         * config/i386/i386.md (ffssi2): Use nonimmediate_operand for
18336         expander input constraint.
18337
18338 2003-02-01  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
18339
18340         * optabs.h (optab_index): Add OTI_clz, OTI_ctz, OTI_popcount and
18341         OTI_parity.
18342         (clz_optab, ctz_optab, popcount_optab, parity_optab): New.
18343         * optabs.c (widen_clz, expand_parity): New.
18344         (expand_unop): Handle clz and parity.  Hardcode SImode as outmode
18345         for libcalls to clz, ctz, popcount, and parity.
18346         (init_optabs): Init clz_optab, ctz_optab, popcount_optab and
18347         parity_optab, and set up libfunc handlers.
18348         * libgcc2.c (__clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
18349         __popcountsi2, __popcountdi2, __paritysi2 __paritydi2,
18350         __popcount_tab): New.
18351         * libgcc2.h: Declare them.
18352         * libgcc-std.ver (GCC_3.4): Add new functions from libgcc2.c.
18353         * genopinit.c (optabs): Add clz_optab, ctz_optab, popcount_optab
18354         and parity_optab.
18355         * builtin-types.def (BT_FN_INT_LONG, BT_FN_INT_LONGLONG): New.
18356         * builtins.def (BUILT_IN_CLZ, BUILT_IN_CTZ, BUILT_IN_POPCOUNT,
18357         BUILT_IN_PARITY, BUILT_IN_FFSL, BUILT_IN_CLZL, BUILT_IN_CTZL,
18358         BUILT_IN_POPCOUNTL, BUILT_IN_PARITYL, BUILT_IN_FFSLL,
18359         BUILT_IN_CLZLL, BUILT_IN_CTZLL, BUILT_IN_POPCOUNTLL,
18360         BUILT_IN_PARITYLL): New.
18361         * builtins.c (expand_builtin_unop): Rename from expand_builtin_ffs
18362         and add optab argument.
18363         (expand_builtin): Expand BUILT_IN_{FFS,CLZ,POPCOUNT,PARITY}*.
18364         * tree.def (CLZ_EXPR, CTZ_EXPR, POPCOUNT_EXPR, PARITY_EXPR): New.
18365         * expr.c (expand_expr): Handle them.
18366         * fold-const.c (tree_expr_nonnegative_p): Likewise.
18367         * rtl.def (CLZ, CTZ, POPCOUNT, PARITY): New.
18368         * reload1.c (eliminate_regs): Handle them.
18369         (elimination_effects): Likewise.
18370         * function.c (instantiate_virtual_regs_1): Likewise
18371         * genattrtab.c (check_attr_value): Likewise.
18372         * simplify-rtx.c (simplify_unary_operation): Likewise.
18373         * c-common.c (c_common_truthvalue_conversion): Handle POPCOUNT_EXPR.
18374         * combine.c (combine_simplify_rtx): Handle POPCOUNT and PARITY.
18375         (nonzero_bits): Handle CLZ, CTZ, POPCOUNT and PARITY.
18376         * config/alpha/alpha.md (clzdi2, ctzdi2, popcountdi2): New.
18377         * config/arm/arm.c (arm_init_builtins): Rename __builtin_clz to
18378         __builtin_arm_clz.
18379         * Makefile.in (LIB2FUNCS_1, LIB2FUNCS_2): Move...
18380         * mklibgcc.in (lib2funcs): ...here and merge.  Add new members.
18381         * doc/extend.texi (Other Builtins): Add new builtins.
18382         * doc/md.texi (Standard Names): Add new patterns.
18383
18384 2003-02-01  Ulrich Weigand  <uweigand@de.ibm.com>
18385
18386         * reload.c: Revert 2003-01-31 change.
18387
18388 2003-02-01  Jan Hubicka  <jh@suse.cz>
18389
18390         * combine.c (combine_simplify_rtx):  Use reversed_comparison_code_parts.
18391
18392 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
18393
18394         * flags.h (flag_volatile): Remove declaration.
18395         (flag_volatile_global, flag_volatile_static): Likewise.
18396         * c-typeck.c (build_indirect_ref): Don't check flag_volatile.
18397         * toplev.c (flag_volatile): Remove definition.
18398         (flag_volatile_global, flag_volatile_static): Likewise.
18399         (f_options): Remove corresponding entries here.
18400         * varasm.c (make_decl_rtl): Don't check flag_volatile_global
18401         or flag_volatile_static.
18402         * doc/invoke.texi: Remove documentation of -fvolatile,
18403         -fvolatile-global and -fvolatile-static.
18404
18405 2003-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18406
18407         * pa.c (pa_output_function_prologue, pa_output_function_epilogue): Move
18408         updating of total_code_bytes from prologue to epilogue.
18409
18410 2003-01-31  Ulrich Weigand  <uweigand@de.ibm.com>
18411
18412         * reload.c (find_reloads): Do not use the mode specified in the insn
18413         pattern as reload mode for address operands.  Do not generate optional
18414         reloads for operands where a mandatory reload was already pushed.
18415         Generate optional reloads only in the final pass though find_reloads.
18416         (have_replacement_p): New function.
18417
18418 2003-01-31  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18419
18420         * doc/install.texi (Testing): Remove a reference to our obsolete
18421         /testresults web pages and strip redundant information concerning
18422         test results.
18423         (Binaries): Refer to Microsoft Windows instead of listing all
18424         possible variants.
18425
18426 2003-02-01  Jan Hubicka  <jh@suse.cz>
18427
18428         * loop.c (emit_prefetch_instructions):  Do conversion at right place in
18429         RTL chain.
18430
18431         * combine.c (simplify_set): Reverse order of ragumetns to
18432         REG_CANNOT_CHANGE_MODE_P
18433         * df.c (df_def_record_1): Likewise.
18434         * recog.c (register_operand): Likewise.
18435         * simplify-rtx.c (simplify_subreg): Likewise.
18436         * hard-reg-set.h (REG_CANNOT_CHANGE_MODE_P): Update use of
18437         CANNOT_CHANGE_MODE_CLASS.
18438         * regclass.c (cannot_change_mode_set_regs, invalid_mode_change_p):
18439         Likewise.
18440         * reload.c (push_reload): Likewise.
18441         * alpha.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18442         * ia64.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18443         * mips.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18444         * mips-protos.h (mips_cannot_change_mode_class): Update prototype.
18445         * mips.c (mips_cannot_change_mode_class): Update.
18446         * pa64-regs.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18447         * rs6000.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18448         * s390.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18449         * sh.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
18450         * sh-protos.h (sh_cannot_change_mode_class): Update prototype.
18451         * sh.c (sh_cannot_change_mode_class): Update.
18452         * i386.h (CANNOT_CHANGE_MODE_CLASS): New.
18453         * tm.texi (CANNOT_CHANGE_MODE_CLASS): Update documentation.
18454
18455 2003-01-31  Geoffrey Keating  <geoffk@apple.com>
18456
18457         * config/darwin.h (LINK_COMMAND_SPEC): Update for Nathan's recent
18458         change to LINK_COMMAND_SPEC in gcc.c.
18459
18460 2003-01-31  Jan Hubicka  <jh@suse.cz>
18461
18462         PR c/9506
18463         * i386.c (override_options): Use DEFAULT_PCC_STRUCT_RETURN.
18464
18465 2003-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18466
18467         * pa32-regs.h (REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Delete
18468         duplicated code.
18469
18470 2003-01-31  Nathan Sidwell  <nathan@codesourcery.com>
18471
18472         * tree.h (TYPE_BINFO_SIZE, TYPE_BINFO_SIZE_UNIT): Remove.
18473         (BINFO_ELTS): New #define.
18474         * stor-layout.c (finalize_record_size): Don't set them.
18475         * cp/cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
18476         BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
18477         (BINFO_LANG_ELTS): New #define.
18478         * cp/tree.c (make_binfo): Use BINFO_LANG_ELTS.
18479         * java/class.c (make_class): Use BINFO_ELTS.
18480         (set_super_info): Likewse.
18481         (add_interface_do): Likewise.
18482         * objc/objc-act.c (start_class): Use BINFO_ELTS.
18483
18484 2003-01-31 Danny Smith <dannysmith@users.sourceforge.net>
18485
18486         * timevar.c (getrusage): Don't ever declare if not HAVE_GETRUSAGE.
18487         (times): Don't ever declare if not HAVE_TIMES.
18488         (clock): Don't ever declare if not HAVE_CLOCK.
18489
18490 2003-01-30  Richard Henderson  <rth@redhat.com>
18491
18492         * flow.c (update_life_info): Zap life info after cleanup_cfg.
18493         (regno_uninitialized): Use correct live at function entry set.
18494         (regno_clobbered_at_setjmp): Likewise.
18495
18496         * expr.c (store_expr): Promote all MEM intermediates to regs.
18497
18498 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
18499
18500         * config/arm/arm.c: Fix comment typos.
18501         * config/arm/arm.h: Likewise.
18502         * config/arm/netbsd-elf.h: Likewise.
18503         * config/arm/netbsd.h: Likewise.
18504
18505 2003-01-30  Geoffrey Keating  <geoffk@apple.com>
18506
18507         * gengtype.c (struct walk_type_data): Add needs_cast_p.
18508         (walk_type): Set needs_cast_p in walk_type_data.
18509         (write_types_process_field): Supply casts when required to suppress
18510         warnings.
18511         (write_root): Cast gt_pch_n_S to suppress warning.
18512         * Makefile.in: Remove -Wno-error from gtype-desc.o and c-decl.o.
18513         * config/rs6000/rs6000.c (print_operand): Mask off high bits only
18514         when they might exist.
18515         * config/rs6000/t-rs6000: Remove -Wno-error from varasm.o,
18516         insn-conditions.o, and rs6000.o.
18517
18518 2003-01-30  Richard Henderson  <rth@redhat.com>
18519
18520         * ggc-page.c (G.context_depth_allocations): New.
18521         (G.context_depth_collections): New.
18522         (alloc_page): Set G.context_depth_allocations.
18523         (ggc_collect): Set G.context_depth_collections.
18524         (ggc_push_context): Limit to HOST_BITS_PER_LONG contexts.
18525         (ggc_pop_context): Early exit for no allocations or collections.
18526
18527 2003-01-30  Richard Henderson  <rth@redhat.com>
18528
18529         * tree-inline.c (walk_tree): Streamline duplicate hash table lookup.
18530
18531 2003-01-30  Richard Earnshaw  <rearnsha@arm.com>
18532
18533         * arm.c (arm_compute_initial_elimination_offset): If optimizing for
18534         size, the link register is always saved if any other register is
18535         saved.
18536
18537 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
18538
18539         * config/h8300/h8300-protos.h: Update the prototype for
18540         compute_plussi_cc.
18541         (cpp_reader): Declare before it is used.
18542         * config/h8300/h8300.c (compute_plussi_cc): Change the return
18543         type to int.
18544         * config/h8300/h8300.md (monitor_prologue): Call abort() if we
18545         see an unknown H8 variant.
18546
18547 2003-01-30  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
18548
18549         PR target/9316
18550         * config/rs6000/rtems.h: Add CPP_OS_DEFAULT_SPEC.
18551         * config/rs6000/sysv4.h: Add CPP_OS_RTEMS_SPEC.
18552         * config/rs6000/t-rtems: New file. multilib variants to match OS.
18553         * config.gcc (powerpc-*-rtems*): Use rs6000/t-rtems instead of
18554         rs6000/t-ppcgas so we get the desired multilibs.
18555
18556 2003-01-30  Nick Clifton  <nickc@redhat.com>
18557
18558         * config/arm/arm.c (arm_output_epilogue): Update stack pointer
18559         when popping saved IP register off the stack.
18560
18561 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
18562
18563         * config/rs6000/aix43.h: Fix comment typos.
18564         * config/rs6000/aix51.h: Likewise.
18565         * config/rs6000/aix52.h: Likewise.
18566         * config/rs6000/altivec.h: Likewise.
18567         * config/rs6000/rs6000.c: Likewise.
18568         * config/rs6000/rs6000.h: Likewise.
18569         * config/rs6000/rs6000.md: Likewise.
18570         * config/rs6000/spe.md: Likewise.
18571
18572 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
18573
18574         * c-common.c (builtin_define_float_constants): Define
18575         __<TYPE>_HAS_INFINITY__ and __<TYPE>_HAS_QUIET_NAN__.
18576
18577 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
18578
18579         * config/sh/lib1funcs.asm: Fix comment typos.
18580         * config/sh/linux.h: Likewise.
18581         * config/sh/sh.c: Likewise.
18582         * config/sh/sh.md: Likewise.
18583
18584 2003-01-30  Loren James Rittle  <ljrittle@acm.org>
18585
18586         * objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).
18587
18588 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
18589
18590         * config/fp-bit.h (__make_dp): Declare if TMODES.
18591
18592 2003-01-29  Kazu Hirata  <kazu@cs.umass.edu>
18593
18594         * config/h8300/h8300.h (PREDICATE_CODES): Add entries for
18595         general_operand_src and general_operand_dst.
18596
18597 2003-01-29  David Edelsohn  <edelsohn@gnu.org>
18598
18599         * config/rs6000/rs6000.c (function_arg_pass_by_reference):
18600         Return true for variable sized types.
18601         (rs6000_va_arg): Handle variable sized types passed by reference
18602         on non-SVR4 ABI.
18603
18604 2003-01-29  Richard Earnshaw  <rearnsha@arm.com>
18605
18606         * arm.c (arm_legtimize_address): New function.
18607         * arm-protos.h (arm_legtimize_address): Add prototype.
18608         * arm.h (ARM_LEGITIMIZE_ADDRESS): Use arm_legitimize_address.
18609         (LEGITIMIZE_ADDRESS, THUMB_LEGITIMIZE_ADDRESS): Wrap with
18610         do ... while (0)
18611
18612 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
18613
18614         PR bootstrap/9296
18615         * gthr-rtems.h: Define __GTHREAD_MUTEX_INIT.  Apparently no code
18616         depended on it being defined until now.
18617
18618 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
18619
18620         PR target/9295
18621         * config/mips/rtems.h: Predefine __USE_INIT_FINI__ so generic
18622         RTEMS code knows which C++ initialization style the toolset
18623         configuration is using.
18624
18625 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
18626
18627         PR bootstrap/9293
18628         * config/m68k/t-crtstuff: Replace spaces with tabs, add
18629          $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o.
18630
18631 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
18632
18633         PR bootstrap/9292
18634         * config.gcc (hppa1.1-rtems):  Did not include t-rtems nor enable
18635         RTEMS threads.
18636         * config/pa/rtems.h (LIB_SPEC): Use -N when linking.
18637
18638 2003-01-29  Nick Clifton  <nickc@redhat.com>
18639
18640         * Makefile.in (c-parse.o): Locate source file in $(parsedir)
18641         not $(srcdir).
18642
18643 2003-01-29  Andrew Haley  <aph@redhat.com>
18644
18645         * tree-inline.c (walk_tree): Add CHAR_TYPE.
18646
18647 2003-01-29  Jan Hubicka  <jh@suse.cz>
18648
18649         * i386.md (subdi3_carry_rex64): Fix typo.
18650
18651 2003-01-28  Stan Shebs  <shebs@apple.com>
18652
18653         * coretypes.h (cpp_reader): Forward declare struct.
18654         * c-pragma.h (cpp_reader): Remove forward declaration.
18655         * hashtable.h (cpp_reader): Likewise.
18656         * scan.h (cpp_reader): Likewise.
18657         * tree.h (cpp_reader): Likewise.
18658         * config/darwin-protos.h (cpp_reader): Likewise.
18659         * config/arm/arm-protos.h (cpp_reader): Likewise.
18660         * config/rs6000/rs6000-protos.h: Remove GCC_CPPLIB_H ifdef, use
18661         struct cpp_reader in prototypes.
18662
18663 2003-01-28  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
18664
18665         * doc/install.texi: Add documentation for installation into
18666         tooldirs and with DESTDIR.
18667
18668 2003-01-28  Richard Henderson  <rth@redhat.com>
18669
18670         * config.gcc (ia64*-*-aix*): Remove.
18671         * config/ia64/aix.h, config/ia64/t-aix: Remove file.
18672         * config/ia64/unwind-aix.c: Remove file.
18673
18674 2003-01-28  Andreas Schwab  <schwab@suse.de>
18675
18676         * config/m68k/m68k.md (tablejump+2): Don't sign extend an address
18677         register.
18678         * config/m68k/apollo68.h (ASM_RETURN_CASE_JUMP): Likewise.
18679         * config/m68k/coff.h (ASM_RETURN_CASE_JUMP): Likewise.
18680         * config/m68k/linux.h (ASM_RETURN_CASE_JUMP): Likewise.
18681         * config/m68k/m68kelf.h (ASM_RETURN_CASE_JUMP): Likewise.
18682         * config/m68k/mot3300.h (ASM_RETURN_CASE_JUMP): Likewise.
18683         * config/m68k/netbsd-elf.h (ASM_RETURN_CASE_JUMP): Likewise.
18684         * config/m68k/pbb.h (ASM_RETURN_CASE_JUMP): Likewise.
18685
18686 2003-01-28  Richard Sandiford  <rsandifo@redhat.com>
18687
18688         * combine.c (nonzero_bits): Fix check for negative divide operands.
18689
18690 2003-01-28  Richard Henderson  <rth@redhat.com>
18691
18692         * config/ia64/ia64.c (ia64_rwreloc_section_type_flags): New.
18693         * config/ia64/hpux.h (TARGET_SECTION_TYPE_FLAGS): New.
18694
18695 2003-01-28  Richard Henderson  <rth@redhat.com>
18696
18697         * cse.c (find_best_addr): Kill !ADDRESS_COST code.
18698
18699         * config/cris/cris.c (cris_address_cost): Make static.
18700         (TARGET_RTX_COSTS, TARGET_ADDRESS_COST): New.
18701         * config/cris/cris.h (ADDRESS_COST): Remove.
18702         * config/cris/cris-protos.h: Update.
18703
18704 2003-01-23  Mike Stump  <mrs@apple.com>
18705
18706         * regclass.c (init_reg_autoinc): New function.
18707         (regclass): Move initialization of forbidden_inc_dec_class from
18708         here...
18709         (init_regs): to here.  Avoids reinitialization for each function,
18710         saving compilation time.
18711
18712 2003-01-28  Jason Merrill  <jason@redhat.com>
18713
18714         * cpplib.h (struct cpp_options): Add warn_deprecated field.
18715         * cppinit.c (cpp_create_reader): Turn it on by default.
18716         * c-opts.c (c_common_decode_option): Set it.
18717         * cpplib.c (do_pragma_once): Only complain about #pragma once
18718         if warn_deprecated is set.
18719
18720 2003-01-28  Dale Johannesen  <dalej@apple.com>
18721
18722         * emit-rtl.c (const_double_htab_hash):  Use mode in the hash.
18723         * loop.c (scan_loop):  Move movables on -Os rich-register targets.
18724         * config/rs6000/rs6000.md (sibcall*):  Use match_operand for LR.
18725
18726 2003-01-28  Richard Henderson  <rth@redhat.com>
18727
18728         * target.h (targetm.address_cost): New.
18729         * target-def.h (TARGET_ADDRESS_COST): New.
18730         (TARGET_RTX_COSTS): Uncomment.  Oops.
18731         * cse.c (address_cost): Use new target hook.
18732         (default_address_cost): New.
18733         * output.h (default_address_cost): Declare.
18734         * hooks.c (hook_int_rtx_0): New.
18735         * hooks.h (hook_int_rtx_0): Declare.
18736         * loop.c (combine_givs_p): Remove if 0 code.
18737         * system.h (ADDRESS_COST): Poison.
18738
18739         * config/alpha/alpha.c, config/alpha/alpha.h, config/d30v/d30v.c,
18740         config/d30v/d30v.h, config/ia64/ia64.c, config/ia64/ia64.h,
18741         config/m32r/m32r.c, config/m32r/m32r.h, config/mcore/mcore.c,
18742         config/mcore/mcore.h, config/mmix/mmix.c, config/mmix/mmix.h,
18743         config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/sparc/sparc.c,
18744         config/sparc/sparc.h, config/v850/v850.c, config/v850/v850.h,
18745         config/xtensa/xtensa.c, config/xtensa/xtensa.h
18746         (TARGET_ADDRESS_COST): Define as hook_int_rtx_0.
18747         (ADDRESS_COST): Remove.
18748
18749         * config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
18750         config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
18751         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
18752         config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
18753         config/dsp16xx/dsp16xx.h, config/i386/i386-protos.h,
18754         config/i386/i386.c, config/i386/i386.h, config/i960/i960-protos.h,
18755         config/i960/i960.c, config/i960/i960.h, config/ip2k/ip2k-protos.h,
18756         config/ip2k/ip2k.c, config/ip2k/ip2k.h, config/mips/mips-protos.h,
18757         config/mips/mips.c, config/mips/mips.h,
18758         config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
18759         config/m68hc11/m68hc11.h, config/ns32k/ns32k-protos.h,
18760         config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa-protos.h,
18761         config/pa/pa.c, config/pa/pa.h, config/s390/s390-protos.h,
18762         config/s390/s390.c, config/s390/s390.h, config/vax/vax-protos.h,
18763         config/vax/vax.c, config/vax/vax.h
18764         (foo_address_cost): Make static.
18765         (TARGET_ADDRESS_COST): New.
18766         (ADDRESS_COST): Remove.
18767
18768         * config/arm/arm.h, config/arm/arm.c, config/m88k/m88k.h,
18769         config/m88k/m88k.c, config/romp/romp.h, config/romp/romp.c,
18770         config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
18771         config/stormy16/stormy16.h
18772         (ADDRESS_COST): Move code ...
18773         (foo_address_cost): ... here.
18774         (TARGET_ADDRESS_COST): New.
18775
18776         * config/m32r/m32r.c (m32r_address_cost): Remove.
18777         * config/m32r/m32r-protos.h: Update.
18778
18779         * config/mmix/mmix.c (mmix_address_cost): Remove.
18780         * config/mmix/mmix-protos.h: Update.
18781
18782         * config/mn10300/mn10300.c (mn10300_address_cost_1): Rename from
18783         mn10300_address_cost; move unsig allocation ...
18784         (mn10300_address_cost): ... here.
18785         (TARGET_ADDRESS_COST): New.
18786         * config/mn10300/mn10300-protos.h: Update.
18787         * config/mn10300/mn10300.h (ADDRESS_COST): Remove.
18788
18789         * doc/tm.texi: Update.
18790
18791 2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>
18792
18793         * haifa-sched.c (schedule_insn): Return necessary cycle advance
18794         after issuing the insn.
18795         (rank_for_schedule): Make a insn with /S the highest priority
18796         insn.
18797         (move_insn): Ignore schedule groups.  Clear SCHED_GROUP_P.
18798         (choose_ready): Check SCHED_GROUP_P.
18799         (schedule_block): Advance cycle after issuing insn if it is
18800         necessary.  Don't reorder insns if there is an insn with /S.
18801         (set_priorities): Ignore schedule groups.
18802
18803         * sched-deps.c (remove_dependence, group_leader): Remove the
18804         functions.
18805         (add_dependence): Ignore schedule groups.
18806         (set_sched_group_p): Don't make copy of dependencies from previous
18807         insn of the schedule group.  Add anti-dependency to the previous
18808         insn of the schedule group.
18809         (compute_forward_dependences): Ignore schedule groups.
18810
18811         * sched-ebb.c (init_ready_list): Ignore schedule groups.
18812
18813         * sched-rgn.c (init_ready_list): Ditto.
18814         (can_schedule_ready_p): Ditto.
18815
18816 2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>
18817
18818         * config/i386/i386.md (*movsi_1): Use movdqa to move one xmm
18819         register to another one.
18820
18821 2003-01-28  Richard Henderson  <rth@redhat.com>
18822
18823         * calls.c (default_must_pass_in_stack): Fix typo in !type case.
18824
18825 2003-01-28  Roger Sayle  <roger@eyesopen.com>
18826
18827         * cse.c (cse_insn): Avoid redundant REG_EQUAL notes.
18828
18829 2003-01-28  Richard Sandiford  <rsandifo@redhat.com>
18830
18831         * config/sh/sh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA, and the given
18832         class contains a floating-point register, return the size of the
18833         mode in half words.
18834
18835 2003-01-28  Jan Hubicka  <jh@suse.cz>
18836
18837         * i386.c (ix86_carry_flag_operator):  New predicate.
18838         (fcmov_operator): Fix whitespace.
18839         (ix86_expand_carry_flag_compare):  Deal with floating point.
18840         (ix86_expand_int_movcc): Deal with fp; update insn expansion
18841         (ix86_expand_int_addcc): Likewise.
18842         (ix86_expand_strlensi_unroll_1): likewsie.
18843         * i386.h (PREDICATE_CODES): Add ix86_carry_flag_operator.
18844         * i386.md (add?i_carry_rex64): Use new predicate.
18845         (sub?i3_carry_rex64): Likewise.
18846         (x86_mov?icc_0_m1*): Likewise.
18847
18848 2003-01-28  Andreas Schwab  <schwab@suse.de>
18849
18850         * cfgloopmanip.c (create_preheader): Initialize src to avoid
18851         warning.
18852
18853         * expmed.c (emit_store_flag): Fix cast to avoid sign
18854         comparison warning.
18855
18856         * combine.c (force_to_mode): Add cast to fix warning when
18857         STORE_FLAG_VALUE is negative.
18858
18859 2003-01-27  Richard Henderson  <rth@redhat.com>
18860
18861         * Makefile.in (cse.o): Depend on TARGET_H.
18862         * cse.c (rtx_cost): Use targetm.rtx_costs.
18863         * system.h (CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS): Poison.
18864         * doc/tm.texi: Update.
18865
18866         * target.h (targetm.rtx_costs): New.
18867         * target-def.h (TARGET_RTX_COSTS): New.
18868         * hooks.c (hook_bool_rtx_int_int_intp_false): New.
18869         * hooks.h: Update.
18870
18871         * config/alpha/alpha.c (alpha_rtx_cost_data): New.
18872         (alpha_rtx_costs, TARGET_RTX_COSTS): New.
18873         * config/alpha/alpha.h (PROCESSOR_MAX): New.
18874         (CONST_COSTS, RTX_COSTS): Remove.
18875
18876         * config/arc/arc.c, config/arc/arc.h, config/c4x/c4x.c,
18877         config/c4x/c4x.h, config/cris/cris.c, config/cris/cris.h,
18878         config/d30v/d30v.c, config/d30v/d30v.h, config/dsp16xx/dsp16xx.c,
18879         config/dsp16xx/dsp16xx.h, config/frv/frv.c, config/frv/frv.h,
18880         config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
18881         config/i370/i370.h, config/i386/i386.c, config/i386/i386.h,
18882         config/i960/i960.c, config/i960/i960.h, config/ia64/ia64.c,
18883         config/ia64/ia64.h, config/m32r/m32r.c, config/m32r/m32r.h,
18884         config/m68k/m68k.c, config/m68k/m68k.h, config/m88k/m88k.c,
18885         config/m88k/m88k.h, config/mcore/mcore.c, config/mcore/mcore.h,
18886         config/mips/mips.c, config/mips/mips.h, config/mn10200/mn10200.c,
18887         config/mn10200/mn10200.h, config/mn10300/mn10300.c,
18888         config/mn10300/mn10300.h, config/ns32k/ns32k.c, config/ns32k/ns32k.h,
18889         config/pa/pa.c, config/pa/pa.h, config/pdp11/pdp11.c,
18890         config/pdp11/pdp11.h, config/romp/romp.c, config/romp/romp.h,
18891         config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/s390/s390.c,
18892         config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
18893         config/stormy16/stormy16.c, config/stormy16/stormy16.h,
18894         config/v850/v850.c, config/v850/v850.h,
18895         config/xtensa/xtensa.c, config/xtensa/xtensa.h
18896         (CONST_COSTS, RTX_COSTS): Move code ...
18897         (foo_rtx_costs, TARGET_RTX_COSTS): ... here.
18898
18899         * config/arm/arm.c (arm_rtx_costs_1): Rename from arm_rtx_costs.
18900         (arm_rtx_costs, TARGET_RTX_COSTS): New.
18901         * config/arm/arm-protos.h: Update.
18902         * config/arm/arm.h (DEFAULT_RTX_COSTS): Remove.
18903
18904         * config/avr/avr.h (CONST_COSTS): Move code ...
18905         * config/avr/avr.c (avr_rtx_costs): ... here.
18906         (default_rtx_costs): Make static.
18907         * config/avr/avr-protos.h: Update.
18908
18909         * config/h8300/h8300.c (const_costs): Make static.
18910         (h8300_and_costs, h8300_shift_costs): Likewise.
18911         * config/h8300/h8300-protos.h: Update.
18912
18913         * config/ip2k/ip2k.h (DEFAULT_RTX_COSTS): Remove.
18914         (CONST_COSTS): Move code ...
18915         * config/ip2k/ip2k.c (ip2k_rtx_costs): ... here.  Rename from
18916         default_rtx_costs; update for signature change.
18917         * config/ip2k/ip2k-protos.h: Update.
18918
18919         * config/m68hc11/m68hc11.h (RTX_COSTS): Remove.
18920         (CONST_COSTS): Move code ...
18921         * config/m68hc11/m68hc11.c (m68hc11_rtx_costs): ... here.
18922         (TARGET_RTX_COSTS): New.
18923         (m68hc11_rtx_costs_1): Rename from m68hc11_rtx_costs; make static.
18924         * config/m68hc11/m68hc11-protos.h: Update.
18925
18926         * config/m68k/m68k.c (const_int_cost): Make static.
18927         * config/m68k/m68k-protos.h: Update.
18928
18929         * config/mcore/mcore.c (mcore_const_costs): Make static.
18930         (mcore_and_cost, mcore_ior_cost): Likewise.
18931         * config/mcore/mcore-protos.h: Update.
18932
18933         * config/mmix/mmix.c (mmix_rtx_costs, TARGET_RTX_COSTS): New.
18934         (mmix_rtx_cost_recalculated): Remove.
18935         * config/mmix/mmix.h (DEFAULT_RTX_COSTS): Remove.
18936         * config/mmix/mmix-protos.h: Update.
18937
18938         * config/sh/sh.c (shiftcosts): Make static.
18939         (addsubcosts, andcosts, multcosts): Likewise.
18940         * config/sh/sh-protos.h: Update.
18941
18942         * config/sparc/sparc.c (TARGET_RTX_COSTS): New.
18943         (sparc_rtx_costs): Make static; update for change in signature.
18944         * config/sparc/sparc.h (RTX_COSTS_CASES, RTX_COSTS): Remove.
18945         * config/sparc/sparc-protos.h: Update.
18946
18947         * config/v850/v850.c (const_costs): Make static.
18948         * config/v850/v850-protos.h: Update.
18949
18950         * config/vax/vax.h (RTX_COSTS): Remove.
18951         (CONST_COSTS): Move code ...
18952         * config/vax/vax.c (vax_rtx_costs_1): ... here; rename
18953         from vax_rtx_cost.
18954         (vax_rtx_costs, TARGET_RTX_COSTS): New.
18955
18956 2003-01-27  Richard Henderson  <rth@redhat.com>
18957
18958         * config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove.  Really.
18959         * config/vax/vax-protos.h: Update.  Really.
18960
18961 2003-01-28  Alexandre Oliva  <aoliva@redhat.com>
18962
18963         * config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from...
18964         (UNITS_PER_FPVALUE): Defined as the width of a long double, or
18965         zero if no hardware floating point.
18966         (LONG_DUBLE_TYPE_SIZE): Set to 128 on N32 and N64.
18967         (MAX_FIXED_MODE_SIZE): Define to LONG_DOUBLE_TYPE_SIZE.
18968         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
18969         (BIGGEST_ALIGNMENT): Same as LONG_DOUBLE_TYPE_SIZE.
18970         (FUNCTION_VALUE_REGNO_P): Set for FP_RETURN+2 on N32 and N64.
18971         * config/mips/mips.c (mips_arg_info): Pass TFmode values in
18972         even FP registers on N32 and N64.
18973         (mips_setup_incoming_varargs): Use UNITS_PER_HWFPVALUE.
18974         (mips_va_start): Adjust alignment of ARG_POINTER_REGNUM.
18975         (mips_va_arg): Use UNITS_PER_HWFPVALUE.  Impose additional
18976         even-register-like alignment to 128-bit arguments.
18977         (save_restore_insns): Use UNITS_PER_HWFPVALUE.
18978         (mips_function_value): Likewise.  Return TFmode in $f0 and $f2
18979         on N32 or N64.
18980         * config/mips/_tilib.c (__negti2, __ashlti3, __lshrti3): New.
18981         * config/mips/t-iris6 (LIB2FUNCS_EXTRA): Add _tilib.c.
18982         (TPBIT): Set to tp-bit.c.
18983         (tp-bit.c): Create out of fp-bit.c.
18984
18985 2003-01-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
18986
18987         * c-parse.in: Remove '%expect 32' directive in objc mode.
18988
18989 2003-01-27  Nathan Sidwell  <nathan@codesourcery.com>
18990
18991         * Makefile.in (LIB2FUNCS_ST): Remove _gcov.
18992         (LIBGCOV): New variable.
18993         (libgcc.mk): Add LIBGCOV.
18994         (LIBGCC_DEPS): Add libgcov.c.
18995         (libgcov.a): New target.
18996         (clean): Remove libgcov.a.
18997         (install-libgcc): Do libgcov too.
18998         (stage1-start, stage2-start, stage3-start, stage4-start): Deal
18999         with libgcov.a.
19000         * libgcc2.c (L_gcov): Move into ...
19001         * libgcov.c: ... here. New file.
19002         * mklibgcc.in: Add libgcov rules.
19003         * gcc.c (LINK_COMMAND_SPEC): Add -lgcov when profiling.
19004
19005         * doc/invoke.texi (profile-arcs, test-coverage): Update and
19006         clarify.
19007
19008         * profile.c (index_counts_file): Remove duplicate check for open file.
19009
19010 2003-01-27  Jerry Quinn  <jlquinn@optonline.net>
19011
19012         * gcc/doc/invoke.texi (Optimization Options): Group together
19013         optional and experimental flags.  Move trapv and bounds-check
19014         out of this section.  Group floating point flags together.
19015         (Code Gen Options): Move trapv and bounds-check to here.
19016
19017 2003-01-27  Josef Zlomek  <zlomekj@suse.cz>
19018
19019         * gcse.c (constprop_register): Check NEXT_INSN (insn) != NULL.
19020
19021 2003-01-27  Richard Earnshaw  <rearnsha@arm.com>
19022
19023         PR optimization/9090
19024         * function.c (purge_addressof_1): After pushing an addressed register
19025         onto the stack, simplify the result.
19026
19027 2003-01-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
19028
19029         * doc/extend.texi: Fix typo.
19030
19031 2003-01-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
19032
19033         * doc/cppopts.texi: Fix typo.
19034         * doc/objc.texi: Likewise.
19035         * doc/passes.texi: Likewise.
19036
19037 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
19038
19039         * real.c (ibm_extended_format): Add 53 to minimum exponent.
19040         (encode_ibm_extended): Adjust.
19041
19042 2003-01-26  Gabriel Dos Reis  <gdr@soliton.integrable-solutions.net>
19043
19044         * timevar.def (TV_OVERLOAD, TV_TEMPLATE_INSTANTIATION): New
19045         timevar_id enumerations.
19046
19047 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
19048
19049         * combine.c: Fix formatting.
19050
19051 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
19052
19053         * doc/gccint.texi: Update the copyright.
19054
19055 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
19056
19057         * doc/cpp.texi: Fix typos.
19058         * doc/extend.texi: Likewise.
19059         * doc/gty.texi: Likewise.
19060         * doc/install.texi: Likewise.
19061         * doc/passes.texi: Likewise.
19062         * doc/rtl.texi: Likewise.
19063         * doc/tm.texi: Likewise.
19064
19065 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
19066
19067         * config/ia64/fde-glibc.c: Fix comment typos.
19068         * config/ia64/hpux.h: Likewise.
19069         * config/ia64/ia64.c: Likewise.
19070         * config/ia64/ia64.h: Likewise.
19071         * config/ia64/unwind-ia64.c: Likewise.
19072
19073 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
19074
19075         * config/i386/i386-modes.def: Fix comment typos.
19076         * config/i386/i386.c: Likewise.
19077         * config/i386/i386.md: Likewise.
19078
19079 2003-01-26  Steven Bosscher  <s.bosscher@student.tudelft.nl>
19080
19081         * config/avr/avr.h, config/cris/aout.h, config/elfos.h,
19082         config/i386/freebsd-aout.h, config/mips/iris6.h: Undefine
19083         ASM_FINISH_DECLARE_OBJECT before defining it.
19084         * toplev.c (rest_of_decl_compilation):  Don't define
19085         ASM_FINISH_DECLARE_OBJECT.  Only use it if it is defined.
19086         (rest_of_type_compilation): Don't ATTRIBUTE_UNUSED function
19087         parameters for DWARF2 targets because they _are_ used.
19088
19089 2003-01-26  Alexandre Oliva  <aoliva@redhat.com>
19090
19091         * fp-bit.h: Define macros for TFmode floating-point constants
19092         in IBM-extended TFmode types.
19093         (TMODES): Define if __LDBL_MANT_DIG__ has the newly-supported
19094         widths.
19095         * config/fp-bit.c (pack_d, unpack_d): Support IBM-extended
19096         TFmode type.
19097
19098         * config/fp-bit.h: Define macros for TFmode floating-point
19099         constants in IEEE quad TFmode type.  Declare functions according
19100         to L_ macros.
19101         (TMODES): Define if __LDBL_MANT_DIG__ is 113.
19102         (TFtype, TItype, UTItype): Define if TMODES is defined.
19103         (MAX_UDI_INT, MAX_DI_INT, BITS_PER_DI): Likewise.
19104         (F_T_BITOFF, D_T_BITOFF): Define.
19105         (IMPLICIT_1, IMPLICIT_2): Cast constants to types that are
19106         guaranteed to be wide enough.
19107         * config/fp-bit.c: Check for L_ macros for tf functions.
19108         (__thenan_tf): New.
19109         (nan): Adjust.
19110         (pack_d, unpack_d): Support IEEE 854 quad type.
19111         (_fpmul_parts): Support TFmode.  Compute exponent adjustment
19112         from FRAC_NBITS, FRAC_BITS and NGARDS.
19113         (usi_to_float): Cast constants to be shifted to fractype
19114         instead of assuming long long is wide enough.
19115         (sf_to_tf, df_to_tf, __make_tp, tf_to_df, tf_to_sf): New.
19116
19117 2003-01-26  Andreas Jaeger  <aj@suse.de>
19118
19119         * df.c: Remove prototype of unused function df_regno_rtl_debug.
19120
19121 2003-01-26  Alexandre Oliva  <aoliva@redhat.com>
19122
19123         * Makefile.in (FPBIT_FUNCS): Added _sf_to_tf.
19124         (DBBIT_FUNCS): Added _df_to_tf.
19125         (TPBIT_FUNCS): New.
19126         (libgcc.mk): Pass TPBIT and TPBIT_FUNCS down.
19127         (LIBGCC_DEPS): Added TPBIT.
19128         * mklibgcc.in: Support TPBIT and TPBIT_FUNCS.
19129
19130         * optabs.c (expand_binop) <add, sub>: Return xtarget if we haven't
19131         been able to move the result to target.
19132
19133         * expr.c (emit_group_store): Initialize dst with CONST0_RTX
19134         for the appropriate mode.
19135
19136         * calls.c (emit_library_call_value_1): Handle return values
19137         in a PARALLEL.
19138
19139         * rtl.c (get_mode_alignment): Moved to...
19140         * stor-layout.c: ... here.
19141
19142         * print-rtl.c (print_rtx): Don't print MEM details in
19143         GENERATOR_FILEs.
19144
19145 2003-01-26  Michael Hayes  <mph@paradise.net.nz>
19146
19147         * df.h: Update comments, tidy formatting.
19148         (DF_FORWARD, DF_REVERSE, DF_UNION, DF_INTERSECTION): Rename from FORWARD,
19149         REVERSE, UNION, INTERSECTION.  All uses updated.
19150         (OLD_DF_INTERFACE): Remove.
19151         (struct insn_info): Remove commented out insn field.
19152         * df.c: Update comments, tidy formatting.
19153         (df_def_table_realloc): Remove.
19154
19155
19156 2003-01-26  Alan Modra  <amodra@bigpond.net.au>
19157
19158         * calls.c (save_fixed_argument_area): Tidy.
19159         (restore_fixed_argument_area): Tidy.  Set alignment of stack_area.
19160         (expand_call): Comment typo fixes.  Don't init low_to_save.  Start
19161         call chain loop at 1 if !try_tail_call.  Formatting.
19162         (emit_library_call_value_1): Don't init low_to_save or high_to_save.
19163         Use save_fixed_argument_area and restore_fixed_argument_area.
19164
19165 2003-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
19166
19167         * df.c (df_uses_record): Handle CC0.
19168
19169 2003-01-25  Ulrich Weigand  <uweigand@de.ibm.com>
19170
19171         * reload.c (maybe_memory_address_p): New function.
19172         (find_reloads_address): Use it instead of memory_address_p.
19173
19174 2003-01-25  Kaz Kojima  <kkojima@gcc.gnu.org>
19175
19176         * final.c (shorten_branches): Align the address of code label
19177         when computing initial lengths and addresses.
19178
19179 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
19180
19181         * config/m68hc11/m68hc11.md: Fix a comment typo.
19182
19183 2003-01-25  Andreas Jaeger  <aj@suse.de>
19184
19185         * config/i386/i386.c (x86_output_mi_thunk): Correct test for
19186         TARGET_MACHO.
19187
19188 2003-01-25  Roger Sayle  <roger@eyesopen.com>
19189
19190         * gcse.c (bypass_last_basic_block): New global variable.
19191         (bypass_block):  Use redirect_edge_and_branch_force to redirect
19192         fall-through edges.  Use bypass_last_basic_block to determine
19193         which blocks have valid PRE information.
19194         (bypass_conditional_jumps): Initialize bypass_last_basic_block.
19195
19196 2003-01-25  Jan Hubicka  <jh@suse.cz>
19197
19198         * gcse.c (local_cprop_pass): Update reg_sets table when needed.
19199
19200 2003-01-25  Jan Hubicka  <jh@suse.cz>
19201                               Eric Botcazou <ebotcazou@libertysurf.fr>
19202         PR opt/8492
19203         * gcse.c (one_cprop_pass): Delete unreachable blocks.
19204
19205 2003-01-25  Richard Henderson  <rth@redhat.com>
19206
19207         * config/ia64/ia64.c (ia64_rwreloc_select_rtx_section): Rename
19208         from ia64_aix_select_rtx_section.
19209         (ia64_rwreloc_select_section): Simlarly; use default*_1 function
19210         instead of saving and restoring flag_pic.
19211         (ia64_rwreloc_unique_section): Similarly.
19212         * config/ia64/aix.h (TARGET_ASM_SELECT_SECTION,
19213         TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): Update.
19214         * config/ia64/hpux.h (TARGET_ASM_SELECT_SECTION,
19215         TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): New.
19216
19217 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
19218
19219         * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Update a
19220         comment.
19221
19222 2003-01-25  Richard Henderson  <rth@redhat.com>
19223
19224         * config/m68k/m68k-none.h (ASM_SPEC): Adjust inter-option spacing.
19225
19226 2003-01-25  Kelley Cook <kelleycook@comcast.net>
19227
19228         * ggc-simple.c (debug_ggc_tree): Add PTR cast.
19229
19230 2003-01-25  Segher Boessenkool  <segher@koffie.nl>
19231
19232         * bitmap.h (BITMAP_WORD): New typedef: fundamental storage
19233         type for bitmaps.  Use unsigned long.
19234         (nBITMAP_WORD_BITS): New macro.
19235         (BITMAP_WORD_BITS): New macro.
19236         (rest of file): Use it.
19237         * bitmap.c: Use it.
19238
19239 2003-01-25  Richard Henderson  <rth@redhat.com>
19240
19241         2002-02-19  Robert Lipe  <robertlipe@usa.net>
19242         * config/i386/t-sco5gas: (CRTSTUFF_T_CFLAGS_S): Delete -mcoff.
19243
19244 2003-01-25  Roger Sayle  <roger@eyesopen.com>
19245
19246         * builtins.c (purge_builtin_constant_p): Scan insn stream
19247         sequentially rather than by basic block.
19248         * function.c (purge_addressof): Simplify test with INSN_P.
19249
19250 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
19251
19252         * combine.c (simplify_comparison, case AND): Remove a redundant test.
19253
19254 2003-01-25  Roger Sayle  <roger@eyesopen.com>
19255
19256         * function.h (struct function): New field calls_constant_p.
19257         (current_function_calls_constant_p): New macro for above.
19258         * function.c (prepare_function_start): Initialize calls_eh_return
19259         and calls_constant_p.
19260         * builtins.c (expand_builtin_constant_p): Set calls_constant_p.
19261         * toplev.c (rest_of_compilation): Only call purge_builtin_constant_p
19262         when the current_function_calls_constant_p.
19263         * integrate.c (expand_inline_function): Set calls_constant_p if
19264         the function being inlined has calls_constant_p set.
19265
19266 2003-01-25  Roger Sayle  <roger@eyesopen.com>
19267
19268         * cse.c (fold_rtx): Instantiate CONSTANT_P_RTX to 0 when not
19269         optimizing, even if flag_gcse is true.
19270         * toplev.c (rest_of_compilation): purge_builtin_constant_p
19271         only needs to be called when "optimize > 0 && flag_gcse".
19272
19273 2003-01-25  Roger Sayle  <roger@eyesopen.com>
19274
19275         * stmt.c (emit_case_bit_tests): New routine to implement suitable
19276         switch statements using the equivalent of "if ((1<<x) & cst) ... ".
19277         (case_bit_test_cmp): New comparison function for "qsort" to order
19278         case_bit_tests by decreasing number of destination nodes.
19279         (lshift_cheap_p): New function to determine if "1 << x" is cheap.
19280         (expand_end_case_type): Use emit_case_bit_tests to implement
19281         suitable switch statments.
19282         (CASE_USE_BIT_TESTS): New target macro to disable the above.
19283         * Makefile.in (stmt.o): Add dependency on optab.h.
19284         * doc/tm.texi (CASE_USE_BIT_TESTS): Document new target macro.
19285
19286 2003-01-23  Andreas Schwab  <schwab@suse.de>
19287
19288         * config/ia64/crtend.asm [HAVE_INITFINI_ARRAY]: Make
19289         __do_global_ctors_aux hidden global and don't put it in
19290         .init_array.
19291         * config/ia64/crtbegin.asm [HAVE_INITFINI_ARRAY]: Put it here
19292         instead so that it comes first.
19293
19294 2003-01-25  Jan Hubicka  <jh@suse.cz>
19295
19296         * df.c (read_modify_subreg_p):  When osize == UNITS_PER_WORD,
19297         subreg is read/modify.
19298
19299 2003-01-25  Jan Hubicka  <jh@suse.cz>
19300
19301         * i386.c (ix86_expand_movstr, ix86_expand_clrstr): Consistently
19302         do libcall for large blocks.
19303         * i386.md (comi patterns): Set type to ssecomi.
19304         (sse2_unpck?pd): Fix mode of vec_select.
19305
19306         * cse.c: Include except.h
19307         (cse_set_around_loop):  Do not create new basic blocks.
19308         * Makefile.in (cse.o): Add dependnecy on except.h
19309
19310 2003-01-25  Jan Hubicka  <jh@suse.cz>
19311
19312         * builtins.c (fold_trunc_transparent_mathfn): New function.
19313         (fold_builtin): Use it.
19314         * convert.c (convert_to_real): Re-enable code to convert
19315         math functions; add support for floor familly functions.
19316
19317 2003-01-25  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19318
19319         * Makefile.in (cfgloop.o, cfgloopanal.o, cfgloopmanip.o): Add
19320         dependencies on coretypes.h and $(TM_H).
19321
19322 2003-01-25  Jan Hubicka  <jh@suse.cz>
19323
19324         * builtins.c (fold_trunc_transparent_mathfn):  Undo accidental commit.
19325
19326 2003-01-24  Stuart Hastings  <stuart@apple.com>
19327
19328         * config/i386/i386.c (x86_output_mi_thunk): Add Darwin/x86 support.
19329
19330 2003-01-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
19331
19332         * config/c4x/c4x.md (UNSPEC_BU): New constants.
19333         (UNSPEC_RPTS, UNSPEC_LSH, UNSPEC_CMPHI, UNSPEC_RCPF): Likewise.
19334         (UNSPEC_RND, UNSPEC_RPTB_FILL, UNSPEC_LOADHF_INT): Likewise.
19335         (UNSPEC_STOREHF_INT, UNSPEC_RSQRF, UNSPEC_LOADQF_INT): Likewise.
19336         (UNSPEC_STOREQF_INT, UNSPEC_LDIV, UNSPEC_PUSH_ST):  Likewise.
19337         (UNSPEC_POP_ST, UNSPEC_PUSH_DP, UNSPEC_POP_DP):  Likewise.
19338         (UNSPEC_POPQI, UNSPEC_POPQF, UNSPEC_ANDN_ST):  Likewise.
19339         (UNSPEC_RPTB_INIT, UNSPEC_TOIEEE, UNSPEC_FRIEEE):  Likewise.
19340
19341 2003-01-24  Jan Hubicka  <jh@suse.cz>
19342
19343         * emit-rtl.c (reg_attrs_htab): New static variable.
19344         (reg_attrs_htab_hash, reg_attrs_htab_eq, get_reg_attrs): New static
19345         functions.
19346         (reg_rtx): Do not maintain regno_decl.
19347         (gen_rtx_REG_offset, set_reg_attrs_from_mem, set_delc_rtx,
19348         set_mem_attrs_from_reg): New global function.
19349         (init_emit): Do not initialize regno_decl.
19350         (init_emit_once): initialize reg_attrs_htab.
19351         * final.c (alter_subreg): Do not replace REG by SUBREG.
19352         (gen_mem_expr_from_op): Improve output.
19353         (output_asm_operands): Likewise.
19354         * function.c (assign_params): Do not set REGNO_DECL.
19355         * function.h (struct function): Kill regno_decl.
19356         (REGNO_DECL): Kill.
19357         * gengtype.c (adjust_field_rtx_def): Handle new field of reg.
19358         * print_rtl.c (print_rtx): Output REG information.
19359         * regclass.c (reg_scan_mark_refs): Update attrs.
19360         * reload1.c (alter_reg): Likewise.
19361         * simplify_rtx.c (simplify_subreg): Likewise.
19362         * stmt.c (expand_decl): Likewise.
19363         * rtl.def (REG): Add new field.
19364         * rtl.h (struct reg_attrs): New.
19365         (rtunion_def): At rtreg.
19366         (X0MEMATTR): Add checking.
19367         (X0REGATTR, REG_ATTRS, REG_EXPR, REG_OFFSET): New macro.
19368         (set_reg_attrs_from_mem, set_mem_attrs_from_reg, gen_rtx_REG_offset):
19369         Declare.
19370         * tree.h (SET_DECL_RTL): Call set_decl_rtl.
19371
19372 2003-01-24  Bob Wilson  <bob.wilson@acm.org>
19373
19374         * config/xtensa/xtensa.c: Remove unused include of machmode.h.
19375         (xtensa_emit_call, print_operand): Fix printf format strings
19376         to avoid compile warnings.
19377         (xtensa_function_prologue, xtensa_function_epilogue): Change type
19378         of "size" argument to HOST_WIDE_INT to fix compile warnings.
19379         * config/xtensa/xtensa-protos.h
19380         (xtensa_function_prologue, xtensa_function_epilogue): Ditto.
19381
19382 2003-01-24  Jan Hubicka  <jh@suse.cz>
19383
19384         * builtins.c (DEF_BUILTIN): Accept 10 arguments.
19385         (implicit_built_in_decls): New global array.
19386         (mathfn_built_in): New global function.
19387         (fold_trunc_transparent_mathfn): New static function
19388         (expand_builtin_strstr, expand_bultin_strchr,
19389         expand_builtin_strpbrk, expand_builtin_strcpy,
19390         expand_builtin_strncpy, expand_bultin_strcmp,
19391         expand_bultin_strncat, expand_builtin_fputs): Use
19392         implicint_built_in_decls.
19393         (fold_builtin): Fold floor/trunc/round/ceil/nearbyint.
19394         * builtins.def: Fix comments.
19395         (DEF_GCC_BUILTIN, DEF_FALLBACK_BUILTIN, DEF_EXT_FALLBACK_BUILTIN,
19396         DEF_LIB_BUILTIN, DEF_LIB_ALWAYS_BUILTIN, DEF_EXT_LIB_BUILTIN,
19397         DEF_C99_BULTIN, DEF_FRONT_END_LIB_BUILTIN,
19398         DEF_EXT_FRONT_END_LIB_BUILTIN): Pass implicit as needed.
19399         (DEF_C99_C90RES_BULTIN): New.
19400         (*f, *l builtins): Update.
19401         * c-common.c (DEF_BUILTIN): Initialize implicit array.
19402         (c_expand_builtin_printf, c_expand_builtin_fprintf): Update.
19403         * convert.c (strip_float_extensions): New global function.
19404         * tree.h (DEF_BUILTIN): Accept 10 arguments.
19405         (implicit_built_in_decls, mathfn_built_in, strip_float_extension):
19406         Declare.
19407         * java/builtins.c (define_builtin): Handle implicit.
19408         (DEF_BUILTIN): Update.
19409         * tm.texi (TARGET_C99_FUNCTIONS): Document.
19410         * defaults.h (TARGET_C99_FUNCTIONS): Default to 0.
19411         * config/linux.h (TARGET_C99_FUNCTIONS): Default to 1
19412         when using glibc2.
19413
19414 2003-01-24  Bob Wilson  <bob.wilson@acm.org>
19415
19416         * config.gcc (xtensa-*-elf*): Removed assignments to with_newlib,
19417         extra_parts, and fixincludes.  Add xtensa/t-elf tmake_file.
19418         (xtensa-*-linux*): Add xtensa/t-linux tmake_file.
19419         * config/xtensa/crti.asm: New file.
19420         * config/xtensa/crtn.asm: New file.
19421         * config/xtensa/t-elf: New file.
19422         * config/xtensa/t-linux: New file.
19423         * config/xtensa/t-xtensa: Add rules for crti.o and crtn.o.
19424         Move various CFLAGS settings to new t-elf file.
19425
19426 2003-01-24  Richard Henderson  <rth@redhat.com>
19427
19428         PR optimization/4382
19429         * tree-inline.c (find_builtin_longjmp_call_1): New.
19430         (find_builtin_longjmp_call): New.
19431         (inlinable_function_p): Use it.
19432
19433 2003-01-24  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19434
19435         * config/i386/i386-protos.h (function_arg_pass_by_reference): Declare.
19436         * config/i386/i386.h (FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
19437         * config/i386/i386.c (function_arg_pass_by_reference): New.
19438         (ix86_va_arg): Support arguments passed by reference.
19439
19440 2003-01-24  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19441
19442         * cfgloopanal.c: New file.
19443         * cfgloopmanip.c: New file.
19444         * Makefile.in (cfgloopanal.o, cfgloopmanip.o): New.
19445         (toplev.o, loop.o, doloop.o, unroll.o, cfgloop.o, predict.o,
19446         cfglayout.o): Add dependency on cfgloop.h.
19447         (cfgloop.o): Add flags.h dependency.
19448         * basic-block.h (BB_IRREDUCIBLE_LOOP, BB_SUPERBLOCK): New flags.
19449         (VLS_EXPECT_PREHEADERS, VLS_EXPECT_SIMPLE_LATCHES): Removed.
19450         (struct loop, struct loops, flow_loops_find, flow_loops_update,
19451         flow_loops_free, flow_loops_dump, flow_loop_dump,
19452         flow_loop_scan, flow_loop_tree_node_add, flow_loop_tree_node_remove,
19453         LOOP_TREE,,LOOP_PRE_HEADER, LOOP_ENTRY_EDGES, LOOP_EXIT_EDGES,
19454         LOOP_ALL, flow_loop_outside_edge_p, flow_loop_nested_p,
19455         flow_bb_inside_loop_p, get_loop_body, loop_preheader_edge,
19456         loop_latch_edge, add_bb_to_loop, remove_bb_from_loops,
19457         find_common_loop, verify_loop_structure): Declarations moved to ...
19458         * cfgloop.h: New file.
19459         * bb-reorder.c (reorder_basic_blocks): Modified.
19460         * cfglayout.c: Include cfgloop.h.
19461         (cleanup_unconditional_jumps, cfg_layout_redirect_edge,
19462         cfg_layout_duplicate_bb, cfg_layout_initialize): Update loop structure.
19463         (break_superblocks): New static function.
19464         (cfg_layout_finalize): Use it.
19465         (cfg_layout_split_block): New function.
19466         * cfglayout.h (struct reorder_block_def): Add copy and duplicated
19467         fields.
19468         (cfg_layout_initialize, cfg_layout_redirect_edge): Declaration
19469         changed.
19470         (cfg_layout_split_block): Declare.
19471         * cfgloop.c: Include cfgloop.h and flags.h.
19472         (flow_loop_dump, flow_loops_free, flow_loop_exit_edges_find,
19473         get_loop_body): Avoid signed versus unsigned comparison warnings.
19474         (make_forwarder_block, flow_loops_find, loop_preheader_edge,
19475         loop_latch_edge): Modified.
19476         (verify_loop_structure): Modified to use flags stored in loop structure;
19477         check irreducible loops.
19478         (cancel_loop, cancel_loop_tree): New functions.
19479         (estimate_probability): Use loop analysis code for predictions.
19480         (estimate_loops_at_level):  Avoid signed versus unsigned comparison
19481         warnings.
19482         * doloop.c: Include cfgloop.h.
19483         * loop.c: Include cfgloop.h.
19484         * predict.c: Include cfgloop.h.
19485         * toplev.c: Include cfgloop.h.
19486         * unroll.c: Include cfgloop.h.
19487         * tracer.c (tracer): Modified.
19488
19489 2003-01-24  Kazu Hirata  <kazu@cs.umass.edu>
19490
19491         * config/h8300/h8300.c (get_shift_alg): Fix a typo.
19492
19493 2003-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
19494
19495         * configure.in (HAVE_AS_TLS): Add s390-*-* and s390x-*-* cases.
19496         * configure: Regenerate.
19497
19498         * config/s390/s390-protos.h (tls_symbolic_operand): Add prototype.
19499         (tls_symbolic_reference_mentioned_p): Add prototype.
19500         (s390_tls_get_offset): Add prototype.
19501         (emit_pic_move): Remove prototype, replace by ...
19502         (emit_symbolic_move): .. this new prototype.
19503
19504         * config/s390/s390.c (TARGET_HAVE_TLS): Conditionally define.
19505         (tls_model_chars): New global variable.
19506         (s390_encode_section_info): Encode TLS model.
19507         Use targetm.binds_local_p to check for local symbols.
19508         (s390_strip_name_encoding): New function.
19509         (TARGET_STRIP_NAME_ENCODING): Define.
19510
19511         (get_thread_pointer): New function.
19512         (legitimize_tls_address): New function.
19513         (legitimize_address): Call it.
19514         (emit_pic_move): Remove, replace by ...
19515         (emit_symbolic_move): ... this new function.
19516
19517         (larl_operand): Handle TLS operands.
19518         (legitimate_constant_p): Likewise.
19519         (s390_decompose_address): Likewise.
19520         (s390_cannot_force_const_mem): New function.
19521         (TARGET_CANNOT_FORCE_CONST_MEM): Define.
19522
19523         (s390_output_symbolic_const): Handle TLS unspecs.
19524         (print_operand): New code 'J'.
19525         (machine_function): Add struct member 'some_ld_name'.
19526         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): New.
19527
19528         (enum s390_builtin): New type.
19529         (code_for_builtin_64, code_for_builtin_31): New global variables.
19530         (s390_init_builtins, s390_expand_builtin): New functions.
19531         (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): Define.
19532
19533         * config/s390/s390.h (TLS_SYMBOLIC_CONST): New macro.
19534         (ASM_OUTPUT_LABELREF): Define.
19535         (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Handle TLS constants.
19536
19537         * config/s390/s390.md: Define TLS UNSPEC constants.
19538         ("movdi", "movsi"): Handle TLS operands.
19539         ("get_tp_64", "get_tp_31", "set_tp_64", "set_tp_31"): New insns.
19540         ("*tls_load_64", "*tls_load_31"): New insns.
19541         ("call_value_tls", "call_value_tls_exp"): New expanders.
19542         ("brasl_tls", "bras_tls", "basr_tls_64", "basr_tls_31",
19543         "bas_tls_64", "bas_tls_31"): New insns.
19544
19545 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
19546
19547         * config/rs6000/rs6000.c (rs6000_parse_abi_options): Make sure
19548         spe ABI is configured, if requested.
19549
19550 2003-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
19551
19552         * doc/passes.texi: Fix typo.
19553
19554 2003-01-24  Andreas Schwab  <schwab@suse.de>
19555
19556         * stor-layout.c (excess_unit_span): Only define if used.
19557
19558 2003-01-24  Jerry Quinn  <jlquinn@optonline.net>
19559
19560         * gcc/doc/invoke.texi (Optimization Options): List -O levels
19561         for each optimization flag.
19562
19563 2003-01-24  Kazu Hirata  <kazu@cs.umass.edu>
19564
19565         * config/h8300/h8300.md (*andsi3_ashift_n_lower): New.
19566
19567 2003-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
19568
19569         * doc/bugreport.texi: Use @command instead of @code for commands.
19570         * doc/collect2.texi: Likewise.
19571         * doc/headerdirs.texi: Likewise.
19572         * doc/invoke.texi: Likewise.
19573         * doc/standards.texi: Likewise.
19574         * doc/tm.texi: Likewise.
19575         * doc/trouble.texi: Likewise.
19576
19577 2003-01-24  Nick Clifton  <nickc@redhat.com>
19578
19579         * config/arm/arm.c (use_return_insn): Do not use a single return
19580         instruction for interrupt handelrs which have to create a stack
19581         frame.
19582         (arm_expand_prologue): Do not pre-bias the return address of
19583         interrupt handlers which create a stack frame.
19584
19585 2003-01-24  Nick Clifton  <nickc@redhat.com>
19586
19587         * Add sh2e support:
19588
19589         2002-08-12  Alexandre Oliva  <aoliva@redhat.com>
19590
19591                 * config/sh/sh.c (output_branch) [TARGET_SH2E]: Handle
19592                 med_cbranches.  Fix logic in short_cbranches.
19593
19594         2002-04-03  Alexandre Oliva  <aoliva@redhat.com>
19595
19596                 * config/sh/sh.md (delay for cbranch): Don't annul delay
19597                 slots on SH2e.
19598                 * config/sh/sh.c (sh_insn_length_adjustment): Add 2 for
19599                 cbranch with unfilled delay slot on SH2e.
19600                 (output_branch): Fill with a nop the delay slot of a
19601                 branch that required a delay slot but didn't get one.
19602
19603         2002-04-02  Alexandre Oliva  <aoliva@redhat.com>
19604
19605                 * doc/invoke.texi (SH options): Document -m2e.
19606                 * config/sh/crt1.asm: Add __SH2E__ Next to __SH3E__.
19607                 * config/sh/lib1funcs.asm: Likewise.
19608                 * config/sh/sh.c: Replace all uses of TARGET_SH3E with SH2E.
19609                 * config/sh/sh.h (CPP_SPEC): Define __SH2E__ for -m2e, and
19610                 not __sh1__.
19611                 (CONDITIONAL_REGISTER_USAGE): Don't disable FP regs from
19612                 SH2E up.
19613                 (SH3E_BIT): Renamed to...
19614                 (SH_E_BIT): ... this.  Replace all uses.
19615                 (TARGET_SH2E): Define from SH_E_BIT and TARGET_SH2.
19616                 Replace all uses of TARGET_SH3E with TARGET_SH2E.
19617                 (TARGET_SWITCHES): Added 2e.
19618                 (OVERRIDE_OPTIONS): Set sh_cpu for SH2E.
19619                 (processor_type): Added PROCESSOR_SH2E.
19620                 * config/sh/sh.md: Replace all uses of TARGET_SH3E with
19621                 TARGET_SH2E, except in sqrtsf2_i.
19622                 (attribute cpu): Added sh2e.
19623                 * config/sh/t-sh (MULTILIB_OPTIONS): Replace m3e with m2e.
19624                 (MULTILIB_MATCHES): Use m2e multilib for m3e.
19625                 * config.gcc: Add sh2e target support.
19626
19627 2003-01-24  Phil Edwards  <pme@gcc.gnu.org>
19628
19629         Rename -W to -Wextra.
19630         * c-decl.c:  Update comments.
19631         * c-typeck.c:  Likewise.
19632         * flags.h:  Likewise.
19633         * function.c:  Likewise.
19634         * stmt.c:  Likewise.
19635         * toplev.c:  Update comments.
19636         (W_options):  Add 'extra'.
19637         (display_help):  Remove '-W'.
19638         (decode_W_option):  Special warn_uninitialized treatment in the case
19639         of -Wextra.
19640         * doc/invoke.texi:  Update with new entries.
19641
19642 2003-01-23  Richard Henderson  <rth@redhat.com>
19643
19644         * ifcvt.c (noce_process_if_block): Re-add check vs X being changed
19645         in no-else-block case.  Add commentary.
19646
19647 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19648
19649         * configure.in: Revert last change.
19650
19651 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19652
19653         * configure.in: Don't include ansidecl.h in tconfig.h.
19654         * gcov-io.h (PARAMS, ATTRIBUTE_UNUSED): Define if IN_LIBGCC2.
19655         * unwind-dw2-fde.h (last_fde): Use __attribute__, not
19656         ATTRIBUTE_UNUSED.
19657
19658         * configure: Regenerate.
19659
19660 2003-01-23  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
19661
19662         PR java/6748
19663         * config/rs6000/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Don't destroy
19664         regs->nip. Fix rt_sigreturn frame layout. Add support for newer
19665         kernels.
19666
19667 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19668
19669         * cpplex.c (cpp_interpret_charconst): Squelch warning with cast.
19670
19671 2003-01-23  Ulrich Weigand  <uweigand@de.ibm.com>
19672
19673         * genattrtab.c (write_attr_get): Mark 'insn' paramter
19674         as ATTRIBUTE_UNUSED.
19675
19676 2003-01-23  Richard Earnshaw  <rearnsha@arm.com>
19677
19678         * arm.c (thumb_base_register_rtx_p): New function.
19679         (thumb_index_register_rtx_p): New function.
19680         (thumb_legitimate_address_p): New function.
19681         (thumb_legitimate_offset_p): New function.
19682         * arm.h (REG_STRICT_P): Define according to setting of REG_OK_STRICT.
19683         (ARM_GO_IF_LEGITIMATE_ADDRESS): Use REG_STRICT_P to avoid duplicate
19684         definitions.
19685         (THUMB_GO_IF_LEGITIMATE_ADDRESS): Use thumb_legitimate_address_p.
19686         (THUMB_LEGITIMATE_OFFSET): Delte.
19687         (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use thumb_legitimate_offset.
19688         * arm-protos.h (thumb_legitimate_address_p): Add prototype.
19689         (thumb_legitimate_offset_p): Likewise.
19690
19691 2003-01-23  Andreas Schwab  <schwab@suse.de>
19692
19693         * unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.
19694
19695 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19696
19697         * fixinc/Makefile.in (FL_LIST): Revert last change.
19698
19699 2003-01-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
19700
19701         PR other/7341
19702         * invoke.texi (ftest-coverage): Fix broken cross-reference.
19703         Change @code to @command for gcov command.
19704
19705         * gcc.texi: Adjust title of gcov section.
19706         Adjust copyright.
19707         * gcov.texi: Likewise.
19708
19709 2003-01-22  Roger Sayle  <roger@eyesopen.com>
19710
19711         PR optimization/8423
19712         * cse.c (fold_rtx): Only eliminate a CONSTANT_P_RTX to 1 when
19713         its argument is constant, or 0 if !flag_gcse.
19714         * simplify-rtx.c (simplify_rtx): Convert CONSTANT_P_RTX to 1
19715         if it's argument is constant.
19716         * gcse.c (want_to_gcse_p): Ignore CONSTANT_P_RTX nodes.
19717         (hash_scan_set): Don't record CONSTANT_P_RTX expressions.
19718         (do_local_cprop): Don't propagate CONSTANT_P_RTX constants.
19719         * builtins.c (purge_builtin_constant_p): New function to force
19720         instantiation of any remaining CONSTANT_P_RTX nodes.
19721         * rtl.h (purge_builtin_constant_p): Prototype here.
19722         * toplev.c (rest_of_compilation): Invoke purge_builtin_constant_p
19723         pass after GCSE and before loop.
19724         (flag_gcse): No longer static.
19725         * flags.h (flag_gcse): Prototype here.
19726
19727 2003-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
19728
19729         * config/s390/s390.h (HARD_REGNO_MODE_OK): Fix warning regression
19730         introduced by last change.
19731
19732 2003-01-22  Andreas Schwab  <schwab@suse.de>
19733
19734         * ra-rewrite.c (rewrite_program2): Initialize bb to avoid warning.
19735
19736 2003-01-22  Kazu Hirata  <kazu@cs.umass.edu>
19737
19738         * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Don't
19739         request a scratch reg on H8S when the shift count is 8.
19740
19741 2003-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
19742
19743         * config/s390/s390-protos.h (preferred_la_operand_p):
19744         Remove second parameter.
19745         * config/s390/s390.c (preferred_la_operand_p): Likewise.
19746         * config/s390/s390.h (FRAME_REGNO_P, FRAME_REG_P): New macros.
19747         (HARD_REGNO_MODE_OK): Use FRAME_REGNO_P.
19748         * config/s390/s390.md ("*la_cc_64", "*la_cc_31", splitters): Remove.
19749         Add peepholes to transform ADD to LOAD ADDRESS.
19750
19751 2003-01-22  Richard Earnshaw  <rearnsha@arm.com>
19752
19753         * arm.c (arm_address_register_rtx_p): New function.
19754         (arm_legitimate_address_p): New function.
19755         (arm_legitimate_index_p): New function.
19756         (legitimize_pic_address): Use arm_legitimate_index_p.
19757         * arm-protos.h (arm_legtimate_address_p): Add prototype.
19758         * arm.h (ARM_GO_IF_LEGITIMATE_INDEX): Delete.
19759         (ARM_GO_IF_LEGITIMATE_ADDRESS): Call arm_legitimate_address_p.
19760
19761 2003-01-22  Hartmut Penner  <hpenner@de.ibm.com>
19762
19763         * config/s390/s390.md (floatdfdi2): Insn has type 'itof'.
19764         * config/s390/2064.md (define_bypass): Correct 'Load' and
19765         'Load-address' bypass values.
19766
19767 2003-01-22  Andreas Schwab  <schwab@suse.de>
19768
19769         * config/ia64/t-ia64 (insn-attrtab.o-warn): Define as -Wno-error.
19770
19771 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
19772
19773         * genautomata.c (output_internal_insn_latency_func,
19774         output_print_reservation_func): Short circuit when there is no
19775         automaton to generate code for.
19776
19777 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19778
19779         * Makefile.in (ssa-ccp.o): Depend on coretypes.h $(TM_H).
19780         (df.o): Delete duplicate dependency on coretypes.h $(TM_H).
19781
19782 2003-01-21  Geoffrey Keating  <geoffk@apple.com>
19783
19784         * config/rs6000/rs6000.md: Remove warning.
19785         (builtin_setjmp_receiver): Likewise.
19786         * config/darwin.c (update_stubs): Slightly improve terrible hack
19787         with identifiers.  Add comment pointing out problems with it.
19788         (update_non_lazy_ptrs): Likewise.
19789
19790 2003-01-21  Richard Henderson  <rth@redhat.com>
19791
19792         * dwarf2out.c (lookup_filename): Fix printf format warning.
19793         * system.h (fread_unlocked, fwrite_unlocked): Undef.
19794
19795         * fixinc/Makefile.in (FL_LIST): Add $($@-warn) hook.
19796         (fixincl.o-warn, gnu-regex.o-warn): New.
19797         * fixinc/fixfixes.c (FIX_PROC_HEAD): Mark parameters unused.
19798         * fixinc/fixtests.c (TEST_FOR_FIX_PROC_HEAD): Likewise.
19799         * fixinc/fixincl.c (process): Fix printf format warning.
19800
19801 2003-01-21  Ulrich Weigand  <uweigand@de.ibm.com>
19802
19803         * dwarf2out (output_file_names): Don't crash if called
19804         with empty file_table.
19805
19806 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
19807
19808         * genautomata.c (output_internal_insn_latency_func): Add
19809         missing break statement to generated code.
19810
19811 2003-01-21  Roger Sayle  <roger@eyesopen.com>
19812
19813         * stmt.c (same_case_target_p): New function to determine whether
19814         two case labels branch to the same target.  Split out from...
19815         (group_case_nodes): ... here.  Use same_case_target_p instead.
19816         (strip_default_case_nodes): Remove explicit case nodes
19817         that branch to the default destination.
19818         (expand_end_case_type): Call strip_default_case_nodes after
19819         group_case_nodes, to simplify the case-list before we count it.
19820         Only generate table_label RTX when actually needed.  Try to share
19821         thiscase->exit_label and thiscase->data.case_stmt.default_label
19822         when a switch has no explicit default case.  Simplify test for
19823         constant index.
19824
19825 2003-01-21  Kazu Hirata  <kazu@cs.umass.edu>
19826
19827         * config/h8300/h8300.md (*negsf2_h8300): Use \\t instead of
19828         \t.
19829         (*negsf2_h8300hs): Likewise.
19830         (*addsi3_lshiftrt_16_zexthi): Likewise.
19831         (*iorhi3_lshiftrt_8): Likewise.
19832
19833 2003-01-21  Ulrich Weigand  <uweigand@de.ibm.com>
19834
19835         * dwarf2out.c (fde_table_in_use): Mark GTY.
19836         (dwarf2out_cfi_label_num): New variable, marked GTY.
19837         (dwarf2out_cfi_label): Use it instead of static label_num.
19838         * emit-rtl.c (label_num): Mark GTY.
19839
19840 2003-01-21  Kazu Hirata  <kazu@cs.umass.edu>
19841
19842         * config/h8300/h8300.c (output_plussi): Support H8/300.
19843         (compute_plussi_length): Likewise.
19844         (compute_plussi_cc): Likewise.
19845         * config/h8300/h8300.md (addsi_h8300): Use output_plussi to
19846         output assembly instructions.
19847
19848 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19849
19850         * calls.c (fix_unsafe_tree): Prototype.
19851
19852         * Makefile.in (GCC_WARN_CFLAGS): Add $(WERROR) $($@-warn)
19853         (gtype-desc.o-warn, c-decl.o-warn, varasm.o-warn, gcc.o-warn,
19854         insn-conditions.o-warn, out_object_file, gengtype-yacc.o-warn,
19855         c-parse.o-warn): Add -Wno-error.
19856         (STAGE2_FLAGS_TO_PASS): Add WERROR="@WERROR@".
19857
19858         * configure.in (--enable-werror): Add new flag.
19859         * doc/install.texi (--enable-werror): Document.
19860         * configure: Regenerate.
19861
19862         * objc/Make-lang.in (objc/objc-parse.o-warn): Add -Wno-error.
19863
19864 2003-01-21  Andreas Schwab  <schwab@suse.de>
19865
19866         * genautomata.c (output_internal_insn_latency_func): Fix missing
19867         close paren in output.
19868
19869 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
19870
19871         * genautomata.c: Space savings in generated code:
19872         (output_dfa_insn_code_func): Split out the table-enlargement
19873         path to an out-of-line static function, dfa_insn_code_enlarge.
19874         (output_internal_insn_latency_func): Use a lookup table for the
19875         default latencies.
19876         (output_print_reservation_func): Use a lookup table for the
19877         strings.
19878
19879 2003-01-21  Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
19880
19881         PR opt/7507
19882         * calls.c (fix_unsafe_tree): Split out from ...
19883         (expand_call): ... here.  Use it on the function address too.
19884
19885 2003-01-20  Richard Henderson  <rth@redhat.com>
19886
19887         * expr.h (default_must_pass_in_stack): Move decl outside ifdef.
19888
19889 2003-01-20  Richard Henderson  <rth@redhat.com>
19890
19891         PR opt/7154
19892         * stmt.c (expand_asm_operands): Validize memory operands.
19893
19894 2003-01-20  Richard Henderson  <rth@redhat.com>
19895
19896         PR opt/8848
19897         * ifcvt.c (noce_process_if_block): Correct arguments to
19898         modified_between_p for no-else-block case.
19899
19900 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
19901
19902         * config/h8300/h8300.c (const_costs): Remove a warning.
19903         (output_plussi): Likewise.
19904         (compute_plussi_length): Likewise.
19905         (compute_plussi_cc): Likewise.
19906
19907 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
19908
19909         * config/h8300/h8300.md (addsi_h8300): Remove the last
19910         alternative.
19911
19912 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
19913
19914         * config/h8300/h8300.c (get_shift_alg): Remove redundant code.
19915
19916 2003-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19917
19918         * system.h (__NO_STRING_INLINES): Define.
19919
19920 2003-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19921
19922         * ifcvt.c (noce_emit_store_flag): Don't emit store flag if mode of x
19923         is not a scalar int mode.
19924
19925 2003-01-20  Roger Sayle  <roger@eyesopen.com>
19926
19927         * cse.c (cse_insn): Avoid RTL sharing when updating the RETVAL
19928         insn's notes following a substitution inside a libcall.
19929
19930 2003-01-20  Zack Weinberg  <zack@codesourcery.com>
19931
19932         * configure.in: Check for system-provided 'uchar' type.
19933         * configure, config.in: Regenerate.
19934         * cpphash.h: Only typedef 'uchar' if the system doesn't.
19935
19936 2003-01-20  Richard Henderson  <rth@redhat.com>
19937
19938         * expr.h (MUST_PASS_IN_STACK): Move implementation...
19939         * calls.c (default_must_pass_in_stack): ... here.
19940
19941 2003-01-20  Vladimir Makarov  <vmakarov@redhat.com>
19942
19943         * genattrtab.h (INSN_ALTS_FUNC_NAME): Move it from genautomata.c.
19944
19945         * genautomata.c (INSN_ALTS_FUNC_NAME): Move it into genattrtab.h.
19946
19947         * genattr.c (main): Output default definition of AUTOMATON_ALTS.
19948         Wrap up definition of `insn_alts'.
19949
19950         * genattrtab.c (main): Wrap up `insn_alts'.
19951
19952 2003-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19953
19954         * collect2.c (ldgetname): Check HAVE_DECL_LDGETNAME before
19955         prototyping.
19956         * configure.in: Check for <ldfcn.h> and ldgetname() prototype.
19957
19958         * config.in, configure: Regenerate.
19959
19960 2003-01-20  Nick Clifton  <nickc@redhat.com>
19961
19962         * config/arm/arm.md (sibcall_epilogue): Add an
19963         UNSPEC_PROLOGUE_USE to prevent the link register from being
19964         considered dead.
19965
19966 2003-01-20  Jan Hubicka  <jh@suse.cz>
19967
19968         * i386.md (SSE cmov splitter):  Handle memory operand in operand 5.
19969
19970 2003-01-20  Andreas Schwab  <schwab@suse.de>
19971
19972         * system.h: Don't declare strsignal if the decl test hasn't been
19973         run yet.
19974
19975 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
19976
19977         * config/h8300/h8300.c (notice_update_cc): Don't assume that
19978         recog_data.operands[0] is always associated with cc0.
19979
19980 2003-01-19  David Edelsohn  <edelsohn@gnu.org>
19981
19982         * collect2.c (ldgetname): Expand declaration to prototype.
19983         * read-rtl.c (atoll): Add prototype.
19984         * system.h (strsignal): Also declare if no declaration found.
19985
19986 2003-01-19  Alexandre Oliva  <aoliva@redhat.com>
19987
19988         * config.gcc (mips64*-*-linux*): Added.
19989         * config/mips/linux64.h, config/mips/t-linux64: New file.
19990         * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Define.
19991         * config/mips/mips.c (override_options): Use it.
19992         * config/mips/mips.h (TARGET_SWITCHES): Added...
19993         (SUBTARGET_TARGET_SWITCHES): New, empty by default.
19994         * Makefile.in (SPECS): New.
19995         (STAGESTUFF, specs, mostlyclean, install-common): Use it.
19996         * gcc.c (process_command): Move self-spec processing past spec
19997         file loading.
19998         * doc/tm.texi (DRIVER_SELF_SPECS): Document the change.
19999         * doc/fragments.texi (MULTILIB_EXTRA_OPTS): Document need for
20000         CRTSTUFF_T_CFLAGS.
20001         (SPECS): Document.
20002         * doc/invoke.texi (-mabi-fake-default): Document.
20003
20004 2003-01-19  Stephane Carrez  <stcarrez@nerim.fr>
20005
20006         * config/m68hc11/m68hc11.c (stack_push_word, stack_pop_word,
20007         z_reg, z_reg_qi): Declare static and GTY().
20008         (da_reg): Remove.
20009         (create_regs_rtx): Don't create da_reg.
20010         ("gt-m68hc11.h"): Include for GTY roots.
20011         * config/m68hc11/m68hc11.h (ix_reg, iy_reg, d_reg): Declare extern
20012         and GTY() here.
20013         (m68hc11_compare_op0, m68hc11_compare_op1): Likewise.
20014         (m68hc11_soft_tmp_reg): Likewise.
20015         * config/m68hc11/m68hc11-protos.h: Remove above declarations.
20016
20017 2003-01-18  Kazu Hirata  <kazu@cs.umass.edu>
20018
20019         * basic-block.h: Fix comment formatting.
20020         * calls.c: Likewise.
20021         * combine.c: Likewise.
20022         * convert.c: Likewise.
20023         * gcov.c: Likewise.
20024         * haifa-sched.c: Likewise.
20025         * libgcc2.c: Likewise.
20026         * loop.c: Likewise.
20027         * profile.c: Likewise.
20028         * system.h: Likewise.
20029
20030 2003-01-18  Roger Sayle  <roger@eyesopen.com>
20031
20032         * config/pa/pa.md (muldi3): Avoid invalid sharing of SUBREG RTXs.
20033
20034 2003-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20035
20036         * ra-build.c (undef_to_size_word): Avoid `switch' warning.
20037
20038 2003-01-17  Dale Johannesen  <dalej@apple.com>
20039
20040         * config/rs6000/rs6000.md (*floatsidf2_internal):  Add earlyclobbers.
20041           (*floatunssidf2_internal):  Ditto.
20042
20043 2003-01-17  Kazu Hirata  <kazu@cs.umass.edu>
20044
20045         * alias.c: Fix comment typos.
20046         * basic-block.h: Likewise.
20047         * c-common.c: Likewise.
20048         * c-common.h: Likewise.
20049         * c-decl.c: Likewise.
20050         * c-opts.c: Likewise.
20051         * c-pragma.c: Likewise.
20052         * c-pretty-print.h: Likewise.
20053         * cfg.c: Likewise.
20054         * cfganal.c: Likewise.
20055         * cfgbuild.c: Likewise.
20056         * cfgcleanup.c: Likewise.
20057         * cfglayout.c: Likewise.
20058         * cfgrtl.c: Likewise.
20059         * convert.c: Likewise.
20060         * cpphash.h: Likewise.
20061         * cpplex.c: Likewise.
20062         * cpplib.h: Likewise.
20063         * df.h: Likewise.
20064         * diagnostic.c: Likewise.
20065         * diagnostic.h: Likewise.
20066         * dwarf2.h: Likewise.
20067
20068 2003-01-17  Stan Shebs  <shebs@apple.com>
20069
20070         * config/darwin-protos.h: Forward-declare struct cpp_reader.
20071
20072 2003-01-17  Douglas B Rupp  <rupp@gnat.com>
20073
20074         * config/alpha/alpha.c (alpha_need_linkage): Fix obvious
20075         mistake in last checkin.
20076
20077 2003-01-17  Kazu Hirata  <kazu@cs.umass.edu>
20078
20079         * et-forest.c: Fix comment typos.
20080         * et-forest.h: Likewise.
20081         * except.c: Likewise.
20082         * expr.c: Likewise.
20083         * flags.h: Likewise.
20084         * flow.c: Likewise.
20085         * gcc.c: Likewise.
20086         * gcse.c: Likewise.
20087         * genattrtab.c: Likewise.
20088         * genautomata.c: Likewise.
20089         * gengtype.c: Likewise.
20090         * genrecog.c: Likewise.
20091         * global.c: Likewise.
20092         * gthr-rtems.h: Likewise.
20093
20094 2003-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20095
20096         * i386.c (x86_function_profiler): Fix format specifier.
20097
20098 2003-01-17  Richard Henderson  <rth@redhat.com>
20099
20100         * gengtype.c (walk_type): Allow paramN_is.
20101
20102 2003-01-17  Nick Clifton  <nickc@redhat.com>
20103
20104         * config/i960/t-960bare (i960-c.o): Add missing newline escape.
20105
20106 2003-01-16  Richard Henderson  <rth@redhat.com>
20107
20108         * config/alpha/linux-elf.h (LIB_SPEC): Adjust inter-option spacing.
20109
20110 2003-01-16  Richard Henderson  <rth@redhat.com>
20111
20112         * config/alpha/alpha.c (alpha_sr_alias_set): Mark GTY.
20113         (alpha_next_sequence_number): Likewise.
20114         (alpha_this_literal_sequence_number): Likewise.
20115         (alpha_this_gpdisp_sequence_number): Likewise.
20116         (struct alpha_funcs, alpha_funcs_num): Likewise.
20117         (struct alpha_links): Fix branch merge error.
20118         (alpha_need_linkage, alpha_use_linkage): Use GC for alpha_funcs.
20119
20120 2003-01-17  Alexandre Oliva  <aoliva@redhat.com>
20121
20122         * config/mips/mips.h: Don't use #elif.  Reported by Kaveh
20123         R. Ghazi.
20124
20125 2003-01-16  Kazu Hirata  <kazu@cs.umass.edu>
20126
20127         * ifcvt.c: Fix comment typos.
20128         * lcm.c: Likewise.
20129         * libgcc2.c: Likewise.
20130         * local-alloc.c: Likewise.
20131         * loop.c: Likewise.
20132         * predict.c: Likewise.
20133         * ra-build.c: Likewise.
20134         * ra.c: Likewise.
20135         * ra-colorize.c: Likewise.
20136         * ra.h: Likewise.
20137         * ra-rewrite.c: Likewise.
20138         * regmove.c: Likewise.
20139         * reload.h: Likewise.
20140         * rtlanal.c: Likewise.
20141         * toplev.c: Likewise.
20142         * tree.h: Likewise.
20143         * unwind-dw2-fde-glibc.c: Likewise.
20144         * vmsdbgout.c: Likewise.
20145
20146 2003-01-16  Richard Henderson  <rth@redhat.com>
20147
20148         * dwarf2out.c (struct file_table): Remove.
20149         (FILE_TABLE_INCREMENT): Remove.
20150         (file_table): Make a varray; mark for GC.  Update all users.
20151         (file_table_last_lookup_index): Extract from struct file_table.
20152         (output_file_names): Fix unsigned compare warnings.
20153         (add_name_attribute): Remove inline marker.
20154         (add_comp_dir_attribute): Split out from gen_compile_unit_die.
20155         (lookup_filename): Don't manage size of file_table.
20156         (init_file_table): Allocate file_table with GC.
20157         (dwarf2out_init): Don't record main_input_filename here.
20158         (dwarf2out_finish): Do it here instead.
20159
20160 2003-01-16  Bruce Korb  <bkorb@gnu.org>
20161
20162         * gcc/fixinc/inclhack.def(limits_ifndef): QNX needs a bypass, too.
20163
20164 2003-01-16  Kaz Kojima  <kkojima@gcc.gnu.org>
20165
20166         * config/sh/sh.c (sh_initialize_trampoline): Emit rotrdi3_mextr
20167         instead of rotldi3_mextr.
20168
20169 2003-01-16  Vladimir Makarov  <vmakarov@redhat.com>
20170
20171         * haifa-sched.c (move_insn): Restore moving all schedule group.
20172         (set_priorities): Restore taking SCHED_GROUP_P into account.
20173
20174         * sched-deps.c (add_dependence): Restore processing the last group
20175         insn.
20176         (remove_dependence, group_leader): Restore the functions.
20177         (set_sched_group_p): Restore adding dependencies from previous insn
20178         in the group.
20179         (compute_forward_dependences): Restore usage of group_leader.
20180
20181         * sched-ebb.c (init_ready_list): Restore taking SCHED_GROUP_P into
20182         account.
20183
20184         * sched-rgn.c (init_ready_list): Restore taking SCHED_GROUP_P into
20185         account.
20186         (can_schedule_ready_p): Ditto.
20187         (add_branch_dependences): Restore skipping over the group insns.
20188
20189 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
20190
20191         * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Fix handling
20192         68HC12 pre/post inc/dec side effects.
20193
20194 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
20195
20196         * config/m68hc11/m68hc11.h (MASK_M6812): Define.
20197
20198 2003-01-16  J"orn Rennecke <amylaar@onetel.net.uk>
20199
20200         * sh.md (mshflo_w_x): Fix description of operation.
20201
20202 2003-01-16  Zack Weinberg  <zack@codesourcery.com>
20203
20204         * config/rs6000/rs6000.h: Mention Altivec registers in
20205         commentary.  Fix typo.
20206
20207 2003-01-16  David Edelsohn  <edelsohn@gnu.org>
20208
20209         * config/rs6000/rs6000.md (movti_string): Remove clobber.
20210         * config/rs6000/rs6000.c (rs6000_emit_move, TImode): Explicitly
20211         generate PARALLEL with clobber for TARGET_POWER.
20212
20213 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20214
20215         * ra-colorize.c (colorize_one_web): Initialize variable.
20216         * regmove.c (fixup_match_1): Likewise.
20217         * reload1.c (reload_as_needed): Likewise.
20218         * sdbout.c (SET_KNOWN_TYPE_TAG): Add cast.
20219
20220 2003-01-16  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
20221
20222         * cfgloop.c (flow_loops_find): Fix handling of abnormal edges.
20223
20224 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20225
20226         * dbxout.c (lastfile, cwd): Fix `unused' warning.
20227         * dwarf2out.c (fde_table_in_use, current_funcdef_fde,
20228         dw_cfi_oprnd1_desc, dw_cfi_oprnd2_desc, next_die_offset,
20229         is_main_source, file_table, decl_die_table_in_use,
20230         abbrev_die_table_in_use, line_info_table_in_use,
20231         separate_line_info_table_in_use, pubname_table_in_use,
20232         arange_table_in_use, ranges_table_in_use,
20233         current_function_has_inlines): Likewise.
20234         * flow.c (life_analysis): Likewise.
20235         * genemit.c (gen_insn): Likewise.
20236         * protoize.c (cplus_suffix): Likewise.
20237
20238         * arm.c (ROUND_UP_WORD): Renamed from ROUND_UP.
20239         * arm.h (ROUND_UP_WORD): Likewise.
20240
20241         * arm.h (CONDITIONAL_REGISTER_USAGE): Avoid signed/unsigned
20242         warning.
20243         * emit-rtl.c (gen_rtx_REG, set_mem_attributes_minus_bitpos,
20244         init_emit_once): Likewise.
20245         * flow.c (mark_regs_live_at_end, calculate_global_regs_live):
20246         Likewise.
20247         * function.c (assign_stack_temp_for_type): Likewise.
20248         * loop.c (loop_invariant_p): Likewise.
20249         * recog.c (push_operand): Likewise.
20250         * regclass.c (init_reg_sets_1): Likewise.
20251         * reload.c (update_auto_inc_notes): Likewise.
20252         * reload1.c (reload_as_needed, emit_input_reload_insns): Likewise.
20253         * stmt.c (expand_asm_operands): Likewise.
20254         * stor-layout.c (start_record_layout): Likewise.
20255
20256 2003-01-16  Herman A.J. ten Brugge <hermantenbrugge@home.nl>
20257
20258         * config/c4x/c4x.md (epilogue): Correct last patch.
20259
20260 2003-01-15  Richard Henderson  <rth@redhat.com>
20261
20262         * config/alpha/alpha.c (find_lo_sum_using_gp): Rename from find_lo_sum;
20263         also check that GP is being used.
20264         (alpha_find_lo_sum_using_gp): New.
20265         (alpha_does_function_need_gp): Use get_attr_usegp.
20266         * config/alpha/alpha-protos.h: Update.
20267         * config/alpha/alpha.md (attr usegp): New.  Annotate patterns
20268         as needed.
20269
20270 2003-01-15  Roger Sayle  <roger@eyesopen.com>
20271
20272         * gcse.c (one_cprop_pass): Change function arguments to take both
20273         cprop_jumps and bypass_jumps flags instead of just alter_jumps.
20274         (gcse_main): Update calls to one_cprop_pass, disabling bypassing.
20275         (bypass_jumps): New function to perform separate jump bypassing pass.
20276         * rtl.h (bypass_jumps): Add function prototype.
20277         * timevar.def (TV_BYPASS): New timing variable.
20278         * toplev.c (enum dump_file_index): Add new entry DFI_bypass.
20279         (dump_file): New entry for the bypass RTL dump file.
20280         (rest_of_compilation): Insert new jump bypassing optimization
20281         pass after loop.
20282         * doc/passes.texi: Document new pass.
20283
20284 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
20285
20286         * som.h (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY, MAKE_DECL_ONE_ONLY,
20287         ASM_WEAKEN_LABEL, GTHREAD_USE_WEAK): Define.
20288         * pa.h (TARGET_SOM_SDEF): Define.
20289         * pa-hpux11.h (TARGET_SOM_SDEF): Define.
20290
20291 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
20292
20293         * config/m68hc11/m68hc11.c (expand_prologue): Use push/pop to
20294         allocate 4-bytes of locals on 68HC11.
20295         (expand_epilogue): Likewise.
20296         (m68hc11_memory_move_cost): Increase cost of HI/QI soft registers.
20297
20298 2003-01-15  Stephane Carrez  <stcarrez@nerim.fr>
20299
20300         * config/m68hc11/m68hc11.h (ASM_SPEC): Handle -m68hcs12; Pass -mshort
20301         and -mshort-double to the assembler to specify the ABI.
20302         (LINK_SPEC): Likewise.
20303         (CPP_SPEC): Pass HCS12 specific define.
20304         (MASK_M68S12): New define.
20305         (TARGET_M68S12): Likewise.
20306         (TARGET_SWITCHES): New options -m68hcs12 and -m68S12.
20307         (TARGET_VERSION): Update.
20308         * config/m68hc11/m68hc12.h (CPP_SPEC): Pass HCS12 specific define.
20309         (LINK_SPEC): Update.
20310         (ASM_SPEC): Update.
20311         * config/m68hc11/m68hc11.c (m68hc11_asm_file_start): Update.
20312         * doc/invoke.texi (M68hc1x Options): Document -m68hcs12.
20313
20314 2003-01-15  Stephane Carrez  <stcarrez@nerim.fr>
20315
20316         * config/m68hc11/m68hc11.md ("return"): Use emit_jump_insn to emit
20317         the return code.
20318
20319 2003-01-15  Josef Zlomek  <zlomekj@suse.cz>
20320
20321         * cfganal.c (set_edge_can_fallthru_flag): Clear the EDGE_CAN_FALLTHRU
20322         flag before setting it.
20323
20324 2003-01-15  Roger Sayle  <roger@eyesopen.com>
20325
20326         * c-semantics.c (genrtl_while_stmt):  Improve initial RTL generation
20327         when loop condition is known true, i.e.  "while (1) { ... }".
20328         (genrtl_for_stmt): Similarly for "for" statements.
20329
20330 2003-01-15  Roger Sayle  <roger@eyesopen.com>
20331
20332         * real.c (real_sqrt): Return a bool result indicating whether
20333         a floating point exception or trap should be raised.
20334         * real.h (real_sqrt): Update function prototype.
20335         * builtins.c (fold_builtin): Only fold non-trapping square
20336         roots unless we're ignoring errno and trapping math.
20337
20338 2003-01-15  John David Anglin  <dave.anglin@nrc.gc.ca>
20339
20340         * expr.h (emit_conditional_add): Add PARAMS to declaration.
20341         * gengtype-lex.l (malloc, realloc): Move defines after include of
20342         system.h.  Remove duplicate include of system.h.
20343
20344 2003-01-15  Roger Sayle  <roger@eyesopen.com>
20345
20346         PR middle-end/9009
20347         * optabs.c (expand_unop):  When manipulating the FP sign bit
20348         using integer operations, account for targets with different
20349         integer and FP word orders.
20350         (expand_abs): Likewise.
20351
20352 2003-01-15  David Edelsohn  <edelsohn@gnu.org>
20353
20354         * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
20355         file extension in section name.
20356
20357 2003-01-15  Richard Earnshaw  <rearnsha@arm.com>
20358
20359         * flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with
20360         constant offset.
20361
20362 2003-01-15  Richard Earnshaw  <rearnsha@arm.com>
20363
20364         * arm.h (HAVE_PRE_MODIFY_DISP, HAVE_PRE_MODIFY_REG): Define.
20365         (HAVE_POST_MODIFY_DISP, HAVE_POST_MODIFY_REG): Define.
20366         (ARM_GO_IF_LEGITIMATE_ADDRESS): Handle pre/post-modify addresses.
20367         (ARM_PRINT_OPERAND_ADDRESS): Likewise.
20368
20369 2003-01-15  Jan Hubicka  <jh@suse.cz>
20370
20371         PR f/9258
20372         * global.c (struct allocno): Add no_stack_reg.
20373         (global_conflicts): Set no_stack_reg.
20374         (find_reg): Use it.
20375
20376         * convert.c (convert_to_real): Fold - and abs only when profitable.
20377         * fold-const.c (fold): Fold truncates in - and abs.
20378
20379 2003-01-15  Josef Zlomek  <zlomekj@suse.cz>
20380
20381         Segher Boessenkool  <segher@koffie.nl>
20382
20383         * predict.c (real_inv_br_prob_base): New variable.
20384         (propagate_freq): Use multiply by reciprocal instead of
20385         division.  Don't divide by 1.0 at all.
20386         (estimate_bb_frequencies): Similar.
20387
20388 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
20389
20390         * configure.in (libgcc_visibility): Force disabled on IRIX 6 too.
20391         * configure: Rebuilt.
20392
20393 2003-01-15  Hartmut Penner  <hpenner@de.ibm.com>
20394
20395         * config/s390/s390.c (s390_safe_attr_type): New function.
20396         (s390_use_dfa_pipeline_interface): New function, return true for z900.
20397         (s390_issue_rate): New function.
20398         (s390_agen_dep_p): New function.
20399         (addr_generation_dependency_p): Use 's390_safe_attr_type'.
20400         (s390_adjust_cost): Return 'cost' if new DFA is used.
20401         (s390_adjust_priority): Delete function.
20402         * config/s390/s390-protos.h: (s390_agen_dep_p): New prototype.
20403         * config/s390/s390.md (atype attribute): Attribute 'atype' default
20404         determined by 'op_type'.
20405         (type attribute): Added more type attributes.
20406         * config/s390/2064.md: New DFA description for z900 pipeline.
20407
20408 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
20409
20410         * config/i386/i386.c (ix86_expand_vector_move): Validize constant
20411         forced to memory.  Fixes PR bootstrap/9036.
20412
20413         * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Define so as
20414         to set $gp before the call.
20415
20416 2003-01-14  Richard Henderson  <rth@redhat.com>
20417
20418         * config/alpha/alpha.c (alpha_expand_mov): Use correct mode
20419         for force_const_mem.
20420
20421 2003-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20422
20423         * genattr.c (main): Rearrange output to avoid prototype warning.
20424         * genautomata.c (transform_3): Fix ambiguous-else warning.
20425         * local-alloc.c (requires_inout): Add parentheses around
20426         assignment used as truth-value.
20427         * timevar.c: Move system includes above local includes.  Include
20428         toplev.h
20429         * Makefile.in (timevar.o): Depend on toplev.h.
20430
20431 2003-01-14  Denis Chertykov  <denisc@overta.ru>
20432
20433         * config/ip2k/ip2k.h (VALID_MACHINE_DECL_ATTRIBUTE): Remove.
20434         (VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
20435
20436         * config/ip2k/ip2k.c (ip2k_attribute_table): New table of
20437         attributes.
20438         (TARGET_ATTRIBUTE_TABLE): New macro.
20439         (valid_machine_type_attribute): Remove.
20440         (valid_machine_decl_attribute): Remove.
20441         (ip2k_handle_progmem_attribute): New function.
20442         (ip2k_handle_fndecl_attribute): New function.
20443
20444 2003-01-10  Andrew Haley  <aph@redhat.com>
20445
20446         * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Rename
20447         registers to be in correct order.  Add rip.
20448
20449 2003-01-14  Kazu Hirata  <kazu@cs.umass.edu>
20450
20451         * config/h8300/h8300.md (*andsi3_lshiftrt_9_sb): New.
20452         (*iorsi3_and_lshiftrt_9_sb): Likewise.
20453
20454 2003-01-14  Jan Hubicka  <jh@suse.cz>
20455
20456         * convert.c (strip_float_extensions):  Look for narrowest type handling
20457         FP constants.
20458
20459         * fold-const.c (fold):  Fold (double)float1 CMP (double)float2 into
20460         float1 CMP float2.
20461         * convert.c (strip_float_extensions): Make global.
20462         * tree.h (strip_float_extensions): Declare.
20463
20464 2003-01-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
20465
20466         * timevar.def: define TV_NAME_LOOKUP.
20467         * timevar.c (timevar_pop): Be verbose when aborting.
20468
20469 2003-01-13  Andreas Schwab  <schwab@suse.de>
20470
20471         * Makefile.in ($(parsedir)/gengtype-lex.c): Don't change to
20472         $(parsedir), just move the temporary file at the end.
20473         ($(parsedir)/gengtype-yacc.c): Likewise.
20474
20475 2003-01-13  Alexandre Oliva  <aoliva@redhat.com>
20476
20477         * aclocal.m4 (gcc_AC_PROG_GNAT): Don't try to prepend
20478         ${ac_tool_prefix} to ADAC or CC.  Protect them from word
20479         splitting.
20480         * configure: Rebuilt.
20481
20482 2003-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20483
20484         * config/sparc/gmon-sol2.c (moncontrol, monstartup, _mcleanup,
20485         internal_mcount): Don't use PARAMS.
20486         (monstartup, _mcleanup, internal_mcount, moncontrol): Convert to
20487         ISO C style.
20488         (internal_mcount): Use __attribute__, not ATTRIBUTE_UNUSED.
20489
20490 2003-01-13  Andreas Schwab  <schwab@suse.de>
20491
20492         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type
20493         directive.
20494
20495 2003-01-13  Kazu Hirata  <kazu@cs.umass.edu>
20496
20497         * config/h8300/h8300.md (*andsi3_lshift_n_sb): New.
20498         (*iorsi3_and_lshiftrt_n_sb): Likewise.
20499
20500 2003-01-12  Mark Mitchell  <mark@codesourcery.com>
20501
20502         PR c++/9264
20503         * c-lex.c (c_lex): Set the token value to error_mark_node for
20504         invalid numeric constants.
20505
20506 2003-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20507
20508         * c-pch.c (asm_file_startpos): Change to `long'.
20509         (pch_init): Use ftell, not ftello.
20510         (c_common_write_pch): Use ftell/fseek, not ftello/fseeko.
20511         Use `long' instead of `off_t'.
20512         (c_common_read_pch): Likewise.
20513         * ggc-common.c (gt_pch_save): Use long/ftell instead of
20514         off_t/ftello.
20515
20516 2003-01-12  Alan Modra  <amodra@bigpond.net.au>
20517
20518         * expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
20519
20520 2003-01-11  Richard Earnshaw  (rearnsha@arm.com)
20521
20522         * arm-protos.h (struct cpp_reader): Add declaration.
20523
20524 2003-01-11  Jan Hubicka  <jh@suse.cz>
20525
20526         PR target/9068
20527         * i386.c (output_fp_compare): Fix typo.
20528
20529 2003-01-10  David Edelsohn  <edelsohn@gnu.org>
20530
20531         * config/rs6000/rs6000.c (common_mode_defined): Mark for PCH.
20532
20533 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
20534
20535         * Makefile.in (parsedir): New variable.
20536         (docobjdir): New variable.
20537         (c-parse.o, c-parse.c, c-parse.y, gengtype-lex.o, gengtype-yacc.o,
20538         gengtype-lex.c, gengtype-yacc.c): Use parsedir.
20539         (info, cpp.info, gcc.info, gccint.info, gccinstall.info,
20540         cppinternals.info, generated-manpages, gcov.1, cpp.1, gcc.1, gfdl.7,
20541         gpl.7, fsf-funding.7, maintainer-clean, install-info, install-man):
20542         Use docobjdir.
20543         * objc/Make-lang.in (objc/objc-parse.c, objc/objc-parse.y,
20544         objc.maintainer-clean): Use parsedir.
20545
20546         * varasm.c (struct constant_descriptor_rtx): Remove unused
20547         `label' field.
20548
20549         * toplev.c (documented_lang_options): Document -Winvalid-pch.
20550
20551 2003-01-10  Richard Henderson  <rth@redhat.com>
20552
20553         * config/alpha/alpha.h (NO_PROFILE_COUNTERS): Set.
20554         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Kill.
20555
20556 2003-01-10  Richard Henderson  <rth@redhat.com>
20557
20558         * combine.c (make_compound_operation): Use SCALAR_INT_MODE_P,
20559         not INTEGRAL_MODE_P when widening extensions.
20560
20561 2003-01-10  Richard Henderson  <rth@redhat.com>
20562
20563         * config/alpha/alpha.c (decl_has_samegp): True for !TREE_PUBLIC.
20564
20565 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
20566
20567         * ggc-page.c (ggc_collect): Avoid overflow computing
20568         min_expand.
20569
20570         * Makefile.in (RANLIB_FOR_TARGET): Use RANLIB when native.
20571         (RANLIB_TEST_FOR_TARGET): Delete.  Don't pass down to sub-makes.
20572         Remove calls.
20573         * mklibgcc.in: Remove uses of RANLIB_TEST_FOR_TARGET.
20574
20575 2003-01-10  Jan Hubicka  <jh@suse.cz>
20576
20577         * ifcvt.c (noce_try_addcc): Do not call emit_conditional_add
20578         with weird operands.
20579
20580 2003-01-10  Dale Johannesen <dalej@apple.com>
20581
20582         * calls.c (load_register_parameters):  Add is_sibcall, sibcall_failure
20583         parameters.  Call check_sibcall_argument_overlap if indicated.
20584         (check_sibcall_argument_overlap):  Add mark_stored_args_map
20585         parameter.  Don't mark parameter area as clobbered if not set.
20586         (expand_call):  Adjust calls to above.
20587
20588 2003-01-10 Kelley Cook <kelleycook@comcast.net>
20589
20590         * configure.in (linker read-only and read-write section mixing):
20591         Squelch some assembler warnings.
20592         * configure: Likewise.
20593
20594 2003-01-10  Hartmut Penner  <hpenner@de.ibm.com>
20595
20596         * doc/invoke.texi: Document -mtune, delete -mcpu
20597         option for S/390 and zSeries.
20598         * config/s390/s390.c (s390_tune_string) New variable.
20599         (s390_cpu_string) Delete variable.
20600         (override_options): Use s390_tune_string instead of
20601         s390_cpu_string.
20602         * config/s390/s390.h: (TARGET_OPTIONS) '-mtune' instead of '-mcpu'.
20603
20604 2003-01-10  Kazu Hirata  <kazu@cs.umass.edu>
20605
20606         * config/h8300/h8300.md (*iorsi3_ashift_31): New.
20607
20608 2003-01-10  Josef Zlomek  <zlomekj@suse.cz>
20609
20610         * jump.c (next_nonnote_insn_in_loop): New function.
20611         (copy_loop_headers): Use next_nonnote_insn_in_loop instead of
20612         next_nonnote_insn.
20613         (duplicate_loop_exit_test). Likewise.
20614
20615 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
20616
20617         Merge from pch-branch:
20618
20619         2003-01-06  Geoffrey Keating  <geoffk@apple.com>
20620
20621         * ggc-page.c (ggc_pch_read): Update the statistics after a PCH
20622         load.
20623
20624         2002-12-24  Geoffrey Keating  <geoffk@apple.com>
20625
20626         * cpplib.c (count_registered_pragmas): New function.
20627         (save_registered_pragmas): New function.
20628         (_cpp_save_pragma_names): New function.
20629         (restore_registered_pragmas): New function.
20630         (_cpp_restore_pragma_names): New function.
20631         * cpphash.h (_cpp_save_pragma_names): Prototype.
20632         (_cpp_restore_pragma_names): Likewise.
20633         * cpppch.c (struct save_macro_item): Split from save_macro_data.
20634         (struct save_macro_data): New field 'saved_pragmas'.
20635         (save_macros): Update for changes to struct save_macro_data.
20636         (cpp_prepare_state): Call _cpp_save_pragma_names, update
20637         for changes to struct save_macro_data.
20638         (cpp_read_state): Call _cpp_restore_pragma_names, update
20639         for changes to struct save_macro_data.
20640
20641         * cpppch.c (cpp_read_state): Restore the hashtable references
20642         in the cpp_reader.
20643
20644         * tree.h (built_in_decls): Mark for PCH.
20645
20646         * dbxout.c (lastfile): Don't mark for PCH.
20647
20648         * ggc.h: Document PCH calls into memory managers.
20649
20650         2002-12-18  Geoffrey Keating  <geoffk@apple.com>
20651
20652         * doc/invoke.texi (Precompiled Headers): Document the
20653         directory form of PCH.
20654         * cppfiles.c (validate_pch): New function.
20655         (open_file_pch): Search suitably-named directories for PCH files.
20656
20657         2002-12-14  Geoffrey Keating  <geoffk@apple.com>
20658
20659         * doc/gty.texi (GTY Options): Document chain_next, chain_prev,
20660         reorder options.
20661         (Type Information): Mention that the information is also
20662         used to implement PCH.
20663         * doc/passes.texi (Passes): Improve documentation of
20664         language-specific files.
20665
20666         2002-12-11  Geoffrey Keating  <geoffk@apple.com>
20667
20668         * gengtype.c (struct write_types_data): Add reorder_note_routine field.
20669         (struct walk_type_data): Add reorder_fn field.
20670         (walk_type): Process 'reorder' option.
20671         (write_types_process_field): Reorder parameters to gt_pch_note_object,
20672         call reorder_note_routine.
20673         (write_func_for_structure): Reorder parameters to gt_pch_note_object.
20674         (ggc_wtd): Update for change to struct write_types_data.
20675         (pch_wtd): Likewise.
20676         * ggc.h (gt_pch_note_object): Reorder parameters.
20677         (gt_handle_reorder): New definition.
20678         (gt_pch_note_reorder): New prototype.
20679         * ggc-common.c (struct ptr_data): Add reorder_fn.
20680         (gt_pch_note_object): Reorder parameters.
20681         (gt_pch_note_reorder): New.
20682         (gt_pch_save): Call reorder_fn.
20683         * stringpool.c (gt_pch_n_S): Update for change to gt_pch_note_object.
20684
20685         * dbxout.c (cwd): Don't mark for PCH.
20686
20687         2002-12-09  Geoffrey Keating  <geoffk@apple.com>
20688
20689         * gengtype.c (finish_root_table): Fix some warnings.
20690         (write_root): Handle TYPE_STRING.
20691         * ggc.h (gt_ggc_m_S): Add prototype.
20692         * stringpool.c (gt_ggc_m_S): New function.
20693
20694         2002-11-30  Geoffrey Keating  <geoffk@apple.com>
20695
20696         * dwarf2out.c (dw2_string_counter): New.
20697         (AT_string_form): Use it.
20698         (same_dw_val_p): Update for removal of hashtable.h hash tables.
20699
20700         2002-11-22  Geoffrey Keating  <geoffk@apple.com>
20701
20702         * dbxout.c: Include gt-dbxout.h.
20703         (lastfile): Mark for PCH/GGC.
20704         (cwd): Likewise.
20705         (struct typeinfo): Likewise.
20706         (typevec): Likewise.
20707         (typevec_len): Likewise.
20708         (next_type_number): Likewise.
20709         (struct dbx_file): Likewise.
20710         (current_file): Likewise.
20711         (next_file_number): Likewise.
20712         (dbxout_init): Allocate typevec, struct dbx_file with GGC.
20713         (dbxout_start_source_file): Allocate struct dbx_file with GGC.
20714         (dbxout_end_source_file): Don't free struct dbx_file.
20715         (dbxout_type): Use GGC to allocate typevec.
20716         * Makefile.in (dbxout.o): Depend on gt-dbxout.h, $(GGC_H).
20717         (GTFILES): Add dbxout.c.
20718         (gt-dbxout.h): New rule.
20719
20720         * Makefile.in (c-pch.o): Add debug.h as dependency.
20721         * c-pch.c: Include debug.h.
20722         (pch_init): Call start_source_file to keep nesting right.
20723         (c_common_read_pch): Add orig_name parameter.  Call
20724         start_source_file debug hook.  Call end_source_file debug hook.
20725         * c-common.h (c_common_read_pch): Update prototype.
20726         * cpplib.h (struct cpp_callbacks): Add fourth field to read_pch
20727         callback.
20728         * cppfiles.c (struct include_file): Add new field `header_name'.
20729         (find_or_create_entry): Default it to `name'.
20730         (open_file_pch): Set it to the original header file searched for.
20731         (stack_include_file): Don't stack an empty buffer, just handle
20732         PCH files immediately.  Pass header_name field to read_pch callback.
20733
20734         2002-11-19  Geoffrey Keating  <geoffk@apple.com>
20735
20736         * function.c (funcdef_no): Mark to be saved in a PCH.
20737
20738         2002-11-15  Geoffrey Keating  <geoffk@apple.com>
20739
20740         * ggc-page.c (ggc_pch_read): Remove unused 'bmap_size'.
20741
20742         * cpppch.c (cpp_read_state): Correct size reallocated for 'defn'.
20743
20744         2002-11-14  Geoffrey Keating  <geoffk@apple.com>
20745
20746         * optabs.h (code_to_optab): Add GTY marker.
20747
20748         2002-11-13  Geoffrey Keating  <geoffk@apple.com>
20749
20750         * Makefile.in (GTFILES): Add cpplib.h.
20751         * c-common.h (struct c_common_identifier): Don't skip 'node' field.
20752         * c-decl.c (build_compound_literal): Don't use var_labelno.
20753         * cpplib.h (struct cpp_hashnode): Use gengtype to mark.
20754         * dwarf2asm.c (dw2_force_const_mem): Don't use const_labelno.
20755         * varasm.c (const_labelno): Use gengtype to mark.
20756         (var_labelno): Likewise.
20757         (in_section): Likewise.
20758         (in_named_name): Likewise.
20759         (struct in_named_entry): Likewise.
20760         (in_named_htab): Likewise.
20761         (set_named_section_flags): Use GGC to allocate struct in_named_entry.
20762         (init_varasm_once): Use GGC to allocate in_named_htab.
20763         * config/darwin.c (current_pic_label_num): Mark for PCH.
20764
20765         2002-11-11  Geoffrey Keating  <geoffk@apple.com>
20766
20767         * ggc-simple.c (init_ggc_pch): New stub procedure.
20768         (ggc_pch_count_object): Likewise.
20769         (ggc_pch_total_size): Likewise.
20770         (ggc_pch_this_base): Likewise.
20771         (ggc_pch_alloc_object): Likewise.
20772         (ggc_pch_prepare_write): Likewise.
20773         (ggc_pch_write_object): Likewise
20774         (ggc_pch_finish): Likewise.
20775         (ggc_pch_read): Likewise.
20776
20777         2002-11-08  Geoffrey Keating  <geoffk@apple.com>
20778
20779         * c-pch.c (c_common_write_pch): Write the macro definitions after
20780         the GCed data.
20781         (c_common_read_pch): Call cpp_prepare_state.  Restore the macro
20782         definitions after the GCed data.
20783         * cpplib.c (save_macros): New.
20784         (reset_ht): New.
20785         (cpp_write_pch_deps): Split out of cpp_write_pch.
20786         (cpp_write_pch_state): Split out of cpp_write_pch.
20787         (cpp_write_pch): Delete.
20788         (struct save_macro_data): Delete.
20789         (cpp_prepare_state): New.
20790         (cpp_read_state): Erase and restore initial macro definitions.
20791         * cpplib.h (struct save_macro_data): Forward-declare.
20792         (cpp_write_pch_deps): Prototype.
20793         (cpp_write_pch_state): Prototype.
20794         (cpp_write_pch): Delete prototype.
20795         (cpp_prepare_state): Prototype.
20796         (cpp_read_state): Add fourth argument.
20797
20798         2002-11-04  Geoffrey Keating  <geoffk@apple.com>
20799
20800         * gengtype.c (adjust_field_rtx_def): Don't use skip on valid fields.
20801         (write_array): Remove warning.
20802
20803         * gengtype.c (contains_scalar_p): New.
20804         (finish_root_table): Add the table to all languages, even if it's
20805         empty.
20806         (write_roots): Output gt_pch_scalar_rtab.
20807         * ggc-common.c (gt_pch_save): Write out scalars.
20808         (gt_pch_restore): Read scalars back.
20809
20810         * ggc-page.c (OBJECTS_IN_PAGE): New macro.
20811         (struct page_entry): Delete pch_page field.
20812         (ggc_recalculate_in_use_p): Use OBJECTS_IN_PAGE.
20813         (clear_marks): Likewise.
20814         (sweep_pages): Likewise.
20815         (poison_pages): Likewise.
20816         (ggc_print_statistics): Likewise.
20817         (ggc_pch_read): Don't free objects read from a PCH.
20818         Properly set up in_use_p and page_tails.
20819
20820         2002-10-25  Geoffrey Keating  <geoffk@apple.com>
20821
20822         * gengtype.c (struct write_types_data): New.
20823         (struct walk_type_data): Make `cookie' const; add extra
20824         prev_val item; add `orig_s' field.
20825         (walk_type): Update prev_val[3].
20826         (write_types_process_field): New.
20827         (write_func_for_structure): Take write_types_data structure.
20828         (write_types): New.
20829         (ggc_wtd): New.
20830         (pch_wtd): New.
20831         (write_types_local_process_field): New.
20832         (gc_mark_process_field): Delete.
20833         (write_local_func_for_structure): New.
20834         (gc_mark_func_name): Delete.
20835         (write_gc_types): Delete.
20836         (write_local): New.
20837         (finish_root_table): Don't include 'ggc_' in PFX.
20838         (write_root): Rename from write_root.  Fill pchw field of structures.
20839         (write_array): New.
20840         (write_roots): Rename from write_gc_roots.  Split out to write_array.
20841         Update to changes to other routines.  Write gt_pch_cache_rtab table.
20842         (main): Write PCH walking routines.
20843         * ggc-common.c: Include toplev.h, sys/mman.h.
20844         (ggc_mark_roots): For cache hashtables, also mark the hash table
20845         and the array of entries.
20846         (saving_htab): New.
20847         (struct ptr_data): New.
20848         (POINTER_HASH): New.
20849         (gt_pch_note_object): New.
20850         (saving_htab_hash): New.
20851         (saving_htab_eq): New.
20852         (struct traversal_state): New.
20853         (call_count): New.
20854         (call_alloc): New.
20855         (compare_ptr_data): New.
20856         (relocate_ptrs): New.
20857         (write_pch_globals): New.
20858         (struct mmap_info): New.
20859         (gt_pch_save): New.
20860         (gt_pch_restore): New.
20861         * ggc-page.c (ROUND_UP_VALUE): New.
20862         (ROUND_UP): New.
20863         (struct page_entry): Add field `pch_page'.
20864         (init_ggc): Use ROUND_UP.
20865         (struct ggc_pch_data): Declare.
20866         (init_ggc_pch): New.
20867         (ggc_pch_count_object): New.
20868         (ggc_pch_total_size): New.
20869         (ggc_pch_this_base): New.
20870         (ggc_pch_alloc_object): New.
20871         (ggc_pch_prepare_write): New.
20872         (ggc_pch_write_object): New.
20873         (ggc_pch_finish): New.
20874         (ggc_pch_read): New.
20875         * ggc.h (gt_pointer_operator): New.
20876         (gt_note_pointers): New.
20877         (gt_pch_note_object): New prototype.
20878         (gt_pointer_walker): New.
20879         (struct ggc_root_tab): Use gt_pointer_walker, add `pchw' field.
20880         (LAST_GGC_ROOT_TAB): Update.
20881         (gt_pch_cache_rtab): Declare.
20882         (gt_pch_scalar_rtab): Declare.
20883         (struct ggc_cache_tab): Use gt_pointer_walker, add `pchw' field.
20884         (LAST_GGC_CACHE_TAB): Update.
20885         (gt_pch_save_stringpool): Declare.
20886         (gt_pch_restore_stringpool): Declare.
20887         (gt_pch_p_S): Declare.
20888         (gt_pch_n_S): Declare.
20889         (struct ggc_pch_data): Forward-declare.
20890         (init_ggc_pch): Declare.
20891         (ggc_pch_count_object): Declare.
20892         (ggc_pch_total_size): Declare.
20893         (ggc_pch_this_base): Declare.
20894         (ggc_pch_alloc_object): Declare.
20895         (ggc_pch_prepare_write): Declare.
20896         (ggc_pch_write_object): Declare.
20897         (ggc_pch_finish): Declare.
20898         (ggc_pch_read): Declare.
20899         (gt_pch_save): Declare.
20900         (gt_pch_restore): Declare.
20901         * fold-const.c (size_int_type_wide): Allocate size_htab using GGC.
20902         * emit-rtl.c (init_emit_once): Allocate const_int_htab,
20903         const_double_htab, mem_attrs_htab using GGC.
20904         * c-pch.c: Include ggc.h.
20905         (pch_init): Allow reading PCH file back.
20906         (c_common_write_pch): Call gt_pch_save.
20907         (c_common_read_pch): Call gt_pch_restore.
20908         * c-parse.in (init_reswords): Delete now-untrue comment.
20909         Allocate ridpointers using GGC.
20910         * c-objc-common.c (c_objc_common_finish_file): Write PCH before
20911         calling expand_deferred_fns.
20912         * c-common.h (ridpointers): Mark for GTY machinery.
20913         * Makefile.in (stringpool.o): Update dependencies.
20914         (c-pch.o): Update dependencies.
20915         (ggc-common.o): Update dependencies.
20916         * stringpool.c: Include gt-stringpool.h.
20917         (gt_pch_p_S): New.
20918         (gt_pch_n_S): New.
20919         (struct string_pool_data): New.
20920         (spd): New.
20921         (gt_pch_save_stringpool): New.
20922         (gt_pch_restore_stringpool): New.
20923         * tree.c (init_ttree): Make type_hash_table allocated using GC.
20924
20925         2002-10-04  Geoffrey Keating  <geoffk@apple.com>
20926
20927         * gengtype.c (adjust_field_rtx_def): Don't pass size_t to printf.
20928         (output_mangled_typename): Don't pass size_t to printf.
20929
20930         * tree.h (union tree_type_symtab): Add tag to `address' field.
20931         (union tree_decl_u2): Add tag to 'i' field.
20932         * varasm.c (union rtx_const_un): Add tags to all fields.
20933         * gengtype.c (struct walk_type_data): New.
20934         (output_escaped_param): Take struct walk_type_data parameter.
20935         (write_gc_structure_fields): Delete.
20936         (walk_type): New.
20937         (write_gc_marker_routine_for_structure): Delete.
20938         (write_func_for_structure): New.
20939         (gc_mark_process_field): New.
20940         (gc_mark_func_name): New.
20941         (gc_counter): Delete.
20942         (write_gc_types): Use write_func_for_structure.
20943         (write_gc_roots): Use walk_type.
20944
20945         2002-10-02  Geoffrey Keating  <geoffk@apple.com>
20946
20947         * ggc-common.c (ggc_mark_roots): Delete 'x'.
20948         (ggc_splay_dont_free): Fix warning about unused 'x'.
20949         (ggc_print_common_statistics): Remove warnings.
20950
20951         2002-10-01  Mike Stump  <mrs@apple.com>
20952
20953         * ggc-common.c (ggc_splay_alloc): Actually return the allocated area.
20954         * gengtype.c (write_gc_structure_fields): Handle param[digit]_is.
20955
20956         2002-09-01  Geoffrey Keating  <geoffk@redhat.com>
20957             Catherine Moore  <clm@redhat.com>
20958
20959         * Makefile (c-pch.o): Update dependencies.
20960         (LIBCPP_OBJS): Add cpppch.o.
20961         (cpppch.o): New.
20962         * c-common.c (c_common_init): Don't call pch_init here.
20963         * c-common.h (c_common_read_pch): Update prototype.
20964         * c-lex.c (c_common_parse_file): Call pch_init here.
20965         * c-opts.c (COMMAND_LINE_OPTIONS): Add -Winvalid-pch, -fpch-deps.
20966         (c_common_decode_option): Handle them.
20967         * c-pch.c: Include c-pragma.h.
20968         (save_asm_offset): Delete.
20969         (pch_init): Move contents of save_asm_offset into here, call
20970         cpp_save_state.
20971         (c_common_write_pch): Call cpp_write_pch.
20972         (c_common_valid_pch): Warn only when -Winvalid-pch.  Call
20973         cpp_valid_state.
20974         (c_common_read_pch): Add NAME parameter.  Call cpp_read_state.
20975         * cppfiles.c (stack_include_file): Update for change to
20976         parameters of cb.read_pch.
20977         * cpphash.h (struct cpp_reader): Add `savedstate' field.
20978         * cpplib.h (struct cpp_options): Add `warn_invalid_pch' and
20979         `restore_pch_deps' fields.
20980         (struct cpp_callbacks): Add NAME parameter to `read_pch'.
20981         (cpp_save_state): Prototype.
20982         (cpp_write_pch): Prototype.
20983         (cpp_valid_state): Prototype.
20984         (cpp_read_state): Prototype.
20985         * cpppch.c: New file.
20986         * flags.h (version_flag): Remove prototype.
20987         * mkdeps.c (deps_save): New.
20988         (deps_restore): New.
20989         * mkdeps.h (deps_save): Prototype.
20990         (deps_restore): Prototype.
20991         * toplev.c (late_init_hook): Delete.
20992         (version_flag): Make static again.
20993         (compile_file): Don't call late_init_hook.
20994         * toplev.h (late_init_hook): Delete.
20995         * doc/cppopts.texi: Document -fpch-deps.
20996         * doc/invoke.texi (Warning Options): Document -Winvalid-pch.
20997
20998         2002-08-27  Geoffrey Keating  <geoffk@redhat.com>
20999
21000         * c-pch.c (c_common_write_pch): Rename from c_write_pch, change
21001         callers.
21002         (c_common_valid_pch): Rename from c_valid_pch, change callers.
21003         (c_common_read_pch): Rename from c_read_pch, change callers.
21004
21005         * c-opts.c (COMMAND_LINE_OPTIONS): Allow -output-pch= to have
21006         a space between it and its argument.
21007
21008         2002-08-24  Geoffrey Keating  <geoffk@redhat.com>
21009
21010         * c-pch.c: New file.
21011         * toplev.h (late_init_hook): Declare.
21012         * toplev.c (late_init_hook): Define.
21013         (version_flag): Make globally visible.
21014         (compile_file): Call late_init_hook.
21015         (init_asm_output): Make output file seekable.
21016         * gcc.c (default_compilers): Update c-header rule.
21017         * flags.h (version_flag): Declare.
21018         * cpplib.h (struct cpp_callbacks): Add 'valid_pch' and 'read_pch'
21019         fields.
21020         * cppfiles.c (struct include_file): Add 'pch' field.
21021         (INCLUDE_PCH_P): New.
21022         (open_file_pch): New.
21023         (stack_include_file): Handle PCH files specially.
21024         (find_include_file): Call open_file_pch instead of open_file.
21025         (_cpp_read_file): Explain why open_file is used instead of
21026         open_file_pch.
21027         * c-opts.c (c_common_decode_option): Correct OPT__output_pch case.
21028         * c-objc-common.c (c_objc_common_finish_file): Call c_write_pch.
21029         * c-lex.c (init_c_lex): Set valid_pch and read_pch fields
21030         in cpplib callbacks.
21031         * c-common.c (pch_file): Correct comment.
21032         (allow_pch): Define.
21033         (c_common_init): Call pch_init.
21034         * c-common.h (allow_pch): Declare.
21035         (pch_init): Declare.
21036         (c_valid_pch): Declare.
21037         (c_read_pch): Declare.
21038         (c_write_pch): Declare.
21039         * Makefile.in (c-pch.o): New.
21040         (C_AND_OBJC_OBJS): Add c-pch.o.
21041         * doc/invoke.texi (Precompiled Headers): Add index entries,
21042         complete truncated paragraph.
21043
21044         2002-08-17  Geoffrey Keating  <geoffk@redhat.com>
21045
21046         * c-common.c: (pch_file): Define.
21047         * c-common.h (pch_file): Declare.
21048         * c-opts.c (COMMAND_LINE_OPTIONS): Add --output-pch=.
21049         (missing_arg): Require --output-pch= to have an argument.
21050         (c_common_decode_option): Handle --output-pch=.
21051         * gcc.c: Document new %V.
21052         (default_compilers): Handle compiling C header files.
21053         (do_spec_1): Implement %V.
21054         (main): Handle "gcc foo.h" without trying to run linker.
21055         * doc/invoke.texi (Invoking GCC): Add new menu item for PCH.
21056         (Overall Options): Document what the driver does with header files,
21057         document new -x option possibilities.
21058         (Invoking G++): More documentation for PCH.
21059         (Precompiled Headers): New.
21060
21061         2002-08-09  Geoffrey Keating  <geoffk@redhat.com>
21062
21063         * ggc.h: Don't include varray.h.  Rearrange functions to be more
21064         organized.
21065         (ggc_add_root): Delete.
21066         (ggc_mark_rtx): Delete.
21067         (ggc_mark_tree): Delete.
21068         (struct ggc_statistics): Remove contents.
21069         * ggc-common.c: Remove unneeded includes.
21070         (struct ggc_root): Delete.
21071         (roots): Delete.
21072         (ggc_add_root): Delete.
21073         (ggc_mark_roots): Don't mark `roots'.  Call ggc_mark_stringpool.
21074         (ggc_print_common_statistics): Remove most of the contents.
21075         * Makefile.in (GGC_H): No longer uses varray.h.
21076         (ggc-common.o): Update dependencies.
21077         (c-parse.o): Add varray.h to dependencies.
21078         (c-common.o): Add varray.h.
21079         * stringpool.c (mark_ident): Use mangled name for tree marker routine.
21080         (mark_ident_hash): Rename to ggc_mark_stringpool.
21081         (init_stringpool): Don't use ggc_add_root.
21082         * c-parse.in: Include varray.h.
21083         * c-common.c: Include varray.h.
21084         * objc/Make-lang.in (objc-act.o): Add varray.h.
21085         * objc/objc-act.c: Include varray.h.
21086
21087         2002-07-25  Geoffrey Keating  <geoffk@redhat.com>
21088
21089         * dwarf2out.c (dw_cfi_oprnd2_desc): Fix ISO-only function definition.
21090         (dw_cfi_oprnd1_desc): Likewise.
21091
21092         2002-07-17  Geoffrey Keating  <geoffk@redhat.com>
21093
21094         * config/alpha/alpha.c (struct alpha_links): Use gengtype to mark;
21095         move out of ifdef.
21096         (alpha_links): Use gengtype to mark; move out of ifdef.
21097         (mark_alpha_links_node): Delete.
21098         (mark_alpha_links): Delete.
21099         (alpha_need_linkage): Use GGC to allocate splay tree, struct
21100         alpha_links, strings.  Don't use ggc_add_root.
21101         * ggc-common.c (ggc_splay_alloc): New.
21102         (ggc_splay_dont_free): New.
21103         * ggc.h (ggc_mark_rtx): Update for changed name mangling.
21104         (ggc_mark_tree): Likewise.
21105         (splay_tree_new_ggc): New.
21106         (ggc_splay_alloc): Declare.
21107         (ggc_splay_dont_free): Declare.
21108         * dwarf2asm.c: Include gt-dwarf2asm.h.
21109         (mark_indirect_pool_entry): Delete.
21110         (mark_indirect_pool): Delete.
21111         (indirect_pool): Use gengtype to mark.
21112         (dw2_force_const_mem): Don't use ggc_add_root.
21113         * Makefile.in (dwarf2asm.o): Depend on gt-dwarf2asm.h.
21114         (GTFILES): Add SPLAY_TREE_H, dwarf2asm.c.
21115         (gt-dwarf2asm.h): Depend on s-gtype.
21116
21117         2002-07-08  Geoffrey Keating  <geoffk@redhat.com>
21118
21119         * tree.h (union tree_type_symtab): Mark `die' field.
21120         * Makefile.in (dwarf2out.o): Update dependencies.
21121         * dwarf2out.c: Use GGC to allocate all structures.  Convert to htab_t
21122         hash tables.
21123         (dw_cfi_oprnd1_desc): New function.
21124         (dw_cfi_oprnd2_desc): New function.
21125         (indirect_string_alloc): Delete.
21126         (debug_str_do_hash): New function.
21127         (debug_str_eq): New function.
21128         (mark_limbo_die_list): Delete.
21129         (dwarf2out_init): Don't call ggc_add_root.
21130
21131 2003-01-09  Vladimir Makarov  <vmakarov@redhat.com>
21132
21133         The following changes are merged from itanium-sched-branch:
21134
21135         2003-01-08  David Edelsohn  <edelsohn@gnu.org>
21136
21137         * doc/md.texi: Clarify assignment of units to automata description.
21138
21139         2003-01-08  Vladimir Makarov  <vmakarov@redhat.com>
21140
21141         * genautomata.c (unit_decl): Remove members
21142         `the_same_automaton_unit' and
21143         `the_same_automaton_message_reported_p'.
21144         (process_unit_to_form_the_same_automaton_unit_lists,
21145         form_the_same_automaton_unit_lists_from_regexp,
21146         form_the_same_automaton_unit_lists, the_same_automaton_lists):
21147         Remove them.
21148         (annotation_message_reported_p): New global variable.
21149         (check_unit_distribution_in_reserv,
21150         check_regexp_units_distribution): New functions.
21151         (check_unit_distributions_to_automata): Rewrite it.
21152
21153         2003-01-04  Vladimir Makarov  <vmakarov@redhat.com>
21154
21155         * genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
21156         Use continue instead of break if cycle is too big.
21157
21158         2002-12-20  Vladimir Makarov  <vmakarov@redhat.com>
21159
21160         * genautomata.c (check_unit_distributions_to_automata): Output at
21161         most one message for a unit.
21162         (process_unit_to_form_the_same_automaton_unit_lists): Check
21163         automaton of units instead of units themself.
21164
21165         * doc/md.texi: Describe the constraint about assigning unit to
21166         automata.
21167
21168         2002-12-20  Jan Hubicka  <jH@suse.cz>
21169                     Vladimir Makarov  <vmakarov@redhat.com>
21170
21171         * genautomata.c (unit_decl): Add new members `min_occ_cycle_num'
21172         and `in_set_p'.
21173         (gen_cpu_unit): Initialize the new members.
21174         (process_regexp_cycles): Calculate minimal finish cycle too.  Set
21175         up `min_occ_cycle_num'.
21176         (evaluate_max_reserv_cycles): Change the function call.
21177         (CLEAR_BIT): New macro.
21178         (states_union, state_shift): Use the mask.
21179         (initiate_excl_sets, form_reserv_sets_list): Set up `in_set_p'.
21180         (form_reservs_matter): New function.
21181         (make_automaton): Call the function and use the mask.
21182         (estimate_one_automaton_bound): Take `min_occ_cycle_num' into
21183         account.
21184
21185         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
21186
21187         * config/ia64/itanium2.md (lfetch): Change the insn reservation.
21188
21189         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
21190
21191         * config/ia64/ia64.c (bundling): Try to insert 2 nops for M insn
21192         for Itanium.
21193
21194         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
21195
21196         * config/ia64/ia64.c (ia64_override_options): Make itanium2 as
21197         default cpu.
21198
21199         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
21200                 2002-10-31  Dale Johannesen <dalej@apple.com>
21201
21202         * haifa-sched.c (find_set_reg_weight): New function.
21203         (find_insn_reg_weight): Use the new function.
21204         (schedule_block): Do sorting ready queue always
21205         after insn issue.
21206
21207         2002-11-27  Vladimir Makarov  <vmakarov@redhat.com>
21208
21209         * config/ia64/ia64.c (bundling): Use MFI template instead of MLX.
21210
21211         2002-11-19  Vladimir Makarov  <vmakarov@redhat.com>
21212
21213         * haifa-sched.c (choice_entry): New structure.
21214         (choice_stack, cycle_issued_insns): New variables.
21215         (max_issue): Rewrite it.
21216         (choose_ready): Set up ready_try for unknown insns too.
21217         (schedule_block): Allocate and free choice_stack.  Set up
21218         and modify cycle_issued_insns.
21219
21220         * config/ia64/ia64.c (issue_nops_and_insn): Combine insn issue
21221         with and without filling the bundle.
21222         (bundling): Combine calls of issue_nops_and_insn.
21223
21224         2002-10-17  Vladimir Makarov  <vmakarov@redhat.com>
21225
21226         * config/ia64/itanium1.md: New file.
21227
21228         * config/ia64/itanium2.md: New file.
21229
21230         * config/ia64/ia64.md: Move DFA descriptions into the new files.
21231         Remove the old pipeline description.
21232
21233         * config/ia64/ia64.c (ia64_override_options): Add aliases of
21234         itanium processor names.
21235
21236         2002-10-16  Vladimir Makarov  <vmakarov@redhat.com>
21237
21238         * config/ia64/ia64.c (bundling): Print states for Itanium2 too.
21239         (ia64_reorg):  Set up queried unit codes for Itanium2 too.
21240
21241         * config/ia64/ia64.md: Add descriptions for Itanium2.
21242
21243         2002-10-08  Vladimir Makarov  <vmakarov@redhat.com>
21244
21245         * config/ia64/ia64.h (processor_type): New enumeration.
21246         (ia64_tune, ia64_tune_string): New external declarations.
21247         (TARGET_OPTIONS): Add option `tune='.
21248
21249         * config/ia64/ia64.c (ia64_tune, ia64_tune_string): New global
21250         variables.
21251         (ia64_override_options): Set up `ia64_tune'.
21252         (ia64_sched_reorder2): Set up `clocks' only for Itanium.
21253         (ia64_dfa_new_cycle): Set up `add_cycles' only for Itanium.
21254         (bundling): Add nops for MM-insns only for Itanium.
21255         (ia64_reorg): Allocate and free `clocks' and `add_cycles' only for
21256         Itanium.
21257
21258         * config/ia64/ia64.md (cpu): New attribute.
21259         (DFA description): Enable it only for Itanium.
21260
21261         2002-10-08  Vladimir Makarov  <vmakarov@redhat.com>
21262                     Richard Henderson  <rth@redhat.com>
21263
21264         * config/ia64/ia64.h (MASK_TUNE_STOP_BITS): Rename it to
21265         MASK_EARLY_STOP_BITS.
21266         (TARGET_TUNE_STOP_BITS): Rename it to TARGET_EARLY_STOP_BITS.
21267         (TARGET_SWITCHES): Rename option `tune-stop-bits' to
21268         `early-stop-bits'.
21269
21270         * config/ia64/ia64.c (ia64_dfa_new_cycle,
21271         final_emit_insn_group_barriers): Use TARGET_EARLY_STOP_BITS
21272         instead of TARGET_TUNE_STOP_BITS.
21273
21274         * doc/invoke.texi: Rename option `-mtune-stop-bits' to
21275         `-mearly-stop-bits'.
21276
21277         * config/ia64/ia64.c (automata_option "v"): Comment it.
21278
21279         2002-10-07  Vladimir Makarov  <vmakarov@redhat.com>
21280
21281         * config/ia64/ia64.h (MASK_TUNE_STOP_BITS, TARGET_TUNE_STOP_BITS):
21282         New macros.
21283         (TARGET_SWITCHES): Add entries for the new option.
21284
21285         * config/ia64/ia64.c (dfa_stop_insn, last_scheduled_insn, rtx
21286         dfa_pre_cycle_insn, ia64_nop): Don't make them as roots for GC.
21287         (stops_p, stop_before_p, clocks_length, clocks, add_cycles): New
21288         global variables.
21289         (ia64_sched_reorder2): Set up `clocks'.
21290         (ia64_variable_issue): Set up `stops_p' and reset `stop_before_p'.
21291         (ia64_dfa_new_cycle): Set up add_cycle.  Permit sorting ready
21292         queue when TARGET_TUNE_STOP_BITS.
21293         (bundling): Insert additional nops for MM-insns.
21294         (final_emit_insn_group_barriers): Add insertion of stop bits
21295         according `stops_p'.
21296         (ia64_reorg): Initiate the new varibales.
21297
21298         * doc/invoke.texi: Add description of option `-mtune-stop-bits'.
21299
21300         2002-10-02  Vladimir Makarov  <vmakarov@redhat.com>
21301
21302         * haifa-sched.c (schedule_block): Modify INSN_TICK of depended
21303         insns at the end of block insn scheduling.
21304
21305         2002-09-30  Vladimir Makarov  <vmakarov@redhat.com>
21306
21307         * sched-deps.c (remove_dependence, group_leader): Remove it.
21308         (add_dependence): Add dependence to group leader to.
21309         (set_sched_group_p): Add dependence to the first insn of the
21310         schedule group too.
21311         (sched_analyze_insn): Make dependence to jump as anti-dependence.
21312         Change true dependence by anti-dependence when
21313         `reg_pending_barrier'.
21314
21315         * sched-rgn.c (init_ready_list, can_schedule_ready_p,
21316         add_branch_dependences): Ignore schedule groups.
21317
21318         * sched-ebb.c (init_ready_list): Ditto.
21319
21320         * (move_insn, set_priorities): Ditto.
21321
21322         * config/ia64/ia64.c (ia64_sched_init): Check that schedule group
21323         flag is clear after reload.
21324         (adjust_cost): Change cost only for output dependencies.
21325
21326         * config/ia64/ia64.md: Add more insns into bypass for MM-insns.
21327
21328         2002-09-26  Vladimir Makarov  <vmakarov@redhat.com>
21329
21330         * Makefile.in (sched-ebb.o): Add `$(TARGET_H)' to the entry.
21331
21332         * target.h (gcc_target): Add member
21333         `dependencies_evaluation_hook'.
21334
21335         * target-def.h (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK): New
21336         macro.
21337         (TARGET_SCHED): Add initiatialization of the new member.
21338
21339         * sched-ebb.c: Include `target.h'.
21340         (schedule_ebb): Call `dependencies_evaluation_hook'.
21341
21342         * sched-rgn.c (schedule_region): Call
21343         `dependencies_evaluation_hook'.
21344
21345         * config/ia64/ia64.c (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
21346         New macro.
21347         (ia64_dependencies_evaluation_hook): New function.
21348
21349         * doc/tm.texi (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
21350         Describe the new hook.
21351
21352         2002-09-25  Vladimir Makarov  <vmakarov@redhat.com>
21353
21354         * target.h (gcc_target): Add members
21355         `first_cycle_multipass_dfa_lookahead_guard' and `dfa_new_cycle'.
21356
21357         * target-def.h (TARGET_SCHED_DFA_NEW_CYCLE,
21358         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD): New
21359         macros.
21360         (TARGET_SCHED): Add initiatialization of the new members.
21361
21362         * haifa-sched.c (schedule_insn): Update last_clock_var for the 1st
21363         insn scheduling too.
21364         (choose_ready): Use `first_cycle_multipass_dfa_lookahead_guard' to
21365         initialize `ready_try'.
21366         (schedule_block): Use `dfa_new_cycle'.  Sort `ready' only unless
21367         `dfa_new_cycle' says not to do it.
21368
21369         * config/ia64/ia64.md: Add DFA Itanium 1 description for insn
21370         bundling.
21371
21372         * config/ia64/ia64.h (CPU_UNITS_QUERY): New macro.
21373
21374         * config/ia64/ia64.c: Include `hashtab.h'.
21375         (ia64_first_cycle_multipass_dfa_lookahead_guard,
21376         ia64_dfa_new_cycle, final_emit_insn_group_barriers,
21377         ia64_dfa_sched_reorder, get_free_bundle_state, free_bundle_state,
21378         initiate_bundle_states, finish_bundle_states, bundle_state_hash,
21379         bundle_state_eq_p, insert_bundle_state,
21380         initiate_bundle_state_table, finish_bundle_state_table,
21381         try_issue_nops, try_issue_insn, issue_nops_and_insn, get_max_pos,
21382         get_template, get_next_important_insn, bundling): New functions.
21383         (ia64_internal_sched_reorder): Remove it.
21384         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
21385         TARGET_SCHED_DFA_NEW_CYCLE): New macros.
21386         (ia64_safe_itanium_requires_unit0): Remove it.
21387         (group_barrier_needed_p): Place group barrier right before a real
21388         insn.
21389         (bundle, ia64_packet, NR_PACKETS, type_names, packets, packets):
21390         Remove them.
21391         (bundle_name): New variable.
21392         (_0mii_, _0mmi_, _0mfi_, _0mmf_, _0bbb_, _0mbb_, _0mib_, _0mmb_,
21393         _0mfb_, _0mlx_, _1mii_, _1mmi_, _1mfi_, _1mmf_, _1bbb_, _1mbb_,
21394         _1mib_, _1mmb_, _1mfb_, _1mlx_, pos_1, pos_2, pos_3, pos_4, pos_5,
21395         pos_6, dfa_stop_insn, last_scheduled_insn, dfa_state_size,
21396         temp_dfa_state, prev_cycle_state): New global variables.
21397         (insn_matches_slot, maybe_rotate, finish_last_head,
21398         rotate_one_bundle, rotate_one_bundles, nop_cycles_until,
21399         cycle_end_fill_slots, packet_matches_p, get_split, find_best_insn,
21400         find_best_packet, itanium_reorder, dump_current_packet,
21401         schedule_stop, gen_nop_type, ia64_emit_nops): Remove them.
21402         (sched_data, sched_ready, sched_types): Remove them.
21403         (ia64_sched_init): Initiate only `last_scheduled_insn' and call
21404         `init_insn_group_barriers'.
21405         (ia64_sched_reorder, ia64_sched_reorder2): Call
21406         ia64_dfa_sched_reorder.
21407         (ia64_variable_issue): Rewrite it.
21408         (bundle_state): New structure.
21409         (index_to_bundle_states, bundle_states_num,
21410         allocated_bundle_states_chain, free_bundle_state_chain): New
21411         global variables.
21412         (ia64_sched_finish): Add stop bits and call `bundling' after the
21413         2nd insn scheduling.
21414         (ia64_use_dfa_pipeline_interface): Return zero always.
21415         (ia64_first_cycle_multipass_dfa_lookahead): Return 6 for the 2nd
21416         insn scheduling.
21417         (ia64_init_dfa_pre_cycle_insn): Initialize `dfa_state_size',
21418         `temp_dfa_state', `prev_cycle_state', and `dfa_stop_insn'.
21419         (ia64_reorg): Add bundling insns.
21420
21421         * doc/tm.texi
21422         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
21423         TARGET_SCHED_DFA_NEW_CYCLE): Describe the new hooks.
21424
21425         2002-09-23  Vladimir Makarov  <vmakarov@redhat.com>
21426
21427         * config/ia64/ia64.md: Add Itanium1 DFA description.
21428         (itanium_class): Add `nop' and `pre_cycle'.  Add
21429         define_function_unit for `nop'.
21430         (nop): Change attribute `itanium_class'.
21431         (pre_cycle): New define_insn.
21432
21433         * config/ia64/ia64-protos.h (bundling_p): New external variable.
21434         (ia64_st_address_bypass_p, ia64_ld_address_bypass_p,
21435         ia64_produce_address_p): New function prototypes.
21436
21437         * config/ia64/ia64.c (bundling_p): New global variable.
21438         (ia64_use_dfa_pipeline_interface,
21439         ia64_first_cycle_multipass_dfa_lookahead,
21440         ia64_init_dfa_pre_cycle_insn, ia64_dfa_pre_cycle_insn): New
21441         functions.
21442         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
21443         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
21444         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
21445         TARGET_SCHED_DFA_PRE_CYCLE_INSN): New macros.
21446         (ia64_sched_init, ia64_sched_reorder, ia64_sched_reorder2,
21447         ia64_variable_issue, ia64_sched_finish): Do nothing before reload.
21448         (dfa_pre_cycle_insn): New variable.
21449
21450         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
21451
21452         * rtl.def (FINAL_PRESENCE_SET, FINAL_ABSENCE_SET): New
21453         constructions.
21454
21455         * genattrtab.h (gen_final_presence_set, gen_final_absence_set):
21456         New function prototypes.
21457
21458         * genattrtab.c (main): Process the new constructions.
21459
21460         * genautomata.c (gen_presence_absence_set,
21461         process_presence_absence_names, process_presence_absence_patterns,
21462         add_presence_absence, check_absence_pattern_sets): Add parameter
21463         `final_p'.
21464         (unit_decl): Add new members `final_presence_list' and
21465         `final_absence_list'.
21466         (unit_pattern_rel_decl): Add new member `final_p'.
21467         (gen_final_presence_set, gen_final_absence_set): New functions.
21468         (process_decls): Use member `final_p'.
21469         (temp_reserv): New global variable.
21470         (reserv_sets_are_intersected): Add processing `final_presence_set'
21471         and `final_absence_set'.
21472         (initiate_states): Allocate `temp_reserv'.
21473         (unit_final_presence_set_table, unit_final_absence_set_table): New
21474         gloabal variables.
21475         (initiate_presence_absence_pattern_sets): Initiate them.
21476         (NDFA_to_DFA): Fix typo.
21477         (output_description): Output `final_presence_set' and
21478         `final_absence_set'.
21479
21480         * doc/md.texi (final_presence_set, final_absence_set): Describe
21481         them.
21482
21483         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
21484
21485         * genautomata.c (transform_3): Process a missing case (nothing on
21486         unit place).
21487
21488         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
21489
21490         * rtl.def (DEFINE_QUERY_CPU_UNIT, AUTOMATA_OPTION): Change
21491         comments about queried units and the minimization.
21492
21493         * doc/md.texi: Ditto.
21494
21495         * genautomata.c (create_composed_state): Return nonzero if the new
21496         state has been created.
21497         (first_cycle_unit_presence): New function.
21498         (state_is_differed): Add new parameter.  Use the new function.
21499         Take queried units into account.
21500         (partition_equiv_class): Pass additional parameter to
21501         `state_is_differed'.
21502         (merge_states): Process composed states too.
21503         (build_automaton, create_automata, output_min_issue_delay_table,
21504         output_tables, output_statistics): Output more information.
21505         (output_reserved_units_table): Use function
21506         `first_cycle_unit_presence'.
21507         (output_tables): Output table of queried units even if the
21508         minimization is switched on.
21509         (write_automata): Output code for querying units even if the
21510         minimization is switched on.
21511
21512         2002-09-19  Vladimir Makarov  <vmakarov@redhat.com>
21513
21514         * rtl.def (PRESENCE_SET, ABSENCE_SET): Add comments about extended
21515         syntax of the constructions.
21516
21517         * doc/md.texi (PRESENCE_SET, ABSENCE_SET): Add description of
21518         extended syntax of the constructions.
21519
21520         * genautomata.c (unit_rel_decl): Rename it to
21521         `unit_pattern_rel_decl'.
21522         (pattern_set_el, pattern_reserv): New structures.
21523         (pattern_set_el_t, pattern_reserv_t): New types.
21524         (gen_presence_absence_set): New function.
21525         (process_presence_absence): Remove it.
21526         (process_presence_absence_names,
21527         process_presence_absence_patterns): New functions.
21528         (get_presence_absence_set): Remove it.
21529         (initiate_presence_absence_sets): Rename it on
21530         `initiate_presence_absence_pattern_sets'.  Use new function
21531         `form_reserv_sets_list'.
21532         (form_reserv_sets_list, check_presence_pattern_sets,
21533         check_absence_pattern_sets, output_pattern_set_el_list): New
21534         functions.
21535         (unit_decl): Change types of members `presence_list' and
21536         `absence_list'.
21537         (unit_rel_decl): Rename member `names_num' to `all_names_num'.
21538         (decl): Change types of members `excl', `presence', and `absence'.
21539         (get_str_vect): Rename `par_flag' to `paren_p'.  Add null element
21540         at the end of the vector.
21541         (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set,
21542         gen_automaton, gen_regexp_repeat, gen_regexp_allof,
21543         gen_regexp_oneof, gen_regexp_sequence): Use boolean values.
21544         (gen_presence_set, gen_absence_set): Use new function
21545         `gen_presence_absence_set'.
21546         (add_presence_absence): Process `pattern_list' instead of
21547         `source_list'.
21548         (process_decls): USe new functions
21549         `process_presence_absence_names' and
21550         `process_presence_absence_patterns'.
21551         (reserv_sets_are_intersected): Use new function
21552         `check_presence_pattern_sets'.
21553         (presence_set, absence_set): Remove them.
21554         (unit_presence_set_table, unit_absence_set_table): New global
21555         variables.
21556         (output_description): Use new function
21557         `output_pattern_set_el_list'.
21558         (generate): Use `initiate_presence_absence_pattern_sets'.
21559
21560         2002-09-18  Vladimir Makarov  <vmakarov@redhat.com>
21561
21562         * genattr.c (main): Add output of prototype of new interface
21563         function `dfa_clean_insn_cache'.
21564
21565         * genautomata.c (output_dfa_clean_insn_cache_func): New function.
21566         (DFA_CLEAN_INSN_CACHE_FUNC_NAME): New macro.
21567         (output_dfa_start_func): Use function `dfa_clean_insn_cache' in
21568         the generated code.
21569         (write_automata): Call the new function.
21570
21571 2003-01-09  Jan Hubicka  <jh@suse.cz>
21572
21573         * i386.md (unit, prefix_0f, memory attributes): Hanlde sseicvt
21574         correctly.
21575
21576 2003-01-09  Paolo Carlini  <pcarlini@unitus.it>
21577
21578         * doc/tm.texi (EXTRA_ADDRESS_CONSTRAINT): Fix typo.
21579
21580 2003-01-09  J"orn Rennecke <joern.rennecke@superh.com>
21581
21582         * defaults.h (EXTRA_MEMORY_CONSTRAINT): Add STR argument.
21583         (EXTRA_ADDRESS_CONSTRAINT): Likewise.
21584         (CONSTRAINT_LEN): Provide default definition.
21585         (CONST_OK_FOR_CONSTRAINT_P): Likewise.
21586         (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Likewise.
21587         (EXTRA_CONSTRAINT_STR): Likewise.
21588         (REG_CLASS_FROM_CONSTRAINT): Define.
21589         * genoutput.c (check_constraint_len, constraint_len): New functions.
21590         (validate_insn_alternatives): Check CONSTRAINT_LEN for each
21591         constraint / modifier.
21592         (gen_insn): Call check_constraint_len.
21593         * local-alloc.c (block_alloc): Update to use new macros / pass
21594         second argument to EXTRA_{MEMORY,ADDRESS}_CONSTRAINT.
21595         * ra-build.c (handle_asm_insn): Likewise.
21596         * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
21597         (constrain_operands, peep2_find_free_register): Likewise.
21598         * regclass.c (record_operand_costs, record_reg_classes): Likewise.
21599         * regmove.c (find_matches): Likewise.
21600         * reload.c (push_secondary_reload, find_reloads): Likewise.
21601         (alternative_allows_memconst): Likewise.
21602         * reload1.c (maybe_fix_stack_asms): Likewise.
21603         (reload_cse_simplify_operands): Likewise.
21604         * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
21605         * doc/tm.texi (CONSTRAINT_LEN, REG_CLASS_FROM_CONSTRAINT): Document.
21606         (CONST_OK_FOR_CONSTRAINT_P): Likewise.
21607         (CONST_DOUBLE_OK_FOR_CONSTRAINT_P, EXTRA_CONSTRAINT_STR): Likewise.
21608         (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Add STR argument.
21609         * config/s390/s390.h (EXTRA_MEMORY_CONSTRAINT): Likewise.
21610
21611         * sh.h (OVERRIDE_OPTIONS): Allow first scheduling pass for SH5.
21612
21613 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
21614
21615         * config/h8300/h8300.md (*extzv_1_r_h8300): Correct the insn
21616         length.
21617         (*extzv_1_r_h8300hs): Likewise.
21618         (*extzv_1_r_inv_h8300): Likewise.
21619         (*extzv_1_r_inv_h8300hs): Likewise.
21620
21621 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
21622
21623         * config/h8300/h8300.h (PREDICATE_CODES): New.
21624
21625 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
21626
21627         * config/h8300/h8300.md (*addsi3_upper): New.
21628         (*iorsi3_shift): Likewise.
21629         (two splitters): Likewise.
21630         (*addsi3_shift): Likewise.
21631         (two splitters): Likewise.
21632
21633 2003-01-09  Josef Zlomek  <zlomj9am@artax.karlin.mff.cuni.cz>
21634
21635         * Makefile.in (optabs.o): Add dependency on basic-block.h.
21636         * basic-block.h (control_flow_insn_p): Fuction was exported.
21637         * cfgbuild.c (control_flow_insn_p): Fuction was made non-static.
21638         * optabs.c (emit_libcall_block): Emit REG_LIBCALL and REG_RETVAL
21639         notes only when the region is contained in a single basic block.
21640
21641 2003-01-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
21642
21643         PR inline-asm/8832
21644         * tree.h (expand_asm): New prototype.
21645         * stmt.c (expand_asm): Set the MEM_VOLATILE_P flag if instructed
21646         to do so.
21647         * c-semantics (genrtl_asm_stmt): Pass the RID_VOLATILE qualifier
21648         down to expand_asm.
21649         * c-typeck.c (simple_asm_stmt): Set the RID_VOLATILE qualifier.
21650         * rtlanal.c (volatile_insn_p) [ASM_INPUT]: Test the MEM_VOLATILE_P flag.
21651         (volatile_refs_p) [ASM_INPUT]: Likewise.
21652         (side_effects_p) [ASM_INPUT]: Likewise.
21653
21654 2003-01-09  Jan Hubicka  <jh@suse.cz>
21655
21656         * i386.md (*mul*): FIx constraints; remove confused comment; fix
21657         athlon_decode attributes
21658         (imul/k8 optimization peep2s): New.
21659
21660         * athlon.md (athlon_ssecmp*): Handle ssecomi as well.
21661         * i386.md (type attribute): Add ssecomi.
21662         (unit, memory, prefix attributes): Handle ssecomi.
21663         (cvt?2? patterns): Fix athlon_decode attribute
21664         (comi patterns): Set attribute to ssecomi.
21665
21666         PR target/8343
21667         * m68k.md (umulsidi, mulsidi expanders): Use register operand.
21668
21669 2003-01-09  Richard Sandiford  <rsandifo@redhat.com>
21670
21671         * config/mips/mips.h (PREDICATE_CODES): Add ADDRESSOF for predicates
21672         that match register_operands.
21673         * config/mips/mips.c (reg_or_0_operand, true_reg_or_0_operand): Make
21674         register_operand the default case.
21675
21676 2003-01-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
21677
21678         PR c/8032
21679         * c-typeck.c (process_init_element) [RECORD_TYPE]: For
21680         an empty element, do not advance the pointer to unfilled
21681         fields if there are pending initializers.
21682
21683 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
21684
21685         * Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
21686         (install-gcc-tooldir, install-cpp, installdirs,
21687         install-common, install-driver, install-info, install-man,
21688         install-headers, install-include-dir, install-headers-tar,
21689         install-headers-cpio, install-headers-cp, install-mkheaders,
21690         install-collect2, uninstall): Prepend $(DESTDIR) to
21691         destination paths in all (un)installation commands.
21692         (install-driver): Rewrite $(LN) commands to support DESTDIR
21693         with "ln" as well as with "ln -s".
21694         (installdirs): Simply use mkinstalldirs.
21695         (install-libgcc, install-multilib): Also pass DESTDIR.
21696         * mklibgcc.in: Prepend $(DESTDIR) to $(libsubdir) in the
21697         installation destination variable ldir.
21698         * config/alpha/t-osf4, config/arm/t-netbsd,
21699         config/ia64/t-hpux, config/mips/t-iris5-6,
21700         config/pa/t-hpux-shlib, config/rs6000/t-aix43,
21701         config/rs6000/t-aix52, config/t-slibgcc-elf-ver,
21702         config/t-slibgcc-sld: Prepend $$(DESTDIR) to $$(slibdir)
21703         in the definition of SHLIB_INSTALL.
21704         * config/arc/t-arc (install-multilib-arc): Prepend $(DESTDIR) to
21705         $(libsubdir) in the installation commands.
21706
21707 2003-01-08  Kaz Kojima  <kkojima@gcc.gnu.org>
21708
21709         * config/sh/sh.h (CASE_VECTOR_MODE): Use SImode for a
21710         non-optimizing compile.
21711         (ASM_OUTPUT_ADDR_VEC_ELT): Use .long for a non-optimizing
21712         compile.
21713
21714 2003-01-08  Douglas B Rupp  <rupp@gnat.com>
21715
21716         * config/i386/i386.c (ix86_attribute_table): Add new attributes
21717         ms_struct and gcc_struct.
21718         (ix86_handle_struct_attribute): New function.
21719         (ix86_ms_bitfield_layout_p): Update to take new attributes
21720         into account.
21721         * doc/extend.texi: Document new attributes.
21722         * testsuite/gcc.dg/bf-ms-attrib.c: New test.
21723
21724 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
21725
21726         PR optimization/8750
21727         * config/i386/i386.c (ix86_expand_prologue): Don't allow
21728         scheduling pass to move insns across __alloca call.
21729
21730 2003-01-08  Dale Johannesen  <dalej@apple.com>
21731
21732         * config/rs6000/rs6000.md:  Replace *store_multiple_string
21733         with *stmsi[3-8].
21734
21735 2003-01-08  Jeff Sturm  <jsturm@one-point.com>
21736
21737         PR target/9210
21738         * config/rs6000/rs6000.c (rs6000_elf_encode_section_info):
21739         Set SYMBOL_REF_FLAG on local data sym_ref.
21740
21741 2003-01-08  Dale Johannesen  <dalej@apple.com>
21742
21743         * function.c (assign_parms):  Don't set pretend_args_size if
21744           REG_PARM_STACK_SPACE.
21745           config/rs6000/rs6000.c (setup_incoming_varargs):  Don't set
21746           pretend_args_size.
21747
21748 2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
21749
21750         * gcc.hlp: Delete.
21751
21752 2003-01-09  Jan Hubicka  <jh@suse.cz>
21753
21754         * i386.c  (ix86_expand_int_addcc): Fix thinko.
21755
21756 2003-01-08  David Edelsohn  <edelsohn@gnu.org>
21757
21758         * config/rs6000/rs6000.h (FUNCTION_MODE): Always use SImode.
21759         * config/rs6000/rs6000.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine
21760         as hook_bool_tree_hwi_hwi_tree_true.
21761         (rs6000_emit_allocate_stack): Use TARGET_32BIT.
21762         (rs6000_emit_epilogue): Same.
21763         (rs6000_output_mi_thunk): Re-implement as RTL.
21764         * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Call
21765         xcoffout_declare_function if any debugging enabled.
21766
21767 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
21768
21769         * config.gcc (mipsisa32r2-*-elf*, mipsisa32r2el-*-elf*): New
21770         targets, to support MIPS32 Release 2 (MIPS32R2) configurations.
21771         * config/mips/mips.h (enum processor_type): Rename
21772         PROCESSOR_R4KC to PROCESSOR_4KC, PROCESSOR_R5KC to
21773         PROCESSOR_5KC, and PROCESSOR_R20KC to PROCESSOR_20KC.
21774         Add PROCESSOR_M4K.
21775         (TARGET_MIPS4KC, TARGET_MIPS5KC): Update for the renaming.
21776         (ISA_MIPS32R2): New define.
21777         (GENERATE_MULT3_SI, ISA_HAS_CONDMOVE, ISA_HAS_8CC)
21778         (ISA_HAS_MADD_MSUB, ISA_HAS_CLZ_CLO)
21779         (ISA_HAS_PREFETCH): Add support for MIPS32R2.
21780         (MIPS_ISA_DEFAULT): Likewise.  Also, fix indentation.
21781         (TARGET_CPU_CPP_BUILTINS): Add support for MIPS32R2.  Add new
21782         predefine __mips_isa_rev for MIPS32, MIPS32R2, and MIPS64.
21783         (ISA_HAS_ROTR_SI): Add support for MIPS32R2, and avoid if
21784         compiling MIPS16 code.
21785         (ISA_HAS_ROTR_DI): Do not use if compiling MIPS16 code, and fix
21786         comment.
21787         (ISA_HAS_SEB_SEH): New define.
21788         (ASM_SPEC, LINK_SPEC): Pass -mips32r2 to assembler and linker.
21789         * config/mips/mips.c (mips_cpu_info_table): Adjust for enum
21790         processor_type value renaming.  Add support for MIPS32R2.
21791         Clean up comments, and move "sb1" entry with other MIPS64 CPU
21792         entries.
21793         (override_options): Reimplement -mipsN option handling so that
21794         it will work correctly for -mips32r2.  Avoid branch-likely
21795         instructions on MIPS32R2.
21796         * config/mips/mips.md (mulsi3_mult3): Add support for MIPS32R2.
21797         (extendhisi2): Use extendhisi2_hw if ISA_HAS_SEB_SEH.
21798         (extendqisi2): Use extendqisi2_hw if ISA_HAS_SEB_SEH.
21799         (extendhisi2_hw, extendqisi2_hw): New.
21800         * config/mips/netbsd.h (TARGET_CPU_CPP_BUILTINS): Add support
21801         for MIPS32R2.  Add new predefine __mips_isa_rev for MIPS32,
21802         MIPS32R2, and MIPS64.
21803         (LINK_SPEC): Pass -mips32r2 to linker.
21804         * config/mips/t-isa3264: Built -mips32r2 multilibs.
21805         * doc/invoke.texi (MIPS Options): Add -mips32r2, add support
21806         for mips32r2 in the -march description.  Alphabetically sort
21807         CPU names in the -march description.  Add long-missed -mips32
21808         and -mips64 to MIPS option summary.
21809
21810         * config.gcc: Update copyright years to include 2003.
21811         * config/mips/mips.c: Likewise.
21812         * config/mips/mips.h: Likewise.
21813         * config/mips/mips.md: Likewise.
21814         * config/mips/netbsd.h: Likewise.
21815         * doc/invoke.texi: Likewise.
21816
21817 2003-01-08  Andreas Schwab  <schwab@suse.de>
21818
21819         * aclocal.m4 (gcc_AC_INITFINI_ARRAY): Fix spelling of cache
21820         variable.
21821         * configure: Regenerated.
21822
21823 2003-01-08  Kazu Hirata  <kazu@cs.umass.edu>
21824
21825         * config/h8300/h8300.c (output_logical_op): Replace byte/word
21826         extraction of det with b0, b1, w0, w2, etc.
21827         (compute_logical_op_length): Likewise.
21828         (compute_logical_op_cc): Likewise.
21829
21830 2003-01-08  Kazu Hirata  <kazu@cs.umass.edu>
21831
21832         * config/h8300/h8300.h (CONSTANT_ADDRESS_P): Allow CONST and
21833         HIGH on all variants.
21834
21835 2003-01-08  Josef Zlomek <zlomj9am@artax.karlin.mff.cuni.cz>
21836
21837         * Makefile.in (PARTITION_H): New.
21838         (BASIC_BLOCK_H): Added hard-reg-set.h and $(PARTITION_H).
21839         * basic-block.h: Include hard-reg-set.h.
21840
21841 2003-01-08  Richard Earnshaw  <rearnsha@arm.com>
21842
21843         * arm.h (ENABLE_XF_PATTERNS): Delete.
21844         * arm.md (addxf3, subxf3, mulxf3, divxf3, modxf3, negxf2, absxf2)
21845         (sqrtxf2, floatsixf2, fix_truncxfsi2, truncxfsf2, truncxfdf2)
21846         (extendsfxf2, extenddfxf2, movxf, cmpxf, cmpxf_insn)
21847         (cmpxf_trap): Delete.
21848         (movxf_hard_insn): Remove test of ENABLE_XF_PATTERNS.
21849
21850 2003-01-08  Jan Hubicka  <jh@suse.cz>
21851
21852         * i386.md (adddi3_carry_rex64, subdi3_carry_rex64): Name pattern.
21853         (addhi3_carry, addqi3_carry, subhi3_carry, subqi3_carry): New patterns.
21854         (add??cc): New expanders.
21855         * i386.c (expand_int_addcc): New function.
21856         * i386-protos.h (expand_int_addcc): Declare.
21857
21858         * alias.c (memory_modified_1): New static function.
21859         (memory_modified): New static varaible.
21860         (memory_modified_in_insn_p): New global function.
21861         * rtl.h (memory_modified_in_insn_p): Declare.
21862         * rtlanal.c (modified_between_p, modified_in_p): Be smart about memory
21863         references.
21864
21865         * expr.h (emit_conditional_add): Declare.
21866
21867 2003-01-07  Janis Johnson  <janis187@us.ibm.com>
21868
21869         PR other/8947
21870         * doc/invoke.texi (-malign-double): Explain that the option breaks
21871         binary compatibility.
21872
21873 2003-01-08  Andreas Schwab  <schwab@suse.de>
21874
21875         * config.gcc (m68k-*-linux*): Don't set extra_parts and gnu_ld,
21876         should come from the generic *-*-linux* entry.
21877
21878 2003-01-07  Jan Hubicka  <jh@suse.cz>
21879
21880         * cselib.c (cselib_current_insn_in_libcall): New static variable.
21881         (new_elt_loc_list, cselib_process_insn, cselib_init): Keep track on whether
21882         we are inside libcall.
21883         * cselib.h (elt_loc_list): Add in_libcall.
21884         * gcse.c (do_local_cprop): Do not copy propagate using insns
21885         in libcalls.
21886
21887 2003-01-07  David Edelsohn  <edelsohn@gnu.org>
21888
21889         * doc/tm.texi (TARGET_SCHED_VARIABLE_ISSUE): CLOBBER and USE do
21890         not normally affect to issue rate.
21891
21892 2003-01-07  Jan Hubicka  <jh@suse.cz>
21893
21894         * genopinit.c (optabs): Add addc_optab.
21895         * ifcvt.c (noce_try_store_flag): Rename to ...
21896         (noce_try_addcc): ... this one; handle generic conditional increment.
21897         (noce_process_if_block): Update noce_try_addcc call.
21898         * optabs.c (emit_conditional_add): New.
21899         (init_obtabs): Initialize addc_optab.
21900         * optabs.h (optab_index): Add OTI_addcc.
21901         (addcc_optab): New macro.
21902         * md.texi: Document addMcc
21903
21904         PR target/8322
21905         * i386.c (ix86_init_mmx_sse_builtins): Constify arguments of loads.
21906         * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
21907         * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
21908
21909         * reload1.c (delete_output_reload): Avoid repeated attempts
21910         to delete insn.
21911
21912 2003-01-07  Andreas Schwab  <schwab@suse.de>
21913
21914         * configure.in: Restore CFLAGS before gcc_AC_INITFINI_ARRAY.
21915         Move --enable-initfini-array check ...
21916         * aclocal.m4 (gcc_AC_INITFINI_ARRAY): ... here.  Define
21917         HAVE_INITFINI_ARRAY also when --enable-initfini-array is given.
21918         Don't AC_SUBST gcc_cv_initfinit_array.  Use AC_TRY_RUN.
21919         * configure: Rebuild.
21920
21921 2003-01-07  Richard Henderson  <rth@redhat.com>
21922
21923         * alias.c (find_base_value): Only use new_reg_base_value shortcut
21924         if the register is set once.
21925
21926 2003-01-07  Sylvain Pion <Sylvain.Pion@mpi-sb.mpg.de>
21927
21928         * config/i386/i386.c (ix86_init_mmx_sse_builtins):
21929         __builtin_ia32_ldmxcsr and __builtin_ia32_stmxcsr are SSE, not MXX.
21930         * config/i386/i386.md (ldmxcsr, stmxcsr): SSE, not MMX.
21931
21932 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
21933             Sunil Davasam  <sunil.k.davasam@intel.com>
21934
21935         PR libstdc++/9076
21936         * unwind-dw2.c (execute_cfa_program): DW_CFA_undefined,
21937         DW_CFA_same_value, read next and ignore.
21938
21939 2003-01-07  Richard Henderson  <rth@redhat.com>
21940
21941         * cfganal.c (flow_call_edges_add): Don't crash on noreturn call.
21942
21943 2003-01-07  Daniel Berlin  <dberlin@dberlin.org>
21944
21945         * cfg.c: Include alloc-pool.h
21946         (edge_pool): New pool.
21947         (bb_pool): New pool.
21948         (first_deleted_edge): Remove.
21949         (first_deleted_block): Remove.
21950         (init_flow): Alloc/free the pools.
21951         (free_edge): Use pools.
21952         (alloc_block): Ditto.
21953         (expunge_block): Ditto.
21954         (cached_make_edge): Ditto.
21955
21956         * Makefile.in (cfg.o): Add alloc-pool.h dependency.
21957
21958 2003-01-07  Daniel Berlin  <dberlin@dberlin.org>
21959
21960         * et-forest.c: Include alloc-pool.h.
21961         (struct et_forest): Add node_pool and occur_pool.
21962         (et_forest_create): Create the new pools.
21963         (et_forest_delete): Delete them.
21964         (et_forest_add_node): Allocate and free using pools.
21965         (et_forest_add_edge): Ditto.
21966         (et_forest_remove_node): Ditto.
21967         (et_forest_remove_edge): Ditto.
21968
21969         * Makefile.in (et-forest.o): Add alloc-pool.h dependency.
21970
21971 2003-01-07  Kazu Hirata  <kazu@cs.umass.edu>
21972
21973         * config/h8300/h8300.c (output_logical_op): Simplify and
21974         optimize the handling of SImode.
21975         * config/h8300/h8300.c (compute_logical_op_length): Update
21976         accordingly.
21977         * config/h8300/h8300.c (compute_logical_op_cc): Likewise.
21978
21979 2003-01-07  Richard Sandiford  <rsandifo@redhat.com>
21980
21981         * config/mips/mips.c (mips_va_arg): In the EABI code, apply the
21982         big-endian correction to indirect arguments too.
21983
21984 2003-01-06  Aldy Hernandez  <aldyh@redhat.com>
21985
21986         Segher Boessenkool  <segher@koffie.nl>
21987
21988         * config/rs6000/rs6000.c (rs6000_reg_names): Add missing registers.
21989         (alt_reg_names): Ditto, fix formatting.
21990         * config/rs6000/rs6000.h (DEBUG_REGISTER_NAMES): Fix formatting.
21991
21992 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
21993
21994         * config/h8300/h8300.c (final_prescan_insn): Constify uid.
21995         (output_logical_op): Constify intval and det.
21996         (compute_logical_length): Likewise.
21997         (compute_logical_cc): Likewise.
21998         (output_a_shift): Constify mask.
21999         (h8300_encode_label): Constify len.
22000
22001 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
22002
22003         * config/h8300/h8300.c (h8300_expand_prologue): Remove fsize.
22004         (h8300_expand_epilogue): Likewise.
22005
22006 2003-01-06  Aldy Hernandez  <aldyh@redhat.com>
22007
22008         Segher Boessenkool  <segher@koffie.nl>
22009
22010         * config/rs6000/altivec.md: Remove spaces from assembler
22011         instruction argument lists.
22012
22013 2003-01-07  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
22014
22015         * config/c4x/c4x.c (c4x_naked_function_p): Rename from
22016         c4x_assembler_function_p.
22017         (c4x_null_epilogue_p): Complement return value, all uses updated.
22018         (c4x_insert_attributes): Add naked.
22019         * config/c4x/c4x.md (c4x_null_epilogue_p): Changes uses.
22020         * doc/extend.texi: Update C4x function attributes.
22021
22022 2003-01-06  Richard Henderson  <rth@redhat.com>
22023
22024         * config/alpha/alpha.c (alpha_encode_section_info): Adjust symbol_str
22025         properly when changing "local-ness".
22026         * config/alpha/alpha.md (movdi_er_high_g): Allow all symbols.
22027
22028 2003-01-06  Dale Johannesen  <dalej@apple.com>
22029
22030         * config/darwin-protos.h:  Add prototypes for new section functions.
22031
22032 2003-01-06  Chris Demetriou  <cgd@broadcom.com>
22033
22034         * config.gcc (mipsisa32-*-elf*, mipsisa32el-*-elf*): Default ABI
22035         to EABI.
22036
22037 2003-01-06  Zack Weinberg  <zack@codesourcery.com>
22038
22039         * hwint.h: If the current compiler has no 64-bit type at all,
22040         make HOST_WIDEST_INT 32 bits.
22041
22042 2003-01-06  Eric Christopher  <echristo@redhat.com>
22043
22044         * config/mips/mips.md (movdf_internal2): Fix constraints.
22045
22046 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
22047
22048         * config/h8300/h8300.md (*twoshifts_l16_r1): New.
22049
22050 2003-01-06  Richard Sandiford  <rsandifo@redhat.com>
22051
22052         * config/mips/mips.md (leadi): Use dla rather than la.
22053
22054 2003-01-06  Svein E. Seldal  <Svein.Seldal@solidas.com>
22055
22056         * config/c4x/c4x.h: Updated specs for new gas format.  Fixed bug
22057         in C33_FLAG.  Added proper C33 support in ASM_FILE_START macro.
22058
22059 2003-01-06 Herman A.J. ten Brugge  <hermantenbrugge@home.nl>
22060
22061         * config/c4x/c4x.h: Remove hwint.h include and HOST_WIDE_INT_PRINT_HEX
22062         redefinition.
22063
22064 2003-01-05  Kazu Hirata  <kazu@cs.umass.edu>
22065
22066         * config/h8300/h8300.md (*extzv_8_23): New.
22067
22068 2003-01-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
22069
22070         * pa64-hpux.h (JCR_SECTION_NAME): Define.
22071         (PA_INIT_FRAME_DUMMY_ASM_OP): Check EH_FRAME_SECTION_NAME instead of
22072         USE_EH_FRAME_REGISTRY when defining.
22073
22074 2003-01-05  Kazu Hirata  <kazu@cs.umass.edu>
22075
22076         * config/h8300/h8300.c (output_a_shift): Do not output a
22077         variable shift.
22078         * config/h8300/h8300.md (two splitters): New.
22079
22080 2003-01-05  Richard Sandiford  <rsandifo@redhat.com>
22081
22082         * config/mips/mips.md: Disable the movstrsi define_split.
22083
22084 2003-01-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22085
22086         * alloc-pool.c: Don't include "libiberty.h".
22087         * config/sparc/gmon-sol2.c: Include <fcntl.h>.
22088         * convert.c (convert_to_real): Hide unused variable.
22089
22090 2003-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22091
22092         * Makefile.in (gtyp-gen.h): Const-ify.
22093         * gcov-dump.c (tag_table): Likewise.
22094
22095 2003-01-04  Bruce Korb  <bkorb@gnu.org>
22096
22097         * fixinc/fixfixes.c(wrap_fix): the wrapper guard must be a function
22098         of *both* the file name and the fix name.
22099
22100 2003-01-04  John David Anglin  <dave.anglin@nrc.ca>
22101
22102         * config.gcc (hppa*64*-*-hpux11*): Define extra_parts.  Don't use
22103         collect2.
22104         * pa-hpux11.h (LDD_SUFFIX, PARSE_LDD_OUTPUT): Undefine.
22105         (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Define.
22106         * pa64-hpux.h (HP_INIT_ARRAY_SECTION_ASM_OP,
22107         GNU_INIT_ARRAY_SECTION_ASM_OP, HP_FINI_ARRAY_SECTION_ASM_OP,
22108         GNU_FINI_ARRAY_SECTION_ASM_OP): Define.
22109         (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Define when not using
22110         elfos.h.
22111         (EH_FRAME_IN_DATA_SECTION): Delete define.
22112         (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Undefine.
22113         (STARTFILE_SPEC): Use crtbegin.o.
22114         (ENDFILE_SPEC): Use crtend.o.
22115         (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION,
22116         SUPPORTS_INIT_PRIORITY, PA_CXA_FINALIZE_STUB, PA_INIT_FINI_HACK,
22117         PA_INIT_FRAME_DUMMY_ASM_OP, PA_JV_REGISTERCLASSES_STUB,
22118         DTOR_LIST_BEGIN): Define.
22119         * pa.c (TARGET_ASM_CONSTRUCTOR): Define.
22120         (pa_asm_out_constructor, pa_asm_out_destructor): New functions.
22121         * som.h (SUPPORTS_INIT_PRIORITY): Delete define.
22122
22123 2002-12-31  Larin Hennessy  <larin@science.oregonstate.edu>
22124
22125         * fixinc/fixinc.svr4: Remove references to i860, Sony NewsOS, and spur.
22126         * fixinc/inclhack.def: Remove tests for Apple A/UX, ARM/RISCiX, DG/UX,
22127         m88k-*-sysv3*, Sony NewsOS.   Remove references to i860.
22128         Cleanup handling of replacement text.
22129         * fixinc/mkfixinc.sh: Remove reference to i?86-*-osf1*
22130
22131 2003-01-04  Bruce Korb  <bkorb@gnu.org>
22132
22133         * fixinc/tests/base/math.h: removed obsolete results
22134         * fixinc/tests/base/stdlib.h: ditto
22135         * fixinc/tests/base/sys/param.h: ditto
22136         * fixinc/tests/base/sys/stat.h: ditto
22137         * fixinc/tests/base/time.h: ditto
22138         * fixinc/tests/base/X11/Intrinsic.h: removed obsolete file
22139         * fixinc/tests/base/sys/byteorder.h: ditto
22140         * fixinc/inclhack.def: Remove superfluous backslashes
22141
22142 2003-01-04  Kazu Hirata  <kazu@cs.umass.edu>
22143
22144         * config/h8300/h8300-protos.h: Add prototypes for
22145         the new functions defined below.
22146         * config/h8300/h8300.c (TARGET_ASM_FUNCTION_PROLOGUE): Do not
22147         define.
22148         (dosize): Emit RTL instead of assembly code.
22149         (push): Likewise.
22150         (pop): Likewise.
22151         (h8300_output_function_prologue): Remove.
22152         (h8300_expand_prologue): New.
22153         (h8300_expand_epilogue): New.
22154         (h8300_output_function_epilogue): Do only the reset of
22155         pragma_saveall.
22156         * config/h8300/h8300.md (push_h8300): New.
22157         (push_h8300hs): Likewise.
22158         (pop_h8300): Likewise.
22159         (pop_h8300hs): Likewise.
22160         (*stm_h8300s_2): Change the name to stm_h8300s_2.
22161         (*stm_h8300s_3): Change the name to stm_h8300s_3.
22162         (*stm_h8300s_4): Change the name to stm_h8300s_4.
22163         (*ldm_h8300s_2): New.
22164         (*ldm_h8300s_3): Likewise.
22165         (*ldm_h8300s_4): Likewise.
22166         (return): Likewise.
22167         (*return_1): Likewise.
22168         (prologue): Likewise.
22169         (epilogue): Likewise.
22170         (monitor_prologue): Likewise.
22171
22172 2003-01-03  Dale Johannesen  <dalej@apple.com>
22173
22174         * config/darwin.h:  (EXTRA_SECTIONS):  Add machopic_symbol_stub1,
22175           machopic_picsymbol_stub1.
22176           (EXTRA_SECTION_FUNCTIONS):  Ditto.
22177         * rs6000/rs6000.c:  Update copyright.
22178           (machopic_output_stub):  Use them.  Remove an insn from stub code.
22179
22180 2003-01-02  Jason Merrill  <jason@redhat.com>
22181
22182         * fold-const.c (fold) [COND_EXPR]: Avoid NOP_EXPRs better.
22183
22184         * integrate.c (copy_decl_for_inlining): Don't clear the rtl for
22185         static/external decls.
22186
22187         * c-common.c (finish_fname_decls): Put the DECL_STMTs inside the
22188         outermost scope.
22189         * c-decl.c (c_make_fname_decl): Push the decls there, too.
22190
22191 2003-01-03  Kazu Hirata  <kazu@cs.umass.edu>
22192
22193         * config/h8300/h8300-protos.h: Add a prototype for
22194         h8300_current_function_interrupt_function_p.
22195         * config/h8300/h8300.c (interrupt_handler): Remove.
22196         (os_task): Likewise.
22197         (monitor): Likewise.
22198         (pragma_interrupt): New.
22199         (WORD_REG_USED): Use
22200         h8300_current_function_interrupt_function_p.
22201         (dosize): Likewise.
22202         (h8300_output_function_prologue): Likewise.
22203         Do not set interrupt_handler, os_task, monitor.
22204         (h8300_output_function_prologue): Use
22205         h8300_current_function_interrupt_function_p.
22206         Do not set interrupt_handler, os_task, monitor.
22207         (h8300_current_function_interrupt_function_p): New.
22208         (h8300_pr_interrupt): Set pragma_interrupt.
22209         (h8300_insert_attributes): Reset pragma_interrupt.
22210
22211 2003-01-03  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
22212
22213         * doc/install.texi (Configuration): Fix markup for reference to
22214         gcc/config.gcc.
22215
22216 2003-01-02  Kazu Hirata  <kazu@cs.umass.edu>
22217
22218         * config/h8300/h8300.md (*iorhi3_zext): Relax the condition.
22219         (*iorhi3_two_qi): Likewise.
22220         (*iorsi3_zexthi): Likewise.
22221         (*xorhi3_zextqi): Likewise.
22222         (*xorsi3_zexthi): Likewise.
22223         (*xorsi3_zextqi): Likewise.
22224
22225 2003-01-02  Kazu Hirata  <kazu@cs.umass.edu>
22226
22227         * config/h8300/h8300.c (stack_pointer_operand): New.
22228         (const_int_gt_2_operand): Likewise.
22229         (const_int_ge_8_operand): Likewise.
22230         * config/h8300/h8300.md (a splitter): Likewise.
22231         (a peephole2): Likewise.
22232         * config/h8300/h8300-protos.h: Add prototypes for the new
22233         functions above.
22234
22235 2003-01-02  Steven Bosscher <s.bosscher@student.tudelft.nl>
22236
22237         * objc/Make-lang.in, objc/config-lang.in, objc/lang-specs.h,
22238         objc/objc-act.h: Fix copyright years.
22239
22240 2003-01-02  Steven Bosscher  <s.bosscher@student.tudelft.nl>
22241
22242         * doc/passes.texi: Fix documentation for -fssa-ccp
22243
22244 2003-01-02  Neil Booth  <neil@daikokuya.co.uk>
22245
22246         * gccbug.in: Update for new categories.
22247
22248 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
22249
22250         * config/h8300/h8300.md: Reorder some patterns.
22251
22252 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
22253
22254         * config/h8300/h8300.c (output_logical_op): Fix a warning.
22255
22256 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
22257
22258         * config/darwin-protos.h, config/c4x/c4x-protos.h,
22259         config/cris/cris-protos.h, config/i370/i370-protos.h,
22260         config/i960/i960-protos.h, config/ia64/ia64-protos.h,
22261         config/v850/v850-protos.h: Use struct, and don't conditionally
22262         compile on GCC_C_PRAGMA_H.
22263
22264 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
22265
22266         * config/arm/arm-protos.h: Remove #ifdef GCC_C_PRAGMA_H.
22267         * config/h8300/h8300-protos.h: Likewise.
22268         * config/sh/sh-protos.h: Likewise.
22269
22270 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
22271
22272         * config/arm/arm-protos.h: Use struct cpp_reader instead of
22273         cpp_reader.
22274         * config/h8300/h8300-protos.h: Likewise.
22275         * config/sh/sh-protos.h: Likewise.
22276
22277 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
22278
22279         * config/arm/arm.c (arm_pr_long_calls, arm_pr_no_long_calls,
22280         arm_pr_long_calls_off): Use struct.
22281         * config/h8300/h8300.c (h8300_pr-interrupt, h8300_pr_saveall)
22282         : Similarly.
22283         Don't include cpplib.h.
22284         * config/sh/sh.c (sh_pr_interrupt, sh_pr_trapa,
22285         sh_pr_nosave_low_regs): Similarly.
22286
22287 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
22288
22289         * config/h8300/h8300.c: Include cpplib.h.
22290
22291 2003-01-01  Steven Bosscher  <s.bosscher@student.tudelft.nl>
22292
22293         * objc/Make-lang.in, objc/config-lang.in, objc/lang-options.h,
22294           objc/lang-specs.h, objc/objc-act.c, objc/objc-act.h,
22295           objc/objc-lang.c, objc/objc-tree.def: Replace "GNU CC" with
22296           "GCC" in the copyright header.
22297
22298 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
22299
22300         * c-pragma.c (c_register_pragma): New.
22301         (init_pragma): Use it.
22302         * c-pragma.h (cpp_register_pragma): Don't declare.
22303         (c_register_pragma): New.
22304         * cpplib.h: Remove #ifdef GCC_C_PRAGMA_H.
22305         * config/darwin.h (REGISTER_TARGET_PRAGMAS): Update.
22306         * config/arm/arm.h (REGISTER_TARGET_PRAGMAS): Update.
22307         * config/c4x/c4x.h (REGISTER_TARGET_PRAGMAS): Update.
22308         * config/h8300/h8300.h (REGISTER_TARGET_PRAGMAS): Update.
22309         * config/i370/i370.h (REGISTER_TARGET_PRAGMAS): Update.
22310         * config/i960/i960.h (REGISTER_TARGET_PRAGMAS): Update.
22311         * config/ia64/hpux.h (REGISTER_TARGET_PRAGMAS): Update.
22312         * config/rs6000/rs6000.h (REGISTER_TARGET_PRAGMAS): Update.
22313         * config/sh/sh.h (REGISTER_TARGET_PRAGMAS): Update.
22314         * config/v850/v850.h (REGISTER_TARGET_PRAGMAS): Update.
22315         * doc/tm.texi (REGISTER_TARGET_PRAGMAS): Update
22316
22317 See ChangeLog.8 for earlier changes.